Current File : //www/cron/sql/okullar_open_2025_05_02.sql |
/*M!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: okullar_open
-- ------------------------------------------------------
-- Server version 10.11.11-MariaDB-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `oc_address`
--
DROP TABLE IF EXISTS `oc_address`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_address` (
`address_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`company` varchar(40) NOT NULL,
`address_1` varchar(128) NOT NULL,
`address_2` varchar(128) NOT NULL,
`city` varchar(128) NOT NULL,
`postcode` varchar(10) NOT NULL,
`country_id` int(11) NOT NULL DEFAULT 0,
`zone_id` int(11) NOT NULL DEFAULT 0,
`custom_field` text NOT NULL,
PRIMARY KEY (`address_id`),
KEY `customer_id` (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_address`
--
LOCK TABLES `oc_address` WRITE;
/*!40000 ALTER TABLE `oc_address` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_address` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_api`
--
DROP TABLE IF EXISTS `oc_api`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_api` (
`api_id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(64) NOT NULL,
`key` text NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`api_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_api`
--
LOCK TABLES `oc_api` WRITE;
/*!40000 ALTER TABLE `oc_api` DISABLE KEYS */;
INSERT INTO `oc_api` VALUES
(1,'Default','VhkPfpOJjA5J1IvBBrkInRA1nmh5fKH0N5adIBmhTnVd1Y4I4y8eCrO7rXgsaUYtT7FMvAw3ewQq4F0NNW5wmUFAmpg6Ppp5gjZXFU3Y6uA8OPI5U5TZPDabOgzKzDgnTCz0ENcgi3CoVkpNDFyFIiu9TKwnWbYsr7TB7HGLEP9QAGohDRqjtGXejfZMkgDeOQ8Dp509WVVAzur6w1JBBFC8m9vC0s121EVu2me4LaDIDTUOfhQ9kE7mhPPNlpvb',1,'2025-02-11 23:12:24','2025-02-11 23:12:24');
/*!40000 ALTER TABLE `oc_api` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_api_ip`
--
DROP TABLE IF EXISTS `oc_api_ip`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_api_ip` (
`api_ip_id` int(11) NOT NULL AUTO_INCREMENT,
`api_id` int(11) NOT NULL,
`ip` varchar(40) NOT NULL,
PRIMARY KEY (`api_ip_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_api_ip`
--
LOCK TABLES `oc_api_ip` WRITE;
/*!40000 ALTER TABLE `oc_api_ip` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_api_ip` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_api_session`
--
DROP TABLE IF EXISTS `oc_api_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_api_session` (
`api_session_id` int(11) NOT NULL AUTO_INCREMENT,
`api_id` int(11) NOT NULL,
`session_id` varchar(32) NOT NULL,
`ip` varchar(40) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`api_session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_api_session`
--
LOCK TABLES `oc_api_session` WRITE;
/*!40000 ALTER TABLE `oc_api_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_api_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_attribute`
--
DROP TABLE IF EXISTS `oc_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_attribute` (
`attribute_id` int(11) NOT NULL AUTO_INCREMENT,
`attribute_group_id` int(11) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`attribute_id`)
) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_attribute`
--
LOCK TABLES `oc_attribute` WRITE;
/*!40000 ALTER TABLE `oc_attribute` DISABLE KEYS */;
INSERT INTO `oc_attribute` VALUES
(1,6,1),
(2,6,5),
(3,6,3),
(4,3,1),
(5,3,2),
(6,3,3),
(7,3,4),
(8,3,5),
(9,3,6),
(10,3,7),
(11,3,8),
(12,7,0),
(13,7,0),
(14,7,0),
(15,7,0),
(23,7,0),
(24,3,0),
(25,3,0),
(26,7,0),
(27,7,0),
(28,10,0),
(29,8,0),
(30,8,0),
(31,8,0),
(32,8,0),
(33,8,0);
/*!40000 ALTER TABLE `oc_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_attribute_description`
--
DROP TABLE IF EXISTS `oc_attribute_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_attribute_description` (
`attribute_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`attribute_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_attribute_description`
--
LOCK TABLES `oc_attribute_description` WRITE;
/*!40000 ALTER TABLE `oc_attribute_description` DISABLE KEYS */;
INSERT INTO `oc_attribute_description` VALUES
(1,1,'Description'),
(2,1,'No. of Cores'),
(4,1,'test 1'),
(5,1,'test 2'),
(6,1,'test 3'),
(7,1,'test 4'),
(8,1,'test 5'),
(9,1,'test 6'),
(10,1,'test 7'),
(11,1,'test 8'),
(3,1,'Clockspeed'),
(13,1,'Style'),
(15,1,'Material'),
(26,1,'Attribute 1'),
(27,1,'Attribute 2'),
(33,1,'Kids Room'),
(32,1,'Room'),
(31,1,'Entry'),
(30,1,'Dining'),
(29,1,'Living'),
(28,1,'Upholstery'),
(14,1,'Dress Length'),
(25,1,'Hot / Cold'),
(24,1,'Ingredients'),
(12,1,'Occasion'),
(23,1,'Type'),
(23,2,'Type'),
(12,2,'Occasion'),
(24,2,'Ingredients'),
(25,2,'Hot / Cold'),
(14,2,'Dress Length'),
(28,2,'Upholstery'),
(29,2,'Living'),
(30,2,'Dining'),
(31,2,'Entry'),
(32,2,'Room'),
(33,2,'Kids Room'),
(27,2,'Attribute 2'),
(26,2,'Attribute 1'),
(15,2,'Material'),
(13,2,'Style'),
(3,2,'Clockspeed'),
(11,2,'test 8'),
(10,2,'test 7'),
(9,2,'test 6'),
(8,2,'test 5'),
(7,2,'test 4'),
(6,2,'test 3'),
(5,2,'test 2'),
(4,2,'test 1'),
(2,2,'No. of Cores'),
(1,2,'Description'),
(1,3,'Description'),
(2,3,'No. of Cores'),
(4,3,'test 1'),
(5,3,'test 2'),
(6,3,'test 3'),
(7,3,'test 4'),
(8,3,'test 5'),
(9,3,'test 6'),
(10,3,'test 7'),
(11,3,'test 8'),
(3,3,'Clockspeed'),
(13,3,'Style'),
(15,3,'Material'),
(26,3,'Attribute 1'),
(27,3,'Attribute 2'),
(33,3,'Kids Room'),
(32,3,'Room'),
(31,3,'Entry'),
(30,3,'Dining'),
(29,3,'Living'),
(28,3,'Upholstery'),
(14,3,'Dress Length'),
(25,3,'Hot / Cold'),
(24,3,'Ingredients'),
(12,3,'Occasion'),
(23,3,'Type');
/*!40000 ALTER TABLE `oc_attribute_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_attribute_group`
--
DROP TABLE IF EXISTS `oc_attribute_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_attribute_group` (
`attribute_group_id` int(11) NOT NULL AUTO_INCREMENT,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`attribute_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_attribute_group`
--
LOCK TABLES `oc_attribute_group` WRITE;
/*!40000 ALTER TABLE `oc_attribute_group` DISABLE KEYS */;
INSERT INTO `oc_attribute_group` VALUES
(3,2),
(4,1),
(5,3),
(6,4),
(7,0),
(8,0),
(10,0);
/*!40000 ALTER TABLE `oc_attribute_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_attribute_group_description`
--
DROP TABLE IF EXISTS `oc_attribute_group_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_attribute_group_description` (
`attribute_group_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`attribute_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_attribute_group_description`
--
LOCK TABLES `oc_attribute_group_description` WRITE;
/*!40000 ALTER TABLE `oc_attribute_group_description` DISABLE KEYS */;
INSERT INTO `oc_attribute_group_description` VALUES
(4,1,'Technical'),
(5,1,'Motherboard'),
(6,1,'Processor'),
(7,1,'Style'),
(3,1,'Composition'),
(8,1,'Room'),
(10,2,'Material'),
(8,2,'Room'),
(3,2,'Composition'),
(7,2,'Style'),
(6,2,'Processor'),
(10,1,'Material'),
(5,2,'Motherboard'),
(4,2,'Technical'),
(4,3,'Technical'),
(5,3,'Motherboard'),
(6,3,'Processor'),
(7,3,'Style'),
(3,3,'Composition'),
(8,3,'Room'),
(10,3,'Material');
/*!40000 ALTER TABLE `oc_attribute_group_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_banner`
--
DROP TABLE IF EXISTS `oc_banner`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_banner` (
`banner_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`status` tinyint(1) NOT NULL,
PRIMARY KEY (`banner_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_banner`
--
LOCK TABLES `oc_banner` WRITE;
/*!40000 ALTER TABLE `oc_banner` DISABLE KEYS */;
INSERT INTO `oc_banner` VALUES
(1,'HP Products',1),
(2,'Anasayfa Slayt',1),
(3,'Manufacturers',1);
/*!40000 ALTER TABLE `oc_banner` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_banner_image`
--
DROP TABLE IF EXISTS `oc_banner_image`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_banner_image` (
`banner_image_id` int(11) NOT NULL AUTO_INCREMENT,
`banner_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`title` varchar(64) NOT NULL,
`link` varchar(255) NOT NULL,
`image` varchar(255) NOT NULL,
`sort_order` int(3) NOT NULL DEFAULT 0,
PRIMARY KEY (`banner_image_id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_banner_image`
--
LOCK TABLES `oc_banner_image` WRITE;
/*!40000 ALTER TABLE `oc_banner_image` DISABLE KEYS */;
INSERT INTO `oc_banner_image` VALUES
(1,2,1,'iPhone 6','index.php?route=product/product&path=57&product_id=49','catalog/demo/banners/iPhone6.jpg',0),
(2,1,1,'HP Banner','index.php?route=product/manufacturer/info&manufacturer_id=7','catalog/demo/compaq_presario.jpg',0),
(3,3,1,'NFL','','catalog/demo/manufacturer/nfl.png',0),
(4,3,1,'RedBull','','catalog/demo/manufacturer/redbull.png',0),
(5,3,1,'Sony','','catalog/demo/manufacturer/sony.png',0),
(6,3,1,'Coca Cola','','catalog/demo/manufacturer/cocacola.png',0),
(7,3,1,'Burger King','','catalog/demo/manufacturer/burgerking.png',0),
(8,3,1,'Canon','','catalog/demo/manufacturer/canon.png',0),
(9,3,1,'Harley Davidson','','catalog/demo/manufacturer/harley.png',0),
(10,3,1,'Dell','','catalog/demo/manufacturer/dell.png',0),
(11,3,1,'Disney','','catalog/demo/manufacturer/disney.png',0),
(12,2,1,'MacBookAir','','catalog/demo/banners/MacBookAir.jpg',0),
(13,3,1,'Starbucks','','catalog/demo/manufacturer/starbucks.png',0),
(14,3,1,'Nintendo','','catalog/demo/manufacturer/nintendo.png',0);
/*!40000 ALTER TABLE `oc_banner_image` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_cart`
--
DROP TABLE IF EXISTS `oc_cart`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_cart` (
`cart_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`api_id` int(11) NOT NULL,
`customer_id` int(11) NOT NULL,
`session_id` varchar(32) NOT NULL,
`product_id` int(11) NOT NULL,
`recurring_id` int(11) NOT NULL,
`option` text NOT NULL,
`quantity` int(5) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`cart_id`),
KEY `cart_id` (`api_id`,`customer_id`,`session_id`,`product_id`,`recurring_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_cart`
--
LOCK TABLES `oc_cart` WRITE;
/*!40000 ALTER TABLE `oc_cart` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_cart` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_category`
--
DROP TABLE IF EXISTS `oc_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_category` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`image` varchar(255) DEFAULT NULL,
`parent_id` int(11) NOT NULL DEFAULT 0,
`top` tinyint(1) NOT NULL,
`column` int(3) NOT NULL,
`sort_order` int(3) NOT NULL DEFAULT 0,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`category_id`),
KEY `parent_id` (`parent_id`)
) ENGINE=MyISAM AUTO_INCREMENT=223 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_category`
--
LOCK TABLES `oc_category` WRITE;
/*!40000 ALTER TABLE `oc_category` DISABLE KEYS */;
INSERT INTO `oc_category` VALUES
(25,'catalog/journal3/products/electronics/beolab-19-by-bang-olufsen.jpg',69,1,1,3,1,'2009-01-31 01:04:25','2018-06-05 13:26:21'),
(27,'',20,0,0,2,1,'2009-01-31 01:55:34','2018-07-08 13:47:56'),
(20,'catalog/demo/compaq_presario.jpg',69,1,1,1,1,'2009-01-05 21:49:43','2014-04-10 15:14:31'),
(24,'catalog/demo/iphone_2.jpg',69,1,1,5,1,'2009-01-20 02:36:26','2018-06-05 13:27:05'),
(18,'catalog/demo/hp_2.jpg',69,1,0,2,1,'2009-01-05 21:49:15','2014-04-10 15:14:56'),
(28,'',25,0,0,1,1,'2009-02-02 13:11:12','2010-08-22 06:32:46'),
(26,'',20,0,0,1,1,'2009-01-31 01:55:14','2010-08-22 06:31:45'),
(59,'catalog/journal3/categories/demo09.jpg',0,1,1,-10,1,'2014-03-31 00:24:37','2018-08-23 19:06:51'),
(30,'',25,0,0,1,1,'2009-02-02 13:11:59','2010-08-22 06:33:00'),
(31,'',25,0,0,1,1,'2009-02-03 14:17:24','2010-08-22 06:33:06'),
(32,'',25,0,0,1,1,'2009-02-03 14:17:34','2010-08-22 06:33:12'),
(33,'catalog/journal3/products/electronics/camera2.jpg',69,1,1,6,1,'2009-02-03 14:17:55','2018-06-03 14:58:48'),
(34,'catalog/demo/ipod_touch_4.jpg',69,1,4,7,1,'2009-02-03 14:18:11','2014-04-10 15:15:07'),
(35,'catalog/old/watch4.jpg',20,0,0,0,1,'2010-09-17 10:06:48','2014-05-28 22:37:48'),
(60,'catalog/journal3/products/misc/assorted-blurred-background-boutique-994523.jpg',59,0,1,0,1,'2014-03-31 00:25:23','2018-06-04 18:45:34'),
(45,'',18,0,0,0,1,'2010-09-24 18:29:16','2011-04-26 08:52:11'),
(46,'',18,0,0,0,1,'2010-09-24 18:29:31','2011-04-26 08:52:23'),
(69,'catalog/journal3/categories/elec.jpg',0,1,1,-3,1,'2014-04-10 15:11:16','2018-08-23 19:06:35'),
(105,'catalog/journal3/products/sunglasses/glasses3.jpg',59,1,1,0,1,'2014-04-10 17:31:05','2018-06-04 09:13:44'),
(106,'catalog/journal3/products/fashion/jacket.jpg',108,0,1,0,1,'2014-04-10 17:31:50','2018-06-03 14:48:12'),
(107,'catalog/journal3/categories/bagcat.jpg',0,0,1,-9,1,'2014-04-10 17:34:03','2018-08-23 19:06:10'),
(108,'catalog/journal3/products/fashion/sweater.jpg',59,0,1,0,1,'2014-04-10 17:36:38','2018-06-05 12:50:33'),
(109,'catalog/journal3/categories/beauty.jpg',0,1,1,-7,1,'2014-04-10 17:38:20','2019-11-08 12:58:41'),
(110,'catalog/journal3/products/jewelry/16.jpg',105,0,1,0,1,'2014-04-10 17:39:00','2018-06-03 14:30:00'),
(111,'catalog/journal3/categories/f6.jpg',0,1,1,-5,1,'2014-04-10 17:44:07','2018-08-23 19:09:03'),
(112,'catalog/journal3/products/fashion/t2.jpg',59,0,1,0,1,'2014-04-10 17:45:18','2018-06-03 14:45:33'),
(113,'catalog/journal3/products/fashion/c.jpg',59,0,1,0,1,'2014-04-10 17:45:49','2018-06-03 14:41:18'),
(114,'catalog/journal3/products/jewelry/11.jpg',110,0,1,0,1,'2014-04-10 17:56:25','2018-06-03 14:31:24'),
(115,'catalog/journal3/products/jewelry/3.jpg',110,0,1,0,1,'2014-04-10 17:59:13','2018-06-03 14:31:42'),
(116,'catalog/journal3/products/misc/adult-barley-field-beautiful-735838.jpg',105,0,1,0,1,'2014-04-10 17:59:50','2018-06-04 18:20:47'),
(117,'catalog/journal3/products/jewelry/14.jpg',110,0,1,0,1,'2014-04-10 18:01:10','2018-06-03 14:30:36'),
(118,'catalog/journal3/products/fashion/bags/bag.jpg',107,0,1,0,1,'2014-04-10 18:06:14','2018-06-03 14:37:41'),
(119,'catalog/journal3/products/fashion/bags/tote2.jpg',107,0,1,0,1,'2014-04-10 18:06:42','2018-06-03 14:38:27'),
(120,'catalog/journal3/products/fashion/bags/purse.jpg',107,0,1,0,1,'2014-04-10 18:07:01','2018-06-03 14:36:33'),
(121,'catalog/journal3/products/fashion/bags/straw-bag.jpg',107,0,1,0,1,'2014-04-10 18:07:20','2018-06-03 14:38:07'),
(122,'catalog/journal3/products/beauty/basket4.jpg',109,0,1,0,1,'2014-04-10 18:10:13','2018-06-03 13:48:35'),
(123,'catalog/journal3/products/beauty/25.jpg',109,0,1,0,1,'2014-04-10 18:10:24','2018-06-03 13:46:04'),
(124,'catalog/journal3/products/beauty/28.jpg',109,0,1,0,1,'2014-04-10 18:10:43','2018-06-03 13:49:55'),
(125,'catalog/journal3/products/beauty/set6.jpg',109,0,1,0,1,'2014-04-10 18:12:46','2018-06-03 13:45:05'),
(126,'catalog/journal3/products/fashion/b.jpg',113,0,1,0,1,'2014-04-10 18:13:21','2018-06-03 14:42:41'),
(127,'catalog/journal3/products/fashion/jtee-2.jpg',108,0,1,0,1,'2014-04-10 18:13:41','2018-06-03 14:50:27'),
(129,'catalog/journal3/products/fashion/tee2 copy.jpg',108,0,1,0,1,'2014-04-10 18:16:44','2018-06-03 14:49:58'),
(130,'catalog/journal3/products/fashion/shirt.jpg',108,0,1,0,1,'2014-04-10 18:18:03','2018-06-03 14:49:14'),
(131,'catalog/journal3/products/footwear/additional/airmax_7.jpg',111,0,1,0,1,'2014-04-10 18:18:42','2018-06-05 12:21:00'),
(132,'catalog/journal3/products/footwear/shoe.jpg',111,0,1,0,1,'2014-04-10 18:18:56','2018-06-03 14:03:02'),
(133,'catalog/journal3/products/footwear/slippers.jpg',111,0,1,0,1,'2014-04-10 18:19:11','2018-06-03 14:01:31'),
(134,'catalog/journal3/products/footwear/additional/9.jpg',111,0,1,0,1,'2014-04-10 18:19:41','2018-06-05 12:20:36'),
(135,'catalog/journal3/products/fashion/f.jpg',113,0,1,0,1,'2014-04-10 18:20:11','2018-06-03 14:45:22'),
(136,'catalog/journal3/products/fashion/e.jpg',113,0,1,0,1,'2014-04-10 18:20:40','2018-06-03 14:42:18'),
(137,'catalog/journal3/products/fashion/b.jpg',113,0,1,0,1,'2014-04-10 18:21:52','2018-06-05 12:49:53'),
(142,'catalog/journal3/products/fashion/e.jpg',106,0,1,0,1,'2014-04-10 18:25:32','2018-06-03 14:52:34'),
(143,'catalog/journal3/products/fashion/d.jpg',106,0,1,0,1,'2014-04-10 18:25:51','2018-06-03 14:52:16'),
(144,'catalog/journal3/products/fashion/e.jpg',106,0,1,0,1,'2014-04-10 18:26:20','2018-06-03 14:51:06'),
(145,'catalog/journal3/products/fashion/c.jpg',106,0,1,0,1,'2014-04-10 18:26:47','2018-06-03 14:51:54'),
(146,'catalog/journal3/products/jewelry/19.png',110,0,1,0,1,'2014-04-10 18:32:33','2018-06-03 14:31:05'),
(147,'catalog/journal3/products/fashion/a.jpg',60,0,1,0,1,'2014-04-10 18:34:14','2018-06-04 18:43:29'),
(148,'catalog/journal3/products/misc/armchair-attractive-beautiful-371085.jpg',60,0,1,0,1,'2014-04-10 18:34:31','2018-06-04 18:41:28'),
(149,'catalog/journal3/products/misc/adult-beautiful-beauty-972937.jpg',60,0,1,0,1,'2014-04-10 18:34:50','2018-06-04 18:42:29'),
(150,'catalog/journal3/products/misc/adult-attractive-beautiful-206525.jpg',60,0,1,0,1,'2014-04-10 18:35:48','2018-06-04 18:39:44'),
(151,'catalog/journal3/products/misc/adult-arches-attractive-307790.jpg',105,0,1,0,1,'2014-04-10 18:37:03','2018-06-04 18:21:33'),
(152,'catalog/journal3/products/misc/belt-belt-buckle-denim-89783.jpg',105,0,1,0,1,'2014-04-10 18:37:18','2018-06-04 18:18:41'),
(153,'catalog/journal3/products/sunglasses/glasses2.jpg',105,0,1,0,1,'2014-04-10 18:37:33','2018-06-03 14:35:55'),
(154,'catalog/journal3/products/misc/adult-beautiful-beauty-1007019.jpg',60,0,1,0,1,'2014-04-13 16:13:20','2018-06-04 18:40:03'),
(155,'catalog/journal3/categories/f.jpg',0,1,1,0,1,'2014-04-27 01:34:25','2018-08-23 19:08:43'),
(156,'catalog/journal3/products/food/cakes.jpg',155,0,1,0,1,'2014-04-27 01:35:15','2018-06-05 12:46:11'),
(157,'catalog/journal3/products/food/sweets.jpg',155,0,1,0,1,'2014-04-27 01:35:49','2018-06-05 12:47:48'),
(158,'catalog/journal3/products/food/grill.jpg',155,0,1,0,1,'2014-04-27 01:36:36','2018-06-05 12:48:13'),
(159,'catalog/journal3/products/food/pasta.jpg',155,0,1,0,1,'2014-04-27 01:37:03','2018-06-05 12:48:42'),
(160,'catalog/journal3/products/food/pizza.jpg',155,0,1,0,1,'2014-04-27 01:37:51','2018-06-05 12:49:08'),
(161,'catalog/journal3/products/food/salad.jpeg',155,0,1,0,1,'2014-04-27 01:38:17','2018-06-05 12:50:54'),
(163,'catalog/journal3/products/food/sushi.jpeg',155,0,1,0,1,'2014-04-27 01:39:12','2018-06-05 12:51:14'),
(164,'catalog/journal3/products/beauty/14.jpg',109,0,1,0,1,'2014-05-22 12:29:53','2018-06-03 13:51:19'),
(165,'catalog/journal3/products/backpacks/3.jpg',107,0,1,0,1,'2017-12-05 15:50:07','2018-06-05 13:28:54'),
(166,'catalog/journal3/categories/baby.jpg',0,1,1,0,1,'2018-05-08 17:24:24','2018-08-23 19:04:41'),
(167,'catalog/journal3/products/baby/baby-boy-hat-covered-101537.jpeg',166,0,1,0,1,'2018-05-08 17:28:09','2018-06-05 13:21:09'),
(168,'',167,0,1,0,1,'2018-05-08 17:29:44','2018-05-08 17:29:44'),
(169,'',167,0,1,0,1,'2018-05-08 17:30:52','2018-05-08 17:30:52'),
(170,'catalog/journal3/products/baby/toys.jpeg',166,0,1,0,1,'2018-05-08 17:31:46','2018-06-05 13:21:33'),
(171,'catalog/journal3/products/baby/pexels-photo-266011.jpeg',166,0,1,0,1,'2018-05-08 17:34:12','2018-06-05 13:20:55'),
(172,'',171,0,1,0,1,'2018-05-08 17:35:14','2018-05-08 17:35:14'),
(173,'',171,0,1,0,1,'2018-05-08 17:36:18','2018-05-08 17:36:18'),
(174,'',171,0,1,0,1,'2018-05-08 17:37:05','2018-05-08 17:37:05'),
(175,'catalog/journal3/categories/acceso.jpg',0,1,1,-4,1,'2018-05-08 17:38:32','2018-10-26 19:26:04'),
(176,'catalog/journal3/products/home/545048.jpeg',175,0,1,0,1,'2018-05-08 17:39:46','2018-10-25 20:38:32'),
(222,'catalog/journal3/products/home/decor.jpg',175,0,1,0,1,'2018-10-25 20:14:19','2018-10-25 20:38:04'),
(180,'catalog/journal3/products/home/table.jpg',175,0,1,0,1,'2018-05-08 17:46:11','2018-10-25 20:51:05'),
(189,'catalog/journal3/products/home/living.jpg',175,0,1,0,1,'2018-05-08 19:19:12','2018-10-25 20:51:42'),
(196,'catalog/journal3/categories/rose.jpg',0,1,1,0,1,'2018-05-08 19:26:04','2018-08-23 19:08:09'),
(221,'catalog/journal3/categories/sports.jpg',0,0,1,0,1,'2018-10-13 13:20:59','2018-10-13 13:20:59'),
(197,'',196,0,1,0,1,'2018-05-08 19:26:33','2018-06-05 12:52:08'),
(198,'',196,0,1,0,1,'2018-05-08 19:28:01','2018-06-05 12:51:22'),
(199,'catalog/journal3/products/misc/aradhika-sharma-206334-unsplash.jpg',196,0,1,0,1,'2018-05-08 19:29:24','2018-06-05 13:00:19'),
(200,'',196,0,1,0,1,'2018-05-08 19:30:11','2018-06-05 12:51:37'),
(216,'catalog/journal3/products/beauty/additional/brush-case.jpg',109,0,1,0,1,'2018-06-05 12:42:57','2018-06-05 13:20:11'),
(203,'',196,0,1,0,1,'2018-05-08 19:32:51','2018-06-05 12:52:22'),
(204,'',196,0,1,0,1,'2018-05-08 19:33:54','2018-06-05 12:51:53'),
(205,'catalog/journal3/categories/app.jpg',0,1,1,0,1,'2018-05-08 19:35:06','2019-01-27 14:51:28'),
(206,'catalog/journal3/products/appliances/fridge.jpg',205,0,1,0,1,'2018-05-08 19:37:02','2018-06-05 11:59:47'),
(207,'catalog/journal3/products/appliances/micro.png',205,0,1,0,1,'2018-05-08 19:39:45','2018-06-05 11:58:27'),
(208,'catalog/journal3/products/appliances/iron.jpg',205,0,1,0,1,'2018-05-08 19:42:54','2018-06-05 11:57:19'),
(214,'catalog/journal3/products/footwear/shoes2.jpg',111,0,1,0,1,'2018-06-05 12:18:25','2018-06-05 12:18:25'),
(210,'catalog/journal3/products/appliances/kettle.jpg',205,0,1,0,1,'2018-05-08 19:46:18','2018-06-05 11:58:02'),
(211,'catalog/journal3/products/appliances/toaster.jpg',205,0,1,0,1,'2018-05-08 19:46:46','2018-06-05 11:59:30'),
(213,'catalog/journal3/products/home/arm.jpg',175,0,1,0,1,'2018-05-12 11:26:37','2018-10-25 20:37:20'),
(215,'catalog/journal3/products/footwear/flip-flops.jpg',111,0,1,0,1,'2018-06-05 12:19:05','2018-06-05 12:19:05'),
(217,'catalog/journal3/products/baby/baby-cloth-clothing-color-41165.jpeg',166,0,1,0,1,'2018-06-05 13:22:15','2018-06-05 13:22:26'),
(218,'catalog/journal3/products/baby/pexels-photo-914253.jpeg',166,0,1,0,1,'2018-06-05 13:23:02','2018-06-05 13:23:02'),
(219,'catalog/demo/apple_cinema_30.jpg',28,0,1,0,1,'2018-07-08 13:45:10','2018-07-08 13:47:31'),
(220,'catalog/demo/apple_cinema_30.jpg',219,0,1,0,1,'2018-07-08 13:48:31','2018-07-08 13:48:31');
/*!40000 ALTER TABLE `oc_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_category_description`
--
DROP TABLE IF EXISTS `oc_category_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_category_description` (
`category_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`description` text NOT NULL,
`meta_title` varchar(255) NOT NULL,
`meta_description` varchar(255) NOT NULL,
`meta_keyword` varchar(255) NOT NULL,
PRIMARY KEY (`category_id`,`language_id`),
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_category_description`
--
LOCK TABLES `oc_category_description` WRITE;
/*!40000 ALTER TABLE `oc_category_description` DISABLE KEYS */;
INSERT INTO `oc_category_description` VALUES
(28,1,'Monitors','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Monitors','',''),
(32,1,'Web Cameras','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Web Cameras','',''),
(31,1,'Scanners','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Scanners','',''),
(30,1,'Printers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Printers','',''),
(26,1,'PC','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','PC','',''),
(20,1,'Desktops','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Desktops','Example of category description',''),
(34,1,'MP3 Players','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','MP3 Players','',''),
(18,1,'Laptops & Notebooks','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Laptops & Notebooks','',''),
(45,1,'Windows','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Windows','',''),
(46,1,'Macs','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Macs','',''),
(147,1,'Casual','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Casual','',''),
(35,1,'Subcategory','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Subcategory','',''),
(221,1,'Sports','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sports','',''),
(111,1,'Footwear','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Shoes','',''),
(213,1,'Armchair','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Armchair','',''),
(27,1,'Mac','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Mac','',''),
(110,1,'Jewelry','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Jewelry','',''),
(130,1,'Shirts','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Shirts','',''),
(129,1,'Sleeveless','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sleeveless','',''),
(127,1,'Summer','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Summer','',''),
(125,1,'Accessories','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Accessories','',''),
(124,1,'Mascara','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Mascara','',''),
(123,1,'Lipstick','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Lipstick','',''),
(122,1,'Spa','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Spa','',''),
(119,1,'Shoulder','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Shoulder','',''),
(118,1,'Formal','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Formal','',''),
(120,1,'Clutches','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Clutches','',''),
(121,1,'Purses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Purses','',''),
(117,1,'Bracelets','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Bracelets','',''),
(106,1,'Jackets','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Jackets','',''),
(107,1,'Bags','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Bags','',''),
(108,1,'Tops','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Tops','',''),
(114,1,'Necklaces','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Necklaces','',''),
(115,1,'Rings','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Rings','',''),
(116,1,'Hats','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Hats','',''),
(69,1,'Electronics','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Electronics','',''),
(219,1,'Large Screens','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','largescreens','',''),
(60,1,'Dresses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Dresses','',''),
(132,1,'Heels','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Heels','',''),
(133,1,'Flats','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Flats','',''),
(135,1,'Jeans','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Jeans','',''),
(136,1,'Leggings','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Leggings','',''),
(126,1,'Training','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Training','',''),
(137,1,'Formal','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Formal','',''),
(142,1,'Suit','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Suit','',''),
(143,1,'Leather','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Leather','',''),
(144,1,'Blazers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Blazers','',''),
(145,1,'Coats','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Coats','',''),
(146,1,'Earrings','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Earrings','',''),
(148,1,'Occasion','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Occasion','',''),
(149,1,'Evening','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Evening','',''),
(150,1,'Summer','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Summer','',''),
(154,1,'Skirt','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Skirt','',''),
(155,1,'Food','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Food','',''),
(164,1,'Body','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Body','',''),
(33,1,'Cameras','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Cameras','',''),
(220,1,'Macintosh','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','mac','',''),
(25,1,'Components','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Components','',''),
(24,1,'Phones & PDAs','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Phones & PDAs','',''),
(113,1,'Pants','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Pants','',''),
(151,1,'Scarves','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Scarves','',''),
(153,1,'Sunglasses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sunglasses','',''),
(176,2,'Lamps','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Lamps','',''),
(222,2,'Decor','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Decor','',''),
(156,1,'Breakfast','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Breakfast','',''),
(189,2,'Sofa','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sofa','',''),
(175,2,'Home Decor','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Home Decor','',''),
(157,1,'Dessert','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Dessert','',''),
(109,1,'Health & Beauty','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Beauty','',''),
(218,2,'Bath','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','bath','',''),
(158,1,'Grill','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Grill','',''),
(217,2,'Diepers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','diapers','',''),
(159,1,'Pasta','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Pasta','',''),
(199,2,'Lotus','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Lotus','',''),
(160,1,'Pizza','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Pizza','',''),
(197,2,'Sunflowers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sunflowers','',''),
(198,2,'Mixed Bouquets','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Mixed Bouquets','',''),
(161,1,'Salads','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Salads','',''),
(196,2,'Flowers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Flowers','',''),
(163,1,'Sushi','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sushi','',''),
(215,2,'Flip Flops','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','flips','',''),
(165,2,'Backpacks','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Backpacks','',''),
(105,2,'Accesories','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Accesories','',''),
(205,2,'Appliances','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Appliances','',''),
(134,2,'Running','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Running','',''),
(152,1,'Belts','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Belts','',''),
(131,2,'Trainers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Trainers','',''),
(166,1,'Baby & Kids','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Baby & Kids','',''),
(59,2,'Fashion','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Fashion','',''),
(112,2,'T-Shirts','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','TShirts','',''),
(167,1,'Fashion','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Fashion','',''),
(168,1,'Boys','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Boys','',''),
(211,2,'Toasters','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Toasters','',''),
(210,2,'Kettles','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Washers','',''),
(169,1,'Girls','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Girls','',''),
(214,2,'Shoes','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','shoes','',''),
(170,1,'Toys','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Toys','',''),
(171,1,'Baby Care','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Baby Care','',''),
(172,1,'Diapers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Diapers','',''),
(173,1,'Wipes','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Wipes','',''),
(174,1,'Bedding','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Bedding','',''),
(208,2,'Irons','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Dishwashers','',''),
(207,2,'Microwaves','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Microwaves','',''),
(206,2,'Refrigerators','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Refrigerators','',''),
(204,2,'Roses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Roses','',''),
(203,2,'Tulips','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Tulips','',''),
(216,2,'Makeup','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','makeup','',''),
(200,2,'Orchids','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Orchids','',''),
(174,2,'Bedding','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Bedding','',''),
(173,2,'Wipes','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Wipes','',''),
(172,2,'Diapers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Diapers','',''),
(171,2,'Baby Care','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Baby Care','',''),
(170,2,'Toys','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Toys','',''),
(169,2,'Girls','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Girls','',''),
(168,2,'Boys','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Boys','',''),
(167,2,'Fashion','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Fashion','',''),
(166,2,'Baby & Kids','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Baby & Kids','',''),
(152,2,'Belts','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Belts','',''),
(163,2,'Sushi','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sushi','',''),
(161,2,'Salads','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Salads','',''),
(160,2,'Pizza','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Pizza','',''),
(200,1,'Orchids','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Orchids','',''),
(159,2,'Pasta','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Pasta','',''),
(158,2,'Grill','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Grill','',''),
(216,1,'Makeup','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','makeup','',''),
(109,2,'Health & Beauty','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Beauty','',''),
(157,2,'Dessert','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Dessert','',''),
(203,1,'Tulips','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Tulips','',''),
(156,2,'Breakfast','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Breakfast','',''),
(153,2,'Sunglasses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sunglasses','',''),
(204,1,'Roses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Roses','',''),
(151,2,'Scarves','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Scarves','',''),
(206,1,'Refrigerators','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Refrigerators','',''),
(113,2,'Pants','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Pants','',''),
(24,2,'Phones & PDAs','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Phones & PDAs','',''),
(207,1,'Microwaves','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Microwaves','',''),
(25,2,'Components','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Components','',''),
(208,1,'Irons','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Dishwashers','',''),
(220,2,'Macintosh','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','mac','',''),
(33,2,'Cameras','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Cameras','',''),
(214,1,'Shoes','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','shoes','',''),
(164,2,'Body','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Body','',''),
(155,2,'Food','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Food','',''),
(210,1,'Kettles','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Washers','',''),
(154,2,'Skirt','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Skirt','',''),
(211,1,'Toasters','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Toasters','',''),
(150,2,'Summer','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Summer','',''),
(149,2,'Evening','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Evening','',''),
(148,2,'Occasion','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Occasion','',''),
(146,2,'Earrings','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Earrings','',''),
(112,1,'T-Shirts','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','TShirts','',''),
(145,2,'Coats','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Coats','',''),
(59,1,'Fashion','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Fashion','',''),
(144,2,'Blazers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Blazers','',''),
(131,1,'Trainers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Trainers','',''),
(143,2,'Leather','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Leather','',''),
(142,2,'Suit','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Suit','',''),
(134,1,'Running','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Running','',''),
(205,1,'Appliances','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Appliances','',''),
(137,2,'Formal','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Formal','',''),
(105,1,'Accesories','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Accesories','',''),
(126,2,'Training','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Training','',''),
(165,1,'Backpacks','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Backpacks','',''),
(136,2,'Leggings','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Leggings','',''),
(135,2,'Jeans','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Jeans','',''),
(215,1,'Flip Flops','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','flips','',''),
(133,2,'Flats','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Flats','',''),
(196,1,'Flowers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Flowers','',''),
(132,2,'Heels','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Heels','',''),
(198,1,'Mixed Bouquets','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Mixed Bouquets','',''),
(60,2,'Dresses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Dresses','',''),
(219,2,'Large Screens','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','largescreens','',''),
(197,1,'Sunflowers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sunflowers','',''),
(69,2,'Electronics','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Electronics','',''),
(116,2,'Hats','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Hats','',''),
(199,1,'Lotus','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Lotus','',''),
(115,2,'Rings','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Rings','',''),
(114,2,'Necklaces','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Necklaces','',''),
(217,1,'Diepers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','diapers','',''),
(108,2,'Tops','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Tops','',''),
(218,1,'Bath','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','bath','',''),
(107,2,'Bags','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Bags','',''),
(106,2,'Jackets','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Jackets','',''),
(117,2,'Bracelets','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Bracelets','',''),
(121,2,'Purses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Purses','',''),
(120,2,'Clutches','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Clutches','',''),
(118,2,'Formal','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Formal','',''),
(119,2,'Shoulder','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Shoulder','',''),
(122,2,'Spa','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Spa','',''),
(123,2,'Lipstick','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Lipstick','',''),
(124,2,'Mascara','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Mascara','',''),
(125,2,'Accessories','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Accessories','',''),
(127,2,'Summer','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Summer','',''),
(129,2,'Sleeveless','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sleeveless','',''),
(130,2,'Shirts','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Shirts','',''),
(110,2,'Jewelry','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Jewelry','',''),
(27,2,'Mac','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Mac','',''),
(213,2,'Armchair','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Armchair','',''),
(111,2,'Footwear','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Shoes','',''),
(221,2,'Sports','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sports','',''),
(35,2,'Subcategory','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Subcategory','',''),
(147,2,'Casual','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Casual','',''),
(46,2,'Macs','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Macs','',''),
(45,2,'Windows','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Windows','',''),
(18,2,'Laptops & Notebooks','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Laptops & Notebooks','',''),
(175,1,'Home Decor','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Home Decor','',''),
(189,1,'Sofa','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sofa','',''),
(34,2,'MP3 Players','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','MP3 Players','',''),
(222,1,'Decor','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Decor','',''),
(20,2,'Desktops','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Desktops','Example of category description',''),
(26,2,'PC','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','PC','',''),
(30,2,'Printers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Printers','',''),
(176,1,'Lamps','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Lamps','',''),
(31,2,'Scanners','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Scanners','',''),
(180,1,'Tables','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Tables','',''),
(32,2,'Web Cameras','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Web Cameras','',''),
(28,2,'Monitors','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Monitors','',''),
(180,2,'Tables','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Tables','',''),
(28,3,'Monitors','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Monitors','',''),
(32,3,'Web Cameras','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Web Cameras','',''),
(31,3,'Scanners','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Scanners','',''),
(30,3,'Printers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Printers','',''),
(26,3,'PC','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','PC','',''),
(20,3,'Desktops','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Desktops','Example of category description',''),
(34,3,'MP3 Players','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','MP3 Players','',''),
(18,3,'Laptops & Notebooks','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Laptops & Notebooks','',''),
(45,3,'Windows','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Windows','',''),
(46,3,'Macs','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Macs','',''),
(147,3,'Casual','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Casual','',''),
(35,3,'Subcategory','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Subcategory','',''),
(221,3,'Sports','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sports','',''),
(111,3,'Footwear','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Shoes','',''),
(213,3,'Armchair','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Armchair','',''),
(27,3,'Mac','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Mac','',''),
(110,3,'Jewelry','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Jewelry','',''),
(130,3,'Shirts','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Shirts','',''),
(129,3,'Sleeveless','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sleeveless','',''),
(127,3,'Summer','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Summer','',''),
(125,3,'Accessories','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Accessories','',''),
(124,3,'Mascara','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Mascara','',''),
(123,3,'Lipstick','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Lipstick','',''),
(122,3,'Spa','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Spa','',''),
(119,3,'Shoulder','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Shoulder','',''),
(118,3,'Formal','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Formal','',''),
(120,3,'Clutches','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Clutches','',''),
(121,3,'Purses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Purses','',''),
(117,3,'Bracelets','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Bracelets','',''),
(106,3,'Jackets','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Jackets','',''),
(107,3,'Bags','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Bags','',''),
(108,3,'Tops','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Tops','',''),
(114,3,'Necklaces','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Necklaces','',''),
(115,3,'Rings','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Rings','',''),
(116,3,'Hats','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Hats','',''),
(69,3,'Electronics','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Electronics','',''),
(219,3,'Large Screens','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','largescreens','',''),
(60,3,'Dresses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Dresses','',''),
(132,3,'Heels','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Heels','',''),
(133,3,'Flats','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Flats','',''),
(135,3,'Jeans','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Jeans','',''),
(136,3,'Leggings','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Leggings','',''),
(126,3,'Training','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Training','',''),
(137,3,'Formal','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Formal','',''),
(142,3,'Suit','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Suit','',''),
(143,3,'Leather','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Leather','',''),
(144,3,'Blazers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Blazers','',''),
(145,3,'Coats','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Coats','',''),
(146,3,'Earrings','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Earrings','',''),
(148,3,'Occasion','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Occasion','',''),
(149,3,'Evening','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Evening','',''),
(150,3,'Summer','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Summer','',''),
(154,3,'Skirt','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Skirt','',''),
(155,3,'Food','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Food','',''),
(164,3,'Body','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Body','',''),
(33,3,'Cameras','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Cameras','',''),
(220,3,'Macintosh','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','mac','',''),
(25,3,'Components','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Components','',''),
(24,3,'Phones & PDAs','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Phones & PDAs','',''),
(113,3,'Pants','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Pants','',''),
(151,3,'Scarves','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Scarves','',''),
(153,3,'Sunglasses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sunglasses','',''),
(156,3,'Breakfast','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Breakfast','',''),
(157,3,'Dessert','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Dessert','',''),
(109,3,'Health & Beauty','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Beauty','',''),
(158,3,'Grill','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Grill','',''),
(159,3,'Pasta','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Pasta','',''),
(160,3,'Pizza','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Pizza','',''),
(161,3,'Salads','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Salads','',''),
(163,3,'Sushi','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sushi','',''),
(152,3,'Belts','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Belts','',''),
(166,3,'Baby & Kids','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Baby & Kids','',''),
(167,3,'Fashion','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Fashion','',''),
(168,3,'Boys','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Boys','',''),
(169,3,'Girls','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Girls','',''),
(170,3,'Toys','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Toys','',''),
(171,3,'Baby Care','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Baby Care','',''),
(172,3,'Diapers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Diapers','',''),
(173,3,'Wipes','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Wipes','',''),
(174,3,'Bedding','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Bedding','',''),
(200,3,'Orchids','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Orchids','',''),
(216,3,'Makeup','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','makeup','',''),
(203,3,'Tulips','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Tulips','',''),
(204,3,'Roses','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Roses','',''),
(206,3,'Refrigerators','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Refrigerators','',''),
(207,3,'Microwaves','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Microwaves','',''),
(208,3,'Irons','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Dishwashers','',''),
(214,3,'Shoes','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','shoes','',''),
(210,3,'Kettles','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Washers','',''),
(211,3,'Toasters','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Toasters','',''),
(112,3,'T-Shirts','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','TShirts','',''),
(59,3,'Fashion','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Fashion','',''),
(131,3,'Trainers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Trainers','',''),
(134,3,'Running','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Running','',''),
(205,3,'Appliances','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Appliances','',''),
(105,3,'Accesories','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Accesories','',''),
(165,3,'Backpacks','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Backpacks','',''),
(215,3,'Flip Flops','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','flips','',''),
(196,3,'Flowers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Flowers','',''),
(198,3,'Mixed Bouquets','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Mixed Bouquets','',''),
(197,3,'Sunflowers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sunflowers','',''),
(199,3,'Lotus','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Lotus','',''),
(217,3,'Diepers','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','diapers','',''),
(218,3,'Bath','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','bath','',''),
(175,3,'Home Decor','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Home Decor','',''),
(189,3,'Sofa','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Sofa','',''),
(222,3,'Decor','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Decor','',''),
(176,3,'Lamps','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Lamps','',''),
(180,3,'Tables','<p>The <b>category description</b> can be positioned anywhere on the page via the layout page builder inside the Blocks module with full typography control and advanced container styling options.</p>\r\n\r\n<p>The <b>category image</b> can also be added to the Category layouts automatically via the Blocks module. This allows for more creative placements on the page. It can also be enabled/disabled on any device and comes with custom image dimensions, including fit or fill (crop) options for all system images such as products, categories, banners, sliders, etc.&nbsp;</p>\r\n\r\n<p><b>Advanced Product Filter</b> module included. This is the most comprehensive set of filtering tools rivaling the top paid extensions. It supports Opencart filters, price, availability, category, brands, options, attributes, tags, all included in the same Journal 3 package.</p>\r\n\r\n<p><b>Ajax Infinite Scroll</b> with Load More / Load Previous and browser <b>back button support.</b> Load products in category pages as you scroll down or by clicking the Load More button, or disable this feature entirely and display the default pagination.</p>\r\n','Tables','','');
/*!40000 ALTER TABLE `oc_category_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_category_filter`
--
DROP TABLE IF EXISTS `oc_category_filter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_category_filter` (
`category_id` int(11) NOT NULL,
`filter_id` int(11) NOT NULL,
PRIMARY KEY (`category_id`,`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_category_filter`
--
LOCK TABLES `oc_category_filter` WRITE;
/*!40000 ALTER TABLE `oc_category_filter` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_category_filter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_category_path`
--
DROP TABLE IF EXISTS `oc_category_path`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_category_path` (
`category_id` int(11) NOT NULL,
`path_id` int(11) NOT NULL,
`level` int(11) NOT NULL,
PRIMARY KEY (`category_id`,`path_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_category_path`
--
LOCK TABLES `oc_category_path` WRITE;
/*!40000 ALTER TABLE `oc_category_path` DISABLE KEYS */;
INSERT INTO `oc_category_path` VALUES
(25,25,1),
(28,28,2),
(28,25,1),
(35,35,2),
(35,20,1),
(33,69,0),
(60,59,0),
(60,60,1),
(59,59,0),
(30,30,2),
(30,25,1),
(31,31,2),
(31,25,1),
(32,32,2),
(32,25,1),
(20,20,1),
(27,27,2),
(27,20,1),
(26,26,2),
(26,20,1),
(24,24,1),
(18,18,1),
(45,45,2),
(45,18,1),
(46,46,2),
(46,18,1),
(33,33,1),
(34,34,1),
(24,69,0),
(34,69,0),
(46,69,0),
(45,69,0),
(18,69,0),
(26,69,0),
(27,69,0),
(20,69,0),
(32,69,0),
(31,69,0),
(30,69,0),
(35,69,0),
(28,69,0),
(25,69,0),
(69,69,0),
(174,171,1),
(105,59,0),
(106,106,2),
(106,108,1),
(219,69,0),
(107,107,0),
(108,108,1),
(108,59,0),
(170,166,0),
(109,109,0),
(171,171,1),
(110,59,0),
(168,167,1),
(111,111,0),
(112,112,1),
(112,59,0),
(113,113,1),
(113,59,0),
(171,166,0),
(114,114,3),
(114,105,1),
(172,172,2),
(115,115,3),
(115,105,1),
(116,105,1),
(172,171,1),
(116,59,0),
(117,117,3),
(172,166,0),
(117,105,1),
(118,107,0),
(118,118,1),
(219,28,2),
(119,119,1),
(119,107,0),
(219,219,3),
(120,120,1),
(120,107,0),
(219,25,1),
(121,107,0),
(121,121,1),
(165,165,1),
(122,109,0),
(170,170,1),
(122,122,1),
(123,109,0),
(169,166,0),
(123,123,1),
(124,109,0),
(169,167,1),
(124,124,1),
(169,169,2),
(125,109,0),
(125,125,1),
(126,113,1),
(126,59,0),
(126,126,2),
(127,59,0),
(127,108,1),
(127,127,2),
(215,215,1),
(220,28,2),
(215,111,0),
(129,129,2),
(130,59,0),
(130,130,2),
(130,108,1),
(131,131,1),
(168,168,2),
(131,111,0),
(132,111,0),
(167,166,0),
(132,132,1),
(133,111,0),
(167,167,1),
(133,133,1),
(134,111,0),
(166,166,0),
(134,134,1),
(135,59,0),
(135,135,2),
(135,113,1),
(136,59,0),
(136,113,1),
(136,136,2),
(129,59,0),
(129,108,1),
(137,59,0),
(137,137,2),
(137,113,1),
(220,220,4),
(220,25,1),
(220,219,3),
(220,69,0),
(142,106,2),
(142,142,3),
(142,59,0),
(143,106,2),
(143,143,3),
(143,59,0),
(144,106,2),
(144,144,3),
(144,59,0),
(145,106,2),
(145,145,3),
(145,59,0),
(146,105,1),
(146,146,3),
(173,173,2),
(147,60,1),
(147,147,2),
(147,59,0),
(148,59,0),
(148,148,2),
(148,60,1),
(149,59,0),
(149,149,2),
(149,60,1),
(150,59,0),
(150,150,2),
(150,60,1),
(151,59,0),
(173,171,1),
(151,105,1),
(152,105,1),
(173,166,0),
(152,59,0),
(174,174,2),
(153,59,0),
(153,153,2),
(154,154,2),
(154,59,0),
(154,60,1),
(155,155,0),
(156,156,1),
(156,155,0),
(157,157,1),
(157,155,0),
(158,158,1),
(158,155,0),
(159,159,1),
(159,155,0),
(160,160,1),
(160,155,0),
(161,161,1),
(161,155,0),
(217,166,0),
(216,216,1),
(163,163,1),
(163,155,0),
(106,59,0),
(142,108,1),
(143,108,1),
(144,108,1),
(145,108,1),
(110,110,2),
(114,59,0),
(115,59,0),
(117,59,0),
(146,59,0),
(168,166,0),
(164,109,0),
(164,164,1),
(165,107,0),
(174,166,0),
(175,175,0),
(176,176,1),
(176,175,0),
(222,222,1),
(222,175,0),
(180,180,1),
(180,175,0),
(189,189,1),
(189,175,0),
(196,196,0),
(197,197,1),
(197,196,0),
(198,198,1),
(198,196,0),
(199,199,1),
(199,196,0),
(200,200,1),
(200,196,0),
(218,218,1),
(217,217,1),
(218,166,0),
(216,109,0),
(203,203,1),
(203,196,0),
(204,204,1),
(204,196,0),
(205,205,0),
(206,206,1),
(206,205,0),
(207,207,1),
(207,205,0),
(208,208,1),
(208,205,0),
(214,111,0),
(214,214,1),
(210,210,1),
(210,205,0),
(211,211,1),
(211,205,0),
(110,105,1),
(114,110,2),
(115,110,2),
(116,116,2),
(117,110,2),
(146,110,2),
(151,151,2),
(152,152,2),
(153,105,1),
(105,105,1),
(213,175,0),
(213,213,1),
(221,221,0);
/*!40000 ALTER TABLE `oc_category_path` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_category_to_layout`
--
DROP TABLE IF EXISTS `oc_category_to_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_category_to_layout` (
`category_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`layout_id` int(11) NOT NULL,
PRIMARY KEY (`category_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_category_to_layout`
--
LOCK TABLES `oc_category_to_layout` WRITE;
/*!40000 ALTER TABLE `oc_category_to_layout` DISABLE KEYS */;
INSERT INTO `oc_category_to_layout` VALUES
(25,0,0),
(69,0,0),
(59,0,0),
(156,0,0),
(155,0,0),
(168,0,0),
(105,0,0),
(107,0,0),
(109,0,0),
(167,0,0),
(60,0,0),
(112,0,0),
(113,0,0),
(111,0,0),
(166,0,0),
(27,0,0),
(108,0,0),
(147,0,0),
(152,0,0),
(116,0,0),
(110,0,0),
(151,0,0),
(153,0,0),
(117,0,0),
(146,0,0),
(114,0,0),
(115,0,0),
(120,0,0),
(118,0,0),
(121,0,0),
(119,0,0),
(125,0,0),
(123,0,0),
(122,0,0),
(124,0,0),
(164,0,0),
(149,0,0),
(148,0,0),
(154,0,0),
(150,0,0),
(137,0,0),
(135,0,0),
(136,0,0),
(220,0,0),
(126,0,0),
(131,0,0),
(132,0,0),
(134,0,0),
(133,0,0),
(219,0,0),
(130,0,0),
(24,0,0),
(106,0,0),
(160,0,0),
(144,0,0),
(159,0,0),
(145,0,0),
(158,0,0),
(143,0,0),
(33,0,0),
(142,0,0),
(218,0,0),
(217,0,0),
(163,0,0),
(129,0,0),
(161,0,0),
(127,0,0),
(215,0,0),
(165,0,0),
(169,0,0),
(170,0,0),
(171,0,0),
(172,0,0),
(173,0,0),
(174,0,0),
(175,0,0),
(176,0,0),
(222,0,0),
(180,0,0),
(189,0,0),
(196,0,0),
(197,0,0),
(198,0,0),
(199,0,0),
(200,0,0),
(157,0,0),
(216,0,0),
(203,0,0),
(204,0,0),
(205,0,0),
(206,0,0),
(207,0,0),
(208,0,0),
(214,0,0),
(210,0,0),
(211,0,0),
(213,0,0),
(221,0,0);
/*!40000 ALTER TABLE `oc_category_to_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_category_to_store`
--
DROP TABLE IF EXISTS `oc_category_to_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_category_to_store` (
`category_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
PRIMARY KEY (`category_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_category_to_store`
--
LOCK TABLES `oc_category_to_store` WRITE;
/*!40000 ALTER TABLE `oc_category_to_store` DISABLE KEYS */;
INSERT INTO `oc_category_to_store` VALUES
(18,0),
(20,0),
(24,0),
(25,0),
(26,0),
(27,0),
(28,0),
(30,0),
(31,0),
(32,0),
(33,0),
(34,0),
(35,0),
(45,0),
(46,0),
(59,0),
(60,0),
(69,0),
(105,0),
(106,0),
(107,0),
(108,0),
(109,0),
(110,0),
(111,0),
(112,0),
(113,0),
(114,0),
(115,0),
(116,0),
(117,0),
(118,0),
(119,0),
(120,0),
(121,0),
(122,0),
(123,0),
(124,0),
(125,0),
(126,0),
(127,0),
(129,0),
(130,0),
(131,0),
(132,0),
(133,0),
(134,0),
(135,0),
(136,0),
(137,0),
(142,0),
(143,0),
(144,0),
(145,0),
(146,0),
(147,0),
(148,0),
(149,0),
(150,0),
(151,0),
(152,0),
(153,0),
(154,0),
(155,0),
(156,0),
(157,0),
(158,0),
(159,0),
(160,0),
(161,0),
(163,0),
(164,0),
(165,0),
(166,0),
(167,0),
(168,0),
(169,0),
(170,0),
(171,0),
(172,0),
(173,0),
(174,0),
(175,0),
(176,0),
(180,0),
(189,0),
(196,0),
(197,0),
(198,0),
(199,0),
(200,0),
(203,0),
(204,0),
(205,0),
(206,0),
(207,0),
(208,0),
(210,0),
(211,0),
(213,0),
(214,0),
(215,0),
(216,0),
(217,0),
(218,0),
(219,0),
(220,0),
(221,0),
(222,0);
/*!40000 ALTER TABLE `oc_category_to_store` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_country`
--
DROP TABLE IF EXISTS `oc_country`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_country` (
`country_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`iso_code_2` varchar(2) NOT NULL,
`iso_code_3` varchar(3) NOT NULL,
`address_format` text NOT NULL,
`postcode_required` tinyint(1) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`country_id`)
) ENGINE=MyISAM AUTO_INCREMENT=258 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_country`
--
LOCK TABLES `oc_country` WRITE;
/*!40000 ALTER TABLE `oc_country` DISABLE KEYS */;
INSERT INTO `oc_country` VALUES
(1,'Afghanistan','AF','AFG','',0,1),
(2,'Albania','AL','ALB','',0,1),
(3,'Algeria','DZ','DZA','',0,1),
(4,'American Samoa','AS','ASM','',0,1),
(5,'Andorra','AD','AND','',0,1),
(6,'Angola','AO','AGO','',0,1),
(7,'Anguilla','AI','AIA','',0,1),
(8,'Antarctica','AQ','ATA','',0,1),
(9,'Antigua and Barbuda','AG','ATG','',0,1),
(10,'Argentina','AR','ARG','',0,1),
(11,'Armenia','AM','ARM','',0,1),
(12,'Aruba','AW','ABW','',0,1),
(13,'Australia','AU','AUS','',0,1),
(14,'Austria','AT','AUT','',0,1),
(15,'Azerbaijan','AZ','AZE','',0,1),
(16,'Bahamas','BS','BHS','',0,1),
(17,'Bahrain','BH','BHR','',0,1),
(18,'Bangladesh','BD','BGD','',0,1),
(19,'Barbados','BB','BRB','',0,1),
(20,'Belarus','BY','BLR','',0,1),
(21,'Belgium','BE','BEL','{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}',0,1),
(22,'Belize','BZ','BLZ','',0,1),
(23,'Benin','BJ','BEN','',0,1),
(24,'Bermuda','BM','BMU','',0,1),
(25,'Bhutan','BT','BTN','',0,1),
(26,'Bolivia','BO','BOL','',0,1),
(27,'Bosnia and Herzegovina','BA','BIH','',0,1),
(28,'Botswana','BW','BWA','',0,1),
(29,'Bouvet Island','BV','BVT','',0,1),
(30,'Brazil','BR','BRA','',0,1),
(31,'British Indian Ocean Territory','IO','IOT','',0,1),
(32,'Brunei Darussalam','BN','BRN','',0,1),
(33,'Bulgaria','BG','BGR','',0,1),
(34,'Burkina Faso','BF','BFA','',0,1),
(35,'Burundi','BI','BDI','',0,1),
(36,'Cambodia','KH','KHM','',0,1),
(37,'Cameroon','CM','CMR','',0,1),
(38,'Canada','CA','CAN','',0,1),
(39,'Cape Verde','CV','CPV','',0,1),
(40,'Cayman Islands','KY','CYM','',0,1),
(41,'Central African Republic','CF','CAF','',0,1),
(42,'Chad','TD','TCD','',0,1),
(43,'Chile','CL','CHL','',0,1),
(44,'China','CN','CHN','',0,1),
(45,'Christmas Island','CX','CXR','',0,1),
(46,'Cocos (Keeling) Islands','CC','CCK','',0,1),
(47,'Colombia','CO','COL','',0,1),
(48,'Comoros','KM','COM','',0,1),
(49,'Congo','CG','COG','',0,1),
(50,'Cook Islands','CK','COK','',0,1),
(51,'Costa Rica','CR','CRI','',0,1),
(52,'Cote D\'Ivoire','CI','CIV','',0,1),
(53,'Croatia','HR','HRV','',0,1),
(54,'Cuba','CU','CUB','',0,1),
(55,'Cyprus','CY','CYP','',0,1),
(56,'Czech Republic','CZ','CZE','',0,1),
(57,'Denmark','DK','DNK','',0,1),
(58,'Djibouti','DJ','DJI','',0,1),
(59,'Dominica','DM','DMA','',0,1),
(60,'Dominican Republic','DO','DOM','',0,1),
(61,'East Timor','TL','TLS','',0,1),
(62,'Ecuador','EC','ECU','',0,1),
(63,'Egypt','EG','EGY','',0,1),
(64,'El Salvador','SV','SLV','',0,1),
(65,'Equatorial Guinea','GQ','GNQ','',0,1),
(66,'Eritrea','ER','ERI','',0,1),
(67,'Estonia','EE','EST','',0,1),
(68,'Ethiopia','ET','ETH','',0,1),
(69,'Falkland Islands (Malvinas)','FK','FLK','',0,1),
(70,'Faroe Islands','FO','FRO','',0,1),
(71,'Fiji','FJ','FJI','',0,1),
(72,'Finland','FI','FIN','',0,1),
(74,'France, Metropolitan','FR','FRA','{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}',1,1),
(75,'French Guiana','GF','GUF','',0,1),
(76,'French Polynesia','PF','PYF','',0,1),
(77,'French Southern Territories','TF','ATF','',0,1),
(78,'Gabon','GA','GAB','',0,1),
(79,'Gambia','GM','GMB','',0,1),
(80,'Georgia','GE','GEO','',0,1),
(81,'Germany','DE','DEU','{company}\r\n{firstname} {lastname}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}',1,1),
(82,'Ghana','GH','GHA','',0,1),
(83,'Gibraltar','GI','GIB','',0,1),
(84,'Greece','GR','GRC','',0,1),
(85,'Greenland','GL','GRL','',0,1),
(86,'Grenada','GD','GRD','',0,1),
(87,'Guadeloupe','GP','GLP','',0,1),
(88,'Guam','GU','GUM','',0,1),
(89,'Guatemala','GT','GTM','',0,1),
(90,'Guinea','GN','GIN','',0,1),
(91,'Guinea-Bissau','GW','GNB','',0,1),
(92,'Guyana','GY','GUY','',0,1),
(93,'Haiti','HT','HTI','',0,1),
(94,'Heard and Mc Donald Islands','HM','HMD','',0,1),
(95,'Honduras','HN','HND','',0,1),
(96,'Hong Kong','HK','HKG','',0,1),
(97,'Hungary','HU','HUN','',0,1),
(98,'Iceland','IS','ISL','',0,1),
(99,'India','IN','IND','',0,1),
(100,'Indonesia','ID','IDN','',0,1),
(101,'Iran (Islamic Republic of)','IR','IRN','',0,1),
(102,'Iraq','IQ','IRQ','',0,1),
(103,'Ireland','IE','IRL','',0,1),
(104,'Israel','IL','ISR','',0,1),
(105,'Italy','IT','ITA','',0,1),
(106,'Jamaica','JM','JAM','',0,1),
(107,'Japan','JP','JPN','',0,1),
(108,'Jordan','JO','JOR','',0,1),
(109,'Kazakhstan','KZ','KAZ','',0,1),
(110,'Kenya','KE','KEN','',0,1),
(111,'Kiribati','KI','KIR','',0,1),
(112,'North Korea','KP','PRK','',0,1),
(113,'South Korea','KR','KOR','',0,1),
(114,'Kuwait','KW','KWT','',0,1),
(115,'Kyrgyzstan','KG','KGZ','',0,1),
(116,'Lao People\'s Democratic Republic','LA','LAO','',0,1),
(117,'Latvia','LV','LVA','',0,1),
(118,'Lebanon','LB','LBN','',0,1),
(119,'Lesotho','LS','LSO','',0,1),
(120,'Liberia','LR','LBR','',0,1),
(121,'Libyan Arab Jamahiriya','LY','LBY','',0,1),
(122,'Liechtenstein','LI','LIE','',0,1),
(123,'Lithuania','LT','LTU','',0,1),
(124,'Luxembourg','LU','LUX','',0,1),
(125,'Macau','MO','MAC','',0,1),
(126,'FYROM','MK','MKD','',0,1),
(127,'Madagascar','MG','MDG','',0,1),
(128,'Malawi','MW','MWI','',0,1),
(129,'Malaysia','MY','MYS','',0,1),
(130,'Maldives','MV','MDV','',0,1),
(131,'Mali','ML','MLI','',0,1),
(132,'Malta','MT','MLT','',0,1),
(133,'Marshall Islands','MH','MHL','',0,1),
(134,'Martinique','MQ','MTQ','',0,1),
(135,'Mauritania','MR','MRT','',0,1),
(136,'Mauritius','MU','MUS','',0,1),
(137,'Mayotte','YT','MYT','',0,1),
(138,'Mexico','MX','MEX','',0,1),
(139,'Micronesia, Federated States of','FM','FSM','',0,1),
(140,'Moldova, Republic of','MD','MDA','',0,1),
(141,'Monaco','MC','MCO','',0,1),
(142,'Mongolia','MN','MNG','',0,1),
(143,'Montserrat','MS','MSR','',0,1),
(144,'Morocco','MA','MAR','',0,1),
(145,'Mozambique','MZ','MOZ','',0,1),
(146,'Myanmar','MM','MMR','',0,1),
(147,'Namibia','NA','NAM','',0,1),
(148,'Nauru','NR','NRU','',0,1),
(149,'Nepal','NP','NPL','',0,1),
(150,'Netherlands','NL','NLD','',0,1),
(151,'Netherlands Antilles','AN','ANT','',0,1),
(152,'New Caledonia','NC','NCL','',0,1),
(153,'New Zealand','NZ','NZL','',0,1),
(154,'Nicaragua','NI','NIC','',0,1),
(155,'Niger','NE','NER','',0,1),
(156,'Nigeria','NG','NGA','',0,1),
(157,'Niue','NU','NIU','',0,1),
(158,'Norfolk Island','NF','NFK','',0,1),
(159,'Northern Mariana Islands','MP','MNP','',0,1),
(160,'Norway','NO','NOR','',0,1),
(161,'Oman','OM','OMN','',0,1),
(162,'Pakistan','PK','PAK','',0,1),
(163,'Palau','PW','PLW','',0,1),
(164,'Panama','PA','PAN','',0,1),
(165,'Papua New Guinea','PG','PNG','',0,1),
(166,'Paraguay','PY','PRY','',0,1),
(167,'Peru','PE','PER','',0,1),
(168,'Philippines','PH','PHL','',0,1),
(169,'Pitcairn','PN','PCN','',0,1),
(170,'Poland','PL','POL','',0,1),
(171,'Portugal','PT','PRT','',0,1),
(172,'Puerto Rico','PR','PRI','',0,1),
(173,'Qatar','QA','QAT','',0,1),
(174,'Reunion','RE','REU','',0,1),
(175,'Romania','RO','ROM','',0,1),
(176,'Russian Federation','RU','RUS','',0,1),
(177,'Rwanda','RW','RWA','',0,1),
(178,'Saint Kitts and Nevis','KN','KNA','',0,1),
(179,'Saint Lucia','LC','LCA','',0,1),
(180,'Saint Vincent and the Grenadines','VC','VCT','',0,1),
(181,'Samoa','WS','WSM','',0,1),
(182,'San Marino','SM','SMR','',0,1),
(183,'Sao Tome and Principe','ST','STP','',0,1),
(184,'Saudi Arabia','SA','SAU','',0,1),
(185,'Senegal','SN','SEN','',0,1),
(186,'Seychelles','SC','SYC','',0,1),
(187,'Sierra Leone','SL','SLE','',0,1),
(188,'Singapore','SG','SGP','',0,1),
(189,'Slovak Republic','SK','SVK','{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{city} {postcode}\r\n{zone}\r\n{country}',0,1),
(190,'Slovenia','SI','SVN','',0,1),
(191,'Solomon Islands','SB','SLB','',0,1),
(192,'Somalia','SO','SOM','',0,1),
(193,'South Africa','ZA','ZAF','',0,1),
(194,'South Georgia & South Sandwich Islands','GS','SGS','',0,1),
(195,'Spain','ES','ESP','',0,1),
(196,'Sri Lanka','LK','LKA','',0,1),
(197,'St. Helena','SH','SHN','',0,1),
(198,'St. Pierre and Miquelon','PM','SPM','',0,1),
(199,'Sudan','SD','SDN','',0,1),
(200,'Suriname','SR','SUR','',0,1),
(201,'Svalbard and Jan Mayen Islands','SJ','SJM','',0,1),
(202,'Swaziland','SZ','SWZ','',0,1),
(203,'Sweden','SE','SWE','{company}\r\n{firstname} {lastname}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}',1,1),
(204,'Switzerland','CH','CHE','',0,1),
(205,'Syrian Arab Republic','SY','SYR','',0,1),
(206,'Taiwan','TW','TWN','',0,1),
(207,'Tajikistan','TJ','TJK','',0,1),
(208,'Tanzania, United Republic of','TZ','TZA','',0,1),
(209,'Thailand','TH','THA','',0,1),
(210,'Togo','TG','TGO','',0,1),
(211,'Tokelau','TK','TKL','',0,1),
(212,'Tonga','TO','TON','',0,1),
(213,'Trinidad and Tobago','TT','TTO','',0,1),
(214,'Tunisia','TN','TUN','',0,1),
(215,'Türkiye','TR','TUR','{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{postcode}, {city} - {zone} / {country}',0,1),
(216,'Turkmenistan','TM','TKM','',0,1),
(217,'Turks and Caicos Islands','TC','TCA','',0,1),
(218,'Tuvalu','TV','TUV','',0,1),
(219,'Uganda','UG','UGA','',0,1),
(220,'Ukraine','UA','UKR','',0,1),
(221,'United Arab Emirates','AE','ARE','',0,1),
(222,'United Kingdom','GB','GBR','',1,1),
(223,'United States','US','USA','{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{city}, {zone} {postcode}\r\n{country}',0,1),
(224,'United States Minor Outlying Islands','UM','UMI','',0,1),
(225,'Uruguay','UY','URY','',0,1),
(226,'Uzbekistan','UZ','UZB','',0,1),
(227,'Vanuatu','VU','VUT','',0,1),
(228,'Vatican City State (Holy See)','VA','VAT','',0,1),
(229,'Venezuela','VE','VEN','',0,1),
(230,'Viet Nam','VN','VNM','',0,1),
(231,'Virgin Islands (British)','VG','VGB','',0,1),
(232,'Virgin Islands (U.S.)','VI','VIR','',0,1),
(233,'Wallis and Futuna Islands','WF','WLF','',0,1),
(234,'Western Sahara','EH','ESH','',0,1),
(235,'Yemen','YE','YEM','',0,1),
(237,'Democratic Republic of Congo','CD','COD','',0,1),
(238,'Zambia','ZM','ZMB','',0,1),
(239,'Zimbabwe','ZW','ZWE','',0,1),
(242,'Montenegro','ME','MNE','',0,1),
(243,'Serbia','RS','SRB','',0,1),
(244,'Aaland Islands','AX','ALA','',0,1),
(245,'Bonaire, Sint Eustatius and Saba','BQ','BES','',0,1),
(246,'Curacao','CW','CUW','',0,1),
(247,'Palestinian Territory, Occupied','PS','PSE','',0,1),
(248,'South Sudan','SS','SSD','',0,1),
(249,'St. Barthelemy','BL','BLM','',0,1),
(250,'St. Martin (French part)','MF','MAF','',0,1),
(251,'Canary Islands','IC','ICA','',0,1),
(252,'Ascension Island (British)','AC','ASC','',0,1),
(253,'Kosovo, Republic of','XK','UNK','',0,1),
(254,'Isle of Man','IM','IMN','',0,1),
(255,'Tristan da Cunha','TA','SHN','',0,1),
(256,'Guernsey','GG','GGY','',0,1),
(257,'Jersey','JE','JEY','',0,1);
/*!40000 ALTER TABLE `oc_country` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_coupon`
--
DROP TABLE IF EXISTS `oc_coupon`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_coupon` (
`coupon_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`code` varchar(20) NOT NULL,
`type` char(1) NOT NULL,
`discount` decimal(15,4) NOT NULL,
`logged` tinyint(1) NOT NULL,
`shipping` tinyint(1) NOT NULL,
`total` decimal(15,4) NOT NULL,
`date_start` date NOT NULL DEFAULT '0000-00-00',
`date_end` date NOT NULL DEFAULT '0000-00-00',
`uses_total` int(11) NOT NULL,
`uses_customer` varchar(11) NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`coupon_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_coupon`
--
LOCK TABLES `oc_coupon` WRITE;
/*!40000 ALTER TABLE `oc_coupon` DISABLE KEYS */;
INSERT INTO `oc_coupon` VALUES
(1,'-10% İndirim','2222','P',10.0000,0,0,0.0000,'2014-01-01','2020-01-01',10,'10',0,'2009-01-27 13:55:03'),
(2,'Ücretsiz Kargo','3333','P',0.0000,0,1,100.0000,'2014-01-01','2020-01-31',10,'10',0,'2009-03-14 21:13:53'),
(3,'-10.00 İndirim','1111','F',10.0000,0,0,10.0000,'2014-01-01','2020-01-01',100000,'10000',0,'2009-03-14 21:15:18');
/*!40000 ALTER TABLE `oc_coupon` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_coupon_category`
--
DROP TABLE IF EXISTS `oc_coupon_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_coupon_category` (
`coupon_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
PRIMARY KEY (`coupon_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_coupon_category`
--
LOCK TABLES `oc_coupon_category` WRITE;
/*!40000 ALTER TABLE `oc_coupon_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_coupon_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_coupon_history`
--
DROP TABLE IF EXISTS `oc_coupon_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_coupon_history` (
`coupon_history_id` int(11) NOT NULL AUTO_INCREMENT,
`coupon_id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`customer_id` int(11) NOT NULL,
`amount` decimal(15,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`coupon_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_coupon_history`
--
LOCK TABLES `oc_coupon_history` WRITE;
/*!40000 ALTER TABLE `oc_coupon_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_coupon_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_coupon_product`
--
DROP TABLE IF EXISTS `oc_coupon_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_coupon_product` (
`coupon_product_id` int(11) NOT NULL AUTO_INCREMENT,
`coupon_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
PRIMARY KEY (`coupon_product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_coupon_product`
--
LOCK TABLES `oc_coupon_product` WRITE;
/*!40000 ALTER TABLE `oc_coupon_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_coupon_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_currency`
--
DROP TABLE IF EXISTS `oc_currency`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_currency` (
`currency_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(32) NOT NULL,
`code` varchar(3) NOT NULL,
`symbol_left` varchar(12) NOT NULL,
`symbol_right` varchar(12) NOT NULL,
`decimal_place` char(1) NOT NULL,
`value` double(15,8) NOT NULL,
`status` tinyint(1) NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`currency_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_currency`
--
LOCK TABLES `oc_currency` WRITE;
/*!40000 ALTER TABLE `oc_currency` DISABLE KEYS */;
INSERT INTO `oc_currency` VALUES
(1,'Türk Lirası','TRY','','TL','2',1.00000000,1,'2025-02-12 23:01:28'),
(2,'US Dollar','USD','$','','2',0.33280000,1,'2015-09-20 14:30:52'),
(3,'Euro','EUR','','€','2',0.29429999,1,'2015-09-20 14:30:52');
/*!40000 ALTER TABLE `oc_currency` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_custom_field`
--
DROP TABLE IF EXISTS `oc_custom_field`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_custom_field` (
`custom_field_id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(32) NOT NULL,
`value` text NOT NULL,
`validation` varchar(255) NOT NULL,
`location` varchar(10) NOT NULL,
`status` tinyint(1) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`custom_field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_custom_field`
--
LOCK TABLES `oc_custom_field` WRITE;
/*!40000 ALTER TABLE `oc_custom_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_custom_field` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_custom_field_customer_group`
--
DROP TABLE IF EXISTS `oc_custom_field_customer_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_custom_field_customer_group` (
`custom_field_id` int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
`required` tinyint(1) NOT NULL,
PRIMARY KEY (`custom_field_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_custom_field_customer_group`
--
LOCK TABLES `oc_custom_field_customer_group` WRITE;
/*!40000 ALTER TABLE `oc_custom_field_customer_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_custom_field_customer_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_custom_field_description`
--
DROP TABLE IF EXISTS `oc_custom_field_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_custom_field_description` (
`custom_field_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY (`custom_field_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_custom_field_description`
--
LOCK TABLES `oc_custom_field_description` WRITE;
/*!40000 ALTER TABLE `oc_custom_field_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_custom_field_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_custom_field_value`
--
DROP TABLE IF EXISTS `oc_custom_field_value`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_custom_field_value` (
`custom_field_value_id` int(11) NOT NULL AUTO_INCREMENT,
`custom_field_id` int(11) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`custom_field_value_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_custom_field_value`
--
LOCK TABLES `oc_custom_field_value` WRITE;
/*!40000 ALTER TABLE `oc_custom_field_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_custom_field_value` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_custom_field_value_description`
--
DROP TABLE IF EXISTS `oc_custom_field_value_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_custom_field_value_description` (
`custom_field_value_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`custom_field_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY (`custom_field_value_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_custom_field_value_description`
--
LOCK TABLES `oc_custom_field_value_description` WRITE;
/*!40000 ALTER TABLE `oc_custom_field_value_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_custom_field_value_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer`
--
DROP TABLE IF EXISTS `oc_customer`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer` (
`customer_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_group_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL DEFAULT 0,
`language_id` int(11) NOT NULL,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`telephone` varchar(32) NOT NULL,
`fax` varchar(32) NOT NULL,
`password` varchar(40) NOT NULL,
`salt` varchar(9) NOT NULL,
`cart` text DEFAULT NULL,
`wishlist` text DEFAULT NULL,
`newsletter` tinyint(1) NOT NULL DEFAULT 0,
`address_id` int(11) NOT NULL DEFAULT 0,
`custom_field` text NOT NULL,
`ip` varchar(40) NOT NULL,
`status` tinyint(1) NOT NULL,
`safe` tinyint(1) NOT NULL,
`token` text NOT NULL,
`code` varchar(40) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer`
--
LOCK TABLES `oc_customer` WRITE;
/*!40000 ALTER TABLE `oc_customer` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_activity`
--
DROP TABLE IF EXISTS `oc_customer_activity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_activity` (
`customer_activity_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`key` varchar(64) NOT NULL,
`data` text NOT NULL,
`ip` varchar(40) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_activity_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_activity`
--
LOCK TABLES `oc_customer_activity` WRITE;
/*!40000 ALTER TABLE `oc_customer_activity` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_activity` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_affiliate`
--
DROP TABLE IF EXISTS `oc_customer_affiliate`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_affiliate` (
`customer_id` int(11) NOT NULL,
`company` varchar(40) NOT NULL,
`website` varchar(255) NOT NULL,
`tracking` varchar(64) NOT NULL,
`commission` decimal(4,2) NOT NULL DEFAULT 0.00,
`tax` varchar(64) NOT NULL,
`payment` varchar(6) NOT NULL,
`cheque` varchar(100) NOT NULL,
`paypal` varchar(64) NOT NULL,
`bank_name` varchar(64) NOT NULL,
`bank_branch_number` varchar(64) NOT NULL,
`bank_swift_code` varchar(64) NOT NULL,
`bank_account_name` varchar(64) NOT NULL,
`bank_account_number` varchar(64) NOT NULL,
`custom_field` text NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_affiliate`
--
LOCK TABLES `oc_customer_affiliate` WRITE;
/*!40000 ALTER TABLE `oc_customer_affiliate` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_affiliate` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_approval`
--
DROP TABLE IF EXISTS `oc_customer_approval`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_approval` (
`customer_approval_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`type` varchar(9) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_approval_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_approval`
--
LOCK TABLES `oc_customer_approval` WRITE;
/*!40000 ALTER TABLE `oc_customer_approval` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_approval` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_group`
--
DROP TABLE IF EXISTS `oc_customer_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_group` (
`customer_group_id` int(11) NOT NULL AUTO_INCREMENT,
`approval` int(1) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`customer_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_group`
--
LOCK TABLES `oc_customer_group` WRITE;
/*!40000 ALTER TABLE `oc_customer_group` DISABLE KEYS */;
INSERT INTO `oc_customer_group` VALUES
(1,0,1),
(2,0,2);
/*!40000 ALTER TABLE `oc_customer_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_group_description`
--
DROP TABLE IF EXISTS `oc_customer_group_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_group_description` (
`customer_group_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (`customer_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_group_description`
--
LOCK TABLES `oc_customer_group_description` WRITE;
/*!40000 ALTER TABLE `oc_customer_group_description` DISABLE KEYS */;
INSERT INTO `oc_customer_group_description` VALUES
(1,1,'Bireysel','Bireysel müşteriler bu grubu seçerek kayıt olabilirler.'),
(2,1,'Kurumsal','Kurumsal müşteriler bu grubu seçerek kayıt olabilirler.');
/*!40000 ALTER TABLE `oc_customer_group_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_history`
--
DROP TABLE IF EXISTS `oc_customer_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_history` (
`customer_history_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`comment` text NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_history`
--
LOCK TABLES `oc_customer_history` WRITE;
/*!40000 ALTER TABLE `oc_customer_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_ip`
--
DROP TABLE IF EXISTS `oc_customer_ip`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_ip` (
`customer_ip_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`ip` varchar(40) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_ip_id`),
KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_ip`
--
LOCK TABLES `oc_customer_ip` WRITE;
/*!40000 ALTER TABLE `oc_customer_ip` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_ip` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_login`
--
DROP TABLE IF EXISTS `oc_customer_login`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_login` (
`customer_login_id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(96) NOT NULL,
`ip` varchar(40) NOT NULL,
`total` int(4) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`customer_login_id`),
KEY `email` (`email`),
KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_login`
--
LOCK TABLES `oc_customer_login` WRITE;
/*!40000 ALTER TABLE `oc_customer_login` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_login` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_online`
--
DROP TABLE IF EXISTS `oc_customer_online`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_online` (
`ip` varchar(40) NOT NULL,
`customer_id` int(11) NOT NULL,
`url` text NOT NULL,
`referer` text NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_online`
--
LOCK TABLES `oc_customer_online` WRITE;
/*!40000 ALTER TABLE `oc_customer_online` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_online` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_reward`
--
DROP TABLE IF EXISTS `oc_customer_reward`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_reward` (
`customer_reward_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL DEFAULT 0,
`order_id` int(11) NOT NULL DEFAULT 0,
`description` text NOT NULL,
`points` int(8) NOT NULL DEFAULT 0,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_reward_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_reward`
--
LOCK TABLES `oc_customer_reward` WRITE;
/*!40000 ALTER TABLE `oc_customer_reward` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_reward` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_search`
--
DROP TABLE IF EXISTS `oc_customer_search`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_search` (
`customer_search_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`customer_id` int(11) NOT NULL,
`keyword` varchar(255) NOT NULL,
`category_id` int(11) DEFAULT NULL,
`sub_category` tinyint(1) NOT NULL,
`description` tinyint(1) NOT NULL,
`products` int(11) NOT NULL,
`ip` varchar(40) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_search_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_search`
--
LOCK TABLES `oc_customer_search` WRITE;
/*!40000 ALTER TABLE `oc_customer_search` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_search` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_transaction`
--
DROP TABLE IF EXISTS `oc_customer_transaction`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_transaction` (
`customer_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`description` text NOT NULL,
`amount` decimal(15,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_transaction_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_transaction`
--
LOCK TABLES `oc_customer_transaction` WRITE;
/*!40000 ALTER TABLE `oc_customer_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_transaction` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_customer_wishlist`
--
DROP TABLE IF EXISTS `oc_customer_wishlist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_customer_wishlist` (
`customer_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_customer_wishlist`
--
LOCK TABLES `oc_customer_wishlist` WRITE;
/*!40000 ALTER TABLE `oc_customer_wishlist` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_customer_wishlist` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_download`
--
DROP TABLE IF EXISTS `oc_download`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_download` (
`download_id` int(11) NOT NULL AUTO_INCREMENT,
`filename` varchar(160) NOT NULL,
`mask` varchar(128) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`download_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_download`
--
LOCK TABLES `oc_download` WRITE;
/*!40000 ALTER TABLE `oc_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_download` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_download_description`
--
DROP TABLE IF EXISTS `oc_download_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_download_description` (
`download_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`download_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_download_description`
--
LOCK TABLES `oc_download_description` WRITE;
/*!40000 ALTER TABLE `oc_download_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_download_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_event`
--
DROP TABLE IF EXISTS `oc_event`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_event` (
`event_id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(64) NOT NULL,
`trigger` text NOT NULL,
`action` text NOT NULL,
`status` tinyint(1) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`event_id`)
) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_event`
--
LOCK TABLES `oc_event` WRITE;
/*!40000 ALTER TABLE `oc_event` DISABLE KEYS */;
INSERT INTO `oc_event` VALUES
(1,'activity_customer_add','catalog/model/account/customer/addCustomer/after','event/activity/addCustomer',1,0),
(2,'activity_customer_edit','catalog/model/account/customer/editCustomer/after','event/activity/editCustomer',1,0),
(3,'activity_customer_password','catalog/model/account/customer/editPassword/after','event/activity/editPassword',1,0),
(4,'activity_customer_forgotten','catalog/model/account/customer/editCode/after','event/activity/forgotten',1,0),
(5,'activity_transaction','catalog/model/account/customer/addTransaction/after','event/activity/addTransaction',1,0),
(6,'activity_customer_login','catalog/model/account/customer/deleteLoginAttempts/after','event/activity/login',1,0),
(7,'activity_address_add','catalog/model/account/address/addAddress/after','event/activity/addAddress',1,0),
(8,'activity_address_edit','catalog/model/account/address/editAddress/after','event/activity/editAddress',1,0),
(9,'activity_address_delete','catalog/model/account/address/deleteAddress/after','event/activity/deleteAddress',1,0),
(10,'activity_affiliate_add','catalog/model/account/customer/addAffiliate/after','event/activity/addAffiliate',1,0),
(11,'activity_affiliate_edit','catalog/model/account/customer/editAffiliate/after','event/activity/editAffiliate',1,0),
(12,'activity_order_add','catalog/model/checkout/order/addOrderHistory/before','event/activity/addOrderHistory',1,0),
(13,'activity_return_add','catalog/model/account/return/addReturn/after','event/activity/addReturn',1,0),
(14,'mail_transaction','catalog/model/account/customer/addTransaction/after','mail/transaction',1,0),
(15,'mail_forgotten','catalog/model/account/customer/editCode/after','mail/forgotten',1,0),
(16,'mail_customer_add','catalog/model/account/customer/addCustomer/after','mail/register',1,0),
(17,'mail_customer_alert','catalog/model/account/customer/addCustomer/after','mail/register/alert',1,0),
(18,'mail_affiliate_add','catalog/model/account/customer/addAffiliate/after','mail/affiliate',1,0),
(19,'mail_affiliate_alert','catalog/model/account/customer/addAffiliate/after','mail/affiliate/alert',1,0),
(20,'mail_voucher','catalog/model/checkout/order/addOrderHistory/after','extension/total/voucher/send',1,0),
(21,'mail_order_add','catalog/model/checkout/order/addOrderHistory/before','mail/order',1,0),
(22,'mail_order_alert','catalog/model/checkout/order/addOrderHistory/before','mail/order/alert',1,0),
(23,'statistics_review_add','catalog/model/catalog/review/addReview/after','event/statistics/addReview',1,0),
(24,'statistics_return_add','catalog/model/account/return/addReturn/after','event/statistics/addReturn',1,0),
(25,'statistics_order_history','catalog/model/checkout/order/addOrderHistory/after','event/statistics/addOrderHistory',1,0),
(26,'admin_mail_affiliate_approve','admin/model/customer/customer_approval/approveAffiliate/after','mail/affiliate/approve',1,0),
(27,'admin_mail_affiliate_deny','admin/model/customer/customer_approval/denyAffiliate/after','mail/affiliate/deny',1,0),
(28,'admin_mail_customer_approve','admin/model/customer/customer_approval/approveCustomer/after','mail/customer/approve',1,0),
(29,'admin_mail_customer_deny','admin/model/customer/customer_approval/denyCustomer/after','mail/customer/deny',1,0),
(30,'admin_mail_reward','admin/model/customer/customer/addReward/after','mail/reward',1,0),
(31,'admin_mail_transaction','admin/model/customer/customer/addTransaction/after','mail/transaction',1,0),
(32,'admin_mail_return','admin/model/sale/return/addReturnHistory/after','mail/return',1,0),
(33,'admin_mail_forgotten','admin/model/user/user/editCode/after','mail/forgotten',1,0),
(34,'advertise_google','admin/model/catalog/product/deleteProduct/after','extension/advertise/google/deleteProduct',1,0),
(35,'advertise_google','admin/model/catalog/product/copyProduct/after','extension/advertise/google/copyProduct',1,0),
(36,'advertise_google','admin/view/common/column_left/before','extension/advertise/google/admin_link',1,0),
(37,'advertise_google','admin/model/catalog/product/addProduct/after','extension/advertise/google/addProduct',1,0),
(38,'advertise_google','catalog/controller/checkout/success/before','extension/advertise/google/before_checkout_success',1,0),
(39,'advertise_google','catalog/view/common/header/after','extension/advertise/google/google_global_site_tag',1,0),
(40,'advertise_google','catalog/view/common/success/after','extension/advertise/google/google_dynamic_remarketing_purchase',1,0),
(41,'advertise_google','catalog/view/product/product/after','extension/advertise/google/google_dynamic_remarketing_product',1,0),
(42,'advertise_google','catalog/view/product/search/after','extension/advertise/google/google_dynamic_remarketing_searchresults',1,0),
(43,'advertise_google','catalog/view/product/category/after','extension/advertise/google/google_dynamic_remarketing_category',1,0),
(44,'advertise_google','catalog/view/common/home/after','extension/advertise/google/google_dynamic_remarketing_home',1,0),
(45,'advertise_google','catalog/view/checkout/cart/after','extension/advertise/google/google_dynamic_remarketing_cart',1,0);
/*!40000 ALTER TABLE `oc_event` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_extension`
--
DROP TABLE IF EXISTS `oc_extension`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_extension` (
`extension_id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(32) NOT NULL,
`code` varchar(32) NOT NULL,
PRIMARY KEY (`extension_id`)
) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_extension`
--
LOCK TABLES `oc_extension` WRITE;
/*!40000 ALTER TABLE `oc_extension` DISABLE KEYS */;
INSERT INTO `oc_extension` VALUES
(1,'module','carousel'),
(2,'module','category'),
(4,'module','account'),
(5,'module','featured'),
(6,'module','slideshow'),
(7,'payment','cod'),
(8,'payment','free_checkout'),
(9,'shipping','flat'),
(10,'total','shipping'),
(11,'total','sub_total'),
(12,'total','tax'),
(13,'total','total'),
(14,'total','credit'),
(15,'total','handling'),
(16,'total','low_order_fee'),
(17,'total','coupon'),
(18,'total','reward'),
(19,'total','voucher'),
(20,'module','banner'),
(21,'theme','default'),
(22,'dashboard','activity'),
(23,'dashboard','sale'),
(24,'dashboard','recent'),
(25,'dashboard','order'),
(26,'dashboard','online'),
(27,'dashboard','map'),
(28,'dashboard','customer'),
(29,'dashboard','chart'),
(30,'report','sale_coupon'),
(31,'report','customer_search'),
(32,'report','customer_transaction'),
(33,'report','product_purchased'),
(34,'report','product_viewed'),
(35,'report','sale_return'),
(36,'report','sale_order'),
(37,'report','sale_shipping'),
(38,'report','sale_tax'),
(39,'report','customer_activity'),
(40,'report','customer_order'),
(41,'report','customer_reward'),
(42,'module','html'),
(43,'advertise','google'),
(45,'theme','journal3');
/*!40000 ALTER TABLE `oc_extension` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_extension_install`
--
DROP TABLE IF EXISTS `oc_extension_install`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_extension_install` (
`extension_install_id` int(11) NOT NULL AUTO_INCREMENT,
`extension_download_id` int(11) NOT NULL,
`filename` varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`extension_install_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_extension_install`
--
LOCK TABLES `oc_extension_install` WRITE;
/*!40000 ALTER TABLE `oc_extension_install` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_extension_install` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_extension_path`
--
DROP TABLE IF EXISTS `oc_extension_path`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_extension_path` (
`extension_path_id` int(11) NOT NULL AUTO_INCREMENT,
`extension_install_id` int(11) NOT NULL,
`path` varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`extension_path_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_extension_path`
--
LOCK TABLES `oc_extension_path` WRITE;
/*!40000 ALTER TABLE `oc_extension_path` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_extension_path` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_filter`
--
DROP TABLE IF EXISTS `oc_filter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_filter` (
`filter_id` int(11) NOT NULL AUTO_INCREMENT,
`filter_group_id` int(11) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_filter`
--
LOCK TABLES `oc_filter` WRITE;
/*!40000 ALTER TABLE `oc_filter` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_filter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_filter_description`
--
DROP TABLE IF EXISTS `oc_filter_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_filter_description` (
`filter_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`filter_group_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`filter_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_filter_description`
--
LOCK TABLES `oc_filter_description` WRITE;
/*!40000 ALTER TABLE `oc_filter_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_filter_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_filter_group`
--
DROP TABLE IF EXISTS `oc_filter_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_filter_group` (
`filter_group_id` int(11) NOT NULL AUTO_INCREMENT,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`filter_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_filter_group`
--
LOCK TABLES `oc_filter_group` WRITE;
/*!40000 ALTER TABLE `oc_filter_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_filter_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_filter_group_description`
--
DROP TABLE IF EXISTS `oc_filter_group_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_filter_group_description` (
`filter_group_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`filter_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_filter_group_description`
--
LOCK TABLES `oc_filter_group_description` WRITE;
/*!40000 ALTER TABLE `oc_filter_group_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_filter_group_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_geo_zone`
--
DROP TABLE IF EXISTS `oc_geo_zone`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_geo_zone` (
`geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`description` varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`geo_zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_geo_zone`
--
LOCK TABLES `oc_geo_zone` WRITE;
/*!40000 ALTER TABLE `oc_geo_zone` DISABLE KEYS */;
INSERT INTO `oc_geo_zone` VALUES
(1,'Türkiye','Tüm Türkiye dahil','2009-01-06 23:26:25','2010-02-26 22:33:24');
/*!40000 ALTER TABLE `oc_geo_zone` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_googleshopping_category`
--
DROP TABLE IF EXISTS `oc_googleshopping_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_googleshopping_category` (
`google_product_category` varchar(10) NOT NULL,
`store_id` int(11) NOT NULL DEFAULT 0,
`category_id` int(11) NOT NULL,
PRIMARY KEY (`google_product_category`,`store_id`),
KEY `category_id_store_id` (`category_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_googleshopping_category`
--
LOCK TABLES `oc_googleshopping_category` WRITE;
/*!40000 ALTER TABLE `oc_googleshopping_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_googleshopping_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_googleshopping_product`
--
DROP TABLE IF EXISTS `oc_googleshopping_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_googleshopping_product` (
`product_advertise_google_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`product_id` int(11) DEFAULT NULL,
`store_id` int(11) NOT NULL DEFAULT 0,
`has_issues` tinyint(1) DEFAULT NULL,
`destination_status` enum('pending','approved','disapproved') NOT NULL DEFAULT 'pending',
`impressions` int(11) NOT NULL DEFAULT 0,
`clicks` int(11) NOT NULL DEFAULT 0,
`conversions` int(11) NOT NULL DEFAULT 0,
`cost` decimal(15,4) NOT NULL DEFAULT 0.0000,
`conversion_value` decimal(15,4) NOT NULL DEFAULT 0.0000,
`google_product_category` varchar(10) DEFAULT NULL,
`condition` enum('new','refurbished','used') DEFAULT NULL,
`adult` tinyint(1) DEFAULT NULL,
`multipack` int(11) DEFAULT NULL,
`is_bundle` tinyint(1) DEFAULT NULL,
`age_group` enum('newborn','infant','toddler','kids','adult') DEFAULT NULL,
`color` int(11) DEFAULT NULL,
`gender` enum('male','female','unisex') DEFAULT NULL,
`size_type` enum('regular','petite','plus','big and tall','maternity') DEFAULT NULL,
`size_system` enum('AU','BR','CN','DE','EU','FR','IT','JP','MEX','UK','US') DEFAULT NULL,
`size` int(11) DEFAULT NULL,
`is_modified` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`product_advertise_google_id`),
UNIQUE KEY `product_id_store_id` (`product_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_googleshopping_product`
--
LOCK TABLES `oc_googleshopping_product` WRITE;
/*!40000 ALTER TABLE `oc_googleshopping_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_googleshopping_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_googleshopping_product_status`
--
DROP TABLE IF EXISTS `oc_googleshopping_product_status`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_googleshopping_product_status` (
`product_id` int(11) NOT NULL DEFAULT 0,
`store_id` int(11) NOT NULL DEFAULT 0,
`product_variation_id` varchar(64) NOT NULL DEFAULT '',
`destination_statuses` text NOT NULL,
`data_quality_issues` text NOT NULL,
`item_level_issues` text NOT NULL,
`google_expiration_date` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`product_id`,`store_id`,`product_variation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_googleshopping_product_status`
--
LOCK TABLES `oc_googleshopping_product_status` WRITE;
/*!40000 ALTER TABLE `oc_googleshopping_product_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_googleshopping_product_status` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_googleshopping_product_target`
--
DROP TABLE IF EXISTS `oc_googleshopping_product_target`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_googleshopping_product_target` (
`product_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL DEFAULT 0,
`advertise_google_target_id` int(11) unsigned NOT NULL,
PRIMARY KEY (`product_id`,`advertise_google_target_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_googleshopping_product_target`
--
LOCK TABLES `oc_googleshopping_product_target` WRITE;
/*!40000 ALTER TABLE `oc_googleshopping_product_target` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_googleshopping_product_target` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_googleshopping_target`
--
DROP TABLE IF EXISTS `oc_googleshopping_target`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_googleshopping_target` (
`advertise_google_target_id` int(11) unsigned NOT NULL,
`store_id` int(11) NOT NULL DEFAULT 0,
`campaign_name` varchar(255) NOT NULL DEFAULT '',
`country` varchar(2) NOT NULL DEFAULT '',
`budget` decimal(15,4) NOT NULL DEFAULT 0.0000,
`feeds` text NOT NULL,
`status` enum('paused','active') NOT NULL DEFAULT 'paused',
`date_added` date DEFAULT NULL,
`roas` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`advertise_google_target_id`),
KEY `store_id` (`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_googleshopping_target`
--
LOCK TABLES `oc_googleshopping_target` WRITE;
/*!40000 ALTER TABLE `oc_googleshopping_target` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_googleshopping_target` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_information`
--
DROP TABLE IF EXISTS `oc_information`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_information` (
`information_id` int(11) NOT NULL AUTO_INCREMENT,
`bottom` int(1) NOT NULL DEFAULT 0,
`sort_order` int(3) NOT NULL DEFAULT 0,
`status` tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`information_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_information`
--
LOCK TABLES `oc_information` WRITE;
/*!40000 ALTER TABLE `oc_information` DISABLE KEYS */;
INSERT INTO `oc_information` VALUES
(3,1,3,1),
(4,1,1,1),
(5,1,4,1),
(6,1,2,1),
(7,0,0,1);
/*!40000 ALTER TABLE `oc_information` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_information_description`
--
DROP TABLE IF EXISTS `oc_information_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_information_description` (
`information_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`title` varchar(64) NOT NULL,
`description` mediumtext NOT NULL,
`meta_title` varchar(255) NOT NULL,
`meta_description` varchar(255) NOT NULL,
`meta_keyword` varchar(255) NOT NULL,
PRIMARY KEY (`information_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_information_description`
--
LOCK TABLES `oc_information_description` WRITE;
/*!40000 ALTER TABLE `oc_information_description` DISABLE KEYS */;
INSERT INTO `oc_information_description` VALUES
(5,1,'Terms & Conditions','<p>\r\n Terms &amp; Conditions</p>\r\n','Terms & Conditions','',''),
(3,1,'Privacy Policy','<p>\r\n Privacy Policy</p>\r\n','Privacy Policy','',''),
(6,1,'Delivery Information','<p>\r\n Delivery Information</p>\r\n','Delivery Information','',''),
(7,1,'Frequently Asked Questions','<p><br></p><p><br></p>','Frequently Asked Questions','',''),
(4,1,'About Us','<p><span class="drop-cap">S</span>ince 2013, <a href="#test">Journal</a> has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p><blockquote>Journal has the impressive rating of 4.9 from more than 2000 ratings.</blockquote><p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any breakpoint. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p><p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.<br></p><blockquote>98% satisfaction rate within our more than 19,000 customers.</blockquote><p>The new Schedule feature&nbsp;allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore.&nbsp;</p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p><p></p><p><a class="btn" href="https://themeforest.net/item/journal-advanced-opencart-theme/4260361" target="_blank">Buy Journal</a></p>\r\n\r\n','About Us','',''),
(3,2,'Privacy Policy','<p>\r\n Privacy Policy</p>\r\n','Privacy Policy','',''),
(6,2,'Delivery Information','<p>\r\n Delivery Information</p>\r\n','Delivery Information','',''),
(7,2,'Frequently Asked Questions','<p><br></p><p><br></p>','Frequently Asked Questions','',''),
(4,2,'About Us','<p><span class="drop-cap">S</span>ince 2013, <a href="#test">Journal</a> has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p><blockquote>Journal has the impressive rating of 4.9 from more than 2000 ratings.</blockquote><p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any breakpoint. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p><p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.<br></p><blockquote>98% satisfaction rate within our more than 19,000 customers.</blockquote><p>The new Schedule feature&nbsp;allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore.&nbsp;</p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p><p></p><p><a class="btn" href="https://themeforest.net/item/journal-advanced-opencart-theme/4260361" target="_blank">Buy Journal</a></p>\r\n\r\n','About Us','',''),
(5,2,'Terms & Conditions','<p>\r\n Terms &amp; Conditions</p>\r\n','Terms & Conditions','',''),
(5,3,'Terms & Conditions','<p>\r\n Terms &amp; Conditions</p>\r\n','Terms & Conditions','',''),
(3,3,'Privacy Policy','<p>\r\n Privacy Policy</p>\r\n','Privacy Policy','',''),
(6,3,'Delivery Information','<p>\r\n Delivery Information</p>\r\n','Delivery Information','',''),
(7,3,'Frequently Asked Questions','<p><br></p><p><br></p>','Frequently Asked Questions','',''),
(4,3,'About Us','<p><span class="drop-cap">S</span>ince 2013, <a href="#test">Journal</a> has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p><blockquote>Journal has the impressive rating of 4.9 from more than 2000 ratings.</blockquote><p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any breakpoint. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p><p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.<br></p><blockquote>98% satisfaction rate within our more than 19,000 customers.</blockquote><p>The new Schedule feature&nbsp;allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore.&nbsp;</p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p><p></p><p><a class="btn" href="https://themeforest.net/item/journal-advanced-opencart-theme/4260361" target="_blank">Buy Journal</a></p>\r\n\r\n','About Us','','');
/*!40000 ALTER TABLE `oc_information_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_information_to_layout`
--
DROP TABLE IF EXISTS `oc_information_to_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_information_to_layout` (
`information_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`layout_id` int(11) NOT NULL,
PRIMARY KEY (`information_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_information_to_layout`
--
LOCK TABLES `oc_information_to_layout` WRITE;
/*!40000 ALTER TABLE `oc_information_to_layout` DISABLE KEYS */;
INSERT INTO `oc_information_to_layout` VALUES
(4,0,0),
(7,0,21);
/*!40000 ALTER TABLE `oc_information_to_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_information_to_store`
--
DROP TABLE IF EXISTS `oc_information_to_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_information_to_store` (
`information_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
PRIMARY KEY (`information_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_information_to_store`
--
LOCK TABLES `oc_information_to_store` WRITE;
/*!40000 ALTER TABLE `oc_information_to_store` DISABLE KEYS */;
INSERT INTO `oc_information_to_store` VALUES
(3,0),
(4,0),
(5,0),
(6,0),
(7,0);
/*!40000 ALTER TABLE `oc_information_to_store` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_category`
--
DROP TABLE IF EXISTS `oc_journal3_blog_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_category` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) DEFAULT NULL,
`image` varchar(256) DEFAULT NULL,
`status` tinyint(1) DEFAULT NULL,
`sort_order` int(11) DEFAULT NULL,
PRIMARY KEY (`category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_category`
--
LOCK TABLES `oc_journal3_blog_category` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_category` DISABLE KEYS */;
INSERT INTO `oc_journal3_blog_category` VALUES
(2,0,'',1,0),
(3,0,'',1,0),
(4,0,'',1,0),
(5,0,'',1,5);
/*!40000 ALTER TABLE `oc_journal3_blog_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_category_description`
--
DROP TABLE IF EXISTS `oc_journal3_blog_category_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_category_description` (
`category_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(256) DEFAULT NULL,
`description` mediumtext DEFAULT NULL,
`meta_title` varchar(256) DEFAULT NULL,
`meta_keywords` varchar(256) DEFAULT NULL,
`meta_description` text DEFAULT NULL,
`keyword` varchar(256) DEFAULT NULL,
PRIMARY KEY (`category_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_category_description`
--
LOCK TABLES `oc_journal3_blog_category_description` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_category_description` DISABLE KEYS */;
INSERT INTO `oc_journal3_blog_category_description` VALUES
(2,1,'Shopping','','','','','shopping'),
(3,1,'Traveling','','','','','traveling'),
(4,1,'Branding','','','','','branding'),
(5,1,'New Products','','','','','new-products'),
(2,2,'Shopping','','','','','shopping-es'),
(3,2,'Traveling','','','','','traveling-es'),
(4,2,'Branding','','','','','branding-es'),
(5,2,'New Products','','','','','new-products-es'),
(2,3,'Shopping','','','','','shopping-ar'),
(3,3,'Traveling','','','','','traveling-ar'),
(4,3,'Branding','','','','','branding-ar'),
(5,3,'New Products','','','','','new-products-ar');
/*!40000 ALTER TABLE `oc_journal3_blog_category_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_category_to_layout`
--
DROP TABLE IF EXISTS `oc_journal3_blog_category_to_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_category_to_layout` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) NOT NULL,
`layout_id` int(11) DEFAULT NULL,
PRIMARY KEY (`category_id`,`store_id`),
KEY `layout_id` (`layout_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_category_to_layout`
--
LOCK TABLES `oc_journal3_blog_category_to_layout` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_category_to_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_journal3_blog_category_to_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_category_to_store`
--
DROP TABLE IF EXISTS `oc_journal3_blog_category_to_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_category_to_store` (
`category_id` int(11) DEFAULT NULL,
`store_id` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_category_to_store`
--
LOCK TABLES `oc_journal3_blog_category_to_store` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_category_to_store` DISABLE KEYS */;
INSERT INTO `oc_journal3_blog_category_to_store` VALUES
(2,0),
(3,0),
(4,0),
(5,0);
/*!40000 ALTER TABLE `oc_journal3_blog_category_to_store` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_comments`
--
DROP TABLE IF EXISTS `oc_journal3_blog_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_comments` (
`comment_id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) DEFAULT NULL,
`post_id` int(11) DEFAULT NULL,
`customer_id` int(11) DEFAULT NULL,
`author_id` int(11) DEFAULT NULL,
`name` varchar(256) DEFAULT NULL,
`email` varchar(256) DEFAULT NULL,
`website` varchar(256) DEFAULT NULL,
`comment` text DEFAULT NULL,
`status` tinyint(1) DEFAULT NULL,
`date` datetime DEFAULT NULL,
PRIMARY KEY (`comment_id`)
) ENGINE=MyISAM AUTO_INCREMENT=657 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_comments`
--
LOCK TABLES `oc_journal3_blog_comments` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_comments` DISABLE KEYS */;
INSERT INTO `oc_journal3_blog_comments` VALUES
(1,0,1,0,1,'Michael','support@digital-atelier.com','','I must say, the Journal Blog is a fantastic addition to an already outstanding theme. Keep up the good work guys, it\'s amazing what you come up with for the Opencart community.',1,'2014-09-15 12:08:31'),
(2,0,1,0,1,'Alex','journal@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-09-15 12:08:54'),
(3,0,1,0,1,'Kostas','hello@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-09-15 12:10:22'),
(4,3,1,0,1,'Admin','admin@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-09-15 12:10:58'),
(7,3,1,0,1,'Mike','journal@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-10-24 21:42:43'),
(8,3,1,0,1,'Rodriguez','hello@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet.',1,'2014-10-24 21:43:29'),
(9,0,1,0,1,'Mikka','admin@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-10-24 21:50:26'),
(10,3,1,0,1,'Amber','noreply@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-10-24 21:55:25'),
(11,3,1,0,1,'Jenny','admin@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-10-24 21:58:33'),
(12,0,1,0,1,'Ben','journal@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',0,'2014-10-24 22:02:23'),
(13,2,1,0,1,'Jay','hello@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',0,'2014-10-24 22:02:42'),
(14,2,1,0,1,'Steve','support@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet.',1,'2014-10-24 22:04:38'),
(15,2,1,0,1,'Cassandra','admin@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet.',1,'2014-10-24 22:05:47'),
(16,1,1,0,1,'Jenny','info@digital-atelier.com','','I completely agree. The best possible feature set you can find in any Opencart theme. And I love the Gravatar support for comments, so cool! Keep it up guys!',1,'2014-10-24 22:06:05'),
(18,3,1,0,1,'Ella','journa@digital-atelier.com','','Lorem ipsum dolor sit amet.',1,'2014-10-24 22:10:55'),
(26,0,3,0,1,'Alex','journal@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-09-15 12:08:54'),
(27,0,3,0,1,'Kostas','hello@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-09-15 12:10:22'),
(31,0,3,0,1,'Michael','support@digital-atelier.com','','I must say, the Journal Blog is a fantastic addition to an already outstanding theme. Keep up the good work guys, it\'s amazing what you come up with for the Opencart community.',1,'2014-09-15 12:08:31'),
(73,37,4,0,1,'Sandra','info@digital-atelier.com','','Super Theme, I\'m going to buy it for my handmade jewellery store.',1,'2014-11-03 15:21:51'),
(37,0,4,0,1,'Michael','support@digital-atelier.com','','I must say, the Journal Blog is a fantastic addition to an already outstanding theme. Keep up the good work guys, it\'s amazing what you come up with for the Opencart community.',1,'2014-09-15 12:08:31'),
(38,0,4,0,1,'Alex','journal@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-09-15 12:08:54'),
(55,0,7,0,1,'Michael','support@digital-atelier.com','https://www.journal-theme.com/','I must say, the Journal Blog is a fantastic addition to an already outstanding theme. Keep up the good work guys, it\'s amazing what you come up with for the Opencart community.',1,'2014-09-15 12:08:31'),
(59,0,7,0,1,'Ben','journal@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',0,'2014-10-24 22:02:23'),
(61,0,8,0,1,'Michael','support@digital-atelier.com','','I must say, the Journal Blog is a fantastic addition to an already outstanding theme. Keep up the good work guys, it\'s amazing what you come up with for the Opencart community.',1,'2014-09-15 12:08:31'),
(62,0,8,0,1,'Alex','journal@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',1,'2014-09-15 12:08:54'),
(65,0,8,0,1,'Ben','journal@digital-atelier.com','','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.',0,'2014-10-24 22:02:23'),
(100,0,1,0,1,'Costas','journal@digital-atelier.com','www.digital-atelier.com','Lorem ipsum dolor sit amet.',1,'2015-01-24 14:19:58'),
(101,0,10,0,0,'Palm Oil Netherlands','roganjones008@gmail.com','https://refinedpalmoilnetherlands.com/','High quality palm oil palworld, From Plantation to Perfection. https://refinedpalmoilnetherlands.com/',1,'2025-01-29 10:21:25'),
(102,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://naganotonic-amazon.com/','Nagano Tonic is a natural wellness supplement designed to support energy, metabolism, and overall health. Inspired by traditional Japanese health practices, it uses a blend of herbal ingredients aimed at boosting digestion, enhancing vitality, and aiding weight management. This easy-to-use tonic is a balanced addition to a daily routine for those seeking a gentle yet effective way to feel energized and maintain a healthy lifestyle. Whether for weight support or increased energy, Nagano Tonic offers holistic health benefits.',1,'2025-01-29 18:11:23'),
(103,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://buy--naganotonic.com/','Nagano Tonic is a natural supplement designed to support overall wellness and vitality. Inspired by traditional Japanese health practices, this tonic blends carefully selected herbs and nutrients to help boost energy, improve digestion, and support mental clarity. Ideal for those seeking a natural way to feel more balanced and energized, Nagano Tonic combines centuries-old wisdom with modern health benefits, making it a refreshing choice for daily well-being and vitality.',1,'2025-01-29 18:24:01'),
(104,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://naganotonic-health.com/','Nagano Tonic is a natural health supplement inspired by the wellness traditions of Nagano, Japan, known for its healthy lifestyle and longevity. This tonic is designed to support your energy, improve focus, and enhance digestion with a blend of traditional, plant-based ingredients. Whether you’re looking for an energy boost or a way to improve overall well-being, Nagano Tonic offers a simple and effective solution to help you feel more vibrant and balanced every day.',1,'2025-01-29 18:25:23'),
(105,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://naganotonics-us.com/','Nagano Tonic is a unique wellness blend crafted to boost natural energy and support overall health. Inspired by the vibrant lifestyle of Nagano, Japan, this tonic combines traditional ingredients known for their health benefits. Whether you\'re looking to improve your vitality, balance your mood, or simply add a nourishing ritual to your day, Nagano Tonic offers a gentle yet effective solution.',1,'2025-01-29 18:27:04'),
(106,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://naganotonic-healthline.com/','Nagano Tonic is a refreshing wellness drink designed to support your energy, focus, and overall well-being. Inspired by the healthy lifestyle of Nagano, Japan, it combines natural ingredients known for their calming and energizing effects. Whether you need a boost of energy, a way to reduce stress, or simply want to stay focused throughout your day, Nagano Tonic offers a balanced, natural solution. With its soothing yet revitalizing properties, it’s the perfect addition to your daily routine for feeling your best, naturally.',1,'2025-01-29 18:28:09'),
(107,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://naganotonic--web.com/','Nagano Tonic is a refreshing wellness drink crafted to support energy, focus, and overall vitality, inspired by the serene landscapes and natural health practices of Nagano, Japan. This unique tonic blends traditional Japanese herbs with essential nutrients, offering a natural boost to help you stay energized and clear-headed all day. With each sip, Nagano Tonic brings the harmony of nature to your daily routine, helping you feel balanced and refreshed.',1,'2025-01-29 18:32:26'),
(108,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://us-nagano--tonics.com/','Nagano Tonic is a natural supplement inspired by the traditional wellness practices of Nagano, Japan. This tonic combines powerful, time-tested ingredients that have been used for centuries to promote vitality, energy, and overall well-being. Its formula is designed to support your body’s natural processes, helping improve digestion, boost metabolism, and enhance immune function.',1,'2025-01-29 18:33:54'),
(109,0,12,0,0,'Anabolic Supplies','cc8832018@gmail.com','anabolicsupplies.com','URL Images Last Mod.\r\nhttps://anabolicsupplies.com/buy-anabolic-steroids-online/ 0 2025-01-30 02:10 +00:00\r\nhttps://anabolicsupplies.com/product/free-etho-testosterone-300mg-ml/ 1 2025-01-10 20:10 +00:00\r\nhttps://anabolicsupplies.com/product/dsip-2mg/ 1 2025-01-10 20:10 +00:00\r\nhttps://anabolicsupplies.com/product/belijaro-tirzepatide-10mg-beligas-int/ 1 2025-01-10 20:10 +00:00\r\nhttps://anabolicsupplies.com/product/semaglutide-2mg/ 1 2025-01-10 20:10 +00:00\r\nhttps://anabolicsupplies.com/product/belzempic-ezuse-semaglutide-5mg-pen/ 1 2025-01-10 20:10 +00:00\r\nhttps://anabolicsupplies.com/product/beltropin-36iu-pen-int/ 1 2025-01-10 20:10 +00:00\r\nhttps://anabolicsupplies.com/product/beltropin-36iu-pen/ 1 2025-01-10 20:10 +00:00\r\nhttps://anabolicsupplies.com/product/halotestin-10mg-50tab-int/ 1 2025-01-10 20:11 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-semaglutide-bacteriostatic-water/ 1 2025-01-10 20:11 +00:00\r\nhttps://anabolicsupplies.com/product/aromapex-25/ 1 2025-01-10 20:11 +00:00\r\nhttps://anabolicsupplies.com/product/primopex-25/ 1 2025-01-10 20:11 +00:00\r\nhttps://anabolicsupplies.com/product/provipex-25/ 1 2025-01-10 20:11 +00:00\r\nhttps://anabolicsupplies.com/product/oxapex-10/ 1 2025-01-10 20:12 +00:00\r\nhttps://anabolicsupplies.com/product/oxapex-25/ 1 2025-01-10 20:12 +00:00\r\nhttps://anabolicsupplies.com/product/clomipex-50/ 1 2025-01-10 20:12 +00:00\r\nhttps://anabolicsupplies.com/product/stanopex-10/ 1 2025-01-10 20:12 +00:00\r\nhttps://anabolicsupplies.com/product/stanopex-50/ 1 2025-01-10 20:12 +00:00\r\nhttps://anabolicsupplies.com/product/letropex-2-5/ 1 2025-01-10 20:12 +00:00\r\nhttps://anabolicsupplies.com/product/parabopex-75/ 1 2025-01-10 20:13 +00:00\r\nhttps://anabolicsupplies.com/product/cutpex-b320/ 1 2025-01-10 20:13 +00:00\r\nhttps://anabolicsupplies.com/product/mastepex-e200/ 1 2025-01-10 20:13 +00:00\r\nhttps://anabolicsupplies.com/product/primopex-100/ 1 2025-01-10 20:13 +00:00\r\nhttps://anabolicsupplies.com/product/finapex-1/ 1 2025-01-10 20:13 +00:00\r\nhttps://anabolicsupplies.com/product/halopex-10/ 1 2025-01-10 20:13 +00:00\r\nhttps://anabolicsupplies.com/product/arimipex-1/ 1 2025-01-10 20:14 +00:00\r\nhttps://anabolicsupplies.com/product/oxypex-50/ 1 2025-01-10 20:14 +00:00\r\nhttps://anabolicsupplies.com/product/nolvapex-20/ 1 2025-01-10 20:14 +00:00\r\nhttps://anabolicsupplies.com/product/cialipex-20/ 1 2025-01-10 20:14 +00:00\r\nhttps://anabolicsupplies.com/product/clenpex-40/ 1 2025-01-10 20:14 +00:00\r\nhttps://anabolicsupplies.com/product/methapex-50/ 1 2025-01-10 20:14 +00:00\r\nhttps://anabolicsupplies.com/product/methapex-20/ 1 2025-01-10 20:15 +00:00\r\nhttps://anabolicsupplies.com/product/testopex-b300/ 1 2025-01-10 20:15 +00:00\r\nhttps://anabolicsupplies.com/product/turipex-10/ 1 2025-01-10 20:15 +00:00\r\nhttps://anabolicsupplies.com/product/mastepex-p100/ 1 2025-01-10 20:15 +00:00\r\nhttps://anabolicsupplies.com/product/trenbopex-a100/ 1 2025-01-10 20:15 +00:00\r\nhttps://anabolicsupplies.com/product/testopex-e250/ 1 2025-01-10 20:15 +00:00\r\nhttps://anabolicsupplies.com/product/testopex-b500/ 1 2025-01-10 20:16 +00:00\r\nhttps://anabolicsupplies.com/product/testopex-p100/ 1 2025-01-10 20:16 +00:00\r\nhttps://anabolicsupplies.com/product/testopex-c200/ 1 2025-01-10 20:16 +00:00\r\nhttps://anabolicsupplies.com/product/trenbopex-e200/ 1 2025-01-10 20:16 +00:00\r\nhttps://anabolicsupplies.com/product/boldepex-200/ 1 2025-01-10 20:16 +00:00\r\nhttps://anabolicsupplies.com/product/durapex-100/ 1 2025-01-10 20:16 +00:00\r\nhttps://anabolicsupplies.com/product/decapex-200/ 1 2025-01-10 20:17 +00:00\r\nhttps://anabolicsupplies.com/product/somatropex-100-hgh/ 1 2025-01-10 20:17 +00:00\r\nhttps://anabolicsupplies.com/product/sildepex-100/ 1 2025-01-10 20:17 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-test-100-ampoules/ 1 2025-01-10 20:17 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-bol-100-ampoules/ 1 2025-01-10 20:17 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-test-100-oil-base-ampoules/ 1 2025-01-10 20:17 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-stan-50-ampoules/ 1 2025-01-10 20:17 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-oxy-50-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-test-c200-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-nolt-300-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-nan-ph100-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-test-ph100-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-nan-d300-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-tren-a100-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-mix-1-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-dro-p100-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-tren-e200-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-bold-300-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-tren-h100-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-dro-e200-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/pharma-3-tren-200-ampoules/ 1 2025-01-10 20:18 +00:00\r\nhttps://anabolicsupplies.com/product/winsrow-10mg/ 1 2025-01-10 20:19 +00:00\r\nhttps://anabolicsupplies.com/product/oxyrow-50mg/ 1 2025-01-10 20:20 +00:00\r\nhttps://anabolicsupplies.com/product/arimirow-1mg-50-tabs-anastrozole/ 1 2025-01-10 20:20 +00:00\r\nhttps://anabolicsupplies.com/product/metharow-10mg/ 1 2025-01-10 20:20 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-hcg-10000/ 1 2025-01-10 20:20 +00:00\r\nhttps://anabolicsupplies.com/product/pro-primobolan-25mg-int/ 1 2025-01-10 20:20 +00:00\r\nhttps://anabolicsupplies.com/product/dostinex-lite-0-5mg-int/ 1 2025-01-10 20:21 +00:00\r\nhttps://anabolicsupplies.com/product/pro-dostinex-1mg-int/ 1 2025-01-10 20:21 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-semaglutide-5mg-int/ 1 2025-01-10 20:21 +00:00\r\nhttps://anabolicsupplies.com/product/nakon-semaglutide-5mg-int/ 1 2025-01-10 20:21 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-semaglutide-5mg-generic-for-ozempic/ 1 2025-01-10 20:21 +00:00\r\nhttps://anabolicsupplies.com/product/dostinex-lite-0-5mg/ 1 2025-01-10 20:21 +00:00\r\nhttps://anabolicsupplies.com/product/pro-dostinex-1mg/ 1 2025-01-10 20:21 +00:00\r\nhttps://anabolicsupplies.com/product/pro-primobolan-25mg/ 1 2025-01-10 20:21 +00:00\r\nhttps://anabolicsupplies.com/product/prilimed-30mg-dapoxetine-deus-medical/ 1 2025-01-10 20:22 +00:00\r\nhttps://anabolicsupplies.com/product/primomed-25mg-methenolone-acetate-deus-medical/ 1 2025-01-10 20:23 +00:00\r\nhttps://anabolicsupplies.com/product/femamed-2-5mg-letrozole-deus-medical/ 1 2025-01-10 20:23 +00:00\r\nhttps://anabolicsupplies.com/product/trenagen-rapid-100-100mg-ml-5-amps-of-1ml/ 1 2025-01-10 21:29 +00:00\r\nhttps://anabolicsupplies.com/product/viag-50mg/ 1 2025-01-10 21:29 +00:00\r\nhttps://anabolicsupplies.com/product/proviron-20mg/ 1 2025-01-10 21:29 +00:00\r\nhttps://anabolicsupplies.com/product/ghrp-6-5mg/ 1 2025-01-10 21:30 +00:00\r\nhttps://anabolicsupplies.com/product/ghrp-6-5mg-int/ 1 2025-01-10 21:30 +00:00\r\nhttps://anabolicsupplies.com/product/follistion-344-1mg-int/ 1 2025-01-10 21:30 +00:00\r\nhttps://anabolicsupplies.com/product/igf-1-des-1mg-int/ 1 2025-01-10 21:30 +00:00\r\nhttps://anabolicsupplies.com/product/triptorelin-2mg-int/ 1 2025-01-10 21:31 +00:00\r\nhttps://anabolicsupplies.com/product/thymosin-beta-4-tb-500-2mg-5mg-10mg-int/ 1 2025-01-10 21:31 +00:00\r\nhttps://anabolicsupplies.com/product/myo-1mg-int/ 1 2025-01-10 21:31 +00:00\r\nhttps://anabolicsupplies.com/product/bpc-157-5mg-int/ 1 2025-01-10 21:32 +00:00\r\nhttps://anabolicsupplies.com/product/pt-141-10mg-int/ 1 2025-01-10 21:32 +00:00\r\nhttps://anabolicsupplies.com/product/cjc1295-2mg-int/ 1 2025-01-10 21:32 +00:00\r\nhttps://anabolicsupplies.com/product/tesamorelin-2mg-int/ 1 2025-01-10 21:33 +00:00\r\nhttps://anabolicsupplies.com/product/aod9604-2mg-int/ 1 2025-01-10 21:33 +00:00\r\nhttps://anabolicsupplies.com/product/cialis-25mg/ 1 2025-01-10 21:33 +00:00\r\nhttps://anabolicsupplies.com/product/clomid-50mg/ 1 2025-01-10 21:33 +00:00\r\nhttps://anabolicsupplies.com/product/masterone-enanthate-200mg/ 1 2025-01-10 21:34 +00:00\r\nhttps://anabolicsupplies.com/product/super-testosterone-enanthate-400mg/ 1 2025-01-10 21:34 +00:00\r\nhttps://anabolicsupplies.com/product/boldenone-injection-200mg/ 1 2025-01-10 21:34 +00:00\r\nhttps://anabolicsupplies.com/product/hgh-fragment-176-191-2mg-5mg-10mg-int/ 1 2025-01-10 21:35 +00:00\r\nhttps://anabolicsupplies.com/product/epithalon-5mg-10mg-50mg-int/ 1 2025-01-10 21:36 +00:00\r\nhttps://anabolicsupplies.com/product/selank-5mg-10mg-int/ 1 2025-01-10 21:37 +00:00\r\nhttps://anabolicsupplies.com/product/des-1-3-1mg-int/ 1 2025-01-10 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/ipamorelin-2mg-5mg-10mg-int/ 1 2025-01-10 21:39 +00:00\r\nhttps://anabolicsupplies.com/product/hcg-5000iu-10000iu-int/ 1 2025-01-10 21:40 +00:00\r\nhttps://anabolicsupplies.com/product/hexarelin-2mg-5mg-int/ 1 2025-01-10 21:40 +00:00\r\nhttps://anabolicsupplies.com/product/ghrp-2-5mg-int/ 1 2025-01-10 21:40 +00:00\r\nhttps://anabolicsupplies.com/product/hgh-10iu-100iu-int/ 1 2025-01-10 21:41 +00:00\r\nhttps://anabolicsupplies.com/product/gonadorelin-2mg-int/ 1 2025-01-10 21:42 +00:00\r\nhttps://anabolicsupplies.com/product/sermorelin-2mg-5mg-int/ 1 2025-01-10 21:42 +00:00\r\nhttps://anabolicsupplies.com/product/fttp-2mg-int/ 1 2025-01-10 21:42 +00:00\r\nhttps://anabolicsupplies.com/product/testo-suspension-100mg-ml-2/ 1 2025-01-10 21:43 +00:00\r\nhttps://anabolicsupplies.com/product/winstrol-suspension-50mg-ml-2/ 1 2025-01-10 21:49 +00:00\r\nhttps://anabolicsupplies.com/product/winstrol-suspension-50mg-ml/ 1 2025-01-10 21:49 +00:00\r\nhttps://anabolicsupplies.com/product/etho-testosterone-450mg-ml-2/ 1 2025-01-10 21:49 +00:00\r\nhttps://anabolicsupplies.com/product/quant-equipoise-500mg-2/ 1 2025-01-10 21:50 +00:00\r\nhttps://anabolicsupplies.com/product/pheno-npp-150mg-ml/ 1 2025-01-10 21:50 +00:00\r\nhttps://anabolicsupplies.com/product/pheno-npp-150mg-ml-int/ 1 2025-01-10 21:50 +00:00\r\nhttps://anabolicsupplies.com/product/etho-primobolan-200mg-ml/ 1 2025-01-10 21:51 +00:00\r\nhttps://anabolicsupplies.com/product/etho-primobolan-200mg-ml-2/ 1 2025-01-10 21:51 +00:00\r\nhttps://anabolicsupplies.com/product/cypo-testosterone-250mg-ml/ 1 2025-01-10 21:51 +00:00\r\nhttps://anabolicsupplies.com/product/cypo-testosterone-250mg-ml-2/ 1 2025-01-10 21:51 +00:00\r\nhttps://anabolicsupplies.com/product/deca-durabolin-500mg-ml-2/ 1 2025-01-10 21:51 +00:00\r\nhttps://anabolicsupplies.com/product/deca-durabolin-500mg-ml/ 1 2025-01-10 21:51 +00:00\r\nhttps://anabolicsupplies.com/product/pro-winstrol-50mg/ 1 2025-01-10 21:52 +00:00\r\nhttps://anabolicsupplies.com/product/pro-winstrol-50mg-2/ 1 2025-01-10 21:52 +00:00\r\nhttps://anabolicsupplies.com/product/pro-dynabol-50mg/ 1 2025-01-10 21:52 +00:00\r\nhttps://anabolicsupplies.com/product/pro-dynabol-50mg-2/ 1 2025-01-10 21:52 +00:00\r\nhttps://anabolicsupplies.com/product/nolvadex-20mg/ 1 2025-01-10 21:52 +00:00\r\nhttps://anabolicsupplies.com/product/nolvadex-20mg-2/ 1 2025-01-10 21:52 +00:00\r\nhttps://anabolicsupplies.com/product/tren-test-mast-short-150mg-ml/ 1 2025-01-10 21:53 +00:00\r\nhttps://anabolicsupplies.com/product/tren-test-mast-short-150mg-ml-int/ 1 2025-01-10 21:53 +00:00\r\nhttps://anabolicsupplies.com/product/tri-trenbolone-150mg-ml/ 1 2025-01-10 21:54 +00:00\r\nhttps://anabolicsupplies.com/product/tri-trenbolone-150mg-ml-2/ 1 2025-01-10 21:54 +00:00\r\nhttps://anabolicsupplies.com/product/tri-testosterone-lite-350mg-ml/ 1 2025-01-10 21:54 +00:00\r\nhttps://anabolicsupplies.com/product/tri-testosterone-lite-350mg-ml-int/ 1 2025-01-10 21:54 +00:00\r\nhttps://anabolicsupplies.com/product/hexo-trenbolone-100mg-ml-int/ 1 2025-01-10 21:54 +00:00\r\nhttps://anabolicsupplies.com/product/hexo-trenbolone-100mg-ml/ 1 2025-01-10 21:54 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-npp-blend-150/ 1 2025-01-10 21:55 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-npp-blend-150-int/ 1 2025-01-10 21:55 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-deca-blend-500mg-ml-int/ 1 2025-01-10 21:55 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-deca-blend-500mg-ml/ 1 2025-01-10 21:55 +00:00\r\nhttps://anabolicsupplies.com/product/dhb-1-test-cyp-100mg-ml/ 1 2025-01-10 21:55 +00:00\r\nhttps://anabolicsupplies.com/product/dhb-1-test-cyp-100mg-ml-int/ 1 2025-01-10 21:55 +00:00\r\nhttps://anabolicsupplies.com/product/tren-test-mast-long-300mg-ml-2/ 1 2025-01-10 21:56 +00:00\r\nhttps://anabolicsupplies.com/product/tren-test-mast-long-300mg-ml/ 1 2025-01-10 21:56 +00:00\r\nhttps://anabolicsupplies.com/product/helio-clen-yohimbine-40mcg-5-5mg-ml/ 1 2025-01-10 21:56 +00:00\r\nhttps://anabolicsupplies.com/product/helio-clen-yohimbine-40mcg-5-5mg-ml-int/ 1 2025-01-10 21:56 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-equipoise-400mg-ml/ 1 2025-01-10 21:56 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-equipoise-400mg-ml-int/ 1 2025-01-10 21:56 +00:00\r\nhttps://anabolicsupplies.com/product/test-tren-bold-blend-400mg-ml/ 1 2025-01-10 21:57 +00:00\r\nhttps://anabolicsupplies.com/product/tri-testosterone-pro-400mg-ml-int/ 1 2025-01-10 21:57 +00:00\r\nhttps://anabolicsupplies.com/product/tren-a-100mg-ml-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/super-primo-200mg-ml-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/cytomel-t3-50mcg-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/3-test-350-blend-350mg-ml-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/accutane-20mg-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/anomass-400-mix-400mg-ml-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/aromasin-25mg-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/deca-250mg-ml-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/femara-5mg-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/halo-10mg-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/letrozol-2-5mg-nakon-medical-int/ 1 2025-01-10 23:10 +00:00\r\nhttps://anabolicsupplies.com/product/long-mix-300mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/npp-150mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/primo-100mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/proviron-20mg-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/stanozolol-50mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/supertest-450-blend-450mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/susta-500mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/test-eq-200-mix-400mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/testo-suspension-100mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/winstrol-25mg-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/winstrol-50mg-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/1-test-cyp-100mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/3-test-400-blend-400mg-ml-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/cialis-25mg-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/dbol-50mg-nakon-medical-int/ 1 2025-01-10 23:11 +00:00\r\nhttps://anabolicsupplies.com/product/ment-50mg-ml-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/superdrol-10mg-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/test-e-400mg-ml-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/tren-e-200mg-ml-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/clenbuterol-40mcg-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/mass-stack-500-mix-500mg-ml-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/tamox-20mg-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/viagra-100mg-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/equipoise-250mg-ml-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/equipoise-500mg-ml-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/masteron-e-200mg-ml-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/short-mix-150mg-ml-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/adex-1mg-nakon-medical-int/ 1 2025-01-10 23:12 +00:00\r\nhttps://anabolicsupplies.com/product/primobolum-magnum-laboratories/ 1 2025-01-10 23:14 +00:00\r\nhttps://anabolicsupplies.com/product/parabolan-genetic-pharmaceuticals/ 1 2025-01-10 23:15 +00:00\r\nhttps://anabolicsupplies.com/product/parabolan-amps-genetic-pharmaceuticals/ 1 2025-01-10 23:15 +00:00\r\nhttps://anabolicsupplies.com/product/tri-trenbolone-150-genetic-pharmaceuticals/ 1 2025-01-10 23:15 +00:00\r\nhttps://anabolicsupplies.com/product/testorox-p100-amps-zerox-pharmaceuticals/ 1 2025-01-10 23:20 +00:00\r\nhttps://anabolicsupplies.com/product/testorox-mix-zerox-pharmaceuticals/ 1 2025-01-10 23:20 +00:00\r\nhttps://anabolicsupplies.com/product/masteron-10amps-ice-pharmaceuticals/ 1 2025-01-10 23:21 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-cypionate-250mg/ 1 2025-01-10 23:24 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-propionate-100mg/ 1 2025-01-10 23:24 +00:00\r\nhttps://anabolicsupplies.com/product/ultraplex-150-axiolabs-int/ 1 2025-01-10 23:27 +00:00\r\nhttps://anabolicsupplies.com/product/trenabol-hexa-100-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:40 +00:00\r\nhttps://anabolicsupplies.com/product/testabol-propionate-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:41 +00:00\r\nhttps://anabolicsupplies.com/product/testabol-enanthate-250-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:41 +00:00\r\nhttps://anabolicsupplies.com/product/testabol-depot-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:41 +00:00\r\nhttps://anabolicsupplies.com/product/sustabol-350-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:42 +00:00\r\nhttps://anabolicsupplies.com/product/primobol-inject-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:42 +00:00\r\nhttps://anabolicsupplies.com/product/mastabol-200-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:42 +00:00\r\nhttps://anabolicsupplies.com/product/mastabol-100-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:42 +00:00\r\nhttps://anabolicsupplies.com/product/durabol-100-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:42 +00:00\r\nhttps://anabolicsupplies.com/product/decabol-250-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:43 +00:00\r\nhttps://anabolicsupplies.com/product/boldabol-forte-300-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:43 +00:00\r\nhttps://anabolicsupplies.com/product/turanabol-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:43 +00:00\r\nhttps://anabolicsupplies.com/product/taldabol-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:43 +00:00\r\nhttps://anabolicsupplies.com/product/stanabol-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:43 +00:00\r\nhttps://anabolicsupplies.com/product/oxydrol-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:44 +00:00\r\nhttps://anabolicsupplies.com/product/oxanabol-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:44 +00:00\r\nhttps://anabolicsupplies.com/product/methanabol-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:44 +00:00\r\nhttps://anabolicsupplies.com/product/clomiphene-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:44 +00:00\r\nhttps://anabolicsupplies.com/product/clenbuterol-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:44 +00:00\r\nhttps://anabolicsupplies.com/product/anastrozole-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:44 +00:00\r\nhttps://anabolicsupplies.com/product/boldabol-200-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:45 +00:00\r\nhttps://anabolicsupplies.com/product/andropen-450-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:45 +00:00\r\nhttps://anabolicsupplies.com/product/somatotrobol-british-dragon-pharmaceuticals-int/ 1 2025-01-10 23:45 +00:00\r\nhttps://anabolicsupplies.com/product/insulin-needle-0-5ml/ 1 2025-01-10 23:45 +00:00\r\nhttps://anabolicsupplies.com/product/insulin-needle-1ml/ 1 2025-01-10 23:45 +00:00\r\nhttps://anabolicsupplies.com/product/zinco/ 1 2025-01-10 23:46 +00:00\r\nhttps://anabolicsupplies.com/product/redox-c/ 1 2025-01-10 23:46 +00:00\r\nhttps://anabolicsupplies.com/product/evigen/ 1 2025-01-10 23:46 +00:00\r\nhttps://anabolicsupplies.com/product/dodex/ 1 2025-01-10 23:46 +00:00\r\nhttps://anabolicsupplies.com/product/benexol/ 1 2025-01-10 23:46 +00:00\r\nhttps://anabolicsupplies.com/product/novofine-432g-830g/ 1 2025-01-10 23:47 +00:00\r\nhttps://anabolicsupplies.com/product/levitra/ 1 2025-01-10 23:47 +00:00\r\nhttps://anabolicsupplies.com/product/vigrande/ 1 2025-01-10 23:47 +00:00\r\nhttps://anabolicsupplies.com/product/piriligy-dapoksetin-30mg-60mg/ 1 2025-01-10 23:48 +00:00\r\nhttps://anabolicsupplies.com/product/lifta-tadalafil/ 1 2025-01-10 23:48 +00:00\r\nhttps://anabolicsupplies.com/product/degra-50mg/ 1 2025-01-10 23:48 +00:00\r\nhttps://anabolicsupplies.com/product/cialis-28tabs-x-5mg/ 1 2025-01-10 23:48 +00:00\r\nhttps://anabolicsupplies.com/product/cialis-8tabs-x-20mg/ 1 2025-01-10 23:48 +00:00\r\nhttps://anabolicsupplies.com/product/cialis-4tabs-x-20mg/ 1 2025-01-10 23:48 +00:00\r\nhttps://anabolicsupplies.com/product/tiromel-t3/ 1 2025-01-11 08:19 +00:00\r\nhttps://anabolicsupplies.com/product/testo-e/ 1 2025-01-11 08:19 +00:00\r\nhttps://anabolicsupplies.com/product/sustanon/ 1 2025-01-11 08:19 +00:00\r\nhttps://anabolicsupplies.com/product/santra/ 1 2025-01-11 08:19 +00:00\r\nhttps://anabolicsupplies.com/product/proscar/ 1 2025-01-11 08:19 +00:00\r\nhttps://anabolicsupplies.com/product/primobolan/ 1 2025-01-11 08:19 +00:00\r\nhttps://anabolicsupplies.com/product/parlodel/ 1 2025-01-11 08:19 +00:00\r\nhttps://anabolicsupplies.com/product/ovitrelle/ 1 2025-01-11 08:19 +00:00\r\nhttps://anabolicsupplies.com/product/modiodal/ 1 2025-01-11 08:19 +00:00\r\nhttps://anabolicsupplies.com/product/lipitor/ 1 2025-01-11 08:20 +00:00\r\nhttps://anabolicsupplies.com/product/meriofert-75iu-150iu/ 1 2025-01-11 08:20 +00:00\r\nhttps://anabolicsupplies.com/product/glucobay-100/ 1 2025-01-11 08:20 +00:00\r\nhttps://anabolicsupplies.com/product/glucobay-50/ 1 2025-01-11 08:20 +00:00\r\nhttps://anabolicsupplies.com/product/levotiron-50mcg-175mcg/ 1 2025-01-11 08:20 +00:00\r\nhttps://anabolicsupplies.com/product/letrasan/ 1 2025-01-11 08:20 +00:00\r\nhttps://anabolicsupplies.com/product/glucophage/ 1 2025-01-11 08:20 +00:00\r\nhttps://anabolicsupplies.com/product/glifor-850mg/ 1 2025-01-11 08:21 +00:00\r\nhttps://anabolicsupplies.com/product/expigment/ 1 2025-01-11 08:21 +00:00\r\nhttps://anabolicsupplies.com/product/diaformin-1000mg/ 1 2025-01-11 08:21 +00:00\r\nhttps://anabolicsupplies.com/product/euthyrox-100mcg/ 1 2025-01-11 08:22 +00:00\r\nhttps://anabolicsupplies.com/product/euthyrox-150mcg/ 1 2025-01-11 08:23 +00:00\r\nhttps://anabolicsupplies.com/product/clenbuterol-20mcg/ 1 2025-01-11 08:23 +00:00\r\nhttps://anabolicsupplies.com/product/bitiron-t3-12-5mcg-t4-50mcg-mix/ 1 2025-01-11 08:23 +00:00\r\nhttps://anabolicsupplies.com/product/viagra-25mg-100mg/ 1 2025-01-11 08:23 +00:00\r\nhttps://anabolicsupplies.com/product/saxenda-6-mg-ml-3-pens/ 1 2025-01-11 08:23 +00:00\r\nhttps://anabolicsupplies.com/product/roaccutane-20mg/ 1 2025-01-11 08:23 +00:00\r\nhttps://anabolicsupplies.com/product/tamoxifen-10mg-20mg/ 1 2025-01-11 08:24 +00:00\r\nhttps://anabolicsupplies.com/product/humalog-kwikpen/ 1 2025-01-11 08:24 +00:00\r\nhttps://anabolicsupplies.com/product/modiwake-100mg-200mg/ 1 2025-01-11 08:24 +00:00\r\nhttps://anabolicsupplies.com/product/norditropin-nordiflex-15iu-45iu/ 1 2025-01-11 08:24 +00:00\r\nhttps://anabolicsupplies.com/product/femara-2-5mg/ 1 2025-01-11 08:24 +00:00\r\nhttps://anabolicsupplies.com/product/dostinex-8tabs-x-0-5mg/ 1 2025-01-11 08:24 +00:00\r\nhttps://anabolicsupplies.com/product/humatrope-18iu-72iu/ 1 2025-01-11 08:24 +00:00\r\nhttps://anabolicsupplies.com/product/bemiks-kompoze/ 1 2025-01-11 08:24 +00:00\r\nhttps://anabolicsupplies.com/product/genotropin-pfizer-16iu-36iu/ 1 2025-01-11 08:24 +00:00\r\nhttps://anabolicsupplies.com/product/apidra-solostar/ 1 2025-01-11 08:25 +00:00\r\nhttps://anabolicsupplies.com/product/xatral-xl/ 1 2025-01-11 08:25 +00:00\r\nhttps://anabolicsupplies.com/product/lasix/ 1 2025-01-11 08:25 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-tesamorelin-2mg-int/ 1 2025-01-11 08:25 +00:00\r\nhttps://anabolicsupplies.com/product/post-cycle-therapy-set/ 1 2025-01-11 08:28 +00:00\r\nhttps://anabolicsupplies.com/product/anavar-lite-10mg/ 1 2025-01-11 08:28 +00:00\r\nhttps://anabolicsupplies.com/product/etho-trenbolone-200mg-ml/ 1 2025-01-11 08:29 +00:00\r\nhttps://anabolicsupplies.com/product/acro-trenbolone-100mg-ml/ 1 2025-01-11 08:29 +00:00\r\nhttps://anabolicsupplies.com/product/deca-durabolin-300mg-ml/ 1 2025-01-11 08:29 +00:00\r\nhttps://anabolicsupplies.com/product/etho-testosterone-300mg-ml/ 1 2025-01-11 08:29 +00:00\r\nhttps://anabolicsupplies.com/product/cypo-testosterone-200mg-ml-int/ 1 2025-01-11 08:29 +00:00\r\nhttps://anabolicsupplies.com/product/pro-anadrol-50mg/ 1 2025-01-11 08:29 +00:00\r\nhttps://anabolicsupplies.com/product/100-pct-insulin-needle-for-hgh-pen-intl-warehouse/ 1 2025-01-11 08:30 +00:00\r\nhttps://anabolicsupplies.com/product/pheno-npp-100mg-ml/ 1 2025-01-11 08:30 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-human-growth-hormones/ 1 2025-01-11 08:30 +00:00\r\nhttps://anabolicsupplies.com/product/quant-equipoise-300mg-ml-intl-warehouse/ 1 2025-01-11 08:30 +00:00\r\nhttps://anabolicsupplies.com/product/clenbuterol-for-sale-40mcg-beligas-pharma/ 1 2025-01-11 08:30 +00:00\r\nhttps://anabolicsupplies.com/product/cytomelt3-50-mcg-intl-warehouse/ 1 2025-01-11 08:30 +00:00\r\nhttps://anabolicsupplies.com/product/cretoprovirion-20mg-intl-warehouse/ 1 2025-01-11 08:31 +00:00\r\nhttps://anabolicsupplies.com/product/monofemara-letrozole-intl-warehouse/ 1 2025-01-11 08:31 +00:00\r\nhttps://anabolicsupplies.com/product/retho-cialis-intl-warehouse/ 1 2025-01-11 08:31 +00:00\r\nhttps://anabolicsupplies.com/product/supo-aromasin-intl-warehouse/ 1 2025-01-11 08:31 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-8-week-high-definition-stack/ 1 2025-01-11 08:31 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-12-weeks-competition-prep-stack-plus-anti-estrogen-intl-warehouse/ 1 2025-01-11 08:31 +00:00\r\nhttps://anabolicsupplies.com/product/primobolan-depot-usa/ 1 2025-01-11 08:36 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-isocaproate-usa/ 1 2025-01-11 08:39 +00:00\r\nhttps://anabolicsupplies.com/product/clomixin-int/ 1 2025-01-11 08:44 +00:00\r\nhttps://anabolicsupplies.com/product/trenbolone-enanthate-euro-pharmacies/ 1 2025-01-11 08:47 +00:00\r\nhttps://anabolicsupplies.com/product/eurobolan-euro-pharmacies/ 1 2025-01-11 08:52 +00:00\r\nhttps://anabolicsupplies.com/product/von-letrozole/ 1 2025-01-11 09:54 +00:00\r\nhttps://anabolicsupplies.com/product/s-23-rad/ 1 2025-01-11 10:14 +00:00\r\nhttps://anabolicsupplies.com/product/cypo-testosterone-200mg-ml/ 1 2025-01-11 21:41 +00:00\r\nhttps://anabolicsupplies.com/product/etho-testosterone-300mg-ml-2/ 1 2025-01-11 21:58 +00:00\r\nhttps://anabolicsupplies.com/product/deca-durabolin-300mg-ml-2/ 1 2025-01-11 21:59 +00:00\r\nhttps://anabolicsupplies.com/product/etho-trenbolone-200mg-ml-2/ 1 2025-01-11 22:02 +00:00\r\nhttps://anabolicsupplies.com/product/acro-trenbolone-100mg-ml-2/ 1 2025-01-11 22:04 +00:00\r\nhttps://anabolicsupplies.com/product/propha-masteron-100mg-ml/ 1 2025-01-11 22:07 +00:00\r\nhttps://anabolicsupplies.com/product/pro-dynabol-20mg/ 1 2025-01-11 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/pro-winstrol-20mg/ 1 2025-01-11 22:12 +00:00\r\nhttps://anabolicsupplies.com/product/suste-testosterone-250mg-ml-sustanon-250/ 1 2025-01-11 22:13 +00:00\r\nhttps://anabolicsupplies.com/product/anavar-lite-10mg-2/ 1 2025-01-11 22:14 +00:00\r\nhttps://anabolicsupplies.com/product/pro-anadrol-50mg-2/ 1 2025-01-11 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/etho-primobolan-100mg-ml-2/ 1 2025-01-11 22:21 +00:00\r\nhttps://anabolicsupplies.com/product/propha-testosterone-100mg-ml-2/ 1 2025-01-11 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/etho-masteron-200mg-ml-2/ 1 2025-01-11 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/pro-anavar-50mg-2/ 1 2025-01-11 22:36 +00:00\r\nhttps://anabolicsupplies.com/product/clomid-50mg-3/ 1 2025-01-11 22:40 +00:00\r\nhttps://anabolicsupplies.com/product/3cc-syringe-with-23-gauge-pack-of-10/ 1 2025-01-15 16:35 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-hcg-5000/ 1 2025-01-16 18:25 +00:00\r\nhttps://anabolicsupplies.com/product/arimidex-1mg-2/ 1 2025-01-16 18:27 +00:00\r\nhttps://anabolicsupplies.com/product/nolvadex-10mg-beligas-pharmaceutical/ 1 2025-01-16 18:28 +00:00\r\nhttps://anabolicsupplies.com/product/apto-turinabol-10mg/ 1 2025-01-16 18:30 +00:00\r\nhttps://anabolicsupplies.com/product/hypho-viagra-50mg/ 1 2025-01-16 18:31 +00:00\r\nhttps://anabolicsupplies.com/product/100-pct-insulin-needle-for-hgh-pen/ 1 2025-01-16 18:33 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-hgh-human-growth-hormones/ 1 2025-01-16 18:34 +00:00\r\nhttps://anabolicsupplies.com/product/anastrozole-1mg/ 1 2025-01-16 18:35 +00:00\r\nhttps://anabolicsupplies.com/product/letrozole-2-5mg/ 1 2025-01-16 18:37 +00:00\r\nhttps://anabolicsupplies.com/product/ketotifen-fumarate-1mg/ 1 2025-01-16 18:39 +00:00\r\nhttps://anabolicsupplies.com/product/exemestane-25mg-2/ 1 2025-01-16 18:41 +00:00\r\nhttps://anabolicsupplies.com/product/finasteride-5mg/ 1 2025-01-16 18:43 +00:00\r\nhttps://anabolicsupplies.com/product/clomiphene-40mg/ 1 2025-01-16 18:45 +00:00\r\nhttps://anabolicsupplies.com/product/pramipexole-2mg/ 1 2025-01-16 18:47 +00:00\r\nhttps://anabolicsupplies.com/product/measuring-dropper-1ml/ 1 2025-01-16 18:50 +00:00\r\nhttps://anabolicsupplies.com/product/t3liothyronine-100mcg/ 1 2025-01-16 18:52 +00:00\r\nhttps://anabolicsupplies.com/product/tadalafil-30mg-cialis/ 1 2025-01-16 18:54 +00:00\r\nhttps://anabolicsupplies.com/product/t4levothyroxine-400-mcg/ 1 2025-01-16 18:57 +00:00\r\nhttps://anabolicsupplies.com/product/toremifene-citrate-60mg/ 1 2025-01-16 18:59 +00:00\r\nhttps://anabolicsupplies.com/product/pheno-npp-100mg-ml-2/ 1 2025-01-16 19:00 +00:00\r\nhttps://anabolicsupplies.com/product/tamoxifen-citrate-20mg/ 1 2025-01-16 19:01 +00:00\r\nhttps://anabolicsupplies.com/product/supo-aromasin-25mg/ 1 2025-01-16 19:03 +00:00\r\nhttps://anabolicsupplies.com/product/supra-testosterone-500mg-ml-sustanon-500-2/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/retho-cialis-25mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/creto-provirion-20mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/cytomel-t3-50mcg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/monofemara-letrozole/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/clenbuterol-40mcg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/sustazone-test-mix-sustanon-250mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/propizone/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/basezone-testosterone-base-50mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/testezone-testosterone-enanthate-250mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/methazone-methenelone-enanthate-100mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/nandozone-nandrolone-deconate-200mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/boldzone-boldenone-250mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/trenazone-trenbolone-acetate-100-mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/drostazone-drostanolone-propionate-100mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/stanzone-stanozolol-10mg/ 1 2025-01-20 21:38 +00:00\r\nhttps://anabolicsupplies.com/product/primozone-methenolone-enanthate-10-mg/ 1 2025-01-20 21:39 +00:00\r\nhttps://anabolicsupplies.com/product/oxazone-oxandrolone-10-mg/ 1 2025-01-20 21:39 +00:00\r\nhttps://anabolicsupplies.com/product/oxyzone-oxymetholone-50-mg-100-tab/ 1 2025-01-20 21:39 +00:00\r\nhttps://anabolicsupplies.com/product/tren-hex-75mg-parabolan-for-strength-rapid-lean-muscle-and-definition/ 1 2025-01-20 21:47 +00:00\r\nhttps://anabolicsupplies.com/product/grobe-anavar/ 1 2025-01-20 21:52 +00:00\r\nhttps://anabolicsupplies.com/product/halotestin-5/ 1 2025-01-20 21:59 +00:00\r\nhttps://anabolicsupplies.com/product/finasteride/ 1 2025-01-20 22:00 +00:00\r\nhttps://anabolicsupplies.com/product/nanox-ph/ 1 2025-01-20 22:01 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-ph-american-brand/ 1 2025-01-20 22:05 +00:00\r\nhttps://anabolicsupplies.com/product/nandrophenyl-100/ 1 2025-01-20 22:07 +00:00\r\nhttps://anabolicsupplies.com/product/xxx/ 1 2025-01-20 22:09 +00:00\r\nhttps://anabolicsupplies.com/product/halotestin-10/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/fermaprovi-5/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/igf-des-1-3/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/anavar-50/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/1-testosterone-cypionate/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/primobolan-depot-175/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/super-lean-tab/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/bpc-157/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/mgf/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/tb-500/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/mt-2/ 1 2025-01-20 22:10 +00:00\r\nhttps://anabolicsupplies.com/product/igf-1-lr3/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/halotelix-int/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/1-testosterone-cypionate-euro-pharmacies/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/euro-hmg-75iu-gold-int/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/winstrol-euro-pharmacies/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/blend-350-gold-euro-pharmacies/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/boldenone-undecylenate-euro-pharmacies/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/bulk-cycle-int/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/cjc-1295-2mg-gold-int/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/drostanolone-enanthate-euro-pharmacies/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/ghrp-6-5mg-gold-int/ 1 2025-01-20 22:11 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-isocaproate-euro-pharmacies/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/tri-trenbolone-euro-pharmacies/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/turaxel-10-int/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/turaxel-25-int/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/bpc-157-5mg-gold-int/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/cutting-mix-plus-300-gold-euro-pharmacies/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/d-bol-50-gold-euro-pharmacies/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/hgh-frag-176-191-5mg-gold-int/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/blend-400-gold-euro-pharmacies/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/salbutamolex-int/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/eurotropin-hgh-100iu-int/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/cjc-1295-with-dac-2mg-gold-int/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/igf-1-lr3-1mg-gold/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/test-500-gold-int/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/rapid-cut-pro-350-gold/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/summer-cutting-cycle-int/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/test-e-250-deca-200-euro-pharmacies/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/trestolone-acetate-euro-pharmacies/ 1 2025-01-20 22:15 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-phenylpropionate-euro-pharmacies/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/exemestanex-int/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/trt-plus-gold-int/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/eurotropin-hgh-40iu-int/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/methandionex-25-int/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/oxandrolex-10-int/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/oxymetholex-int/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/t3-int/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/sus-500-gold-int/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/t3-t4-int/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-propionate-euro-pharmacies/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/test-400-euro-pharmacies/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/trenbolone-acetate-euro-pharmacies/ 1 2025-01-20 22:16 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-cypionate-euro-pharmacies/ 1 2025-01-20 22:17 +00:00\r\nhttps://anabolicsupplies.com/product/nandrolone-phenylpropionate-euro-pharmacies/ 1 2025-01-20 22:17 +00:00\r\nhttps://anabolicsupplies.com/product/letrozolexin-int/ 1 2025-01-20 22:17 +00:00\r\nhttps://anabolicsupplies.com/product/clenbuterox-int/ 1 2025-01-20 22:17 +00:00\r\nhttps://anabolicsupplies.com/product/stanozolex-10-int/ 1 2025-01-20 22:17 +00:00\r\nhttps://anabolicsupplies.com/product/drostanolone-propionate-euro-pharmacies/ 1 2025-01-20 22:17 +00:00\r\nhttps://anabolicsupplies.com/product/melanotan-ii-10mg-gold-int/ 1 2025-01-20 22:17 +00:00\r\nhttps://anabolicsupplies.com/product/sustanon-250-euro-pharmacies/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/cialix-int/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/nandrolone-decanoate-euro-pharmacies/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/tamotex-int/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/eurigil-hcg-5000iu-gold-int/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-enanthate-int/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/anastrozolex-int/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/dhea-300-int/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/dhea-100-euro-pharmacies/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/meldonix-int/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/provixin-int/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/boldenone-undecylenate-pivotal-labs/ 1 2025-01-20 22:18 +00:00\r\nhttps://anabolicsupplies.com/product/nandrolone-phenylpropionate-pivotal-labs/ 1 2025-01-20 22:19 +00:00\r\nhttps://anabolicsupplies.com/product/masteron-enanthate/ 1 2025-01-20 22:19 +00:00\r\nhttps://anabolicsupplies.com/product/nandrolone-decanoate-pivotal-labs/ 1 2025-01-20 22:19 +00:00\r\nhttps://anabolicsupplies.com/product/trenbolone-enanthate-pivotal-labs/ 1 2025-01-20 22:19 +00:00\r\nhttps://anabolicsupplies.com/product/masteron-propionate-pivotal-labs/ 1 2025-01-20 22:19 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-cypionate-pivotal-labs/ 1 2025-01-20 22:19 +00:00\r\nhttps://anabolicsupplies.com/product/oxandrolone-anavar/ 1 2025-01-20 22:19 +00:00\r\nhttps://anabolicsupplies.com/product/sustanon-250-pivotal-labs/ 1 2025-01-20 22:19 +00:00\r\nhttps://anabolicsupplies.com/product/trenbolone-acetate-pivotal-labs/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/oxymetholone-anadrol/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-enanthate/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/stanozolol-winstrol/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/metandienone-dianabol/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/meldonix-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-propionate-pivotal-labs/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/ghrp-6-5mg-gold-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/ghrp-2-5mg-gold-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/eurobolan-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/hexarelin-2mg-gold-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/nandrolone-phenylpropionate-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/mgf-2mg-gold-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/hgh-frag-176-191-5mg-gold-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/oxytocin-5mg-gold-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/peg-mgf-2mg-gold-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/stenbolone-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/pal-ghk-10mg-gold-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/tb-500-2mg-gold-usa/ 1 2025-01-20 22:20 +00:00\r\nhttps://anabolicsupplies.com/product/trt-plus-gold-usa/ 1 2025-01-20 22:22 +00:00\r\nhttps://anabolicsupplies.com/product/ipamorelin-5mg-gold-usa/ 1 2025-01-20 22:22 +00:00\r\nhttps://anabolicsupplies.com/product/euro-hmg-75iu-gold-usa/ 1 2025-01-20 22:22 +00:00\r\nhttps://anabolicsupplies.com/product/drostanolone-enanthate-usa/ 1 2025-01-20 22:22 +00:00\r\nhttps://anabolicsupplies.com/product/m-1-t-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/pt141-10mg-gold-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/rapid-cut-pro-350-gold-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/bpc-157-5mg-gold-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/turaxel-25-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/trestolone-acetate-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/salbutamolex-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/cjc-1295-2mg-gold-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/d-bol-50-gold-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/igf-1-lr3-1mg-gold-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/cutting-mix-plus-300-gold-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/test-500-gold-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-phenylpropionate-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/oxymetholex-usa/ 1 2025-01-20 22:23 +00:00\r\nhttps://anabolicsupplies.com/product/eurotropin-hgh-100iu-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/blend-400-gold-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/stanozolex-10-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-propionate-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/test-400-gold-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/t4-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/sus-500-gold-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/blend-350-gold-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/bulk-cycle-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/letrozolexin-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/trenbolone-acetate-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/summer-cutting-cycle-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/methandionex-25-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/t3-t4-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/tri-trenbolone-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/1-testosterone-cypionate-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/drostanolone-propionate-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/exemestanex-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/boldenone-undecylenate-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/melanotan-ii-10mg-gold-usa/ 1 2025-01-20 22:24 +00:00\r\nhttps://anabolicsupplies.com/product/methandionex-10-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/oxandrolex-10-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/sustanon-250-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/cialix-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/trenbolone-enanthate-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/t3-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/nandrolone-decanoate-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-cypionate-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/anastrozolex-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/clomixin-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/tamotex-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/clenbuterox-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/eurigil-hcg-5000iu-gold-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/provixin-usa/ 1 2025-01-20 22:25 +00:00\r\nhttps://anabolicsupplies.com/product/a-50-gold-usa/ 1 2025-01-20 22:26 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-enanthate-usa/ 1 2025-01-20 22:26 +00:00\r\nhttps://anabolicsupplies.com/product/stanozolex-25-usa/ 1 2025-01-20 22:26 +00:00\r\nhttps://anabolicsupplies.com/product/cutting-mix-200-gold-usa/ 1 2025-01-20 22:26 +00:00\r\nhttps://anabolicsupplies.com/product/testosterone-undecanoate-usa/ 1 2025-01-20 22:26 +00:00\r\nhttps://anabolicsupplies.com/product/methenolone-acetate/ 1 2025-01-20 22:26 +00:00\r\nhttps://anabolicsupplies.com/product/blend-450-gold-usa/ 1 2025-01-20 22:28 +00:00\r\nhttps://anabolicsupplies.com/product/t-bol-50-gold-usa/ 1 2025-01-20 22:28 +00:00\r\nhttps://anabolicsupplies.com/product/superdrolex-usa/ 1 2025-01-20 22:28 +00:00\r\nhttps://anabolicsupplies.com/product/viagrax-usa/ 1 2025-01-20 22:28 +00:00\r\nhttps://anabolicsupplies.com/product/etho-masteron-200mg-ml/ 1 2025-01-20 22:28 +00:00\r\nhttps://anabolicsupplies.com/product/pro-anavar-50mg/ 1 2025-01-20 22:28 +00:00\r\nhttps://anabolicsupplies.com/product/etho-primobolan-100mg-ml/ 1 2025-01-20 22:28 +00:00\r\nhttps://anabolicsupplies.com/product/oxandrolex-25-usa/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/propha-testosterone-100mg-ml/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/clomid-50mg-2/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/packs-of-10-3cc-syringe-with-23-gauge/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/arimidex-1mg/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/supra-testosterone-500mg-ml-sustanon-500/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/hypho-viagra/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/aptoturinabol-10mg-intl-warehouse/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-12-weeks-heavy-bulk-stack-plus-anti-estrogen/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-8-weeks-powerlifter-stack-plus-anti-estrogen/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-lady-oral-shred-stack/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-performance-stack-plus-anti-estrogen/ 1 2025-01-20 22:29 +00:00\r\nhttps://anabolicsupplies.com/product/supra-testosterone-400mg-ml/ 1 2025-01-20 22:30 +00:00\r\nhttps://anabolicsupplies.com/product/beligas-12-weeks-heavy-cut-stack-plus-anti-estrogen/ 1 2025-01-20 22:32 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-eq-500-usa/ 1 2025-01-20 22:32 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-ment-100-usa/ 1 2025-01-20 22:32 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-cut-long-300-usa/ 1 2025-01-20 22:32 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-arimidex-int/ 1 2025-01-20 22:32 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-suspension-100mg-ml-int/ 1 2025-01-20 22:32 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-femara-5mg-int/ 1 2025-01-20 22:32 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-ment-50mg-ml-int/ 1 2025-01-20 22:32 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-helios-5-8mg-ml-int/ 1 2025-01-20 22:32 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-tren-hexa-100mg-ml-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-turinabol-20mg-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-viagra-100mg-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-1-test-cyp-100mg-ml-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-cialis-25mg-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-superdrol-10mg-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-tritest-400-blend-400mg-ml-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-tritren-150mg-ml-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-mass-stack-500-mix-500mg-ml-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-anomass-400-mix-400mg-ml-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-supertest-450mg-ml-int/ 1 2025-01-20 22:33 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-tritest-350-blend-300mg-ml-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/bacteriostatic-water-30ml/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-cjc1295-dac-2mg-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-bpc-157-5mg-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-aod9604-2mg-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-cut-long-300mg-ml-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-cjc1295-no-dac-2mg-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/cjc1295-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-epithalon-10mg-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-gonadorelin-2mg-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-ghrp-2-5mg-int/ 1 2025-01-20 22:41 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-follistion-344-1mg-int/ 1 2025-01-20 22:42 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-pt-141-10mg-int/ 1 2025-01-20 22:42 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-peg-mgf-2mg-int/ 1 2025-01-20 22:42 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-oxytocin-2mg-int/ 1 2025-01-20 22:42 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-ipamorelin-2mg-int/ 1 2025-01-20 22:42 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-igf-1-lr3-0-1mg-int/ 1 2025-01-20 22:42 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-hgh-fragment-176-191-5mg-int/ 1 2025-01-20 22:42 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-hexarelin-2mg-int/ 1 2025-01-20 22:42 +00:00\r\nhttps://anabolicsupplies.com/product/ultima-sermorelin-5mg-int/ 1 2025-01-20 22:42 +00:00\r\nhttps://anabolicsupplies.com/product/euthyrox-75mcg/ 1 2025-01-20 22:45 +00:00\r\nhttps://anabolicsupplies.com/product/glifor-1000mg/ 1 2025-01-20 22:45 +00:00\r\nhttps://anabolicsupplies.com/product/euthyrox-50mcg/ 1 2025-01-20 22:45 +00:00\r\nhttps://anabolicsupplies.com/product/aldactone-100mg/ 1 2025-01-20 22:45 +00:00\r\nhttps://anabolicsupplies.com/product/aknetrent-10mg/ 1 2025-01-20 22:45 +00:00\r\nhttps://anabolicsupplies.com/product/aknetrent-20mg/ 1 2025-01-20 22:45 +00:00\r\nhttps://anabolicsupplies.com/product/aromasin/ 1 2025-01-20 22:45 +00:00\r\nhttps://anabolicsupplies.com/product/cabaser-20tabs-x-1mg/ 1 2025-01-20 22:45 +00:00\r\nhttps://anabolicsupplies.com/product/dostinex-2tabs-x-0-5mg/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/atarax/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/avodart/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/anapolon/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/cabaser-20tabs-x-2mg/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/dermovate/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/klomen/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/choriomon/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/cardura-20tabs-x-4mg/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/cardura-20tabs-x-2mg/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/diaformin-850mg/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/exetu/ 1 2025-01-20 22:46 +00:00\r\nhttps://anabolicsupplies.com/product/micardis/ 1 2025-01-20 22:48 +00:00\r\nhttps://anabolicsupplies.com/product/nebido/ 1 2025-01-20 22:49 +00:00\r\nhttps://anabolicsupplies.com/product/testogel/ 1 2025-01-20 22:49 +00:00\r\nhttps://anabolicsupplies.com/product/ventolin-spray/ 1 2025-01-20 22:49 +00:00\r\nhttps://anabolicsupplies.com/product/thincal/ 1 2025-01-20 22:49 +00:00\r\nhttps://anabolicsupplies.com/product/zimaks/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/trianseril/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/munderm-jel/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/megace/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/humalog-mix-75-25/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/humalog-mix-50-50/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/novorapid/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/humulin-r-cartridge/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/humulin-r-vial/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/levemir/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/novomx/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/victoza/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/zoretanin-10mg-20mg/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/zaditen-1mg-2mg/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/omnitrope-5mg-15iu-15mg-45iu/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/eporon/ 1 2025-01-20 22:50 +00:00\r\nhttps://anabolicsupplies.com/product/sildenafil-actavis-50mg/ 1 2025-01-20 22:52 +00:00\r\nhttps://anabolicsupplies.com/product/trenabol-depot-200-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/trenabol-100-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/trinabol-150-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/exemestane-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/halotestex-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/sildabol-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/mesterolone-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/letrobol-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/t3-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/tamoxifen-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:53 +00:00\r\nhttps://anabolicsupplies.com/product/aquabol-suspension-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/stanabol-50-inj-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/anadroxyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/ultrabol-forte-275-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/ultrabol-150-british-dragon-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/kalpatropin-10-iu-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/oxandroxyl-10-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/dianoxyl-10-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/stanoxyl-10-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/turanaxyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:54 +00:00\r\nhttps://anabolicsupplies.com/product/clenbutaxyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/thyroxyl-t3-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/arimixyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/clomixyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/cutaxyl-150-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/taldenaxyl-20-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/duraxyl-100-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/hexyl-450-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/masteroxyl-100-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/masteroxyl-200-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/primoxyl-100-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/nandroxyl-250-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/sustaxyl-350-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/testoxyl-cypionate-250-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:56 +00:00\r\nhttps://anabolicsupplies.com/product/testoxyl-enanthate-250-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:57 +00:00\r\nhttps://anabolicsupplies.com/product/trenboxyl-acetate-100-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:57 +00:00\r\nhttps://anabolicsupplies.com/product/testoxyl-propionate-100-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:57 +00:00\r\nhttps://anabolicsupplies.com/product/trenboxyl-enanthate-200-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:57 +00:00\r\nhttps://anabolicsupplies.com/product/trenboxyl-hexa-100-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:57 +00:00\r\nhttps://anabolicsupplies.com/product/trinaxyl-150-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:57 +00:00\r\nhttps://anabolicsupplies.com/product/dianoxyl-20-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:58 +00:00\r\nhttps://anabolicsupplies.com/product/haloxyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:58 +00:00\r\nhttps://anabolicsupplies.com/product/kalpatropin-20-iu-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:58 +00:00\r\nhttps://anabolicsupplies.com/product/ortrexyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:58 +00:00\r\nhttps://anabolicsupplies.com/product/dianoxyl-50-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:58 +00:00\r\nhttps://anabolicsupplies.com/product/proviroxyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:58 +00:00\r\nhttps://anabolicsupplies.com/product/primoxyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/oxandroxyl-20-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/aromaxyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/stanoxyl-50-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/stanoxyl-depot-amp-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/boldaxyl-300-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/sildenaxyl-100-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/nolvaxyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/letroxyl-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/testoxyl-suspension-100-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/axotropin-10-iu-axiolabs-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/stanoxyl-depot-kalpa-pharmaceuticals-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/arimiplex-axiolabs-int/ 1 2025-01-20 22:59 +00:00\r\nhttps://anabolicsupplies.com/product/clenbutaplex-axiolabs-int/ 1 2025-01-20 23:00 +00:00\r\nhttps://anabolicsupplies.com/product/oxandroplex-axiolabs-int/ 1 2025-01-20 23:01 +00:00\r\nhttps://anabolicsupplies.com/product/methanoplex-10-axiolabs-int/ 1 2025-01-20 23:01 +00:00\r\nhttps://anabolicsupplies.com/product/clomiplex-axiolabs-int/ 1 2025-01-20 23:01 +00:00\r\nhttps://anabolicsupplies.com/product/oxyplex-axiolabs-int/ 1 2025-01-20 23:01 +00:00\r\nhttps://anabolicsupplies.com/product/stanoplex-10-axiolabs-int/ 1 2025-01-20 23:01 +00:00\r\nhttps://anabolicsupplies.com/product/taldenaplex-20-axiolabs-int/ 1 2025-01-20 23:01 +00:00\r\nhttps://anabolicsupplies.com/product/turanaplex-axiolabs-int/ 1 2025-01-20 23:01 +00:00\r\nhttps://anabolicsupplies.com/product/decaplex-250-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/duraplex-100-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/equiplex-forte-300-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/hexaplex-450-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/equiplex-200-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/primoplex-100-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/testaplex-c-250-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/sustaplex-350-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/testaplex-e-250-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/testaplex-p-100-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/trenaplex-a-100-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/trenaplex-d-100-axiolabs-int/ 1 2025-01-20 23:02 +00:00\r\nhttps://anabolicsupplies.com/product/trenaplex-e-200-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/letroplex-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/haloplex-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/exeplex-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/mastaplex-200-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/mastaplex-100-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/tamoxiplex-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/t3-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/sildenaplex-100-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/proviraplex-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/methanoplex-50-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsupplies.com/product/stanoplex-50-inj-axiolabs-int/ 1 2025-01-20 23:04 +00:00\r\nhttps://anabolicsup',1,'2025-01-30 02:53:26'),
(110,0,10,0,0,'Slot Sewu88','Sewu88@gmail.com','https://segelproductions.com/','Mulai dari bonus deposit, cashback, hingga hadiah-hadiah menarik lainnya',1,'2025-01-30 03:16:39'),
(111,0,10,0,0,'Slot Game Sewu 88','Sewu88@gmail.com','https://LimerickFaire.com/','semua disiapkan untuk meningkatkan saldo akun Anda dan memberikan lebih banyak kesempatan untuk menang',1,'2025-01-30 03:17:02'),
(112,0,10,0,0,'Slot Online 75Kbet','75Kbet@gmail.com','https://GracefullyGifted.com/','menyediakan forum diskusi dan fitur live chat yang memungkinkan Anda untuk berinteraksi dengan pemain lain',1,'2025-01-30 03:17:13'),
(113,0,10,0,0,'Slot Gacor 75Kbet','75Kbet@gmail.com','https://Onda-Wear.com/','Anda dapat berbagi pengalaman, strategi, atau sekadar bertukar informasi seputar',1,'2025-01-30 03:17:26'),
(114,0,10,0,0,'Slot Asia 75Kbet','75Kbet@gmail.com','https://Poker-Scan.com/','Komunitas yang solid ini akan membuat Anda merasa tidak sendirian dalam perjalanan bermain',1,'2025-01-30 03:17:42'),
(115,0,10,0,0,'Slot Resmi 75Kbet','75Kbet@gmail.com','https://SafeSkyTravelGroup.com/','Tim layanan pelanggan siap membantu Anda kapan pun Anda membutuhkannya',1,'2025-01-30 03:18:38'),
(116,0,10,0,0,'Login 75Kbet','75Kbet@gmail.com','https://EducationKolkata.com/','Respon yang cepat dan solusi yang tepat akan diberikan untuk memastikan kenyamanan dan kepuasan Anda sebagai member',1,'2025-01-30 03:18:53'),
(117,0,10,0,0,'Daftar 75Kbet','75Kbet@gmail.com','https://NewTravelBlog.com/','menjadi pilihan utama para pecinta online hari ini',1,'2025-01-30 03:19:05'),
(118,0,10,0,0,'Daftar Slot 75Kbet','75Kbet@gmail.com','https://Organic-Primorsky.com/','Bergabunglah sekarang dan rasakan sendiri sensasi bermain yang lebih mudah, aman, dan menguntungkan',1,'2025-01-30 03:19:15'),
(119,0,10,0,0,'Daftar Situs 75Kbet','75Kbet@gmail.com','https://ShopDwelling.com/','Tips dan Trik Bermain Online',1,'2025-01-30 03:19:49'),
(120,0,12,0,0,'leanbiome','diaafdst7@gmail.com','https://leanbiome-web.us','LeanBiome exceeded expectations! I’ve tried multiple supplements, but LeanBiome delivered the best results. My appetite was under control, and I lost weight steadily. I also noticed an improvement in my digestion and energy levels. LeanBiome is a fantastic and effective weight loss aid.',1,'2025-01-30 07:25:45'),
(121,0,12,0,0,'yanmar 6lpa-stp2 price','gelele5970@godsigma.com','https://mssmotorsportsug.com/product/yanmar-6lpa-stp2-inboard-diesel-engine/','"You’ve truly earned everything you\'ve achieved — and we’re so proud of you."',1,'2025-01-30 08:56:56'),
(122,0,10,0,0,'asdfghj','kjhgfdsa@gmail.com','https://keylessgorepeaters.com/','https://keylessgorepeaters.com/\r\nhttps://buycryptograbbers.com/\r\nhttps://ephedrinepowders.com/\r\nhttps://methcrystals.com/\r\nhttps://greeinverters.com/\r\nhttps://ephedrinepowders.com/\r\nhttps://crystalmeths.com/\r\nhttps://omaramerltd.com/\r\nhttps://canamsupplier.com/\r\nhttps://buymethcanberra.com/\r\nhttps://powderchemicals.com/\r\nhttps://ibericocanpipork.es/\r\nhttps://atacadistadistribuicao.com/',1,'2025-01-30 13:19:12'),
(123,0,10,0,0,'asdfghj','kjhgfdsa@gmail.com','https://keylessgorepeaters.com/','https://keylessgorepeaters.com/\r\nhttps://buycryptograbbers.com/\r\nhttps://ephedrinepowders.com/\r\nhttps://methcrystals.com/\r\nhttps://greeinverters.com/\r\nhttps://ephedrinepowders.com/\r\nhttps://crystalmeths.com/\r\nhttps://omaramerltd.com/\r\nhttps://canamsupplier.com/\r\nhttps://buymethcanberra.com/\r\nhttps://powderchemicals.com/\r\nhttps://ibericocanpipork.es/\r\nhttps://atacadistadistribuicao.com/',1,'2025-01-30 13:19:12'),
(124,0,10,0,0,'asdfghj','kjhgfdsa@gmail.com','https://buycryptograbbers.com/','https://keylessgorepeaters.com/\r\nhttps://buycryptograbbers.com/\r\nhttps://ephedrinepowders.com/\r\nhttps://methcrystals.com/\r\nhttps://greeinverters.com/\r\nhttps://ephedrinepowders.com/\r\nhttps://crystalmeths.com/\r\nhttps://omaramerltd.com/\r\nhttps://canamsupplier.com/\r\nhttps://buymethcanberra.com/\r\nhttps://powderchemicals.com/\r\nhttps://ibericocanpipork.es/\r\nhttps://atacadistadistribuicao.com/',1,'2025-01-30 13:19:47'),
(125,0,10,0,0,'asdfghj','kjhgfdsa@gmail.com','https://ephedrinepowders.com/','https://keylessgorepeaters.com/\r\nhttps://buycryptograbbers.com/\r\nhttps://ephedrinepowders.com/\r\nhttps://methcrystals.com/\r\nhttps://greeinverters.com/\r\nhttps://ephedrinepowders.com/\r\nhttps://crystalmeths.com/\r\nhttps://omaramerltd.com/\r\nhttps://canamsupplier.com/\r\nhttps://buymethcanberra.com/\r\nhttps://powderchemicals.com/\r\nhttps://ibericocanpipork.es/\r\nhttps://atacadistadistribuicao.com/',1,'2025-01-30 13:21:13'),
(126,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://en-nagano--tonic.com/','Nagano Tonic is a wellness supplement crafted to naturally support energy, focus, and stress management. Inspired by the health traditions of Nagano, Japan, this tonic combines carefully selected ingredients to help people feel more balanced and revitalized in their daily lives. Rather than giving a temporary energy spike, Nagano Tonic is designed to provide steady, lasting support for both body and mind.',1,'2025-01-30 16:00:11'),
(127,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://nagano--tonic-us.com/','Nagano Tonic is a wellness supplement inspired by the natural beauty and health practices of Nagano, Japan. It’s formulated to help people feel energized, revitalized, and balanced in their everyday lives. This tonic combines carefully selected, natural ingredients that aim to support overall wellness and may help boost energy levels, enhance mental clarity, and promote inner resilience.',1,'2025-01-30 16:02:32'),
(128,0,12,0,0,'ProstaVive','redapa3298@eluxeer.com','https://prostavive-amazon.com/','ProstaVive is a dietary supplement designed to support men’s prostate health naturally. Formulated with powerful, research-backed ingredients, it aims to ease common urinary issues and promote a healthy prostate. ProstaVive’s unique blend is crafted to help men find relief from frequent urges, discomfort, and other signs of prostate concerns, all while boosting overall vitality. This supplement offers a natural approach to maintaining comfort and confidence in daily life as men age.',1,'2025-01-30 16:04:01'),
(129,0,12,0,0,'ProstaVive','redapa3298@eluxeer.com','https://prostavive-men.com/','ProstaVive is a natural supplement designed to support prostate health and improve male vitality. With a blend of carefully selected ingredients, it helps reduce urinary discomfort, improve flow, and enhance energy levels. Ideal for men looking to maintain their health as they age, ProstaVive works to promote overall well-being, reduce nighttime bathroom visits, and boost sexual drive. Experience the benefits of this safe, effective formula for better prostate health and daily comfort.',1,'2025-01-30 16:05:15'),
(130,0,12,0,0,'ProstaVive','redapa3298@eluxeer.com','https://prostavive-en-en.com/','ProstaVive is a natural dietary supplement designed to support prostate health, especially for men over 40 who may experience urinary discomfort due to an enlarged prostate. Formulated with carefully selected ingredients like saw palmetto and beta-sitosterol, ProstaVive aims to ease symptoms such as frequent nighttime urination and discomfort.',1,'2025-01-30 16:06:30'),
(131,0,12,0,0,'ProstaVive','redapa3298@eluxeer.com','https://us-us-prostavive-us.com/','ProstaVive is a natural supplement created to support prostate health in men, especially as they age. The prostate is a small gland that plays an essential role in urinary function and male reproductive health. However, with time, many men face prostate-related issues that can lead to discomfort, frequent trips to the bathroom, and disruptions in daily life. ProstaVive aims to help by using a blend of natural ingredients known for their beneficial effects on prostate health.',1,'2025-01-30 16:18:03'),
(132,0,12,0,0,'ProstaVive','redapa3298@eluxeer.com','https://prostavives-us.com/','ProstaVive is a natural supplement designed specifically to support prostate health and promote comfort in men’s daily lives. As men age, maintaining a healthy prostate becomes increasingly important for overall wellness, especially for managing urinary function and bladder health. ProstaVive’s formula combines carefully selected, plant-based ingredients that work together to support prostate wellness, aiming to ease common issues like frequent bathroom trips and improve urinary flow.',1,'2025-01-30 16:19:32'),
(133,0,12,0,0,'ProstaVive','redapa3298@eluxeer.com','https://buy--prostavive.com/','ProstaVive is a natural supplement specially designed to support men’s prostate health. With a unique blend of high-quality ingredients, ProstaVive aims to promote a healthier urinary flow, improve comfort, and enhance overall prostate function. Whether you\'re looking to maintain prostate wellness or seeking support for common issues that come with age, ProstaVive provides a natural approach that fits seamlessly into daily routines. Make prostate health a priority with ProstaVive for a balanced and comfortable lifestyle.',1,'2025-01-30 16:21:03'),
(134,0,12,0,0,'ProstaVive','redapa3298@eluxeer.com','https://prostavive-us-us.com/','ProstaVive™ is a natural dietary supplement specifically designed to support prostate health in men, particularly those facing age-related prostate challenges. Many men experience discomfort due to an enlarged prostate as they age, leading to symptoms like frequent urges to urinate, difficulty fully emptying the bladder, interrupted sleep, and general discomfort. ProstaVive™ addresses these common issues by promoting a healthy prostate, enhancing urinary flow, and reducing inflammation that can cause these bothersome symptoms.',1,'2025-01-30 16:22:21'),
(135,0,12,0,0,'ProstaVive','redapa3298@eluxeer.com','https://prostavive-health.com/','ProstaVive works by using a blend of natural ingredients that target prostate health from multiple angles, aiming to relieve discomfort and improve urinary function. As men age, the prostate can enlarge, which may press on the bladder and urethra, causing frequent urges to urinate, weaker urine flow, and interrupted sleep. ProstaVive’s formula is designed to help reduce these common symptoms, offering a gentle and effective solution for improved comfort.',1,'2025-01-30 16:26:19'),
(136,0,12,0,0,'GumAktiv','redapa3298@eluxeer.com','https://gum-aktiv-shop.com/','GumAktiv is a trusted solution designed to support healthier gums and improve oral hygiene. With its powerful and natural ingredients, it helps reduce gum problems like swelling, redness, and bleeding, ensuring your gums stay strong and healthy. Easy to use and highly effective, GumAktiv is ideal for those looking to maintain a confident smile and long-lasting gum protection. Take a step towards better oral care with GumAktiv and experience the difference in your gum health.',1,'2025-01-30 16:30:57'),
(137,0,12,0,0,'GumAktiv','redapa3298@eluxeer.com','https://gum-akktiv.com/','GumAktiv is a revolutionary oral care solution designed to keep your gums healthy and strong. Formulated with advanced ingredients, it targets gum issues like sensitivity, bleeding, and inflammation, ensuring long-lasting protection. Whether you\'re looking to prevent gum problems or improve your oral hygiene routine, GumAktiv is gentle yet powerful, making it suitable for daily use. Trust GumAktiv to give you a confident smile and healthier gums, all in a convenient and easy-to-use formula.',1,'2025-01-30 16:32:05'),
(138,0,12,0,0,'Zencortex','wadiwe6915@evnft.com','https://zzencortex-us.com/','ZenCortex is a powerful brain health supplement designed to boost focus, memory, and mental clarity. Made with natural ingredients known to support cognitive function, it helps you stay sharp and productive throughout the day.Whether you\'re tackling work, studies, or daily challenges, ZenCortex promotes relaxation while enhancing concentration. Safe and easy to use, it’s perfect for anyone looking to unlock their mind’s full potential and achieve peak mental performance.',1,'2025-01-30 16:36:17'),
(139,0,12,0,0,'Livpure','redapa3298@eluxeer.com','https://us-livpuree-us.com/','Livpure is a trusted weight loss supplement crafted to help you achieve your fitness goals naturally and effectively. Its unique formula combines powerful, plant-based ingredients that support fat burning, boost metabolism, and enhab nce energy levels. Designed for safe and steady results, Livpure fits seamlessly into your daily routine, promoting a healthier lifestyle. Whether you\'re just starting your weight loss journey or looking for an extra push, Livpure is your partner in achieving a healthier, happier you.',1,'2025-01-30 16:39:29'),
(140,0,12,0,0,'Healthline','redapa3298@eluxeer.com','https://en-healthline.com/','Dietary supplements have become increasingly popular in recent years, as more people seek to improve their health and well-being. These supplements come in various forms, including pills, capsules, powders, drinks, and energy bars. While they can provide important vitamins, minerals, and other nutrients, it’s important to note that supplements do not have to go through the same rigorous testing as prescription drugs.',1,'2025-01-30 16:41:07'),
(141,0,12,0,0,'Mitolyn','redapa3298@eluxeer.com','https://en-us--mitolyns.com/','Mitolyn is a revolutionary dietary supplement designed to enhance your body’s natural ability to burn fat and boost energy by focusing on the health of your mitochondria—the energy powerhouse of your cells. Unlike traditional weight loss supplements, Mitolyn targets the root cause of slow metabolism and low energy, providing sustainable results without harmful chemicals or extreme diets.',1,'2025-01-30 16:43:59'),
(142,0,12,0,0,'Mitolyn','redapa3298@eluxeer.com','https://eng--mitolyn.com/','Mitolyn is a revolutionary dietary supplement designed to enhance your body’s natural ability to burn fat and boost energy by focusing on the health of your mitochondria—the energy powerhouse of your cells. Unlike traditional weight loss supplements, Mitolyn targets the root cause of slow metabolism and low energy, providing sustainable results without harmful chemicals or extreme diets.',1,'2025-01-30 16:45:10'),
(143,0,12,0,0,'Mitolyn','redapa3298@eluxeer.com','https://mitolyn--shop.com/','Mitolyn is a revolutionary dietary supplement designed to enhance your body’s natural ability to burn fat and boost energy by focusing on the health of your mitochondria—the energy powerhouse of your cells. Unlike traditional weight loss supplements, Mitolyn targets the root cause of slow metabolism and low energy, providing sustainable results without harmful chemicals or extreme diets.',1,'2025-01-30 16:46:19'),
(144,0,12,0,0,'Ageless Knees','redapa3298@eluxeer.com','https://en-ageless-knees.com/','Ageless Knees is a breakthrough program designed to help people suffering from knee pain and stiffness. Developed by Chris Ohocinski, a certified athletic trainer, this program offers a non-invasive and natural solution to knee discomfort. Unlike many treatments that only mask the pain, Ageless Knees targets the root cause of knee pain by focusing on the femoral nerve, a critical nerve running from the lower back to the front of the leg. When this nerve is weak or not properly activated, it can lead to pain, weakness, and limited mobility.',1,'2025-01-30 16:47:27'),
(145,0,12,0,0,'Billionaire Brain Wave','redapa3298@eluxeer.com','https://en-billionairebrainwaave.com/','The Billionaire Brain Wave is a transformative audio program designed to help individuals unlock their full potential and attract wealth, success, and abundance. It leverages the power of sound frequencies, specifically theta waves, to stimulate the brain and guide it into a state conducive to creativity, relaxation, and deeper cognitive abilities.',1,'2025-01-30 16:48:44'),
(146,0,12,0,0,'Call Of Destiny','redapa3298@eluxeer.com','https://en-call-of-destiny.com/','The Call of Destiny offers a personalized astrological report crafted with precision to reveal the captivating mysteries of your unique potential. This comprehensive analysis delves deep into your natal chart, intricately connecting with a tailor-made annual horoscope designed to navigate you through the upcoming year. More than merely recounting your story, this report empowers you to shape your future using the wisdom of the stars..',1,'2025-01-30 16:50:49'),
(147,0,12,0,0,'The Genius Wave','redapa3298@eluxeer.com','https://en-eng-thegeniuswave.com/','The Genius Wave is an innovative audio program designed to help you unlock your brain’s hidden potential and enhance your mental performance. Created by Dr. James Rivers, a renowned neuroscientist with over 34 years of experience, the program is built on cutting-edge research into brainwave entrainment. It uses isochronic tones and binaural beats to stimulate theta brainwaves, which are associated with deep creativity, intuition, problem-solving, and relaxation.',1,'2025-01-30 16:52:09'),
(148,0,12,0,0,'Vidacalm','redapa3298@eluxeer.com','https://en-eng-vidacalm.com/','VidaCalm contains a unique blend of memory, hearing, and essential brain-supporting herbs, vitamins, and minerals. All in all, it contains 18 proprietary ingredients that have undergone decades of research to prove their efficiency in promoting healthy hearing.',1,'2025-01-30 16:53:18'),
(149,0,12,0,0,'his secret obsession','redapa3298@eluxeer.com','https://en-hisssecretobsession.com/','His Secret Obsession is a groundbreaking relationship guide by James Bauer, designed to help women build strong, lasting relationships with the men they care about. The guide introduces the concept of the "Hero Instinct," which is a man’s natural desire to feel needed, respected, and valued in a relationship. By understanding and activating this instinct, women can create a deeper emotional connection with their partners.',1,'2025-01-30 16:54:47'),
(150,0,12,0,0,'Soulmate Story','redapa3298@eluxeer.com','https://en-soulmatesstory.com/','Have you ever experienced a rare connection with someone, as if the universe has teamed up with you and the person? Many people will think of it as a version of a soulmate construction. These stories usually explore the enchanting simple but complex events that culminate in dragging two individuals towards one another into a burning emotion beyond the perception of time and space. The nature of soulmate story tends to appreciate and highlight the aspects of love and fate using experiences or likeness of people.',1,'2025-01-30 16:56:44'),
(151,0,12,0,0,'The Lost Genrator','redapa3298@eluxeer.com','https://en-thelostgennerator.com/','The Lost Generator provides reliable, off-grid energy, empowering you to keep your home powered through any emergency. This easy-to-assemble system is designed for quick access to electricity when you need it most. Gain independence and peace of mind with The Lost Generator!',1,'2025-01-30 16:57:55'),
(152,0,12,0,0,'The Wealth Signal','redapa3298@eluxeer.com','https://en-theweallthsignal.com/','The Wealth Signal is a powerful digital manifestation program designed to help you attract wealth and success by tapping into the power of your mind. Unlike traditional manifestation methods, The Wealth Signal focuses on a simple yet effective 9-word script that activates Alpha brainwaves, known as the "wealth signal." These Alpha waves create a bridge between your conscious and subconscious mind, allowing you to manifest your desires with ease.',1,'2025-01-30 16:59:39'),
(153,0,12,0,0,'Total Money Magnetism','redapa3298@eluxeer.com','https://en-totalmoneymagnetiism.com/','It was created by the renowned hypnotherapist and brain expert Dr. Steve G. Jones, is a popular self-help program designed for those seeking financial success, abundance, and wealth. This comprehensive program promises to be the ultimate solution for individuals looking to transform their financial lives.',1,'2025-01-30 17:01:27'),
(154,0,12,0,0,'Prodentim','redapa3298@eluxeer.com','https://prodentim-health.com/','ProDentim is a cutting-edge oral health supplement designed to improve your gum and teeth health naturally. Unlike traditional dental care products, ProDentim uses a blend of probiotics, natural ingredients, and essential nutrients to restore balance to your oral microbiome. It helps combat harmful bacteria, reduce bad breath, and support stronger teeth and gums. With its unique formula, ProDentim offers a simple, effective way to maintain a healthy and fresh smile every day.',1,'2025-01-30 17:02:08'),
(155,0,12,0,0,'Prodentim','redapa3298@eluxeer.com','https://us-prodentim-pro.com/','Prodentim is a revolutionary dental health supplement specifically designed to support your oral hygiene naturally. Unlike conventional dental care products, Prodentim focuses on maintaining the delicate balance of good bacteria in your mouth. By doing so, it promotes healthier teeth and gums, ensuring long-term oral wellness.',1,'2025-01-30 17:03:58'),
(156,0,12,0,0,'Java Burn','redapa3298@eluxeer.com','https://buy-javaburn-us.com/','Java Burn is a groundbreaking dietary supplement designed to enhance your daily coffee routine while promoting weight management and overall wellness. This innovative product is a tasteless, dissolvable powder that mixes effortlessly with your coffee. Unlike traditional supplements, Java Burn works in harmony with caffeine, boosting your metabolism and energy levels without altering the taste of your favorite brew.',1,'2025-01-30 17:08:15'),
(157,0,12,0,0,'Java Burn','wadiwe6915@evnft.com','https://javaburn-amazon.com/','Java Burn is a groundbreaking coffee-enhancing supplement designed to boost metabolism and support weight management. This tasteless, powdered formula blends effortlessly into your daily coffee, turning your favorite brew into a fat-burning powerhouse.Made with all-natural ingredients like green tea extract and chromium, Java Burn helps increase energy, improve digestion, and promote a healthier lifestyle.',1,'2025-01-30 17:15:10'),
(158,0,12,0,0,'Java Burn','redapa3298@eluxeer.com','https://java-burn-shop.com/','Java Burn is a natural supplement designed to enhance your daily coffee, making it easier to boost metabolism and support weight management. It comes in a tasteless powder form that dissolves quickly in your coffee, without changing its flavor. Whether you enjoy your coffee black or with milk and sugar, Java Burn works seamlessly to deliver its benefits.',1,'2025-01-30 17:21:19'),
(159,0,12,0,0,'Java Burn','redapa3298@eluxeer.com','https://web-javaburns.com/','Java Burn is a unique, all-natural dietary supplement designed to supercharge your metabolism and aid in weight loss. Unlike traditional supplements, Java Burn is a tasteless powder that easily dissolves in your coffee, making it a seamless part of your daily routine. Whether you’re a fan of black coffee or prefer it with milk and sugar, Java Burn blends perfectly without altering the flavor.',1,'2025-01-30 17:22:33'),
(160,0,12,0,0,'Java Burn','redapa3298@eluxeer.com','https://javaburn-healthcare.com/','Java Burn is a natural weight loss supplement designed to enhance your body’s metabolism and help you shed unwanted fat. It comes in the form of a tasteless, odorless powder that can be easily mixed with your daily coffee. This unique formula is made from natural ingredients like green tea extract, chromium, and chlorogenic acid, which work together to boost energy levels, suppress appetite, and accelerate fat burning. Perfect for coffee lovers, Java Burn offers a simple way to support a healthier lifestyle without altering your daily routine.',1,'2025-01-30 17:23:35'),
(161,0,12,0,0,'Java Burn','redapa3298@eluxeer.com','https://us-javaburn-burn.com/','Java Burn is a cutting-edge dietary supplement specially designed to enhance your daily coffee experience. Unlike ordinary supplements, Java Burn is a tasteless powder that effortlessly blends with your morning brew, turning it into a metabolism-boosting powerhouse. It’s crafted for people who want to support weight management, boost energy levels, and improve focus without drastically changing their routine.',1,'2025-01-30 17:26:41'),
(162,0,12,0,0,'GumAktiv','redapa3298@eluxeer.com','https://shop-gumaktiv.com/','GumAktiv is an advanced oral health supplement designed to promote healthy gums and improve overall dental wellness. This innovative formula is created with a blend of natural ingredients, carefully chosen for their ability to support gum strength, reduce inflammation, and prevent common oral health issues like bleeding gums and sensitivity.',1,'2025-01-30 17:28:12'),
(163,0,12,0,0,'GumAktiv','redapa3298@eluxeer.com','https://get-gumaktiv.com/','GumAktiv is a specialized oral care supplement designed to support optimal gum health and overall oral hygiene. Made from a blend of carefully selected natural ingredients, it addresses common gum problems such as swelling, sensitivity, and discomfort while promoting stronger teeth and fresher breath.',1,'2025-01-30 17:36:32'),
(164,0,10,0,0,'Daftar Lesti777','lesti77@gmail.com','https://lesti777.com/','A simple but tense card game, where you have to choose between the Player or Banker who has the highest card value',1,'2025-01-30 17:38:18'),
(165,0,10,0,0,'Situs Gacor Bounty 777','bounty77@gmail.com','https://bounty777.org/','A fun and fast dice game, where you have to guess the combination of numbers that will come out of three dice',1,'2025-01-30 17:38:31'),
(166,0,10,0,0,'Slot Gacor Kabeh888','kabehbet88@gmail.com','https://kabeh888.com/','With a wide selection of lottery games and live games available',1,'2025-01-30 17:38:45'),
(167,0,10,0,0,'Link Gacor Teh 999','tehpucuk99@gmail.com','https://teh999.net/','ready to provide an unforgettable playing experience for its members',1,'2025-01-30 17:39:00'),
(168,0,10,0,0,'Slot Gacor SambarJP','sanabrjp7@gmail.com','https://sambarjp.net/','Benefits of Playing Togel Online',1,'2025-01-30 17:39:13'),
(169,0,10,0,0,'Daftar MacanAsia','macanasia7@gmail.com','https://macanasia.org/','offers a multitude of benefits that go beyond just the luck factor',1,'2025-01-30 17:39:27'),
(170,0,12,0,0,'GumAktiv','redapa3298@eluxeer.com','https://en-gumaktiivs.com/','GumAktiv is an advanced oral health formula crafted to promote healthy gums and teeth while addressing common dental concerns. Designed with a blend of carefully selected natural ingredients, it aims to provide effective support for gum health, reduce sensitivity, and enhance overall oral hygiene.',1,'2025-01-30 17:56:59'),
(171,0,12,0,0,'LeanBiome','redapa3298@eluxeer.com','https://leanbiome-amazon.com/','LeanBiome is a natural supplement designed to support weight management by focusing on gut health. It combines probiotics and plant-based ingredients to help improve digestion, balance gut bacteria, and promote a healthy metabolism. By targeting the microbiome, LeanBiome aims to reduce cravings, boost energy levels, and aid in sustainable weight loss. This supplement is intended for people looking for a gentle, science-backed approach to support their wellness and achieve their fitness goals naturally.',1,'2025-01-30 17:58:05'),
(172,0,12,0,0,'LeanBiome','redapa3298@eluxeer.com','https://leanbiome-health.com/','LeanBiome is a health supplement designed to support weight management by promoting a balanced gut microbiome. It combines probiotics and natural ingredients to help improve digestion, reduce cravings, and increase energy levels. By enhancing gut health, LeanBiome aims to restore the body\'s natural balance, making it easier to maintain a healthy weight. With its focus on gentle, science-backed ingredients, LeanBiome offers a holistic approach for those looking to manage their weight in a sustainable way.',1,'2025-01-30 17:59:29'),
(173,0,12,0,0,'LeanBiome','redapa3298@eluxeer.com','https://leanbiome--shop.com/','LeanBiome is a natural supplement designed to support healthy weight management by balancing gut health. It combines beneficial probiotics, plant-based ingredients, and other nutrients that work together to promote efficient digestion, reduce bloating, and support a balanced metabolism. By focusing on gut health, LeanBiome aims to help people achieve a healthier weight naturally, without relying on harsh chemicals or intense diets. It’s crafted for those looking for a gentle, science-backed approach to wellness and weight control.',1,'2025-01-30 18:01:18'),
(174,0,12,0,0,'LeanBiome','redapa3298@eluxeer.com','https://en-leanbiome-us.com/','LeanBiome is a groundbreaking dietary supplement designed to support healthy weight management and overall wellness. Formulated with a unique blend of natural ingredients, including beneficial probiotics and plant extracts, LeanBiome helps improve digestion, boost metabolism, and promote a balanced gut environment. This innovative formula targets the root causes of weight gain, making it easier to achieve and maintain a healthy body. Safe and easy to incorporate into daily life, LeanBiome is your partner in fostering a healthier lifestyle.',1,'2025-01-30 18:02:26'),
(175,0,12,0,0,'LeanBiome','redapa3298@eluxeer.com','https://us-leanbiome--us.com/','LeanBiome is a health supplement designed to support weight management by focusing on gut health. It combines probiotics, which are beneficial bacteria, with natural ingredients to promote a balanced gut microbiome. This unique formula aims to improve digestion, enhance metabolism, and reduce cravings, making it easier to achieve and maintain a healthy weight. LeanBiome is an option for those looking for a natural, science-backed way to improve overall wellness and support sustainable weight loss.',1,'2025-01-30 18:03:49'),
(176,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://nitricboostultra-amazon.com/','Nitric Boost Ultra is a powerful supplement designed to enhance your workout performance and boost energy levels. Packed with ingredients that increase nitric oxide production, it helps improve blood flow, delivering more oxygen and nutrients to your muscles. This can lead to greater strength, endurance, and quicker recovery times. Whether you\'re aiming to lift heavier, go faster, or last longer, Nitric Boost Ultra supports your fitness goals, helping you achieve better results with every session.',1,'2025-01-30 18:05:19'),
(177,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://nitricboostultra-health.com/','Nitric Boost Ultra is a supplement designed to help increase your energy, strength, and endurance, especially during workouts. Packed with natural ingredients, it works by supporting healthy blood flow and improving oxygen delivery to muscles, which can help you feel stronger and more focused. Nitric Boost Ultra is crafted for those who want to push their limits and achieve their fitness goals faster. Simply add it to your daily routine for a natural performance boost.',1,'2025-01-30 18:07:45'),
(178,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://us-nitric-boost-ultra.com/','Nitric Boost Ultra is specially designed to increase nitric oxide levels in the body, which plays a vital role in improving blood flow and circulation. Why is this important? Because enhanced blood flow means that your muscles and organs get more oxygen and nutrients, which translates into better performance, faster recovery, and sustained energy. In this article, we’ll explore what makes Nitric Boost Ultra a must-try supplement for anyone serious about their health and fitness.',1,'2025-01-30 18:09:50'),
(179,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://nitric-boostultras.com/','Nitric Boost Ultra is a powerful supplement designed to support improved blood flow, energy, and endurance. Packed with natural ingredients that promote nitric oxide production, it helps your body deliver more oxygen and nutrients to muscles, enhancing performance during workouts or daily activities. By boosting circulation, Nitric Boost Ultra aims to give you a natural edge in stamina, focus, and recovery. Ideal for fitness enthusiasts and anyone looking to maximize their physical potential naturally.',1,'2025-01-30 18:11:25'),
(180,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://nitricboost--ultra.com/','Nitric Boost Ultra is a powerful supplement designed to enhance your workout performance and improve overall endurance. Packed with natural ingredients that support nitric oxide production, it helps widen blood vessels, allowing for better blood flow and nutrient delivery to muscles. This can lead to improved strength, quicker recovery, and increased energy levels, making it ideal for fitness enthusiasts and athletes. Safe and effective, Nitric Boost Ultra is a convenient way to take your training to the next level.',1,'2025-01-30 18:12:33'),
(181,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://nitric--boostultra.com/','Nitric Boost Ultra is a powerful supplement designed to naturally enhance energy, endurance, and blood flow. By boosting nitric oxide levels in the body, it helps widen blood vessels, allowing more oxygen and nutrients to reach your muscles. This means better performance during workouts, faster recovery, and improved overall stamina. Whether you’re an athlete, fitness enthusiast, or simply looking for a natural energy boost, Nitric Boost Ultra can help you reach new levels of health and fitness.',1,'2025-01-30 18:13:35'),
(182,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://en-nitric-boost-ultra.com/','Nitric Boost Ultra is a powerful supplement designed to support energy, endurance, and muscle recovery. Formulated with natural ingredients that promote better blood flow, it helps boost nitric oxide levels in the body, improving stamina during workouts and enhancing physical performance. Ideal for fitness enthusiasts and athletes, Nitric Boost Ultra can help you achieve more from your training sessions by supporting optimal muscle function and faster recovery, helping you stay strong and active.',1,'2025-01-30 18:14:51'),
(183,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://us-nitric-boostultra.com/','Nitric Boost Ultra is a powerful supplement designed to enhance your workout performance by naturally boosting nitric oxide levels in your body. With increased nitric oxide, your blood flow improves, delivering more oxygen and nutrients to your muscles. This results in better stamina, faster recovery, and stronger pumps during exercise. Whether you\'re aiming to build muscle or improve endurance, Nitric Boost Ultra helps you push harder and reach your fitness goals more effectively, giving you an edge in every workout.',1,'2025-01-30 18:16:14'),
(184,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://en-nitricboost-en.com/','Nitric Boost Ultra is a natural supplement developed in the United States that aims to boost men\'s sexual performance and general health. It is a powder that may be readily mixed with water and taken every day. The supplement contains natural elements such as herbs and plants, which have been carefully selected to aid enhance blood flow, boost energy, and encourage greater erections.',1,'2025-01-30 18:43:47'),
(185,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://nitricboost-en.com/','Natural components are used in the supplement Nitric Boost Ultra to enhance sexual function. In order to resolve problems with erection, it encourages higher energy levels and enhances blood flow to the reproductive system.',1,'2025-01-30 19:10:19'),
(186,0,12,0,0,'ProDentim','redapa3298@eluxeer.com','https://prodentim-amazon.com/','ProDentim is a revolutionary dental supplement designed to support optimal oral health. Formulated with a blend of natural ingredients and probiotics, it helps balance the good bacteria in your mouth for healthier teeth and gums. Unlike traditional dental solutions, ProDentim works from within, promoting a strong oral microbiome and fresh breath. Experience a simple, effective way to boost your dental care routine and maintain a confident, radiant smile.',1,'2025-01-30 19:21:39'),
(187,0,12,0,0,'ProDentim','redapa3298@eluxeer.com','https://getus-prodentim.com/','ProDentim is a unique dental health solution designed to promote strong teeth and a healthy smile. It combines advanced oral care with natural ingredients to support overall dental hygiene. ProDentim helps fight harmful bacteria, reduces plaque, and keeps gums healthy. Its gentle formula is ideal for daily use, ensuring fresh breath and lasting protection. Whether you\'re looking to maintain your oral health or improve it, ProDentim is a reliable and effective choice for a brighter, healthier smile.',1,'2025-01-30 19:23:55'),
(188,0,12,0,0,'ProDentim','redapa3298@eluxeer.com','https://theprodentim-dental.com/','ProDentim is an innovative dental health solution designed to support and improve your oral hygiene naturally. Packed with a blend of probiotics, minerals, and essential nutrients, it promotes healthy gums, strong teeth, and a fresh breath. Unlike traditional dental care products, ProDentim focuses on balancing the good bacteria in your mouth, enhancing overall oral health from within. Ideal for anyone looking to maintain a bright, confident smile, ProDentim offers an easy, effective approach to dental care.',1,'2025-01-30 19:25:09'),
(189,0,12,0,0,'Mitolyn','redapa3298@eluxeer.com','https://mitolyn--web.com/','Mitolyn is a revolutionary dietary supplement designed to boost your metabolism by supporting healthy mitochondria levels. Packed with a unique blend of six natural ingredients, including Maqui Berry and Rhodiola, it helps burn fat, increase energy, and improve overall well-being.',1,'2025-01-30 19:26:21'),
(190,0,12,0,0,'Mitolyn','redapa3298@eluxeer.com','https://mitolyns-us.com/','Mitolyn is a revolutionary natural weight loss supplement designed to target your body\'s mitochondria, the tiny energy powerhouses in your cells. By boosting mitochondrial function, Mitolyn helps you burn more fat, increase energy levels, and improve overall well-being. Made with a unique blend of six plant-based ingredients, this non-GMO, gluten-free formula is safe, effective, and free from stimulants.',1,'2025-01-30 19:27:45'),
(191,0,12,0,0,'Mitolyn','redapa3298@eluxeer.com','https://us-en-mittolyn.com/','Mitolyn is a breakthrough, all-natural supplement designed to enhance your energy, speed up metabolism, and promote healthy weight loss by improving the health of your mitochondria. Mitochondria are the tiny powerhouses inside every cell that convert food and fat into energy. When these powerhouses become weak or fewer in number, your metabolism slows down, leading to weight gain, fatigue, and sluggishness.',1,'2025-01-30 19:28:58'),
(192,0,12,0,0,'Metanail Complex','redapa3298@eluxeer.com','https://en-us-metanail-complex.com/','Metanail Serum Pro is a topical solution that harnesses the power of 20 organic and essential nutrients to rejuvenate, repair, and elevate the condition of your nails. This product is specifically formulated to provide comprehensive support for the health of your nails and feet. It serves as an exceptional solution for individuals dealing with issues like toenail fungus and brittle nails, offering a holistic approach to nail care and well-being.',1,'2025-01-30 19:32:15'),
(193,0,12,0,0,'The Money Wave','redapa3298@eluxeer.com','https://en-us-themoneywaave.com/','The Money Wave is an innovative audio program designed to help you attract financial abundance and improve your overall well-being. It combines cutting-edge neuroscience with ancient wisdom, using soundwave technology to stimulate specific parts of your brain, such as the pineal gland and the hippocampus. By doing so, it enhances your brain\'s natural ability to manifest wealth, creativity, and success.',1,'2025-01-30 19:33:26'),
(194,0,12,0,0,'Moon reading','redapa3298@eluxeer.com','https://mmoonreading.com/','Moon Reading is an advanced branch of astrology that focuses on the moon\'s position and phases at the time of your birth. While traditional astrology often looks at your sun sign, Moon Reading digs deeper into your emotional world and subconscious drives. It examines how the moon\'s placement in your natal chart influences your feelings, behavior, and relationships.',1,'2025-01-30 19:34:48'),
(195,0,12,0,0,'Paid Online Writing Jobs','redapa3298@eluxeer.com','https://paidonlinewritingjobss.com/','Make $25 – $35 Per Hour Doing Simple Paid Online Writing Jobs From Home. Full Training Provided. No Experience Necessary. Are you bored of scrolling endlessly over social media, only to find yourself wasting valuable time with no tangible benefits? What if we told you that you could turn your passion for social networking into a lucrative career?Introducing Paid Online Writing Jobs, the premier website connecting you with fascinating and rewarding online writing opportunities! Whether you’re a seasoned pro or just getting started, we have something for everyone.',1,'2025-01-30 19:35:50'),
(196,0,12,0,0,'Mystery School Code','redapa3298@eluxeer.com','https://mysteryschoolcodee.com/','The Mystery School Code is a digital file that can help you achieve your life objectives and live a positive lifestyle. It takes the shape of audio tracks that can improve numerous elements of your life, including your health, relationships, finances, career, and living arrangements.',1,'2025-01-30 19:37:29'),
(197,0,12,0,0,'Science of Wealth mastry','redapa3298@eluxeer.com','https://scienceofwealthmasteryy.com/','The Science of Wealth Mastery is a complete program that teaches people how to overcome wealth blocks and attract money effortlessly. It uses neuroscience and psychology principles to rewire the mindset for prosperity and abundance. Participants can create a positive money mindset and achieve their financial objectives by using practical tactics such as visualization and affirmation. While the curriculum does not guarantee rapid success, it does give a comprehensive foundation for personal development and financial improvement.',1,'2025-01-30 19:39:07'),
(198,0,10,0,0,'Login erek36 Slot','Erek36@gmail.com','https://erek36.com/','memiliki kebijakan dan prosedur yang ketat terkait dengan deposit dan penarikan,',1,'2025-01-30 19:41:59'),
(199,0,12,0,0,'The Money Wave','redapa3298@eluxeer.com','https://themoneywave-wave.com/','The Money Wave™ is a revolutionary 7-minute audio program designed to help you unlock financial success and abundance effortlessly. Created by Dr. Paul Winters, a neuroscientist with extensive experience, the program blends science and spirituality to create a unique and effective tool for transforming your mindset.',1,'2025-01-30 19:42:35'),
(200,0,12,0,0,'The Wealth Signal','redapa3298@eluxeer.com','https://thewealthsignal-wealth.com/','The Wealth Signal is an innovative program designed to help individuals unlock their potential for financial abundance and personal growth. Unlike traditional manifestation techniques, The Wealth Signal combines the power of neuroscience, psychology, and advanced sound frequencies to create a unique path to success.',1,'2025-01-30 19:43:48'),
(201,0,12,0,0,'Billionaire Brain Wave','redapa3298@eluxeer.com','https://us-billionairebrainwave-us.com/','Billionaire Brain Wave is a powerful program designed to help you unlock your mind’s full potential and attract wealth, success, and abundance into your life. Using scientifically-backed sound frequencies, this program aims to align your brain with the thought patterns and mindset of successful individuals. By listening to a simple 7-minute audio track each day, you can activate your brain’s hidden capabilities and rewire your subconscious to eliminate limiting beliefs and negative thought patterns that may be holding you back.',1,'2025-01-30 19:44:52'),
(202,0,10,0,0,'Situs fufuslot88 Resmi','Fufuslot88@gmail.com','https://fufuslot88.com/','Pastikan platform bandar game online yang Anda pilih memiliki lisensi resmi dan menggunakan teknologi keamanan yang canggih.',1,'2025-01-30 19:46:09'),
(203,0,12,0,0,'The Genius Wave','redapa3298@eluxeer.com','https://en-thegeniuswaves.com/','The Genius Wave is a revolutionary audio program designed to help you unlock your full mental potential in just seven minutes a day. Created by Dr. James Rivers, a neuroscientist with over 30 years of experience, this program uses cutting-edge soundwave technology, including isochronic tones and binaural beats, to stimulate theta brainwave activity. Theta waves, which occur naturally during deep relaxation and meditation, are known to enhance creativity, intuition, problem-solving, and overall mental clarity.',1,'2025-01-30 19:46:15'),
(204,0,12,0,0,'DentaSmile Pro','redapa3298@eluxeer.com','https://en-dentasmilepro-us.com/','DentaSmile Pro is an advanced oral health supplement designed to promote healthier teeth and gums naturally. Unlike traditional dental care products that often contain harsh chemicals, DentaSmile Pro is formulated with a unique blend of plant-based ingredients scientifically proven to support oral hygiene. This supplement addresses common dental concerns like gum sensitivity, plaque buildup, and bad breath, offering a holistic approach to oral care.',1,'2025-01-30 19:47:35'),
(205,0,10,0,0,'Slot Jitu G88','G88@gmail.com','https://g88a.net/','Ikuti instruksi yang diberikan untuk menyelesaikan proses deposit anda.',1,'2025-01-30 19:49:23'),
(206,0,12,0,0,'DentaSmile Pro','redapa3298@eluxeer.com','https://dentasmilepro--us.com/','DentaSmile Pro is an advanced oral health supplement designed to promote healthier teeth and gums naturally. Unlike traditional dental care products that often contain harsh chemicals, DentaSmile Pro is formulated with a unique blend of plant-based ingredients scientifically proven to support oral hygiene. This supplement addresses common dental concerns like gum sensitivity, plaque buildup, and bad breath, offering a holistic approach to oral care.',1,'2025-01-30 19:49:23'),
(207,0,12,0,0,'DentaSmile Pro','redapa3298@eluxeer.com','https://dentasmilespro-web.com/','DentaSmile Pro is an advanced oral health supplement designed to promote healthier teeth and gums naturally. Unlike traditional dental care products that often contain harsh chemicals, DentaSmile Pro is formulated with a unique blend of plant-based ingredients scientifically proven to support oral hygiene. This supplement addresses common dental concerns like gum sensitivity, plaque buildup, and bad breath, offering a holistic approach to oral care.',1,'2025-01-30 19:50:50'),
(208,0,10,0,0,'Live Rtp hiwintest','Hiwintest@gmail.com','https://hiwintest.net/','Slot online yang juga menyediakan permainan live casino dan Sportbook.',1,'2025-01-30 19:52:28'),
(209,0,12,0,0,'DentaSmile Pro','redapa3298@eluxeer.com','https://us-en-dentasmile-pro.com/','DentaSmile Pro is an advanced oral health supplement designed to promote healthier teeth and gums naturally. Unlike traditional dental care products that often contain harsh chemicals, DentaSmile Pro is formulated with a unique blend of plant-based ingredients scientifically proven to support oral hygiene. This supplement addresses common dental concerns like gum sensitivity, plaque buildup, and bad breath, offering a holistic approach to oral care.',1,'2025-01-30 19:52:50'),
(210,0,12,0,0,'DentaSmile Pro','redapa3298@eluxeer.com','https://en-eng-dentasmilepro.com/','DentaSmile Pro is an advanced oral health supplement designed to promote healthier teeth and gums naturally. Unlike traditional dental care products that often contain harsh chemicals, DentaSmile Pro is formulated with a unique blend of plant-based ingredients scientifically proven to support oral hygiene. This supplement addresses common dental concerns like gum sensitivity, plaque buildup, and bad breath, offering a holistic approach to oral care.',1,'2025-01-30 19:55:48'),
(211,0,10,0,0,'Link Humastoto Gacor','Humastoto@gmail.com','https://humastoto1.net/','Semakin besar persentase RTP, semakin besar peluang Anda untuk menang.',1,'2025-01-30 19:55:51'),
(212,0,12,0,0,'DentaSmile Pro','redapa3298@eluxeer.com','https://en-en--dentasmile-pro.com/','DentaSmile Pro is a cutting-edge natural supplement designed to support and improve overall oral health. Packed with 8 powerful ingredients, it focuses on enhancing gum health, strengthening teeth, and promoting fresh breath. This advanced formula is scientifically crafted to address multiple aspects of dental wellness, making it an all-in-one solution for anyone looking to maintain a healthy, radiant smile.',1,'2025-01-30 19:57:01'),
(213,0,12,0,0,'Prodentim','redapa3298@eluxeer.com','https://en-eng--prodentim.com/','ProDentim is an innovative oral health supplement specially designed to improve the health of your teeth and gums while promoting a balanced oral microbiome. Unlike traditional dental products, which often contain harsh chemicals that can disrupt the natural bacterial balance in your mouth, ProDentim offers a natural, science-backed solution to enhance your oral care routine.',1,'2025-01-30 19:58:50'),
(214,0,10,0,0,'Gacor Indosatoto','Indosatoto@gmail.com','https://indosatoto1.com/','Jadi tentunya sudah tidak perlu anda ragukan lagi keunggulan dari Slot Online mulai dari fasilatas yang dapat anda temui di situs slot terbaik ini.',1,'2025-01-30 19:59:01'),
(215,0,12,0,0,'ProstaVive','redapa3298@eluxeer.com','https://en-eng--prostavive.com/','ProstaVive is a revolutionary, all-natural supplement specially formulated to support prostate health, enhance urinary function, and improve overall well-being in men. Prostate health is a common concern as men age, often leading to issues such as frequent trips to the bathroom, interrupted sleep, and diminished energy levels. ProstaVive offers a simple yet powerful solution to address these challenges.',1,'2025-01-30 20:00:06'),
(216,0,10,0,0,'Link Slot Istanaimpian','Istanaimpian@gmail.com','https://istanaimpian6.com/','Ini semua karena semua masukan dan kepercayaan para anggota situs online terbaik Situs slot online.',1,'2025-01-30 20:01:52'),
(217,0,12,0,0,'Gluco6','redapa3298@eluxeer.com','https://eng--gluco6.com/','Gluco6 is a natural supplement designed to help people manage their blood sugar levels effectively. It is made from a blend of organic herbs, vitamins, minerals, and plant-based nutrients that work together to support healthy glucose levels. This formula addresses the root causes of high blood sugar and helps the body process glucose more efficiently.',1,'2025-01-30 20:03:22'),
(218,0,12,0,0,'Java Burn','redapa3298@eluxeer.com','https://eng--javaburn.com/','Java Burn is an innovative, all-natural dietary supplement designed to help boost metabolism, burn fat, and improve overall health. It’s the first and only product of its kind that works in synergy with your daily coffee. Tasteless and instantly dissolvable, Java Burn seamlessly blends into your coffee without altering its flavor, making it a convenient addition to your morning routine.',1,'2025-01-30 20:04:33'),
(219,0,10,0,0,'Kilat288 Link RTP','Kilat288@gmail.com','https://kilat288a.com/','Platform Digital Online Terbaik di Indonesia',1,'2025-01-30 20:05:21'),
(220,0,12,0,0,'LeanBiome','redapa3298@eluxeer.com','https://eng--leanbiome.com/','LeanBiome is a revolutionary weight loss supplement designed to support healthy and natural fat reduction by addressing the root cause of weight gain: an imbalanced gut microbiome. Based on cutting-edge Ivy League research, LeanBiome combines science-backed ingredients to help people achieve a naturally lean body.',1,'2025-01-30 20:05:54'),
(221,0,12,0,0,'Nagano Tonic','redapa3298@eluxeer.com','https://eng--naganotonic.com/','Nagano Tonic is an innovative, all-natural powdered supplement specifically designed to support weight loss, improve metabolism, and boost overall health. This unique formula is inspired by traditional Japanese remedies and features a blend of high-quality ingredients like Camu Camu, EGCG from green tea, Mangosteen, Panax Ginseng, and more. These powerful nutrients work together to help you achieve your health and weight loss goals effortlessly.',1,'2025-01-30 20:07:07'),
(222,0,10,0,0,'Situs klat333 Gacor','Klat333@gmail.com','https://klat333.com/','Game Gacor Online Terbaik di Indonesia',1,'2025-01-30 20:08:01'),
(223,0,12,0,0,'Nitric Boost Ultra','redapa3298@eluxeer.com','https://eng--nitricboostultra.com/','Nitric Boost Ultra is an advanced nutritional supplement formulated to support sexual performance, energy, and overall wellness in men. Designed for daily use, this easy-to-mix powdered formula works by enhancing blood circulation and boosting nitric oxide (NO) levels, a key factor in achieving stronger, longer-lasting erections and improved stamina.',1,'2025-01-30 20:08:35'),
(224,0,12,0,0,'Puravive','redapa3298@eluxeer.com','https://eng--puravive.com/','Puravive is a natural dietary supplement designed to help with healthy weight loss by boosting brown adipose tissue (BAT) levels. BAT, also known as brown fat, is responsible for burning calories and turning stored fat into energy. Research has shown that people with higher BAT levels tend to be leaner, while those with lower levels may struggle with weight gain.',1,'2025-01-30 20:10:16'),
(225,0,10,0,0,'Link Jitu Leatoto','Leatoto@gmail.com','https://leatoto1.com/','Hanya dengan modal receh IDR 10.000, kalian sudah bisa bertaruh dan memiliki kesempatan meraih jackpot hingga jutaan rupiah.',1,'2025-01-30 20:10:48'),
(226,0,12,0,0,'Mitolyn','redapa3298@eluxeer.com','https://mitolyn--buy.com/','Mitolyn is an innovative dietary supplement designed to enhance your metabolism and support overall health by boosting the performance of your mitochondria. Often referred to as the “powerhouses of the cell,” mitochondria play a crucial role in converting the food you eat into energy and burning fat. Mitolyn\'s unique formula targets mitochondrial health, helping you burn more calories, increase energy levels, and feel your best.',1,'2025-01-30 20:11:25'),
(227,0,10,0,0,'Slot Andara777','Andara777@gmail.com','https://www.ontheroadculinaryadventures.com/','The existence of an official license from an international gambling institution is real proof of commitment',1,'2025-01-30 22:11:22'),
(228,0,10,0,0,'Rtp Live Andara777','Andara777@gmail.com','https://www.cialispricemeds.com/','The Biggest Maxwin Online Game Site in Indonesia',1,'2025-01-30 22:19:41'),
(229,0,10,0,0,'Situs Andara777 Gacor','Andara777@gmail.com','https://www.pureconceptdesign.com/','offers the best online games with full responsibility and fair play games',1,'2025-01-30 22:23:11'),
(230,0,10,0,0,'Rtp 100% Andara777','Andara777@gmail.com','https://pole-edesign.com/','is an official partner of dozens of the best online gaming providers in the world',1,'2025-01-30 22:26:53'),
(231,0,10,0,0,'Slot Gacor Andara777','Andara777@gmail.com','https://coco-handbags.com/','artinya tidak ada pelacak untuk mencatat kemenangan dan kekalahan pemain',1,'2025-01-30 22:30:40'),
(232,0,10,0,0,'Rtp Slot Andara777','Andara777@gmail.com','https://brox-logistics.com/','melalui akses link alternatif yang sudah kami sediakan',1,'2025-01-30 22:34:28'),
(233,0,10,0,0,'Slot Online Padi77','Padi77@gmail.com','https://www.internet-shoppingmallchart.com/','Dengan pengalaman bertahun-tahun di industri ini',1,'2025-01-30 22:40:57'),
(234,0,10,0,0,'Rtp Resmi Padi77','Padi77@gmail.com','https://www.newschoolculvercity.com/','Dan hasilnya adalah layanan yang ramah serta bertanggung jawab dalam segala kondisi yang konsisten dan juga progresif',1,'2025-01-30 22:44:23'),
(235,0,10,0,0,'Situs Gacor Padi77','Padi77@gmail.com','https://www.kidsunlimitedpreschool.com/','also famous for having attractive bonus promotions that have been widely requested by its members',1,'2025-01-30 22:50:01'),
(236,0,10,0,0,'Live Rtp Padi77','Padi77@gmail.com','https://www.acheter-drogues.com/','Feel satisfied by joining the promotio',1,'2025-01-30 22:53:11'),
(237,0,10,0,0,'Bang118 Daftar','payungteduh1@gmail.com','https://bang118.org/','terpercaya dengan deposit minimal 100 perak, menawarkan pengalaman bermain hari ini dan berbagai pasaran lainnya yang aman, nyaman, dan berpeluang hadiah besar',1,'2025-01-31 03:34:14'),
(238,0,10,0,0,'BigWinner777','payungmerah88@gmail.com','https://bigwinner777.org/','telah menjadi bagian tak terpisahkan dari budaya di Indonesia',1,'2025-01-31 03:34:34'),
(239,0,10,0,0,'Olle99 Rtp100%','payungkuning22@gmail.com','https://olle99.com/','Permainan tebak angka ini, terutama yang terkenal dengan reputasi dan kredibilitasnya',1,'2025-01-31 03:34:48'),
(240,0,10,0,0,'Olle99 Rtp100%','payungkuning22@gmail.com','https://olle99.com/','Permainan tebak angka ini, terutama yang terkenal dengan reputasi dan kredibilitasnya',1,'2025-01-31 03:34:57'),
(241,0,10,0,0,'Olle99 Rtp100%','payungkuning22@gmail.com','https://olle99.com/','Permainan tebak angka ini, terutama yang terkenal dengan reputasi dan kredibilitasnya',1,'2025-01-31 03:35:07'),
(242,0,10,0,0,'Olle99 Rtp100%','payungkuning22@gmail.com','https://olle99.com/','Permainan tebak angka ini, terutama yang terkenal dengan reputasi dan kredibilitasnya',1,'2025-01-31 03:35:07'),
(243,0,10,0,0,'Kamboja99 Link alternatif','payunghijauh@gmail.com','https://kamboja99.org/','telah memikat hati jutaan orang dengan impian meraih kemenangan besar',1,'2025-01-31 03:35:36'),
(244,0,10,0,0,'Mayora 89 Daftar','payungkecil09@gmail.com','https://mayora89.net/','seiring dengan perkembangan teknologi dan perubahan gaya hidup',1,'2025-01-31 03:45:54'),
(245,0,10,0,0,'Cv77 Link alternatif','payunghitam77@gmail.com','https://cv77.net/','hadir sebagai jawaban atas tuntutan zaman yang semakin modern',1,'2025-01-31 03:46:09'),
(246,0,10,0,0,'situs toto','excelsior6301@gmail.com','https://oxfordmediaconvention.com/','Im so grateful for your website! Its exactly what I needed, and the content is top-notch. Thank you for being such a great source of inspiration.',1,'2025-01-31 04:12:17'),
(247,0,10,0,0,'gwan','6684re@gmail.com','https://tbrainsinfo.com','나이 들면 다 그렇다고? 관절염, 제대로 관리해야, 재활 https://tbrainsinfo.com \r\n방법',1,'2025-01-31 06:47:27'),
(248,0,10,0,0,'toto togel','amorvincens984@gmail.com','https://asweetpointofview.com/','I want to express my gratitude for your website. Its been a go-to source for me, and I genuinely appreciate how well you ve organized everything. Thank you for making it so user-friendly!',1,'2025-01-31 11:05:59'),
(249,0,10,0,0,'RTP 100% RepublikJitu','RepublikJitu@gmail.com','https://RepublikJitu.com/','There are many factors that make members not change the slot website they subscribe',1,'2025-01-31 15:25:21'),
(250,0,10,0,0,'Situs Resmi88 Gacor','Resmi88@gmail.com','https://Resmi88.com/','In less than 1 minute your deposit and withdrawal without having to wait long',1,'2025-01-31 15:31:46'),
(251,0,10,0,0,'Slot Game Roket799','Roket799@gmail.com','https://Roket799.com/','Pastinya mendapatkan pengalaman yang seru dan menarik ketika melakukan taruhan di situs online',1,'2025-01-31 15:38:01'),
(252,0,10,0,0,'Link Resmi Rolex88','Rolex88@gmail.com','https://Rolex88.com/','Bonus yang bisa anda dapatkan ketika bertaruh di Pencarian Slot Online adalah Bonus New Member',1,'2025-01-31 15:44:55'),
(253,0,10,0,0,'Slot Sangwin88','Sangwin88@gmail.com','https://Sangwin88.com/','This game is one of the gacor games that is currently popular among professional and casual players',1,'2025-01-31 15:52:26'),
(254,0,10,0,0,'RTP 100% Skytrax','Skytrax@gmail.com','https://Skytrax.com/','In less than 1 minute your deposit and withdrawal without having to wait long',1,'2025-01-31 15:58:01'),
(255,0,10,0,0,'Situs Svip2 Gacor','Svip2@gmail.com','https://Svip2.com/','Merupakan salah satu platform hiburan digital online terbaik dan terpercaya di Indonesia',1,'2025-01-31 16:37:10'),
(256,0,10,0,0,'Rtp Resmi To138','To138@gmail.com','https://To138.com/','Mulai dari remaja hingga orang tua mereka bermain Taruhan Slot Online',1,'2025-01-31 16:45:41'),
(257,0,10,0,0,'Link Resmi Tv788','Tv788@gmail.com','https://Tv788.com/','Tentu akan sangat mudah bagi para pemain Situs Slot mendapatkan jackpot maxwin',1,'2025-01-31 16:54:52'),
(258,0,10,0,0,'Slot Yakin77 Gacor','Yakin77@gmail.com','https://Yakin77.com/','The advantage that is given and really felt is the flexibility that can be played anytime and anywhere online using your Android or computer',1,'2025-01-31 17:04:17'),
(259,0,10,0,0,'Harga Sulam Alis','AlisCantikPro@gmail.com','https://giphy.com/channel/campcampin','Teknik Microblading Canggih – Dengan teknik sulam alis modern, hasilnya tampak lebih alami dan sesuai bentuk wajahmu!',1,'2025-01-31 17:53:01'),
(260,0,10,0,0,'Payroll Software','teamsuite166@gmail.com','https://teamsuite.app/','Find all-in-one HR management solution, including payroll software, with Team Suite! Sign up now and experience the comprehensive and efficient benefits of Team Suite!',1,'2025-01-31 19:27:09'),
(261,0,10,0,0,'Slot Andara777 Gacor','Andara777@gmail.com','https://www.osmondgeneralstore.com/','Anda tidak perlu menunggu lama jika ingin melakukan transaksi di Taruhan Slot Online',1,'2025-01-31 22:35:07'),
(262,0,10,0,0,'Link Alternatif Combo99','Combo99@gmail.com','https://footballofficialonlinestore.com/','Situs online memiliki banyak bonus dan promosi menarik yang pasti bisa Anda dapatkan',1,'2025-01-31 22:40:06'),
(263,0,10,0,0,'Live Rtp Combo 99','Combo99@gmail.com','https://lawcrossingfraud.com/','Anda perlu mengetahui semua permainan yang tersedia di Taruhan Slot Online',1,'2025-01-31 22:42:24'),
(264,0,10,0,0,'Daftar Situs Combo 99','Combo99@gmail.com','https://booklogicblog.com/','Memiliki tim yang berpengalaman dalam menangani anggota ketika mereka mengalami kesulitan\r\nSitus online memiliki tim pemrosesan transaksi deposit dan penarikan yang berpengalaman',1,'2025-01-31 22:43:39'),
(265,0,10,0,0,'Slot Gacor Combo99','Combo99@gmail.com','https://www.buynowonlineofficialwebsite.com/','Membuat para pemain Situs Slot online sangat mudah untuk mendapatkan kemenangan instan',1,'2025-01-31 22:45:57'),
(266,0,10,0,0,'Daftar Slot Combo99','Combo99@gmail.com','https://www.shilohmanganese.com/','Situs Game Maxwin Online Terbesar di Indonesia\r\nSitus Game Maxwin Terbaru di Indonesia\r\nSitus Hiburan Digital Terbaru Di Indonesia',1,'2025-01-31 22:47:48'),
(267,0,10,0,0,'Rtp Resmi Combo99','Combo99@gmail.com','https://www.christian-louboutinshoes.com/','To find out what online slot games are winning frequently, online games will always change all the time',1,'2025-01-31 22:48:50'),
(268,0,10,0,0,'Agen Resmi Combo99','Combo99@gmail.com','https://www.sunsetfarmsportingclays.com/','If members pay close attention, all online slot game websites always provide several alternative links',1,'2025-01-31 22:50:20'),
(269,0,10,0,0,'Situs Tokekwin88 Gacor','Tokekwin88@gmail.com','https://mosthauntedforum.com/','First, members can experience faster access to the main site,Second, using this link can better maintain member security',1,'2025-01-31 22:51:38'),
(270,0,10,0,0,'Agen Resmi Tokekwin88','Tokekwin88@gmail.com','https://estructurasmetalicasenchile.com/','Gates of Olympus has gone very viral in the online slot game community,Because this game has a very cool design and can produce thousands or even tens of thousands of times the winnings from the initial balance',1,'2025-01-31 22:53:08'),
(271,0,12,0,0,'gasanova strain','polydatta988@gmail.com','" https://koicbdonline.com/product/gasanova-strain-indica/"','Excellent and educational material.Excellent topics for research. Continue and good luck!<a href=" https://koicbdonline.com/product/gasanova-strain-indica/">gasanova strain </a> Reading this kind of stuff is helpful in my opinion.',1,'2025-02-01 06:58:15'),
(272,0,10,0,0,'livepositively','SulamAlisByNina@gmail.com','https://alethabeauty.livepositively.com/rahasia-alis-sempurna-tanpa-ribet-dengan-sulam-alis/','Sesuaikan Bentuk Alis Sesuai Wajah Dengan teknik terbaru, sulam alis bisa disesuaikan dengan bentuk wajah untuk tampilan yang lebih proporsional.',1,'2025-02-01 09:32:15'),
(273,0,1,0,0,'tenalena','tenalena330@gmail.com','https://roadtripmushroomgummies.org/','One of the best things about road trip gummies is their versatility. You can choose from classic fruit flavors, sour varieties for an extra zing, or even functional gummies packed with vitamins, caffeine, or CBD to enhance your journey. Need a quick sugar boost to stay alert? A handful of gummies can do the trick. Looking for a way to make the drive more fun? Sharing a bag with your passengers adds a touch of sweetness to the adventure. With their long shelf life and easy portability, road trip gummies are a must-have for any travel snack stash.',1,'2025-02-01 18:24:06'),
(274,0,10,0,0,'Slot Asia MGDWIN','megawin7@gmail.com','https://mgdwin.net/','Respon yang cepat dan solusi yang tepat akan diberikan untuk memastikan kenyamanan dan kepuasan Anda sebagai member',1,'2025-02-01 19:25:45'),
(275,0,10,0,0,'Link Alternatif Raja Langit 777','rajalangit77@gmail.com','https://www.tianyaxiaoshuo.com/','menjadi pilihan utama para pecinta togel online hari ini',1,'2025-02-01 19:26:06'),
(276,0,10,0,0,'Login 888 Meme','surya16@gmail.com','https://888meme.net/','Bergabunglah sekarang dan rasakan sendiri sensasi bermain togel online yang lebih mudah, aman, dan menguntungkan',1,'2025-02-01 19:26:21'),
(277,0,10,0,0,'Slot Gacor MAHABET777','mahabet77@gmail.com','https://www.productiveprograms.com/','Bermain togel online tidak hanya soal keberuntungan semata',1,'2025-02-01 19:27:25'),
(278,0,10,0,0,'Link Rtp AJ89','ajogame89@gmail.com','https://aj89.net/','Bermain togel online tidak hanya soal keberuntungan semataBermain togel online tidak hanya soal keberuntungan semata',1,'2025-02-01 19:27:37'),
(279,0,10,0,0,'RTP 100% jon888','jondelapan88@gmail.com','https://jon888.net/','Sebelum memulai permainan, tentukan batas maksimal taruhan yang Anda siapkan',1,'2025-02-01 19:27:51'),
(280,0,10,0,0,'Slot Resmi Padi77','Padi77@gmail.com','https://denverwellnessclinics.com/','Guess 2, 3, or 4 numbers that will come out in sequence',1,'2025-02-02 04:41:00'),
(281,0,10,0,0,'Login Padi 77','Padi77@gmail.com','https://easyonlinepaydays.com/','Free Plug Guess one number that will come out in any position',1,'2025-02-02 04:41:09'),
(282,0,10,0,0,'Daftar Padi 77','Padi77@gmail.com','https://grandterraceplumber.com/','Jitu Plug Guess one number that will come out in a certain position',1,'2025-02-02 04:41:18'),
(283,0,10,0,0,'Daftar Slot Ampera88','Ampera88@gmail.com','https://www.musingsofabookaddict.com/','Macau Plug Guess two numbers that will come out in any position',1,'2025-02-02 04:41:27'),
(284,0,10,0,0,'Daftar Situs Ampera 88','Ampera88@gmail.com','https://www.michael-kors-outlet-online.com/','Dragon Plug Guess three numbers that will come out in which position pun',1,'2025-02-02 04:41:37'),
(285,0,10,0,0,'Rtp Slot Ampera88','Ampera88@gmail.com','https://www.extreme-metal.com/','Middle Edge Guessing whether the number that comes out is included in the middle or edge group',1,'2025-02-02 04:41:45'),
(286,0,10,0,0,'RTP 100% Ampera 88','Ampera88@gmail.com','https://www.desmo-net-forum.com/','Basic Guessing whether the number that comes out is included in the even or odd group, and big or small',1,'2025-02-02 04:41:57'),
(287,0,10,0,0,'Rtp Live Ampera88','Ampera88@gmail.com','https://fantasyfashiondesign.com/','So in terms of service from the dealer there is no need to doubt',1,'2025-02-02 04:42:08'),
(288,0,10,0,0,'Live Rtp Ampera88','Ampera88@gmail.com','https://belizetotalwireless.com/','The quality and comfort offered have exceeded the expectations of the majority of players',1,'2025-02-02 04:42:35'),
(289,0,10,0,0,'Rtp Resmi Ampera88','Ampera88@gmail.com','https://norge-interactive.com/','Guessing the combination of numbers based on certain criteria, for example, big-small, even-odd, middle-edge',1,'2025-02-02 04:42:43'),
(290,0,10,0,0,'hiwingame Slot jackpot','hiwingame@gmail.com','https://lTheClayCreekBand.com/','Platform Hiburan Online Terfavorit di Indonesia',1,'2025-02-02 11:33:24'),
(291,0,10,0,0,'hiwin game Slot Cuan','hiwingame@gmail.com','https://SalaVipDeluxe.com/','Situs Online Menghadirkan berbagai macam konsep bermain Situs Slot gacor modern yang memberikan sensasi pengalaman bermain menjadi lebih praktis dan mudah.',1,'2025-02-02 11:36:42'),
(292,0,10,0,0,'hiwingame Link Daftar','hiwingame@gmail.com','https://HenShallHypnosis.com/','Jadi tunggu apalagi ? jika kalian mencari website gacor dan terpercaya, kami adalah pilihan utama kalian.',1,'2025-02-02 11:39:58'),
(293,0,10,0,0,'hiwin game Link Jitu','hiwingame@gmail.com','https://girlsbbq.com/','Kami berusaha untuk terus memberikan layanan terbaik sehingga setiap kali Anda bermain di Situs Slot online kami.',1,'2025-02-02 11:42:38'),
(294,0,10,0,0,'hiwingame Slot Hoki','hiwingame@gmail.com','https://mikeandashexperience.com/','Dapatkan kesempatan terbaik saat bermain di Situs Slot Online,',1,'2025-02-02 11:45:16'),
(295,0,10,0,0,'Slot Jitu hiwin game','hiwingame@gmail.com','https://PottersLittleHouse.com/','Bermain lebih keras jadilah Jagoan di Situs Slot Online Resmi kami.',1,'2025-02-02 11:49:35'),
(296,0,10,0,0,'hiwingame Slot Online','hiwingame@gmail.com','https://ShanghaiWeek.com/','Temukan pengalaman bermain yang seru dengan berbagai pilihan pasaran dan kesempatan memenangkan hadiah besar.',1,'2025-02-02 11:52:03'),
(297,0,10,0,0,'hiwin game Slot Gacor','hiwingame@gmail.com','https://SprayFoamTrailers.com/','Rasakan sensasi permainan SPORTSBOOK online dan nikmati berbagai olahraga favorit seperti sportsbook sepakbola, sportsbook basket, sportsbook tenis, sportsbook e-sports.',1,'2025-02-02 11:55:37'),
(298,0,10,0,0,'hiwingame Situs Asia','hiwingame@gmail.com','https://PhiPhatAnakIt.com/','Segera bergabung untuk mendapatkan banyak keuntungan dan keuntungan',1,'2025-02-02 12:01:15'),
(299,0,10,0,0,'hiwin game Agen Betting','hiwingame@gmail.com','https://LoyalHackers.com/','Anda bisa bermain togel singapura, hongkong dan sydney disini.',1,'2025-02-02 12:04:29'),
(300,0,10,0,0,'Situs Resmi Mb8','Mb8@gmail.com','https://Mb8.com/','Because this game has a very cool design and can produce thousands or even tens of thousands of times the winnings from the initial balance',1,'2025-02-02 18:19:54'),
(301,0,10,0,0,'Slot Gacor Mgd288','Mgd288@gmail.com','https://Mgd288.com/','Have a team that is experienced in handling members when they experience difficulties',1,'2025-02-02 18:57:29'),
(302,0,10,0,0,'Daftar Slot Microvip','Microvip@gmail.com','https://Microvip.com/','Pelayanan terbaik Aktif 24 jam non stop tanpa libur akan sangat memudahkan',1,'2025-02-02 18:57:44'),
(303,0,12,0,0,'cavitron ultrasonic scaler','gelele5970@godsigma.com','https://bestresultsdentalmarketing.com/2024/24/ultrasonic-dental-scalers-from-cavitron/','"Your energy and dedication are truly contagious."',1,'2025-02-02 19:25:56'),
(304,0,10,0,0,'Link Alternatif Ninja338','Ninja338@gmail.com','https://Ninja338.com/','Link Alternatif adalah salah satu sistem canggih kami untuk memudahkan dalam online',1,'2025-02-02 19:29:04'),
(305,0,10,0,0,'Slot Asia Ojek555','Ojek555@gmail.com','https://Ojek555.com/','Ada banyak faktor penentu pemain slot online dalam memilih Taruhan Slot Online',1,'2025-02-02 19:38:39'),
(306,0,10,0,0,'Rtp Resmi Orbit88','Orbit88@gmail.com','https://Orbit88.com/','The advantage that is given and really felt is the flexibility that can be played anytime and anywhere online using your Android or computer',1,'2025-02-02 19:56:20'),
(307,0,10,0,0,'Slot politoto','politoto@gmail.com','https://MariettaScion.com/','in providing a fair and transparent platform',1,'2025-02-02 20:06:52'),
(308,0,10,0,0,'Rtp 100% politoto','politoto@gmail.com','https://ExecutiveSearchTurkey.com/','The Latest Maxwin Game Site in Indonesia',1,'2025-02-02 20:16:43'),
(309,0,10,0,0,'Slot politoto Gacor','politoto@gmail.com','https://DarkWebMarketShop.com/','Anda dapat segera menghubungi kami, dan kami selalu siap membantu Anda 24 jam',1,'2025-02-02 20:20:46'),
(310,0,10,0,0,'Rtp Slot politoto','politoto@gmail.com','https://AfarTraining.com/','provides thousands of games with the best graphic quality with the highest and most consistent percentage of lag',1,'2025-02-02 20:25:40'),
(311,0,10,0,0,'Slot Online politoto','politoto@gmail.com','https://CaracasHolding.com/','adanya dukungan layanan 24 jam sangat membantu sekali memudahkan member mengakses taruhan judi kapan saja',1,'2025-02-02 20:32:36'),
(312,0,10,0,0,'Rtp Resmi politoto','politoto@gmail.com','https://AbujaShops.com/','menawarkan game online terbaik dengan tanggung jawab penuh dan game fairplay',1,'2025-02-02 20:36:05'),
(313,0,10,0,0,'Link Resmi politoto','politoto@gmail.com','https://kbit-invest.com/','Ini barangkali adalah satu satu kelebihan terbesar yang dimiliki',1,'2025-02-02 21:24:29'),
(314,0,10,0,0,'Daftar Situs Perak77','Perak77@gmail.com','https://Perak77.com/','Situs Slot yang memiliki sistem yang canggih dan juga tim yang sudah berpengalaman',1,'2025-02-02 21:30:34'),
(315,0,10,0,0,'Daftar Situs politoto','politoto@gmail.com','https://GenaCuta.com/','You are waiting for easy and simple wins and cash prize bonuses of millions of rupiah',1,'2025-02-02 21:30:58'),
(316,0,10,0,0,'Rtp Slot politoto','politoto@gmail.com','https://ExpoNoria.com/','You can contact us immediately, and we are always ready to help you 24 hours',1,'2025-02-02 21:35:10'),
(317,0,10,0,0,'Link politoto Gacor','politoto@gmail.com','https://thebierhausbistro.com/','Every lottery output result is guaranteed to be valid, providing a sense of security and comfort for players',1,'2025-02-02 21:39:34'),
(318,0,10,0,0,'Link Alternatif Provip','Provip@gmail.com','https://Provip.com/','Setiap tipe slot punya aturan dan fitur unik yang bisa jadi kunci buat menang',1,'2025-02-02 21:44:06'),
(319,0,10,0,0,'Slot Game R777','R777@gmail.com','https://R777.com/','This game is one of the gacor games that is currently popular among professional and casual players',1,'2025-02-02 22:20:09'),
(320,0,10,0,0,'Daftar Rajakurat','Rajakurat@gmail.com','https://Rajakurat.com/','In less than 1 minute your deposit and withdrawal without having to wait long',1,'2025-02-02 22:36:48'),
(321,0,10,0,0,'Slot Mpototo','Mpototo@gmail.com','https://mpototo1.com/','Keamanan data para pemain Taruhan Slot Online sangat kami jamin\r\nKarena kami mempunyai sistem yang sangat canggih untuk menghindari kebocoran data',1,'2025-02-03 00:21:46'),
(322,0,10,0,0,'Slot Resmi Mpox','Mpototo@gmail.com','https://mpototo1.com/','RTP or the abbreviation Return to Player is a value that is often found in slot games',1,'2025-02-03 00:23:52'),
(323,0,10,0,0,'Slot Resmi Mpox','Mpox@gmail.com','https://mpox1.com/','By looking at the RTP, members can choose games wisely\r\nTo find out what online slot games are winning frequently, online games will always change all the time',1,'2025-02-03 00:24:19'),
(324,0,10,0,0,'Rtp Slot Ras4d','Ras4d@gmail.com','https://ras4d1.com/','Apart from that, it also provides leaks on other games such as lottery and live slot\r\nIf members pay close attention, all online slot game websites always provide several alternative links',1,'2025-02-03 00:26:01'),
(325,0,10,0,0,'Link Slot Sky99','Sky99@gmail.com','https://sky99a.net/','Today\'s Gacor Game s Nexus Aztec Gems\r\nToday\'s Gacor Game s - Gates of Olympus\r\nToday\'s Gacor Game s - Starlight Princess',1,'2025-02-03 00:27:44'),
(326,0,10,0,0,'Situs Resmi Vegas777','Vegas777@gmail.com','https://vegas777a.net/','Today\'s Gacor Game s - Power of Thor Megaways\r\nToday\'s Gacor Game s - Juicy Fruits\r\nToday\'s Gacor Game s - Release the Kraken',1,'2025-02-03 00:29:06'),
(327,0,10,0,0,'Link Slot Wayangtoto','Wayangtoto@gmail.com','https://wayangtoto1.com/','guaranteed in choosing an official license.A license is an important part of the Game because a Game agent who does not have a license will not be able to guarantee the safety of its bettors',1,'2025-02-03 00:30:42'),
(328,0,10,0,0,'Rtp Slot Wd168','Wd168@gmail.com','https://wd168bet.com/','Then click REGISTER, then you have officially become our member,After you have your new account and become a member at , please click the DEPOSIT button in the upper right corner of the Main page',1,'2025-02-03 00:32:26'),
(329,0,10,0,0,'Slot Resmi Win123','Win123@gmail.com','https://win123a.com/','is one of the entertainments of a that uses real money as a means of betting with the online bookie where you play',1,'2025-02-03 00:33:41'),
(330,0,10,0,0,'Slot X888','X888@gmail.com','https://x888slot.com/','Complete Guide on How to Place Numbers or Play Sites,Today\'s Gacor Game Links with the Highest RTP Performance',1,'2025-02-03 00:35:13'),
(331,0,10,0,0,'Slot Resmi Ziatogel124','Ziatogel124@gmail.com','https://ziatogel124.net/','Anda dapat mengisi data diri Anda dengan benar dan lengkap untuk mendaftar,Calon anggota akan langsung menerima username dan password',1,'2025-02-03 00:37:19'),
(332,0,10,0,0,'KOMODO99 Link alternatif','komodo99@gmail.com','https://www.novacap-am.com/','ingatlah bahwa prediksi tidak menjamin kemenangan, jadi gunakanlah sebagai pertimbangan tambahan saja',1,'2025-02-03 05:20:39'),
(333,0,10,0,0,'APEK SLOT88 Gacor','komodohitam88@gmail.com','https://www.cpscl-loisirs.com/','sering mengadakan promosi dan bonus menarik yang dapat meningkatkan peluang menang Anda',1,'2025-02-03 05:32:34'),
(334,0,10,0,0,'MasterJitu99 Rtp100%','komodohijauh2@gmail.com','https://www.hot8bbs.com/','Jangan lewatkan kesempatan untuk mendapatkan bonus deposit, cashback, atau hadiah-hadiah lainnya',1,'2025-02-03 05:32:50'),
(335,0,10,0,0,'APEK SLOT88 Link alternatif','komodoseram7@gmail.com','https://MasterJitu99.com/','Pastikan Anda membaca syarat dan ketentuan setiap promosi dengan teliti',1,'2025-02-03 05:33:11'),
(336,0,10,0,0,'KOIN99 slot gacor','komodobaik09@gmail.com','https://www.gdxt-china.com/','Bermain dengan Sabar dan Disiplin',1,'2025-02-03 05:33:30'),
(337,0,10,0,0,'NAGAKOIN slot login','komodojinak65@gmail.com','https://www.WaterServer-Diet.com/','tempat yang tepat bagi mereka yang ingin merasakan sensasi kemenangan sambil memanfaatkan berbagai promosi yang ditawarkan',1,'2025-02-03 05:33:47'),
(338,0,10,0,0,'toto slot','carpenoctem584@gmail.com','https://www.darkreignws.com/','I genuinely appreciate your effort in making such a fantastic website. Its been a great resource for learning, and I always find something valuable here. Keep up the great work!',1,'2025-02-03 05:37:21'),
(339,0,3,0,0,'dsoi.net','dsoi.netf7@gmail.com','','https://dsoi.net/\r\nhttps://dsoi.net/islamabads-top-periodontists-gum-disease-treatment/\r\nhttps://dsoi.net/root-canal-procedures/\r\nhttps://dsoi.net/pediatric-dental-care/\r\nhttps://dsoi.net/orthodontic-procedures/',1,'2025-02-03 08:37:06'),
(340,0,11,0,0,'honey pot','mibera5596@bulatox.com','https://honeycombsweet.news/','This is getting a bit more subjective, but I much prefer the Zune Marketplace. The interface is colorful, has more flair, and some cool features like ‘Mixview’ that let you quickly see related albums, songs, or other users related to what you’re listening to. Clicking on one of those will center on that item, and another set of “neighbors” will come into view, allowing you to navigate around exploring by similar artists, songs, or users. Speaking of users, the Zune “Social” is also great fun, letting you find others with shared tastes and becoming friends with them. You then can listen to a playlist created based on an amalgamation of what all your friends are listening to, which is also enjoyable. Those concerned with privacy will be relieved to know you can prevent the public from seeing your personal listening habits if you so choose.',1,'2025-02-03 11:45:51'),
(341,0,12,0,0,'CelluCare','fit.yourselfhealthy@gmail.com','https://buy-cellucare.us/','"I feel more balanced and energized since incorporating <a href="https://buy-cellucare.us/">CelluCare</a> into my health regimen. Highly recommend giving it a try."',1,'2025-02-03 12:38:19'),
(342,0,10,0,0,'jerryjeck0102','jerryjeck63@gmail.com','https://giftcardmall.org','Hi, I enjoyed your wonderful site.',1,'2025-02-03 12:40:16'),
(343,0,10,0,0,'Link Rtp JURAGANKOIN','juragankoin7@gmail.com','https://www.afctools.com/','Anda menanti kemenangan yang mudah dan sederhana serta bonus hadiah uang tunai jutaan rupiah',1,'2025-02-03 14:14:14'),
(344,0,10,0,0,'RTP 100% BANDAR99','bandara99@gmail.com','https://www.FruitsUranAi.com/','Platform Pilihan bagi perusahaan-perusahaan terbaik di dunia, dengan pilihan variasi game terbanyak',1,'2025-02-03 14:14:34'),
(345,0,10,0,0,'Link Rtp RAJA KOIN99','rajakoin99@gmail.com','https://www.TheeAsTedge.com/','dengan beragam pilihan game menarik yang memudahkan pemain untuk mencapai jackpot',1,'2025-02-03 14:14:58'),
(346,0,10,0,0,'Slot Asia DINASTI88','dinasti88@gmail.com','https://www.bobkr.com/','terpercaya pastinya semua pecinta taruhan harus bergabung dengan situs yang tepat',1,'2025-02-03 14:25:18'),
(347,0,10,0,0,'Slot Gacor RACIK189','raciki89@gmail.com','https://www.elusivegamers.com/','Dengan sistem transaksi deposit dan withdraw yang super cepat yaitu hanya memakan waktu maksimal 5 menit saja',1,'2025-02-03 14:25:31'),
(348,0,10,0,0,'Daftar SLOTRESMI88','slotresmi88@gmail.com','https://www.sutradhari.com/','ingin mengetahui berapa besar kecilnya kemenangan mereka dalam memainkan permainan yang akan dimainka',1,'2025-02-03 14:25:46'),
(349,0,4,0,0,'lsm99dna','s.pheonix295@gmail.com','https://lsm99dna.net','I’ve been exploring for some time for excellent articles or blog posts on this kind of area. Exploring in Yahoo I at last stumbled upon this website. Reading this info made me discovered just what I needed. I will visit your site frequently.',1,'2025-02-03 15:14:13'),
(350,0,8,0,0,'lsm99dna','s.pheonix295@gmail.com','https://lsm99dna.net','I think this is one of the most vital information for me. And i am glad reading your article. But want to remark on few general things, The site style is great, the articles is really great. Good job, cheers',1,'2025-02-03 15:25:02'),
(351,0,1,0,0,'lsm99dna','s.pheonix295@gmail.com','https://lsm99dna.net','I just couldn’t depart your site prior to suggesting that I extremely enjoyed the standard information an individual provide for your visitors? Is gonna be back frequently in order to inspect new posts.',1,'2025-02-03 16:18:05'),
(352,0,11,0,0,'Bobby Jenkins','brotzbrotzbrotz@activego.store','https://www.2cconstruction.com/','Pay us a visit!\r\nhttps://www.2cconstruction.com/\r\nhttps://www.google.com/maps?cid=15003026818769281098',1,'2025-02-04 05:48:23'),
(353,223,12,17,0,'rajvistar vistar','rajuvistar@gmail.com','https://www.kohinoor-woodshire.newlaunchproject.in/','Kohinoor Woodshire project near Bavdhan project 3,4 BHK ₹ 79 architects and designers has created numerous luxurious rooms in Pune. Kohinoor brands new is for a limited only, The Kohinoor wood Shire new project is called 2/3/4 BHK offering in Pune. Kohinoor project new booking premium housing development offers. Best Rates Guaranteed in Pune. \r\n\r\n Visit- https://www.kohinoor-woodshire.newlaunchproject.in/',1,'2025-02-04 10:22:07'),
(354,0,10,0,0,'togel','speslucet9120@gmail.com','https://www.oalagustinos.org/','Situs togel resmi dan terpercaya menjamin keamanan data pribadi pemain. Presidenttoto juga memberikan bonus dan promo menarik bagi member setia.',1,'2025-02-04 10:36:46'),
(355,0,8,0,0,'delta8989','roben111r@gmail.com','https://deltaexecutor.live/','Delta Blox Fruit is an exciting concept! It seems like it could introduce new challenges, powers, or areas to explore within the world of Blox Fruits. The name \'Delta\' gives a sense of transformation and progression, which perfectly fits the adventurous and evolving nature of the game. It’s a name that sparks curiosity and excitement for what’s next in the journey!',1,'2025-02-04 11:16:40'),
(356,0,10,0,0,'Slot Wdbos88','Wdbos88@gmail.com','https://unboxingparcels.com/','Peluang Menang yang Lebih Besar',1,'2025-02-04 11:17:49'),
(357,0,10,0,0,'Slot Game Wdbos88','Wdbos88@gmail.com','https://unboxingparcels.com/','menawarkan berbagai jenis hari ini dengan peluang menang yang berbeda-beda',1,'2025-02-04 11:17:58'),
(358,0,10,0,0,'Slot Online Wdbos 88','Wdbos88@gmail.com','https://vancouverkrishnabalaram.com/','Anda dapat memilih jenis taruhan yang sesuai dengan gaya bermain dan tingkat risiko Anda',1,'2025-02-04 11:18:17'),
(359,0,10,0,0,'Slot Resmi Chang123','Chang123@gmail.com','https://laubemada.com/','not just an ordinary online gaming platform',1,'2025-02-04 11:18:25'),
(360,0,10,0,0,'Daftar Situs Chang123','Chang123@gmail.com','https://lazovski-art.com/','With a modern design, user-friendly interface, and high-quality graphics, you will experience an unforgettable gaming experience',1,'2025-02-04 11:18:34'),
(361,0,10,0,0,'RTP 100% Chang 123','Chang123@gmail.com','https://Mrs-Love.com/','The games available, you will never get bored and there is always something new to try every day',1,'2025-02-04 11:18:43'),
(362,0,10,0,0,'Live Rtp Chang 123','Chang123@gmail.com','https://greenfchem.com/','The security of your data and transactions is our top priority',1,'2025-02-04 11:18:58'),
(363,0,10,0,0,'Link Slot Chang 123','Chang123@gmail.com','https://saona-zen.com/','With the latest encryption technology, you can play calmly and focus on your game',1,'2025-02-04 11:19:09'),
(364,0,10,0,0,'Agen Resmi Chang123','Chang123@gmail.com','https://Prestige-Media-Group.com/','Starting from deposit bonuses, cashback, to other attractive prizes',1,'2025-02-04 11:19:22'),
(365,0,8,0,0,'Castle8989','roben111r@gmail.com','https://castleapp.info/','Castle Movies APK sounds like a fantastic app for movie lovers! The name gives off a vibe of a grand collection, like a castle full of treasures, but for films and entertainment. It could be a go-to platform for streaming or downloading movies, offering a convenient way to access a diverse library of content. Definitely something that catches the attention of cinema enthusiasts!',1,'2025-02-04 11:19:26'),
(366,0,10,0,0,'Situs Resmi Chang 123','Chang123@gmail.com','https://BackyardPondGuys.com/','Don\'t miss the opportunity to get deposit bonuses, cashback, or other prizes',1,'2025-02-04 11:19:48'),
(367,0,10,0,0,'Situs Chang123 Gacor','Chang123@gmail.com','https://ChoseNoneClothing.com/','Make sure you read the terms and conditions of each promotion carefully',1,'2025-02-04 11:20:00'),
(368,0,10,0,0,'Slot hiwingame Online','hiwingame@gmail.com','https://Milk-Express.com/','Selain itu seluruh permainan yang ada di Situs kami berasal dari provider asli yang memiliki sertifikat dan juga lisensi resmi Internasional.',1,'2025-02-04 13:16:02'),
(369,0,10,0,0,'hiwin game Link Alternatif','hiwingame@gmail.com','https://EdgemereDiner.com/','Kami juga menyediakan transaksi deposti maupun withdraw melalui transfer bank resmi di Indonesia, E wallet, dan juga pulsa yang pastinya tidak di kenakan potongan.',1,'2025-02-04 13:18:24'),
(370,0,10,0,0,'Alternatif Slot hiwingame','hiwingame@gmail.com','https://Aaron-Schwartz.com/','mendapatkan pengalaman bermain yang optimal dengan garansi kekalahan 100 terbesar sepanjang sejarah,',1,'2025-02-04 13:21:17'),
(371,0,10,0,0,'Agen Betting hiwin game','hiwingame@gmail.com','https://le-mobil-home.com/','Situs Slot Online juga menawarkan berbagai jenis permainan lain seperti taruhan bola online, tembak ikan, dan online.',1,'2025-02-04 13:23:54'),
(372,0,10,0,0,'hiwingame Agen Slot','hiwingame@gmail.com','https://AirPurifierHunter.com/','di Situs Slot Online kami Tersedia ratusan game terbaru yang bisa dimainkan.',1,'2025-02-04 13:27:08'),
(373,0,10,0,0,'88browin Agen Resmi','88browin@gmail.com','https://brandpidly.com/','Taklukkan semua permainan yang ada di situs Slot Online kami.',1,'2025-02-04 13:30:13'),
(374,0,10,0,0,'Agen Gacor 88bro win','88browin@gmail.com','https://shu-yu.net/','Temukan pengalaman bermain yang seru dengan berbagai pilihan pasaran dan kesempatan memenangkan hadiah besar.',1,'2025-02-04 13:39:19'),
(375,0,10,0,0,'88browin Raja Online','88browin@gmail.com','https://News-Kenya365.net/','Rasakan sensasi permainan SPORTSBOOK online dan nikmati berbagai olahraga favorit seperti sportsbook sepakbola, sportsbook basket, sportsbook tenis, sportsbook e-sports.',1,'2025-02-04 13:42:46'),
(376,0,10,0,0,'88 browin Raja Slot','88browin@gmail.com','https://TheMasterBaker.net/','Selain itu proses transaksi di Taruhan Slot Online sangat cepat, kurang dari 1 menit',1,'2025-02-04 14:03:07'),
(377,0,10,0,0,'Link 88browin Slot','88browin@gmail.com','https://Oakley--Sunglasses.net/','Mereka menawarkan situs bandar yang resmi dan aman bagi para pecinta togel.',1,'2025-02-04 14:10:57'),
(378,0,11,0,0,'AllMovieLand','asharabbaskhatri1@gmail.com','https://allmovieland.cfd/','I would like to convey my admiration for your generosity in support of men and women that have the need for help with this particular concern. Your special dedication to getting the message all over had been wonderfully productive and have all the time made professionals much like me to attain their dreams. Your own invaluable tutorial means a great deal to me and additionally to my office workers. Thank you; from everyone of us.',1,'2025-02-04 15:52:08'),
(379,0,10,0,0,'RTP 100% ESE4D','esead4@gmail.com','https://www.cleahbunting.com/','not stingy in providing bonuses and promotions to its members',1,'2025-02-04 21:15:56'),
(380,0,10,0,0,'Link Alternatif ESE 4D','esead4@gmail.com','https://www.myfstock.com/','Starting from deposit bonuses, cashback, to other attractive prizes',1,'2025-02-04 21:16:39'),
(381,0,10,0,0,'Daftar Bandit Slot','banditslot7@gmail.com','https://www.ModernMedicalClinics.com/','all prepared to increase your account balance and give you more opportunities to win',1,'2025-02-04 21:16:58'),
(382,0,10,0,0,'Link Gacor Bandit Slot','banditslot7@gmail.com','https://www.SmartContractCleaning.com/','provides discussion forums and live chat features that allow you to interact with other players',1,'2025-02-04 21:17:30'),
(383,0,10,0,0,'Situs Resmi Bandito Slot','slotbandito7@gmail.com','https://www.elucid8r.com/','You can share experiences, strategies, or just exchange information about lottery',1,'2025-02-04 21:17:49'),
(384,0,10,0,0,'Login Bandito Slot','slotbandito7@gmail.com','https://www.KameLeonOrchestras.com/','This solid community will make you feel that you are not alone in your journey of playing lottery online',1,'2025-02-04 21:18:04'),
(385,0,10,0,0,'Slot politoto','politoto@gmail.com','https://gnrprednisone.com/','telah mengukuhkan posisinya sebagai salah satu terkemuka di Indonesia',1,'2025-02-04 22:18:48'),
(386,0,10,0,0,'Rtp Live politoto','politoto@gmail.com','https://FridayNightPool.com/','Transaksi paling cepat deposit dan withdraw dengan tim yang siap melayani transaksi anda 24 Jam Nonstop',1,'2025-02-04 22:24:34'),
(387,0,10,0,0,'Situs Resmi luck678','luck678@gmail.com','https://kimicco.com/','with a more interesting theme, exciting story, and various rules and symbols',1,'2025-02-04 22:28:05'),
(388,0,10,0,0,'Rtp Slot luck678','luck678@gmail.com','https://daviddswanson.com/','don\'t miss the opportunity to always be able to get big wins and profits',1,'2025-02-04 22:32:57'),
(389,0,10,0,0,'Slot luck678','luck678@gmail.com','https://ozonobarato.com/','The existence of an official license from an international gambling institution is real proof of commitment',1,'2025-02-04 22:36:27'),
(390,0,10,0,0,'Rtp Slot luck678','luck678@gmail.com','https://AmazingToKnow.com/','The Biggest Maxwin Online Game Site in Indonesia',1,'2025-02-04 22:39:54'),
(391,0,10,0,0,'Situs Resmi luck678','luck678@gmail.com','https://BohemianJones.com/','Anda dapat segera menghubungi kami, dan kami selalu siap membantu Anda 24 jam',1,'2025-02-04 22:43:22'),
(392,0,10,0,0,'Rtp Slot luck678','luck678@gmail.com','https://123BuyAndSave.com/','menyediakan ribuan permainan dengan kualitas graphic terbaik dengan tingkat persentase jepe tertinggi dan terkonsisten',1,'2025-02-04 22:46:19'),
(393,0,10,0,0,'Slot luck678','luck678@gmail.com','https://ikrammotorworks.com/','dengan tema yang lebih menarik, cerita yang mendebarkan, dan berbagai aturan dan simbol',1,'2025-02-04 22:48:58'),
(394,0,10,0,0,'Rtp Slot luck678','luck678@gmail.com','https://VinosLogistics.com/','can feel all the advantages of its facilities that will provide all the convenience in playing online games',1,'2025-02-04 22:51:39'),
(395,0,10,0,0,'SARANG77 Slot','sarangwalet0@gmail.com','https://www.pallisacomschool.com/','telah menjadi salah satu platform permainan paling terpercaya dan populer di Indonesia',1,'2025-02-05 04:24:17'),
(396,0,10,0,0,'Beton88 Gacor','waletthitam7@gmail.com','https://www.cere-tunisia.com/','bonus yang melimpah, serta keamanan yang terjamin,berhasil memikat hati ribuan pemain dari seluruh Indonesia',1,'2025-02-05 04:24:36'),
(397,0,10,0,0,'Ceriaslot Hoki','walethijau77@gmail.com','https://www.nasacorporation.com/','Salah satu daya tarik utama adalah berbagai macam promo menarik yang terus dihadirkan untuk memberikan pengalaman bermain yang lebih menguntungkan bagi para pemain',1,'2025-02-05 04:24:50'),
(398,0,10,0,0,'DRAGON77 Slot','waletkuning99@gmail.com','https://www.Green-Beverages.com/','Semakin banyak variasi permainan yang Anda coba, semakin besar pula peluang Anda untuk meraih kemenangan',1,'2025-02-05 04:25:08'),
(399,0,10,0,0,'Pisang77 Slot','walettmerah22@gmail.com','https://www.eyoungpart.com/','Promosi dan Bonus Menggiurkan',1,'2025-02-05 04:25:29'),
(400,0,10,0,0,'OJOL777 Gacor','waletcoklat8@gmail.com','https://www.bcyoule5.com/','tidak pelit dalam memberikan bonus dan promosi kepada para membernya',1,'2025-02-05 04:25:46'),
(401,0,10,0,0,'faraz ahmed','fa2623506@gmail.com','https://www.bursapress.com.tr/','hi was just seeing if you minded a comment. i like your website and the thme you picked is super. I will be back',1,'2025-02-05 05:57:22'),
(402,0,12,0,0,'AllMovieLand APK','gofon50544@lineacr.com','https://allmovieland.cfd/','Absolutely pent subject matter, appreciate it for selective information .',1,'2025-02-05 06:25:14'),
(403,0,3,0,0,'dsoi.net','dsoi.netf7@gmail.com','','https://dsoi.net/\r\nhttps://dsoi.net/reliable-dental-crowns-and-bridges-in-islamabad/\r\nhttps://dsoi.net/root-canal-procedures/\r\nhttps://dsoi.net/pediatric-dental-care/\r\nhttps://dsoi.net/orthodontic-procedures/',1,'2025-02-05 06:33:08'),
(404,0,10,0,0,'7t6uh','454fgre@gmail.com','https://tbrainsinfo.com','치매 진단을 받은 사람의 뇌에서는 건강한 사람보다 최대 https://tbrainsinfo.com \r\n5배',1,'2025-02-05 10:25:39'),
(405,0,10,0,0,'situs toto','fortisetliber102@gmail.com','https://turuntangan.id/','I just want to say how much I appreciate your website! Its not only informative but also very enjoyable to browse. Thank you for sharing your knowledge with us.',1,'2025-02-05 12:56:32'),
(406,0,11,0,0,'Prime Path Amazon','refebe7380@alibrs.com','https://primepathamz.com/','Welcome to Prime Path—your ultimate solution for starting and growing a profitable Amazon store without the hassle. We offer all-done-for-you Amazon stores, making it easier than ever to step into the world of e-commerce.',1,'2025-02-05 13:37:43'),
(407,0,10,0,0,'Slot Ziatogel128','Ziatogel128@gmail.com','https://ziatogel128.com/','RTP Seperti pola maxwin dan jam gacor tersedia disini\r\nPilihan game yang ditampilkan langsung pada halaman utama website',1,'2025-02-05 16:26:13'),
(408,0,10,0,0,'Slot Resmi Anaknaga','Anaknaga@gmail.com','https://anaknaga1.net/','Therefore, it is one of the most sophisticated trusted websites\r\nwe cannot avoid the blocking carried out by the Ministry',1,'2025-02-05 16:32:41'),
(409,0,10,0,0,'Rtp Slot Arosuka87','Arosuka87@gmail.com','https://arosuka87a.com/','so you can contact us wherever and whenever,There are lots of online slot search betting games',1,'2025-02-05 16:34:24'),
(410,0,10,0,0,'Link Slot Autobot','Autobot@gmail.com','Autobot@gmail.com','PG Soft Online\r\nPG Soft is one of the most sought after betting games',1,'2025-02-05 16:37:08'),
(411,0,10,0,0,'Situs Resmi Bos4d','Bos4d@gmail.com','https://bos4d1.com/','How to Join an Online Site\r\nOf course, it will really make it easier for you if you play on PG Soft on the Online Site,Each game has HD graphics and interesting features in every round',1,'2025-02-05 16:38:48'),
(412,0,10,0,0,'Link Slot Bstation','Bstation@gmail.com','https://bstation1.com/','Berapa minimum deposit dan penarikan untuk situs online?\r\ncalon anggota hanya perlu mengisi data diri dengan benar dan lengkap',1,'2025-02-05 16:40:26'),
(413,0,10,0,0,'Rtp Slot E88','E88@gmail.com','https://e88slot.com/','memprediksi permainan yang sedang dimainkan dan Apakah Link Alternatif Aman dan Terpercaya?',1,'2025-02-05 16:43:23'),
(414,0,10,0,0,'Slot Resmi Faktabet','Faktabet@gmail.com','https://faktabet1.net/','bisa mengakses semua permainan yang disediakan saat Login dan Ajukan Informasi dan Pertanyaan situs',1,'2025-02-05 16:45:30'),
(415,0,10,0,0,'Slot Fanta77','Fanta77@gmail.com','https://fanta77a.com/','Link Alternatif Aman dan Terpercaya\r\nKeamanan data para pemain Taruhan Slot Online sangat kami jamin dan Karena kami mempunyai sistem yang sangat canggih untuk menghindari kebocoran data',1,'2025-02-05 16:47:07'),
(416,0,10,0,0,'Slot Asia Fc25','Fc25@gmail.com','https://fc25a.com/','Get the latest alternative slot links or slot RTP through this site\r\nThe advantage that is given and really felt is the flexibility that can be played anytime and anywhere online using your Android or computer',1,'2025-02-05 16:51:18'),
(417,0,10,0,0,'Slot Gacor 508Naga','508Naga@gmail.com','https://508Naga.com/','Pelayanan terbaik Aktif 24 jam non stop tanpa libur akan sangat memudahkan',1,'2025-02-05 18:46:06'),
(418,0,10,0,0,'Daftar Aladin66','Aladin66@gmail.com','https://Aladin66.com/','Situs online memiliki tim pemrosesan transaksi deposit dan penarikan yang berpengalaman',1,'2025-02-05 19:12:16'),
(419,0,10,0,0,'Slot Asiabookie','Asiabookie@gmail.com','https://Asiabookie.com/','Ada banyak faktor penentu pemain slot online dalam memilih Taruhan Slot Online',1,'2025-02-05 19:37:41'),
(420,0,10,0,0,'RTP 100% Balon69','Balon69@gmail.com','https://Balon69.com/','Today\'s slot game machines are more effective and interesting than the slot machines of the past',1,'2025-02-05 19:43:53'),
(421,0,10,0,0,'RTP 100% Bir365','Bir365@gmail.com','https://Bir365.com/','Of course, we always prioritize our service to hundreds of thousands of members',1,'2025-02-05 19:58:53'),
(422,0,10,0,0,'Login Birutoto99','Birutoto99@gmail.com','https://Birutoto99.com/','Merupakan salah satu platform hiburan digital online terbaik dan terpercaya di Indonesia',1,'2025-02-05 20:02:02'),
(423,0,10,0,0,'Live Rtp Cobratoto','Cobratoto@gmail.com','https://Cobratoto.com/','Semua masalah yang Anda alami teratasi dengan sangat cepat efektif dengan Taruhan Slot Online',1,'2025-02-05 20:46:02'),
(424,0,10,0,0,'Link Fe777 Gacor','Fe777@gmail.com','https://Fe777.com/','Therefore, we provide friendly Customer Service that serves you online 24 hours and will provide solutions quickly and precisely',1,'2025-02-05 20:59:47'),
(425,0,10,0,0,'Slot Asia Gesit777','Gesit777@gmail.com','https://Gesit777.com/','This game is one of the gacor games that is currently popular among professional and casual players',1,'2025-02-05 21:19:30'),
(426,0,10,0,0,'Daftar Gogoal','Gogoal@gmail.com','https://Gogoal.com/','Tentu akan sangat mudah bagi para pemain Situs Slot mendapatkan jackpot maxwin',1,'2025-02-05 21:27:36'),
(427,0,10,0,0,'Slot jackpot F2000M','F2000m@gmail.com','https://www.endzonesaratoga.com/','Situs Slot Online menawarkan hal yang lebih baik untuk member setianya disemua permainan.',1,'2025-02-06 10:54:07'),
(428,0,10,0,0,'F2000 M Link Alternatif','F2000m@gmail.com','https://www.heartsofmenfoundation.com/','Dapatkan pengalaman bermain di situs Slot premium Situs Slot Online kami,',1,'2025-02-06 11:02:56'),
(429,0,10,0,0,'Situs Asli F2000M','F2000m@gmail.com','https://www.luxurynoblewatches.com/','Bergabunglah sekarang dan alami kegembiraan tak terbatas dari permainan Slot online.',1,'2025-02-06 11:09:24'),
(430,0,10,0,0,'F2000 M Agen Slot','F2000m@gmail.com','https://opalesquesolutions.com/','Selain itu proses transaksi di Taruhan Slot Online sangat cepat, kurang dari 1 menit',1,'2025-02-06 11:12:41'),
(431,0,10,0,0,'Situs F2000M Resmi','F2000m@gmail.com','https://partydecoratorslakewood.com/','menyediakan berbagai permainan togel yang mudah dan aman',1,'2025-02-06 11:20:50'),
(432,0,10,0,0,'Jayaslot slot login','Jayaslot@gmail.com','https://pinefinancialblog.com/','Help members when they experience difficulties',1,'2025-02-06 16:52:18'),
(433,0,10,0,0,'Jayaslot slot login','Jayaslot@gmail.com','https://pleasantlyprints.com/','Apart from that, the transaction process in Online Slot Betting is very fast',1,'2025-02-06 16:52:32'),
(434,0,10,0,0,'Bromo777 slot login','Bromo777@gmail.com','https://www.plumedargent.com/','In short, Online Alternative Links are useful for online slot players',1,'2025-02-06 16:52:43'),
(435,0,10,0,0,'Bromo777 slot login','Bromo777@gmail.com','https://www.sharon-bateman.com/','Alternative Links is one of our advanced systems to make getting online easier',1,'2025-02-06 16:52:57'),
(436,0,10,0,0,'Bromo777 slot login','Bromo777@gmail.com','https://www.sights-of-negros-oriental.com/','Starting from teenagers to their parents play Online Slot Betting',1,'2025-02-06 16:53:10'),
(437,0,12,0,0,'Gursewak singh','healthsupplements999@gmail.com','https://mitolynsale.us','Mitolyn is a natural dietary supplement specifically outlined to enhance metabolism and support weight loss. Its potent blend of ingredients works to increase energy levels, promote fat burning, and improve overall wellness. With <a href="https://mitolynsale.us">Mitolyn Sale</a>, you can manage your weight effectively without resorting to extreme diets or intense exercise routines.',1,'2025-02-06 17:09:13'),
(438,0,10,0,0,'링크모음','rowol22795@wenkuu.com','https://xn--9y2bo82bvga.com/','A big thank you for your blog article.Really thank you! Fantastic.',1,'2025-02-06 17:12:41'),
(439,0,12,0,0,'how long do hemp seeds stay in your body','polydatta988@gmail.com','"https://cannameds.in/blogs/news/how-long-do-hemp-seeds-stay-in-your-body "','Excellent blog. It is also a major location that I thoroughly enjoyed exploring. Thank you for providing such useful and fascinating information <a href="https://cannameds.in/blogs/news/how-long-do-hemp-seeds-stay-in-your-body "> how long do hemp seeds stay in your body </a> We will continue to follow you for new stuff.',1,'2025-02-06 18:23:23'),
(440,0,12,0,0,'링크모음','alveenaseo@gmail.com','https://xn--9y2bo82bvga.com/','Say, you got a nice article post.Much thanks again.',1,'2025-02-06 19:04:23'),
(441,0,1,0,0,'링크모음','kicobi6278@dfesc.com','https://xn--9y2bo82bvga.com/','Say, you got a nice article post.Much thanks again.',1,'2025-02-06 19:04:31'),
(442,0,11,0,0,'링크모음','alveenaseo@gmail.com','https://xn--9y2bo82bvga.com/','Say, you got a nice article post.Much thanks again.',1,'2025-02-06 19:04:41'),
(443,0,12,0,0,'kaishore guggulu uses in hindi','polydatta988@gmail.com','"https://cannameds.in/blogs/news/the-powerful-kaishore-guggulu-benefits-in-hindi-for-holistic-wellness "','This is exciting content! I have thoroughly enjoyed reading your points and have concluded that you are right about many of them <a href="https://cannameds.in/blogs/news/the-powerful-kaishore-guggulu-benefits-in-hindi-for-holistic-wellness "> kaishore guggulu uses in hindi </a>\r\nYou are great!!!!!!!!!!!',1,'2025-02-06 20:42:00'),
(444,0,10,0,0,'Slot Asia ESE4D','esead4@gmail.com','https://www.xonsale.com/','Tim layanan pelanggan siap membantu Anda kapan pun Anda membutuhkannya',1,'2025-02-06 21:21:18'),
(445,0,10,0,0,'Situs Resmi Giga88','gingga88@gmail.com','https://www.wi-flo.com/','Respon yang cepat dan solusi yang tepat akan diberikan untuk memastikan kenyamanan dan kepuasan Anda sebagai member',1,'2025-02-06 21:21:33'),
(446,0,10,0,0,'Daftar Giga88','gingga88@gmail.com','https://www.saadatcarpet.com/','menjadi pilihan utama para pecinta togel online hari ini',1,'2025-02-06 21:21:46'),
(447,0,10,0,0,'Link Alternatif P2000M','duaribup20@gmail.com','https://www.MusicMegaBoxEng.com/','Bergabunglah sekarang dan rasakan sendiri sensasi bermain togel online yang lebih mudah, aman, dan menguntungkan',1,'2025-02-06 21:22:07'),
(448,0,10,0,0,'Situs Resmi P2000M','duaribu20@gmail.com','https://www.adonis-uk.com/','Tips dan Trik Bermain Togel Online',1,'2025-02-06 21:22:23'),
(449,0,10,0,0,'Login Lote4d','lotead4@gmail.com','https://ghayoumian.com/','Bermain togel online tidak hanya soal keberuntungan semata',1,'2025-02-06 21:22:43'),
(450,0,10,0,0,'Slot luck678','luck678@gmail.com','https://naomidediva.com/','menawarkan game online terbaik dengan tanggung jawab penuh dan game fairplay',1,'2025-02-06 23:16:39'),
(451,0,10,0,0,'Slot Game luck678','luck678@gmail.com','https://zoxcel.com/','offers the best online games with full responsibility and fair play games',1,'2025-02-06 23:16:52'),
(452,0,10,0,0,'Slot Online Koplo777','Koplo777@gmail.com','https://www.alestilocreativo.com/','Anda dapat segera menghubungi kami, dan kami selalu siap membantu Anda 24 jam',1,'2025-02-06 23:17:07'),
(453,0,10,0,0,'Slot Gacor Koplo777','Koplo777@gmail.com','https://www.astroaraneae.com/','You can contact us immediately, and we are always ready to help you 24 hours',1,'2025-02-06 23:17:19'),
(454,0,10,0,0,'Slot Gacor Koplo777','Koplo777@gmail.com','https://www.astroaraneae.com/','You can contact us immediately, and we are always ready to help you 24 hours',1,'2025-02-06 23:17:31'),
(455,0,10,0,0,'Slot Gacor Koplo777','Koplo777@gmail.com','https://www.astroaraneae.com/','You can contact us immediately, and we are always ready to help you 24 hours',1,'2025-02-06 23:17:31'),
(456,0,10,0,0,'Slot Asia Koplo777','Koplo777@gmail.com','https://www.aulatestdeals.com/','Dapatkan penghasilan dan komisi Anda setiap bulan dengan mengundang teman-teman Anda',1,'2025-02-06 23:17:42'),
(457,0,10,0,0,'Slot Resmi Koplo777','Koplo777@gmail.com','https://www.bargainliquids.com/','Earn your income and commission every month by inviting your friends',1,'2025-02-06 23:17:57'),
(458,0,10,0,0,'Login Koplo777','Koplo777@gmail.com','https://calgaryenergyhealingtouch.com/','is the best choice for those of you who are looking for a slot site',1,'2025-02-06 23:18:13'),
(459,0,10,0,0,'Daftar Koplo777','Koplo777@gmail.com','https://computerholiday.com/','international with high RTP and big winning chances',1,'2025-02-06 23:18:24'),
(460,0,10,0,0,'Daftar Slot Koplo777','Koplo777@gmail.com','https://daegucoupon.com/','dengan lisensi yang valid dan sistem keamanan yang kuat',1,'2025-02-06 23:18:39'),
(461,0,10,0,0,'Daftar Situs Rajapanda','Rajapanda@gmail.com','https://www.emploi-restho.com/','with valid license and strong security system',1,'2025-02-06 23:18:58'),
(462,0,10,0,0,'Giga88 slot','pepaya77@gmail.com','https://www.kuaidajian.com/','online lottery also offers a much wider variety of games than conventional lottery',1,'2025-02-07 04:44:46'),
(463,0,10,0,0,'Daftar Lote4d','pepayakuning9@gmail.com','https://www.TwisterCam.com/','Players can not only place bets',1,'2025-02-07 04:45:05'),
(464,0,10,0,0,'B2000M situs terpercaya','pepayahijauh2@gmail.com','https://www.nj-yixun.com/','but also various other types such as Hong Kong, Sydney, and Macau',1,'2025-02-07 04:45:22'),
(465,0,10,0,0,'Login B2000M','pepayahitam99@gmail.com','https://www.blantikawisnutama.com/','also provides live games that add to the excitement and adrenaline',1,'2025-02-07 04:49:32'),
(466,0,10,0,0,'y2000m Link alternatif','pepayamentah44@gmail.com','https://www.theconnectinc.com/','emerging as one of the main choices for fans in Indonesia',1,'2025-02-07 04:51:13'),
(467,0,10,0,0,'g2000m Link alternatif','pepayahjatuh66@gmail.com','https://www.MontenegroLabs.com/','With a reputation that solid, official license, and various advantages offered',1,'2025-02-07 04:51:35'),
(468,0,3,0,0,'dsoi.net','dsoi.netf7@gmail.com','','https://dsoi.net/\r\nhttps://dsoi.net/wisdom-tooth-extraction-in-islamabad-expert-care/\r\nhttps://dsoi.net/dental-implants/\r\nhttps://dsoi.net/pediatric-dental-care/\r\nhttps://dsoi.net/orthodontic-procedures/',1,'2025-02-07 06:23:52'),
(469,0,10,0,0,'Live Rtp Alien138','Alien138@gmail.com','https://www.ouramazingplaces.com/','Online Slot Site Register Slot88 Gacor Today',1,'2025-02-07 20:02:02'),
(470,0,10,0,0,'Link Alternatif Alien 138','Alien@gmail.com','https://www.selrah-personality.com/','Register for Gacor Online Slot Site Today',1,'2025-02-07 20:02:16'),
(471,0,10,0,0,'Agen Alien138 Gacor','Alien138@gmail.com','https://www.spotdumps.com/','Trusted Gacor Slot Site Tonight',1,'2025-02-07 20:02:33'),
(472,0,10,0,0,'Slot Asia Alien 138','Alien138@gmail.com','https://www.thegioigachgiare.com/','Surefire Way to Win Easily Playing',1,'2025-02-07 20:02:46'),
(473,0,10,0,0,'Daftar Situs Alien138','Alien138@gmail.com','https://throughavintagedoor.com/','Special Gacor Online Slot Site Today',1,'2025-02-07 20:02:58'),
(474,0,12,0,0,'Neotonics','dharmendra.twds@gmail.com','https://www.neotonices.com/','Neotonics is a revolutionary supplement designed to support both vibrant skin and a healthy gut. Formulated with a powerful blend of natural ingredients, it promotes smoother, more youthful-looking skin by addressing one of the root causes of skin aging — gut health. The unique formula harnesses the power of prebiotics, probiotics, and antioxidants to balance your microbiome, aiding in better nutrient absorption and skin regeneration.',1,'2025-02-08 04:24:59'),
(475,0,12,0,0,'Mitolyn','dharmendra.twds@gmail.com','https://www.mitolayn.com','https://www.mitolayn.com',1,'2025-02-08 04:29:46'),
(476,0,12,0,0,'Mitolyn','dharmendra.twds@gmail.com','https://www.usa-mitolyn.us','→→→→→→ CLICK HERE TO TRY MITOLYN',1,'2025-02-08 04:31:27'),
(477,0,12,0,0,'Mitolyn reviews','dharmendra.twds@gmail.com','https://www.us-mitoleyn.com','Real Users Share Their Mitolyn Reviews – Success Stories Inside',1,'2025-02-08 04:34:33'),
(478,0,12,0,0,'Mitolyn supplement','dharmendra.twds@gmail.com','https://www.usmitolyn.com','Mitolyn Reviews 2025 ???? Does Mitolyn Really Work for Weight Loss?',1,'2025-02-08 04:35:38'),
(479,0,12,0,0,'Mitolyn supplement','dharmendra.twds@gmail.com','https://www.mitoleyn.us/','Real Users Share Their Mitolyn Reviews – Success Stories Inside',1,'2025-02-08 04:36:43'),
(480,0,12,0,0,'Mitolyn','dharmendra.twds@gmail.com','https://www.us-miitolyn.com/','Real Users Share Their Mitolyn Reviews – Success Stories Inside',1,'2025-02-08 04:37:42'),
(481,0,12,0,0,'Mitolyn','dharmendra.twds@gmail.com','https://en-maitolyn.com','→→→→→→ CLICK HERE TO TRY MITOLYN',1,'2025-02-08 04:38:53'),
(482,0,12,0,0,'Java burn','dharmendra.twds@gmail.com','https://www.us-java-burn.com/','https://www.us-java-burn.com/',1,'2025-02-08 04:40:36'),
(483,0,12,0,0,'Java burn Supplement','dharmendra.twds@gmail.com','https://www.us-us-us-javaburncoffee.com','Java burn Supplement',1,'2025-02-08 04:41:33'),
(484,0,12,0,0,'Prostavive','dharmendra.twds@gmail.com','https://www.us-prostaviwe.com/','Prostavive',1,'2025-02-08 04:42:53'),
(485,0,12,0,0,'Buy Mitolyn','hecel17222@suggets.com','https://www.us-mitolaen.com','Mitolyn is a dietary supplement aimed at enhancing mitochondrial health and boosting energy levels. Packed with antioxidants and essential nutrients, it supports cellular function and reduces oxidative stress, helping to improve both physical and mental performance. By promoting optimal mitochondrial function, Mitolyn is designed to help combat fatigue and improve vitality. If you\'re looking to boost your energy naturally, you can buy Mitolyn to support your overall well-being.',1,'2025-02-08 05:20:28'),
(486,0,12,0,0,'Olivia G','tojok22520@suggets.com','https://www.us-thelostgenerater.com/','<p>Just finished building my <strong><a href="https://www.us-thelostgenerater.com/">generator </a></strong>today! Now I&rsquo;m looking forward to seeing how much it&rsquo;ll save me. Thanks for this awesome solution!</p>',1,'2025-02-08 05:23:35'),
(487,0,12,0,0,'Generator','tojok22520@suggets.com','https://www.usa-thelostgenerator.com/','I built my own Lost Generator last weekend, and it was surprisingly easy! The instructions were clear, and now I have a reliable backup power source for my home. Highly recommend!\r\n\r\nI’ve been looking for a sustainable energy solution for my RV. This is exactly what I needed. Can’t wait to see how much I’ll save on my trips!',1,'2025-02-08 05:40:29'),
(488,0,10,0,0,'Slot Online Chang123','Chang123@gmail.com','https://FearlessLeadersBook.com/','Bermain dengan Sabar dan Disiplin',1,'2025-02-08 05:48:58'),
(489,0,10,0,0,'Daftar Chang 123','Chang123@gmail.com','https://Sweet-Heart-Since2004.com/','tempat yang tepat bagi mereka yang ingin merasakan sensasi kemenangan sambil memanfaatkan berbagai promosi yang ditawarkan',1,'2025-02-08 05:49:06'),
(490,0,10,0,0,'Rtp Live Chang123','Chang123@gmail.com','https://BestHomeJuicer.com/','Salah satu promo yang paling populer adalah bonus selamat datang yang ditujukan untuk pemain baru',1,'2025-02-08 05:49:13'),
(491,0,10,0,0,'Link Resmi Chang123','Chang123@gmail.com','https://Caught-Out.com/','Dengan melakukan deposit pertama kali, pemain baru dapat langsung menikmati bonus besar yang bisa digunakan untuk bermain di berbagai permainan yang tersedia',1,'2025-02-08 05:49:21'),
(492,0,10,0,0,'Link Chang 123 Gacor','Chang123@gmail.com','https://EndlessFantasies.com/','Bonus ini memberikan kesempatan bagi pemain untuk mencoba berbagai permainan tanpa harus mengeluarkan modal besar, sehingga mereka dapat lebih leluasa dalam mengeksplorasi game favorit mereka',1,'2025-02-08 05:49:31'),
(493,0,10,0,0,'Slot Chang 123 Gacor','Chang123@gmail.com','https://louvel-charpente.com/','putaran gratis atau free spins adalah promo yang sangat menguntungkan',1,'2025-02-08 05:49:42'),
(494,0,10,0,0,'Link Alternatif Chang 123','Chang123@gmail.com','https://73PhotoWorks.com/','secara berkala memberikan promo free spins kepada pemain, baik melalui turnamen, bonus harian, maupun promosi tertentu',1,'2025-02-08 05:49:50'),
(495,0,10,0,0,'Live Rtp Latoto 889','Latoto889@gmail.com','https://CarbonFiberSpecialties.com/','Dengan memanfaatkan putaran gratis ini, pemain bisa bermain di favorit mereka tanpa harus mempertaruhkan saldo mereka, dan tetap berkesempatan untuk memenangkan hadiah besar',1,'2025-02-08 05:50:00'),
(496,0,10,0,0,'Daftar Slot Latoto 889','Latoto889@gmail.com','https://tsuhanmart.com/','tidak hanya dikenal karena promosi-promosi menariknya, tetapi juga karena komitmennya dalam menjaga keamanan dan kenyamanan para pemain',1,'2025-02-08 05:50:09'),
(497,0,10,0,0,'Slot Gacor Latoto889','Latoto889@gmail.com','https://takizawayumi.com/','Semua transaksi dan data pribadi pemain dilindungi oleh sistem enkripsi canggih, sehingga pemain tidak perlu khawatir tentang keamanan informasi mereka',1,'2025-02-08 05:50:21'),
(498,0,12,0,0,'NeuroQuiet','tojok22520@suggets.com','https://www.web-neuroquiet.com/','I’ve been battling tinnitus for months, and after trying NeuroQuiet, the ringing in my ears has significantly lessened. My focus has also improved, which has been a game-changer at work. Highly recommend!',1,'2025-02-08 05:50:25'),
(499,0,12,0,0,'pat king','tojok22520@suggets.com','https://www.us-neuroquiete.com/','NeuroQuiet has been a lifesaver! Not only did it help with my hearing clarity, but I also feel like my memory and focus have gotten so much better. I’m more alert and less stressed throughout the day.',1,'2025-02-08 05:56:52'),
(500,0,12,0,0,'ZenCortex','tojok22520@suggets.com','https://www.zencortexe.com/','I\'ve been using ZenCortex for a few months now, and I can already see a significant difference in both my hearing health and mental clarity.',1,'2025-02-08 06:25:51'),
(501,0,12,0,0,'Zen Taxes','tojok22520@suggets.com','https://www.zencortexi-us.com/','<p>The <a href="https://www.zencortexi-us.com/">tinnitus</a>&nbsp;that used to be constant is now much less frequent, and I can focus better on work tasks,Highly recommend giving it a try if you\'re dealing with <strong><a href="https://www.zencortexi-us.com/">hearing issues</a></strong> or need a boost in cognitive function!</p>',1,'2025-02-08 06:31:43'),
(502,0,12,0,0,'Nerve','tojok22520@suggets.com','http://en-us-nervefresh.us/','If you\'re looking for a natural way to support nerve health and alleviate discomfort, Nerve Fresh sounds like a great option! The combination of natural ingredients like Vitamin B12 and turmeric can really make a difference in reducing nerve pain and boosting energy.',1,'2025-02-08 06:40:04'),
(503,0,12,0,0,'Pineal','tojok22520@suggets.com','http://pinealguardiann.com/','I’ve been using Pineal Guardian for a few weeks now, and I can already feel a difference in my mental clarity and focus. As someone who juggles multiple responsibilities, this supplement has really helped boost my productivity and improve my sleep quality.',1,'2025-02-08 06:52:28'),
(504,0,12,0,0,'Mitolyn','sinapev342@intady.com','https://mitolync.com/','Mitolyn is a dietary supplement available in Australia, designed to enhance mitochondrial function, thereby boosting metabolism and promoting weight loss. It contains a blend of natural ingredients, including Maqui Berry, Rhodiola, Haematococcus, Amla, Theobroma Cacao, and Schisandra, each contributing to improved energy levels, fat burning, and overall well-being. Regular use of Mitolyn may lead to increased energy, better digestion, and support for healthy weight management.',1,'2025-02-08 08:16:25'),
(505,0,10,0,0,'Langit77 Link Hoki','Langit77@gmail.com','https://www.knowpackets.com/','memiliki kebijakan dan prosedur yang ketat terkait dengan deposit dan penarikan,',1,'2025-02-08 08:56:12'),
(506,0,10,0,0,'RTP 100% Langit 77','Langit77@gmail.com','https://www.lawnmaintenance-software.com/','Bonus Birthday: Bonus yang diberikan kepada pemain pada hari ulang tahun mereka',1,'2025-02-08 08:59:22'),
(507,0,10,0,0,'Langit77 Link Hoki','Langit77@gmail.com','https://www.leaderway-feeder.com/','Jangan bermain slot dengan tujuan untuk mendapatkan keuntungan besar dalam waktu singkat',1,'2025-02-08 09:03:03'),
(508,0,10,0,0,'Link Gacor Langit 77','Langit77@gmail.com','https://lecomptoir-ephemere.com/','Anda dapat melakukan deposit dan penarikan dana melalui pulsa dari berbagai operator seluler di Indonesia.',1,'2025-02-08 09:06:33'),
(509,0,10,0,0,'Langit77 RTP Resmi','Langit77@gmail.com','https://led-neon-flex-light.com/','Slot online yang juga menyediakan permainan live casino dan Sportbook.',1,'2025-02-08 09:09:56'),
(510,0,10,0,0,'Situs Mitosbetting Gacor','Mitosbetting@gmail.com','https://mitosbetting1.com/','Ayo Bergabung di Situs Slot Onlne Kami yang Terbaru,Situs Game Online Terbaik dan Terpercaya di Indonesia dan Ayo Rasakan Kemenangan di Situs Slot Online',1,'2025-02-08 15:18:20'),
(511,0,10,0,0,'Agen Resmi Lgo55max','Lgo55max@gmail.com','https://lgo55max1.com/','Situs Game Maxwin Online Terbesar di Indonesia,Situs Game Maxwin Terbaru di Indonesia dan Platform Digital Online Terpercaya di Indonesia',1,'2025-02-08 15:21:07'),
(512,0,10,0,0,'Rtp Resmi Kera888','Kera888@gmail.com','https://kera888a.com/','Therefore, the game will provide 3 examples of slot games that members can play directly',1,'2025-02-08 15:25:18'),
(513,0,10,0,0,'Daftar Situs Kera88','Kera88@gmail.com','https://kera88a.net/','There is definitely a reason why thousands of active members feel at home playing online slots',1,'2025-02-08 15:27:56'),
(514,0,10,0,0,'Slot Asia Jon77','Jon77@gmail.com','https://jon77a.com/','Get the latest alternative slot links or slot RTP through this site',1,'2025-02-08 15:29:25'),
(515,0,10,0,0,'Slot Resmi Jazz4d','Jazz4d@gmail.com','https://jazz4dslot.com/','Game Gacor Hari ini Nexus Aztec Gems\r\nGame Gacor Hari ini - Gates of Olympus\r\nGame Gacor Hari ini - Starlight Princess',1,'2025-02-08 15:31:09'),
(516,0,10,0,0,'Rtp Slot Jakartaslot','Jakartaslot@gmail.com','https://jakartaslot1.com/','Today\'s Gacor Game Site & Trusted Link end is one of the online Game sites known for its reputation as a platform with the highest winning rate.',1,'2025-02-08 15:33:23'),
(517,0,10,0,0,'Link Slot Gokilbet','Gokilbet@gmail.com','https://gokilbet1.com/','Official License,Various Bonuses end Most Complete Options',1,'2025-02-08 15:35:18'),
(518,0,10,0,0,'Situs Resmi Gameslot','Gameslot@gmail.com','https://gameslot1.com/','Registering a Gacor Game Account,Use Auto Spin Pattern.Use Manual Spin Button Pattern end Take Advantage of Bonus Features',1,'2025-02-08 15:37:08'),
(519,0,10,0,0,'Link Slot Fc888','Fc888@gmail.com','https://fc888a.com/','Upload proof of your deposit in the Proof of Deposit column as real confirmation that you have made a deposit to your account',1,'2025-02-08 15:38:46'),
(520,0,10,0,0,'RTP 100% F2000m','duaribu20@gmail.com','https://www.chance-i.com/','ingin mengetahui berapa besar kecilnya kemenangan mereka dalam memainkan permainan yang akan dimainkan',1,'2025-02-08 21:11:14'),
(521,0,10,0,0,'Link Alternatif F2000m','duaribu20@gmail.com','https://www.o-krasote.com/','Trik yang bisa di lakukan adalah dengan melakukan Bet kecil dahulu',1,'2025-02-08 21:11:30'),
(522,0,10,0,0,'Link Rtp A2000M','duapuluha7@gmail.com','https://www.SinesMedical.com/','dapat merasakan seluruh keunggulan fasilitasnya yang akan memberikan seluruh kemudahan dalam bermain game online',1,'2025-02-08 21:11:59'),
(523,0,10,0,0,'Link Gacor A2000M','duapuluha7@gmail.com','https://www.barcelos-saudi.com/','melalui akses link alternatif yang sudah kami sediakan',1,'2025-02-08 21:12:19'),
(524,0,10,0,0,'Login RBTV88','rabitdelapan8@gmail.com','https://rbtv88.org/','jangan lewatkan kesempatan untuk selalu dapat memperoleh kemenangan dan keuntungan besarnya',1,'2025-02-08 21:12:44'),
(525,0,10,0,0,'Link Gacor LINTASTOTO','lintastoto7@gmail.com','https://www.nextemploi.com/','menawarkan game online terbaik dengan tanggung jawab penuh dan game fairplay',1,'2025-02-08 21:12:58'),
(526,0,10,0,0,'Link Slot Hayobet','Hayobet@gmail.com','https://Hayobet.com/','Pastinya mendapatkan pengalaman yang seru dan menarik ketika melakukan taruhan di situs online',1,'2025-02-09 03:11:04'),
(527,0,10,0,0,'Daftar TOTOGACOR','ayamjinak2@gmail.com','https://www.360WebDesigning.com/','not stingy in giving bonuses and promotions to its members',1,'2025-02-09 03:17:03'),
(528,0,10,0,0,'Rtp100 TOTOGACOR','ayamnakall22@gmail.com','https://www.svsxpress.com/','Starting from deposit bonuses, cashback, to other attractive prizes',1,'2025-02-09 03:17:29'),
(529,0,10,0,0,'LinkGACOR TOTO','ayammerah8@gmail.com','https://www.01Do1.com/','all are prepared to increase your account balance and provide more opportunities to win',1,'2025-02-09 03:17:52'),
(530,0,10,0,0,'Daftar GENG77','ayamhitam9@gmail.com','https://geng77.com/','provides discussion forums and live chat features that allow you to interact with other players',1,'2025-02-09 03:20:12'),
(531,0,10,0,0,'Rtp100% GENG77','ayamcoklat66@gmail.com','https://geng77.net/','You can share experiences, strategies, or simply exchange information about',1,'2025-02-09 03:20:43'),
(532,0,10,0,0,'BUAYA 777','ayamputih33@gmail.com','https://www.samonics.com/','This solid community will make you feel like you are not alone in your gaming journey',1,'2025-02-09 03:21:02'),
(533,0,10,0,0,'Rtp Slot Hokidraw','Hokidraw@gmail.com','https://Hokidraw.com/','Semua masalah yang Anda alami teratasi dengan sangat cepat efektif dengan Taruhan Slot Online',1,'2025-02-09 03:24:52'),
(534,0,10,0,0,'Link Resmi Jdsport','Jdsports@gmail.com','https://Jdsport.com/','However, this game is still popular with many players because of its high win rate of up to 91.5% with high volatility',1,'2025-02-09 03:36:14'),
(535,0,10,0,0,'Daftar Slot Jdsports','Jdsports@gmail.com','https://Balon69.com/','There is definitely a reason why thousands of active members feel at home playing online slots',1,'2025-02-09 04:03:01'),
(536,0,10,0,0,'Login Jintoto','Jintoto@gmail.com','https://Bir365.com/','Pilihan game yang ditampilkan langsung pada halaman utama website',1,'2025-02-09 04:09:28'),
(537,0,10,0,0,'Daftar Slot Joker123','Joker123@gmail.com','https://Birutoto99.com/','tujuan kami adalah bikin pengalaman main kamu jadi menyenangkan dan bebas gangguan',1,'2025-02-09 04:14:12'),
(538,0,10,0,0,'Login Jokergaming','Jokergaming@gmail.com','https://Cobratoto.com/','This game is one of the gacor games that is currently popular among professional and casual players',1,'2025-02-09 04:21:17'),
(539,0,10,0,0,'Slot Gacor Lintastoto','Lintastoto@gmail.com','https://Lintastoto.com/','Have a team that is experienced in handling members when they experience difficulties',1,'2025-02-09 04:30:44'),
(540,0,10,0,0,'Link Luckvip Gacor','Luckvip@gmail.com','https://Luckvip.com/','There are many factors that make members not change the slot website they subscribe',1,'2025-02-09 04:35:46'),
(541,0,10,0,0,'Agen Resmi Macanhoki','Macanhoki@gmail.com','https://Macanhoki.com/','Tentu akan sangat mudah bagi para pemain Situs Slot mendapatkan jackpot maxwin',1,'2025-02-09 04:42:12'),
(542,0,10,0,0,'capitaltoto','vionatan869@gmail.com','https://prayerprompter.com/','Thank you for providing useful and very good information. For those of you who want information about everything, you can visit this website',1,'2025-02-09 14:56:03'),
(543,0,10,0,0,'direkturtoto','audreylin242@gmail.com','https://www.biefbi.com/','Thank you for providing useful and very good information. For those of you who want information about everything, you can visit this website',1,'2025-02-09 14:56:29'),
(544,0,10,0,0,'sultantoto','cs119direktur@gmail.com','https://www.fangclubofficial.com/','Thank you for providing useful and very good information. For those of you who want information about everything, you can visit this website',1,'2025-02-09 14:57:46'),
(545,0,10,0,0,'sultantoto','santobanjarnahor92@gmail.com','https://theedgefilm.com/','Thank you for providing useful and very good information. For those of you who want information about everything, you can visit this website',1,'2025-02-09 14:58:20'),
(546,0,10,0,0,'muliatoto','akunrong112@gmail.com','chttps://masquestartups.com/','<p> Thank you for providing useful and very good information. For those of you who want information about everything, you can visit this website <a href="https://masquestartups.com/" style="color:blue">muliatoto</a> Thank You </p>',1,'2025-02-09 14:59:00'),
(547,0,10,0,0,'Daftar Axa88','Axa88@gmail.com','https://www.hostitright.com/','Fill in the form by entering your username, email, mobile number, bank, account number and bank account name in each column',1,'2025-02-09 19:48:47'),
(548,0,10,0,0,'Rtp Live Axa 88','Axa88@gmail.com','https://www.hydra20original.com/','Then click REGISTER, then you have officially become our member',1,'2025-02-09 19:48:59'),
(549,0,10,0,0,'Link Resmi Axa88','Axa88@gmail.com','https://joyofslowcommunication.com/','After you have your new account and become a member at , please click the DEPOSIT button in the upper right corner of the Main page',1,'2025-02-09 19:49:10'),
(550,0,10,0,0,'Link Axa 88 Gacor','Axa88@gmail.com','https://justoneshoe.com/','Upload proof of your deposit in the Proof of Deposit column as real confirmation that you have made a deposit to your account',1,'2025-02-09 19:49:23'),
(551,0,10,0,0,'Agen Gacor Axa88','Axa88@gmail.com','https://markgreentree.com/','Please confirm your deposit to customer service via live chat',1,'2025-02-09 19:49:34'),
(552,0,10,0,0,'Slot Chang123','Chang123@gmail.com','https://spider-user.com/','Anda menanti kemenangan yang mudah dan sederhana serta bonus hadiah uang tunai jutaan rupiah',1,'2025-02-09 20:01:34'),
(553,0,10,0,0,'Slot Game Chang123','Chang123@gmail.com','https://store-uggboots.com/','Platform Pilihan bagi perusahaan-perusahaan terbaik di dunia, dengan pilihan variasi game terbanyak',1,'2025-02-09 20:01:50'),
(554,0,10,0,0,'Slot Online Mitosfafa','Mitosfafa@gmail.com','https://mitosfafa.org/','dengan beragam pilihan game menarik yang memudahkan pemain untuk mencapai jackpot',1,'2025-02-09 20:02:05'),
(555,0,10,0,0,'Slot Gacor Mitosjoker','Mitosjoker@gmail.com','https://mitosjoker1.com/','terpercaya pastinya semua pecinta taruhan harus bergabung dengan situs yang tepat',1,'2025-02-09 20:02:19'),
(556,0,10,0,0,'Slot Asia Niagatoto','Niagatoto@gmail.com','https://niagatoto1.net/','Dengan sistem transaksi deposit dan withdraw yang super cepat yaitu hanya memakan waktu maksimal 5 menit saja',1,'2025-02-09 20:02:29'),
(557,0,10,0,0,'Slot Resmi Panenjp69','Panenjp69@gmail.com','https://panenjp69a.com/','ingin mengetahui berapa besar kecilnya kemenangan mereka dalam memainkan permainan yang akan dimainka',1,'2025-02-09 20:02:40'),
(558,0,10,0,0,'Login Playhop','Playhop@gmail.com','https://playhop1.com/','Trik yang bisa di lakukan adalah dengan melakukan Bet kecil dahulu',1,'2025-02-09 20:02:51'),
(559,0,10,0,0,'Daftar Rajamain','Rajamain@gmail.com','https://rajamain.net/','dapat merasakan seluruh keunggulan fasilitasnya yang akan memberikan seluruh kemudahan dalam bermain game online',1,'2025-02-09 20:03:01'),
(560,0,10,0,0,'Daftar Slot Roda77','Roda77@gmail.com','https://roda77a.net/','melalui akses link alternatif yang sudah kami sediakan',1,'2025-02-09 20:03:13'),
(561,0,10,0,0,'Daftar Situs Rusiajp78','Rusiajp78@gmail.com','https://rusiajp78a.com/','can feel all the advantages of its facilities that will provide all the convenience in playing online games',1,'2025-02-09 20:03:26'),
(562,0,12,0,0,'ghost manga','chaffinskeren4745292@gmail.com','https://ghost-manga.com/','https://apk-manga.com/\r\nhttps://manga-apk.com/\r\nhttps://ghost-manga.com/\r\ngameiner.org\r\nafanews.com',1,'2025-02-10 03:29:32'),
(563,0,12,0,0,'botpress','voravongsukawat@hotmail.com','https://afanews.com/','<a href="https://apk-manga.com/">เว็บมังงะ</a>\r\n<a href="https://manga-apk.com/">อ่านมังงะ</a>\r\n<a href="https://ghost-manga.com/">ghost manga</a>\r\n<a href="gameiner.org">gameiner</a>\r\n<a href="afanews.com">afanews</a>',1,'2025-02-10 03:33:54'),
(564,0,3,0,0,'dsoi.net','dsoi.netf7@gmail.com','','https://dsoi.net/\r\nhttps://dsoi.net/islamabads-no-1-dental-specialists-dsoi/\r\nhttps://dsoi.net/#section-services\r\nhttps://dsoi.net/root-canal-procedures/',1,'2025-02-10 06:41:44'),
(565,0,8,0,0,'howell','dontjoke689@gmail.com','https://luckypatchers.vip/','Lucky Patcher is a profitable app for Android contraptions that makes a contrast them settle particular apps & diversions and overcome their promotions & premiums. https://luckypatchers.vip/',1,'2025-02-10 06:50:13'),
(566,0,10,0,0,'NADEEM123','nk9526369@gmail.com','https://royalgclub.bar/','Whether you are involved in affiliate marketing, selling items through ClickBank, or promoting your own personal business and website, ads are an important part of one\'s success. Some people make a recurring income simply by placing advertisements on the websites that get a lot of traffic.',1,'2025-02-10 07:03:43'),
(567,0,10,0,0,'FARAZ AHMED','fa2623506@gmail.com','','We know there are bad actors out there, and while I can not speculate about their motives, we consider the use of 2-SV is a critical security measure that sellers must enable and keep in their arsenal without even waiting until June 30th when it will become a requirement." In case you haven\'t enabled 2-SV on your Seller Central account yet, go to the Help & Client Service page on the Amazon site and follow the measures. Some sellers say the sign-up process was speedy and simple, but to the others it was nightmarish. Your experience might be different and worth discussing. Multichannel marketing is the quickest route to achieve your clients, so don\'t be left behind. Understanding provides tutorials on Magento, M2E Guru, Magmi along with other eCommerce tools that will allow you to sell and earn more about Amazon, eBay, and your own site.\r\nhttps://casawasha.com/pressure-washing-services-in-austin-tx/',1,'2025-02-10 08:15:03'),
(568,0,10,0,0,'farazahmed','fa2623506@gmail.com','https://casawasha.com/pressure-washing-services-in-austin-tx/','Thanks for the blog loaded with so many information. Stopping by your blog helped me to get what I was looking for.',1,'2025-02-10 08:15:50'),
(569,0,10,0,0,'mars','7uyjth@gmail.com','https://tbrainsinfo.com','달콤짭짤한 음식들의 함정, 초가공식품의 https://tbrainsinfo.com \r\n경고',1,'2025-02-10 10:01:26'),
(570,0,10,0,0,'Bromo777 Login','Bromo777@gmail.com','https://www.sofasetreviews.com/','Indonesia\'s best online slot site',1,'2025-02-10 12:53:18'),
(571,0,10,0,0,'Bromo777 Login','Bromo777@gmail.com','https://sohappymalo.com/','Slot site with daily deposit bonuses',1,'2025-02-10 12:53:25'),
(572,0,10,0,0,'Bromo777 Login','Bromo777@gmail.com','https://speedrecplus.com/','Has a very sophisticated system and also the best website program',1,'2025-02-10 12:53:34'),
(573,0,10,0,0,'Bromo777 Login','Bromo777@gmail.com','https://superecoblasting.com/','Of course you cannot post on any website except the Site',1,'2025-02-10 12:53:43'),
(574,0,11,0,0,'neuroquiet review','neuroquiet@neuroquiet-official.com','https://neuroquiet-official.com','NeuroQuiet Buy\r\n\r\nNeuroQuiet™ is an innovative dietary supplement designed to promote cognitive and hearing health. Delivered in liquid form, this advanced formula is designed to treat common problems such as tinnitus, confusion and stress. By addressing the root causes of hearing and cognitive decline, NeuroQuiet offers a holistic solution to improve focus, restore mental clarity and support hearing health. Its natural blend of ingredients ensures fast absorption, making it ideal for anyone seeking a natural way to improve brain and ear function.',1,'2025-02-10 12:59:16'),
(575,0,12,0,0,'toto slot gacor','ghalibshaikh050@gmail.com','https://forumpsg.com/','You should join in a contest first of the greatest blogs on the web. I will recommend this web site!',1,'2025-02-10 16:33:58'),
(576,0,1,0,0,'rtp slot','ghalibshaikh050@gmail.com','https://forumpsg.com/','*The next time I read a blog, I hope that it doesnt disappoint me as much as this one. I mean, I know it was my choice to read, but I actually thought youd have something interesting to say. All I hear is a bunch of whining about something that you could fix if you werent too busy looking for attention.',1,'2025-02-10 16:35:00'),
(577,0,11,0,0,'slot','ghalibshaikh050@gmail.com','https://forumpsg.com/','Many thanks for creating so good blog! i have book marked it and will be back!',1,'2025-02-10 16:35:56'),
(578,0,10,0,0,'amanqq','zubairkhatri101@gmail.com','http://63.250.38.170/amanqq/','I was recommended this blog by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my problem. You’re wonderful! Thanks!',1,'2025-02-10 17:15:25'),
(579,0,10,0,0,'rtp slot','ghalibshaikh050@gmail.com','https://forumpsg.com/','Hiya! Fantastic blog! I happen to be a daily visitor to your site (somewhat more like addict ) of this website. Just wanted to say I appreciate your blogs and am looking forward for more!',1,'2025-02-10 18:13:00'),
(580,0,10,0,0,'faraz ahmed','fa2623506@gmail.com','https://parisyearabroad.com/','Consequently, starting in the amount of electronic marketing strategy, is whenever a company\'s existing website, which will be to review the present site and its purpose is to improve the potency of the future. There is no evidence that the development and implementation of a method to be significantly different way of electronic marketing. Strategic planning for enterprise development or strategic marketing to comply with the established framework should still be',1,'2025-02-11 05:07:27'),
(581,0,12,0,0,'Mitolyn','dsfa@gmail.com','https://mitolyn-usa-website.com','Mitolyn weight loss supplement has provided me with a reliable means to manage my weight without compromising my energy levels. I appreciate that its formulation is based on natural ingredients known for enhancing metabolism and reducing hunger. Since I began using it, I have experienced fat burning and improved workout performance. This supplement has become an essential part of my health routine, promoting progress towards my weight loss goals remarkably indeed.',1,'2025-02-11 05:55:43'),
(582,0,10,0,0,'asdfghj','lkjhgfdsa@gmail.com','primepharmacartel.com','primepharmacartel.com',1,'2025-02-11 09:24:59'),
(583,0,10,0,0,'faraz ahmed','fa2623506@gmail.com','https://www.simphoni.net/','This is such a great resource that you are providing and you give it away for free. I love seeing blog that understand the value of providing a quality resource for fre',1,'2025-02-11 10:20:13'),
(584,0,12,0,0,'Mitolyn Reviews','yinamos726@andinews.com','https://github.com/fitnesscareusa/mitolynreviews','<p><a href="https://github.com/fitnesscareusa/mitolynreviews"><strong>Mitolyn</strong></a> Weight Loss has really helped me stay on track with my fitness goals! Noticed a difference in just a few weeks.</p>',1,'2025-02-11 10:58:28'),
(585,0,12,0,0,'mitolyn','gidico1113@downlor.com','https://github.com/Mitolyn-Supplements/mitolyn','<p><a href="https://github.com/fitnesscareusa/mitolynreviews"><strong>Mitolyn</strong></a> Weight Loss has really helped me stay on track with my fitness goals! Noticed a difference in just a few weeks</p>',1,'2025-02-11 11:42:26'),
(586,0,10,0,0,'Slot latoto889','latoto889@gmail.com','https://matistabeats.com/','By making their first deposit, new players can immediately enjoy a big bonus that can be used to play in various games available',1,'2025-02-11 12:18:24'),
(587,0,10,0,0,'Slot Game latoto889','latoto889@gmail.com','https://la-font-d-orange.com/','This bonus gives players the opportunity to try various games without having to spend a lot of capital, so they can be more free to explore their favorite games',1,'2025-02-11 12:18:32'),
(588,0,10,0,0,'Slot Online latoto 889','latoto889@gmail.com','https://samscommerce.com/','free spins are a very profitable promo',1,'2025-02-11 12:18:41'),
(589,0,10,0,0,'Slot Gacor latoto 889','latoto889@gmail.com','https://monilook.com/','periodically provide free spins promos to players, either through tournaments, daily bonuses, or certain promotions',1,'2025-02-11 12:18:53'),
(590,0,10,0,0,'Slot Asia latoto 889','latoto889@gmail.com','https://TritoNoil.com/','By taking advantage of these free spins, players can play on their favorites without having to risk their balance, and still have the opportunity to win big prizes',1,'2025-02-11 12:19:05'),
(591,0,10,0,0,'Slot Resmi latoto889','latoto889@gmail.com','https://CreaTeaClass.com/','not only known for its attractive promotions, but also for its commitment to maintaining the security and comfort of its players',1,'2025-02-11 12:19:17'),
(592,0,10,0,0,'Login latoto 889','latoto889@gmail.com','https://RobinsNestPrep.com/','All transactions and personal data of players are protected by a sophisticated encryption system, so players don\'t need to worry about the security of their information',1,'2025-02-11 12:19:28'),
(593,0,10,0,0,'Daftar politoto','politoto@gmail.com','https://rs2goldcheap.com/','also collaborates with leading game providers who guarantee that every game on this platform uses a fair and non-manipulated Random Number Generator system',1,'2025-02-11 12:19:38'),
(594,0,10,0,0,'Daftar Slot politoto','politoto@gmail.com','https://dirtcheaphousesnc.com/','ensuring that every player can make transactions easily',1,'2025-02-11 12:19:47'),
(595,0,10,0,0,'Daftar Situs politoto','politoto@gmail.com','https://bankonmvp.com/','Fast and secure deposit and withdrawal processes through various payment methods, including local bank transfers and e-wallets, as the main choice for players looking for a trusted platform',1,'2025-02-11 12:19:57'),
(596,0,10,0,0,'faraz ahmed','fa2623506@gmail.com','https://mau777kaya.com','Consequently, starting in the amount of electronic marketing strategy, is whenever a company\'s existing website, which will be to review the present site and its purpose is to improve the potency of the future. There is no evidence that the development and implementation of a method to be significantly different way of electronic marketing. Strategic planning for enterprise development or strategic marketing to comply with the established framework should still be',1,'2025-02-11 12:39:15'),
(597,0,10,0,0,'GACOR TOTO Slot','rusa123@gmail.com','https://www.utmskudai.com/','Keamanan data dan transaksi Anda adalah prioritas utama kami',1,'2025-02-11 12:42:00'),
(598,0,10,0,0,'MAWAR4D Slot','rusakuning22@gmail.com','https://www.StonesBistro.com/','Dengan teknologi enkripsi terbaru, Anda dapat bermain dengan tenang dan fokus pada permainan Anda',1,'2025-02-11 12:42:19'),
(599,0,10,0,0,'EMAS 777 Slot','rusamerah80@gmail.com','https://www.PongoSeries.com/','Bonus dan Promosi Menarik',1,'2025-02-11 12:42:32'),
(600,0,10,0,0,'FUN77 Gacor','rusahitam00@gmail.com','https://www.mersindenobetcieczane.com/','selalu memberikan berbagai jenis bonus dan promosi yang menggiurkan untuk meningkatkan keseruan dan peluang kemenangan Anda',1,'2025-02-11 12:42:45'),
(601,0,10,0,0,'FUN777 Gacor','rusacoklat99@gmail.com','https://www.ForumForEcology.com/','terpercaya dengan deposit minimal 100 perak, menawarkan pengalaman bermain hari ini dan berbagai pasaran lainnya yang aman, nyaman, dan berpeluang hadiah besar',1,'2025-02-11 12:43:00'),
(602,0,10,0,0,'MARVEL 777 slot','rusahijau08@gmail.com','https://www.emaratsp.com/','telah menjadi bagian tak terpisahkan dari budaya di Indonesia',1,'2025-02-11 12:43:13'),
(603,0,10,0,0,'MEGASLOT 888','kurakura8@gmail.com','https://www.ClonazepamHowTo.com/','Permainan tebak angka ini, terutama yang terkenal dengan reputasi dan kredibilitasnya',1,'2025-02-11 12:43:27'),
(604,0,10,0,0,'SENSASI 77 slot','kurakurakecil99@gmail.com','https://www.SclavInia.com/','telah memikat hati jutaan orang dengan impian meraih kemenangan besar',1,'2025-02-11 12:43:42'),
(605,0,10,0,0,'Link SENSAS I77','kucingbaik78@gmail.com','https://www.nbdecals.com/','seiring dengan perkembangan teknologi dan perubahan gaya hidup',1,'2025-02-11 12:43:57'),
(606,0,10,0,0,'Toz88 Link alternatif','kucingjahat54@gmail.com','https://www.watchesreplicaoem.com/','hadir sebagai jawaban atas tuntutan zaman yang semakin modern',1,'2025-02-11 12:44:12'),
(607,0,10,0,0,'RTP 100% totosbo','totosbo70@gmail.com','https://totosbo.net/','Data Analysis: Study previous patterns of number output to find out which numbers appear frequently or rarely',1,'2025-02-11 14:13:53'),
(608,0,10,0,0,'Login Slot toto sbo','totosbo7@gmail.com','https://www.ktvbbs.com/','Manage Capital Wisely: Determine your maximum betting limit and don\'t get carried away by emotions when playing',1,'2025-02-11 14:14:32'),
(609,0,10,0,0,'Link Rtp SBOTOP','sobotop7@gmail.com','https://www.AllaLah.com/','Play Responsibly: Remember that lottery is a game of entertainment, not a way to earn a primary income',1,'2025-02-11 14:14:48'),
(610,0,10,0,0,'Login SBOTOP Gacor','sbotop07@gmail.com','https://www.amaarlodges.com/','International Togel Market Exploration',1,'2025-02-11 14:15:12'),
(611,0,10,0,0,'Link Gacor ibcmax','ibumaxwin7@gmail.com','https://www.UsedCinemaGear.com/','Popular with Australian players and offers a variety of attractive betting types',1,'2025-02-11 14:15:29'),
(612,0,10,0,0,'Link Rtp ibc4d','ibundad07@gmail.com','https://www.dayanidhiautomation.com/','Attracts attention with its frequent output and wide variety of game',1,'2025-02-11 14:15:44'),
(613,0,10,0,0,'Slot Gacor Arenabet4d','arenabetd4@gmail.com','https://arenabet4d.com/','Every online lottery market today has a different mechanism and output schedule',1,'2025-02-11 14:15:59'),
(614,0,10,0,0,'Link Rtp WAJIK888','wajibdelapan8@gmail.com','https://www.jpnonwovens.com/','Make sure you understand the game rules and output times of each market before placing a bet',1,'2025-02-11 14:16:33'),
(615,0,10,0,0,'Daftar KAISAR SLOT','kaisarslot07@gmail.com','https://www.ortja.com/','A simple but tense card game, where you have to choose between the Player or Banker who has the highest card value',1,'2025-02-11 14:17:11'),
(616,0,10,0,0,'KAISAR SLOT GAME','kaisarslot7@gmail.com','https://www.Jerome-MoutRille.com/','A fun and fast dice game, where you have to guess the combination of numbers that will come out of three dice',1,'2025-02-11 14:17:27'),
(617,0,10,0,0,'murahqq','zubairkhatri101@gmail.com','http://63.250.38.170/murahqq/','There are some fascinating time limits in this article but I don know if I see all of them center to heart. There’s some validity but I will take maintain opinion till I look into it further. Good article , thanks and we want more! Added to FeedBurner as properly',1,'2025-02-11 17:02:43'),
(618,0,10,0,0,'Situs Resmi Mediaslot','Mediaslot@gmail.com','https://mediaslot1.com/','Situs Online Terbaik Sepanjang Masa dan merupakan situs online terpopuler & paling terkenal di indonesia saat ini',1,'2025-02-11 17:48:35'),
(619,0,10,0,0,'Link Slot Metaslot','Metaslot@gmail.com','https://metaslot1.net/','We provide a variety of excellent facilities to ensure every player end You get an unmatched gaming experience and a great chance to win.',1,'2025-02-11 17:51:12'),
(620,0,10,0,0,'Rtp Slot Mpoextra','Mpoextra@gmail.com','https://mpoextra.net/','Today\'s Gacor Game s Nexus Aztec Gems\r\nToday\'s Gacor Game s - Gates of Olympus\r\nToday\'s Gacor Game s - Starlight Princess',1,'2025-02-11 17:53:41'),
(621,0,10,0,0,'Slot Resmi Netpedia','Netpedia@gmail.com','https://netpedia1.com/','Today\'s Gacor Game s - Release the Kraken\r\nToday\'s Gacor Game s - Juicy Fruits',1,'2025-02-11 17:55:25'),
(622,0,10,0,0,'Slot Nsfs347','Nsfs347@gmail.com','https://nsfs347.com/','guaranteed in choosing an official license.,A license is an important part of the Game because a Game agent who does not have a license will not be able to guarantee the safety of its bettors',1,'2025-02-11 17:59:02'),
(623,0,10,0,0,'Slot Resmi Parikesit','Parikesit@gmail.com','https://parikesit.net/','Then click REGISTER, then you have officially become our member end After you have your new account and become a member at , please click the DEPOSIT button in the upper right corner of the Main page',1,'2025-02-11 18:01:28'),
(624,0,10,0,0,'Rtp Slot Polania123','Polania123@gmail.com','https://polania123.com/','is the most popular & most famous online site in Indonesia today end Account for the Most Complete Online Game s',1,'2025-02-11 18:04:23'),
(625,0,10,0,0,'Link Slot Polaris','Polaris@gmail.com','https://polaris1.org/','The Latest Maxwin Game Site in Indonesia end Trusted Online Digital Platform in Indonesia',1,'2025-02-11 18:08:12'),
(626,0,10,0,0,'RTP 100% Rajabuaya','Rajabuaya@gmail.com','https://rajabuaya.net/','Come on, win on the online slot site end Digital Online Entertainment Platform in Indonesia ,Come on, join the safe online slot site immediately',1,'2025-02-11 18:11:24'),
(627,0,10,0,0,'Slot Resmi Sensaslot','Sensaslot@gmail.com','https://sensaslot1.com/','Alternative link to bet the best ,Indonesia\'s best online slot site end Slot site with daily deposit bonuses',1,'2025-02-11 18:13:35'),
(628,0,10,0,0,'Abf188 Link Gacor','Abf188@gmail.com','https://abf188.com/','You don\'t have to wait long to start the game or enjoy your winnings',1,'2025-02-11 18:31:37'),
(629,0,10,0,0,'Daftar Situs Ampera88','Ampera88@gmail.com','https://ampera88slot.net/','Situs online mempunyai provider yang mudah untuk dimenangkan',1,'2025-02-11 18:31:55'),
(630,0,10,0,0,'Andara777 Live Rtp','andara777a@gmail.com','https://andara777a.net/','Online Togel, a Modern Phenomenon in the World of Game',1,'2025-02-11 18:32:14'),
(631,0,10,0,0,'Andra77 RTP 100%','Andra77@gmail.com','https://andra77.net/','Pragmatic Play Menjadi salah satu Provider paling terkenal',1,'2025-02-11 18:32:44'),
(632,0,10,0,0,'Situs Game Ayo89','Ayo89@gmail.com','https://ayo89a.com/','Member security and privacy is a top priority',1,'2025-02-11 18:33:11'),
(633,0,10,0,0,'Link Gacor Ayu98','Ayu98@gmail.com','https://ayu98.com/','For those of you who want to experience the sensation of playing online game today',1,'2025-02-11 18:33:44'),
(634,0,10,0,0,'Cemara77 Link Gacor','Cemara77@gmail.com','https://cemara77a.com/','a great place to start your adventure',1,'2025-02-11 18:34:16'),
(635,0,10,0,0,'Cor99wd Gacor Link','Cor99wd@gmail.com','https://cor99wd1.com/','salah satu permainan taruhan slot online adalah Gatest Of Olympus',1,'2025-02-11 18:34:55'),
(636,0,10,0,0,'Situs Gacor Dewa100','Dewa100@gmail.com','https://dewa100a.net/','Fast response and the right solution guarantee member satisfaction',1,'2025-02-11 18:35:15'),
(637,0,10,0,0,'Dodo555 Situs Link','Dodo555@gmail.com','https://dodo555.net/','Fast response and the right solution guarantee member satisfaction',1,'2025-02-11 18:50:59'),
(638,0,10,0,0,'Link Alternatif 88browin','88browin@gmail.com','https://ReloadingHome.net/','Semakin banyak variasi permainan yang Anda coba, semakin besar pula peluang Anda untuk meraih kemenangan.',1,'2025-02-11 18:55:49'),
(639,0,10,0,0,'88browin Situs Gacor','88browin@gmail.com','https://Famille4Pirates.net/','not stingy in providing bonuses and promotions to its members',1,'2025-02-11 18:56:48'),
(640,0,10,0,0,'88browin Game Resmi','88browin@gmail.com','https://SelfMovers.net/','not stingy in providing bonuses and promotions to its members',1,'2025-02-11 20:12:11'),
(641,0,11,0,0,'Ahsankhan','Ahsankhan00515@gmail.com','ahsankhan00515@gmail.com','Empyre is a Marvel Comics <ahref="https://empyrecloth.com/">empyre</a>crossover event featuring an alliance between the Kree and Skrull empires,<ahref="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>led by Hulkling, to confront the Cotati\'s deadly plans. It explores themes of unity, betrayal, and cosmic warfare.<a href="https://empyrecloth.com/">empyre</a> <a href="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>',1,'2025-02-11 20:12:20'),
(642,0,11,0,0,'Ahsankhan','Ahsankhan00515@gmail.com','ahsankhan00515@gmail.com','Empyre is a Marvel Comics <ahref="https://empyrecloth.com/">empyre</a>crossover event featuring an alliance between the Kree and Skrull empires,<ahref="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>led by Hulkling, to confront the Cotati\'s deadly plans. It explores themes of unity, betrayal, and cosmic warfare.<a href="https://empyrecloth.com/">empyre</a> <a href="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>',1,'2025-02-11 20:12:21'),
(643,0,1,0,0,'Ahsankhan','Ahsankhan00515@gmail.com','https://empyrecloth.com/','Empyre is a Marvel Comics <ahref="https://empyrecloth.com/">empyre</a>crossover event featuring an alliance between the Kree and Skrull empires,<ahref="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>led by Hulkling, to confront the Cotati\'s deadly plans. It explores themes of unity, betrayal, and cosmic warfare.<a href="https://empyrecloth.com/">empyre</a> <a href="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>',1,'2025-02-11 20:12:54'),
(644,0,1,0,0,'Ahsankhan','Ahsankhan00515@gmail.com','https://empyrecloth.com/','Empyre is a Marvel Comics <ahref="https://empyrecloth.com/">empyre</a>crossover event featuring an alliance between the Kree and Skrull empires,<ahref="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>led by Hulkling, to confront the Cotati\'s deadly plans. It explores themes of unity, betrayal, and cosmic warfare.<a href="https://empyrecloth.com/">empyre</a> <a href="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>',1,'2025-02-11 20:12:54'),
(645,0,1,0,0,'Ahsankhan','Ahsankhan00515@gmail.com','https://empyrecloth.com/','Empyre is a Marvel Comics <ahref="https://empyrecloth.com/">empyre</a>crossover event featuring an alliance between the Kree and Skrull empires,<ahref="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>led by Hulkling, to confront the Cotati\'s deadly plans. It explores themes of unity, betrayal, and cosmic warfare.<a href="https://empyrecloth.com/">empyre</a> <a href="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>',1,'2025-02-11 20:12:54'),
(646,0,12,0,0,'Ahsankhan','Ahsankhan00515@gmail.com','https://empyrecloth.com/','Empyre is a Marvel Comics <ahref="https://empyrecloth.com/">empyre</a>crossover event featuring an alliance between the Kree and Skrull empires,<ahref="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>led by Hulkling, to confront the Cotati\'s deadly plans. It explores themes of unity, betrayal, and cosmic warfare.<a href="https://empyrecloth.com/">empyre</a> <a href="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>',1,'2025-02-11 20:13:22'),
(647,0,12,0,0,'Ahsankhan','Ahsankhan00515@gmail.com','https://empyrecloth.com/','Empyre is a Marvel Comics <ahref="https://empyrecloth.com/">empyre</a>crossover event featuring an alliance between the Kree and Skrull empires,<ahref="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>led by Hulkling, to confront the Cotati\'s deadly plans. It explores themes of unity, betrayal, and cosmic warfare.<a href="https://empyrecloth.com/">empyre</a> <a href="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>',1,'2025-02-11 20:13:22'),
(648,0,12,0,0,'Ahsankhan','Ahsankhan00515@gmail.com','https://empyrecloth.com/','Empyre is a Marvel Comics <ahref="https://empyrecloth.com/">empyre</a>crossover event featuring an alliance between the Kree and Skrull empires,<ahref="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>led by Hulkling, to confront the Cotati\'s deadly plans. It explores themes of unity, betrayal, and cosmic warfare.<a href="https://empyrecloth.com/">empyre</a> <a href="https://empyrecloth.com/empyre-jeans/">empyre jeans</a>',1,'2025-02-11 20:13:22'),
(649,0,10,0,0,'Rtp Resmi 88browin','88browin@gmail.com','https://leeightontalksaboutpokemon.net/','cukup dengan perangkat yang terhubung ke internet',1,'2025-02-11 20:17:23'),
(650,0,10,0,0,'88browin Situs Resmi','88browin@gmail.com','https://RuralSatelliteServices.net/','Fast response and the right solution guarantee member satisfaction',1,'2025-02-11 20:21:38'),
(651,0,10,0,0,'Loby89 Situs Game','Loby89@gmail.com','https://www.alexbaileywriter.com/','cukup dengan perangkat yang terhubung ke internet',1,'2025-02-11 20:36:38'),
(652,0,10,0,0,'Situs Link Loby89','Loby89@gmail.com','https://www.amberlotuspublishing.com/','all prepared to increase your account balance and give you more opportunities to win',1,'2025-02-11 20:37:29'),
(653,0,10,0,0,'Alternatif Link Loby89','Loby89@gmail.com','https://www.apc-djamaa.com/','This solid community will make you feel like you are not alone in your gaming journey',1,'2025-02-11 20:38:23'),
(654,0,10,0,0,'Loby89 Link Gacor','Loby89@gmail.com','https://www.asakitech.com/','The customer service team is ready to help you whenever you need',1,'2025-02-11 20:40:38'),
(655,0,10,0,0,'Login Loby89','Loby89@gmail.com','https://authenticfitflop.com/','provides discussion forums and live chat features that allow you to interact with other players',1,'2025-02-11 20:42:53'),
(656,0,10,0,0,'Login Loby89','Loby89@gmail.com','https://authenticfitflop.com/','provides discussion forums and live chat features that allow you to interact with other players',1,'2025-02-11 20:42:53');
/*!40000 ALTER TABLE `oc_journal3_blog_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_post`
--
DROP TABLE IF EXISTS `oc_journal3_blog_post`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_post` (
`post_id` int(11) NOT NULL AUTO_INCREMENT,
`author_id` int(11) DEFAULT NULL,
`image` varchar(256) DEFAULT NULL,
`comments` tinyint(1) DEFAULT NULL,
`status` tinyint(1) DEFAULT NULL,
`sort_order` int(11) DEFAULT NULL,
`date_created` datetime DEFAULT NULL,
`date_updated` datetime DEFAULT NULL,
`views` int(11) DEFAULT NULL,
PRIMARY KEY (`post_id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_post`
--
LOCK TABLES `oc_journal3_blog_post` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_post` DISABLE KEYS */;
INSERT INTO `oc_journal3_blog_post` VALUES
(1,1,'catalog/journal3/gallery/photographer.jpg',2,1,0,'2014-09-15 12:06:26','2018-08-02 22:54:28',24968),
(3,1,'catalog/journal3/gallery/pack.jpg',2,1,0,'2014-09-15 12:06:26','2018-08-02 18:41:08',17060),
(4,1,'catalog/journal3/gallery/backdrop031.jpg',2,1,0,'2014-09-15 12:06:26','2018-08-02 18:38:14',17577),
(10,1,'catalog/journal3/gallery/backdrop003.jpg',2,1,0,'2018-08-02 12:28:14','2019-04-18 14:53:23',9804),
(9,1,'catalog/journal3/gallery/wing.jpg',2,1,0,'2018-07-26 17:43:21','2018-08-02 18:46:23',8636),
(7,1,'catalog/journal3/gallery/backdrop015.jpg',2,1,0,'2014-09-15 12:06:26','2018-08-02 18:45:26',12820),
(8,1,'catalog/journal3/gallery/gent.jpg',2,1,0,'2014-09-15 12:06:26','2018-08-02 18:47:57',16246),
(11,1,'catalog/journal3/gallery/demo28.jpg',2,1,0,'2018-08-02 12:29:24','2018-08-02 18:49:12',11421),
(12,1,'catalog/journal3/gallery/aiony-haust-667702-unsplash.jpg',2,1,0,'2018-08-02 12:30:49','2019-03-15 20:32:01',23154);
/*!40000 ALTER TABLE `oc_journal3_blog_post` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_post_description`
--
DROP TABLE IF EXISTS `oc_journal3_blog_post_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_post_description` (
`post_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(256) DEFAULT NULL,
`description` mediumtext DEFAULT NULL,
`meta_title` varchar(256) DEFAULT NULL,
`meta_keywords` varchar(256) DEFAULT NULL,
`meta_description` text DEFAULT NULL,
`keyword` varchar(256) DEFAULT NULL,
`tags` varchar(256) DEFAULT NULL,
PRIMARY KEY (`post_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_post_description`
--
LOCK TABLES `oc_journal3_blog_post_description` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_post_description` DISABLE KEYS */;
INSERT INTO `oc_journal3_blog_post_description` VALUES
(1,1,'Welcome to Journal Blog','<p><span class=\"drop-cap\">J</span>ournal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe src=\"//www.youtube.com/embed/oMm4F6Ff1oA\" allowfullscreen rel=0></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Welcome to Journal Blog','Journal Blog','Journal Blog','journal-blog','cool, modern, smart, sweet, travel, shop, photography'),
(8,1,'The Wool Jackets Are Back','<p><span class=\"drop-cap\">W</span>ool jackets are so warm. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','The Wool Jackets Are Back','The Wool Jackets Are Back','The Wool Jackets Are Back','wool-jackets','cool, tag, smart, sweet'),
(3,1,'Season Essentials','<p><span class=\"drop-cap\">S</span>easons come and go but Journal is here to stay. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Season Essentials','Season Essentials','Season Essentials','season-essentials','cool, modern, photography, camera, travel'),
(4,1,'Best Beauty Products','<p><span class=\"drop-cap\">B</span>est Opencart theme around, period. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Best Beauty Products','Best Beauty Products','Best Beauty Products','best-beauty-products','cool, waves, ocean, travel, surf'),
(7,1,'Introducing our Summer Dresses','<p><span class=\"drop-cap\">I</span>ntroducing the new summer wears. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Introducing our Summer Dresses','Introducing our Summer Dresses','Introducing our Summer Dresses','classic-watches','classic, watch, new, product'),
(9,1,'Traveling to Greece','<p><span class=\"drop-cap\">T</span>ravel in peace with the new scheduling options. The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p>\n\n<p>The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p>\n<p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Traveling to Greece','Traveling to Greece','Traveling to Greece','greece-travel','travel, greece, fun, beautiful, blue, water'),
(10,1,'Another Blog Post','<p><span class=\"drop-cap\">A</span>nother blog post. Write unlimited blog articles, or have someone write them for you with partial admin access. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Another Blog Post','Another Blog Post','Another Blog Post','another-blog-post','cool, modern, smart, sweet, photography, camera, travel, shop'),
(11,1,'Best Leather Bags','<p><span class=\"drop-cap\">B</span>est Opencart theme options you can find in any theme? Decide for yourself by visiting one our demo admin, user/pass: demo/demo. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Best Leather Bags','Best Leather Bags','Best Leather Bags','best-leather-bags','cool, bag, smart, man, photography, camera, travel, shop'),
(12,1,'Journal Blog is Here','<p><span class=\"drop-cap\">T</span>he Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Journal Blog is Here','Journal Blog is Here','Journal Blog is Here','journal-blog-is-here','cool, modern, smart, sweet, photography, camera, travel, shop'),
(1,2,'Welcome to Journal Blog','<p><span class=\"drop-cap\">J</span>ournal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe src=\"//www.youtube.com/embed/oMm4F6Ff1oA\" allowfullscreen rel=0></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Welcome to Journal Blog','Journal Blog','Journal Blog','journal-blog-es','cool, modern, smart, sweet, travel, shop, photography'),
(8,2,'The Wool Jackets Are Back','<p><span class=\"drop-cap\">W</span>ool jackets are so warm. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','The Wool Jackets Are Back','The Wool Jackets Are Back','The Wool Jackets Are Back','wool-jackets-es','cool, tag, smart, sweet'),
(3,2,'Season Essentials','<p><span class=\"drop-cap\">S</span>easons come and go but Journal is here to stay. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Season Essentials','Season Essentials','Season Essentials','season-essentials-es','cool, modern, photography, camera, travel'),
(4,2,'Best Beauty Products','<p><span class=\"drop-cap\">B</span>est Opencart theme around, period. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Best Beauty Products','Best Beauty Products','Best Beauty Products','best-beauty-products-es','cool, waves, ocean, travel, surf'),
(7,2,'Introducing our Summer Dresses','<p><span class=\"drop-cap\">I</span>ntroducing the new summer wears. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Introducing our Summer Dresses','Introducing our Summer Dresses','Introducing our Summer Dresses','classic-watches-es','classic, watch, new, product'),
(9,2,'Traveling to Greece','<p><span class=\"drop-cap\">T</span>ravel in peace with the new scheduling options. The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p>\n\n<p>The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p>\n<p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Traveling to Greece','Traveling to Greece','Traveling to Greece','greece-travel-es','travel, greece, fun, beautiful, blue, water'),
(10,2,'Another Blog Post','<p><span class=\"drop-cap\">A</span>nother blog post. Write unlimited blog articles, or have someone write them for you with partial admin access. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Another Blog Post','Another Blog Post','Another Blog Post','another-blog-post-es','cool, modern, smart, sweet, photography, camera, travel, shop'),
(11,2,'Best Leather Bags','<p><span class=\"drop-cap\">B</span>est Opencart theme options you can find in any theme? Decide for yourself by visiting one our demo admin, user/pass: demo/demo. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Best Leather Bags','Best Leather Bags','Best Leather Bags','best-leather-bags-es','cool, bag, smart, man, photography, camera, travel, shop'),
(12,2,'Journal Blog is Here','<p><span class=\"drop-cap\">T</span>he Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Journal Blog is Here','Journal Blog is Here','Journal Blog is Here','journal-blog-is-here-es','cool, modern, smart, sweet, photography, camera, travel, shop'),
(1,3,'Welcome to Journal Blog','<p><span class=\"drop-cap\">J</span>ournal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe src=\"//www.youtube.com/embed/oMm4F6Ff1oA\" allowfullscreen rel=0></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Welcome to Journal Blog','Journal Blog','Journal Blog','journal-blog-ar','cool, modern, smart, sweet, travel, shop, photography'),
(8,3,'The Wool Jackets Are Back','<p><span class=\"drop-cap\">W</span>ool jackets are so warm. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','The Wool Jackets Are Back','The Wool Jackets Are Back','The Wool Jackets Are Back','wool-jackets-ar','cool, tag, smart, sweet'),
(3,3,'Season Essentials','<p><span class=\"drop-cap\">S</span>easons come and go but Journal is here to stay. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Season Essentials','Season Essentials','Season Essentials','season-essentials-ar','cool, modern, photography, camera, travel'),
(4,3,'Best Beauty Products','<p><span class=\"drop-cap\">B</span>est Opencart theme around, period. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Best Beauty Products','Best Beauty Products','Best Beauty Products','best-beauty-products-ar','cool, waves, ocean, travel, surf'),
(7,3,'Introducing our Summer Dresses','<p><span class=\"drop-cap\">I</span>ntroducing the new summer wears. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Introducing our Summer Dresses','Introducing our Summer Dresses','Introducing our Summer Dresses','classic-watches-ar','classic, watch, new, product'),
(9,3,'Traveling to Greece','<p><span class=\"drop-cap\">T</span>ravel in peace with the new scheduling options. The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p>\n\n<p>The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p>\n<p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Traveling to Greece','Traveling to Greece','Traveling to Greece','greece-travel-ar','travel, greece, fun, beautiful, blue, water'),
(10,3,'Another Blog Post','<p><span class=\"drop-cap\">A</span>nother blog post. Write unlimited blog articles, or have someone write them for you with partial admin access. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Another Blog Post','Another Blog Post','Another Blog Post','another-blog-post-ar','cool, modern, smart, sweet, photography, camera, travel, shop'),
(11,3,'Best Leather Bags','<p><span class=\"drop-cap\">B</span>est Opencart theme options you can find in any theme? Decide for yourself by visiting one our demo admin, user/pass: demo/demo. The Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Best Leather Bags','Best Leather Bags','Best Leather Bags','best-leather-bags-ar','cool, bag, smart, man, photography, camera, travel, shop'),
(12,3,'Journal Blog is Here','<p><span class=\"drop-cap\">T</span>he Journal 3 blog has been greatly improved and it now comes with the most advanced set of <a href=\"javascript:open_popup(128);\">typography</a> tools, including custom drop-cap support as well as optional newspaper-like fluid columns. You can break up the page in up to 4 columns and change the configuration per breakpoint for the best article layout on any screen width. </p><p>The Journal blog is built directly into the admin with lots of powerful options, including seo urls and limited admin access to blog settings for other users to author articles. You or your writer can author unlimited blog posts and display them in both grid or list views with support for our famous Items per Row feature. The blog comes with 6 modules including an advanced Posts Module that allows you to display articles on any page within your store and in any position.</p>\n\n<h6>More about Journal</h6>\n\n<p>Since 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.</p>\n\n<p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any <a href=\"javascript:open_popup(129);\">breakpoint</a>. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.</p>\n<blockquote>This is a blockquote element. It\'s styled from the Journal admin Typography style. You can edit lots of options including the custom icon on the side, font and other text styles, padding, background, etc.</blockquote>\n<p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.</p><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. </p><p>Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. </p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.</p>\n\n<h6>Responsive Video</h6>\n<div class=\"video-responsive\">\n<div class=\"video-frame\">\n<iframe frameborder=\"0\" src=\"//www.youtube.com/embed/oMm4F6Ff1oA\"></iframe>\n</div>\n</div>\n\n<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.</p>\n\n<hr>\n<p>The above element is a fully customizable <code>hr</code> element, including custom icon options. Unprecedented control over your elements directly from the admin.</p>','Journal Blog is Here','Journal Blog is Here','Journal Blog is Here','journal-blog-is-here-ar','cool, modern, smart, sweet, photography, camera, travel, shop');
/*!40000 ALTER TABLE `oc_journal3_blog_post_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_post_to_category`
--
DROP TABLE IF EXISTS `oc_journal3_blog_post_to_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_post_to_category` (
`post_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
PRIMARY KEY (`post_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_post_to_category`
--
LOCK TABLES `oc_journal3_blog_post_to_category` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_post_to_category` DISABLE KEYS */;
INSERT INTO `oc_journal3_blog_post_to_category` VALUES
(1,2),
(1,3),
(1,4),
(1,5),
(3,2),
(3,3),
(3,4),
(3,5),
(4,2),
(4,4),
(4,5),
(7,2),
(7,3),
(7,4),
(7,5),
(8,2),
(8,3),
(8,4),
(8,5),
(9,2),
(9,3),
(9,4),
(9,5),
(10,2),
(10,3),
(10,4),
(10,5),
(11,2),
(11,3),
(11,4),
(11,5),
(12,2),
(12,3),
(12,4),
(12,5);
/*!40000 ALTER TABLE `oc_journal3_blog_post_to_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_post_to_layout`
--
DROP TABLE IF EXISTS `oc_journal3_blog_post_to_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_post_to_layout` (
`post_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) NOT NULL,
`layout_id` int(11) DEFAULT NULL,
PRIMARY KEY (`post_id`,`store_id`),
KEY `layout_id` (`layout_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_post_to_layout`
--
LOCK TABLES `oc_journal3_blog_post_to_layout` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_post_to_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_journal3_blog_post_to_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_post_to_product`
--
DROP TABLE IF EXISTS `oc_journal3_blog_post_to_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_post_to_product` (
`post_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
PRIMARY KEY (`post_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_post_to_product`
--
LOCK TABLES `oc_journal3_blog_post_to_product` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_post_to_product` DISABLE KEYS */;
INSERT INTO `oc_journal3_blog_post_to_product` VALUES
(1,264),
(1,271),
(1,280),
(1,301),
(1,342),
(3,34),
(3,42),
(3,301),
(3,358),
(4,274),
(4,277),
(4,279),
(4,282),
(4,285),
(7,34),
(8,34),
(8,293),
(8,342),
(8,370),
(9,34),
(9,297),
(9,350),
(9,358),
(10,264),
(10,271),
(10,280),
(10,301),
(10,342),
(11,259),
(11,318),
(11,350),
(11,351),
(11,373),
(12,264),
(12,271),
(12,280),
(12,301),
(12,342);
/*!40000 ALTER TABLE `oc_journal3_blog_post_to_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_blog_post_to_store`
--
DROP TABLE IF EXISTS `oc_journal3_blog_post_to_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_blog_post_to_store` (
`post_id` int(11) DEFAULT NULL,
`store_id` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_blog_post_to_store`
--
LOCK TABLES `oc_journal3_blog_post_to_store` WRITE;
/*!40000 ALTER TABLE `oc_journal3_blog_post_to_store` DISABLE KEYS */;
INSERT INTO `oc_journal3_blog_post_to_store` VALUES
(1,0),
(11,0),
(3,0),
(4,0),
(10,0),
(9,0),
(7,0),
(8,0),
(12,0);
/*!40000 ALTER TABLE `oc_journal3_blog_post_to_store` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_layout`
--
DROP TABLE IF EXISTS `oc_journal3_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_layout` (
`layout_id` int(11) NOT NULL AUTO_INCREMENT,
`layout_data` mediumtext NOT NULL,
PRIMARY KEY (`layout_id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_layout`
--
LOCK TABLES `oc_journal3_layout` WRITE;
/*!40000 ALTER TABLE `oc_journal3_layout` DISABLE KEYS */;
INSERT INTO `oc_journal3_layout` VALUES
(1,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"top\",\"bottom\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[{\"id\":\"d0f3ff8b-dd4d-4a85-96e3-fe6c4c0ce7db\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"10\",\"padding-top\":\"50\",\"padding-right\":\"\",\"padding-bottom\":\"50\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"rgba(10, 55, 143, 0.65)\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"60\",\"padding-right\":\"\",\"padding-bottom\":\"80\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"overlayBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"099b65ce-2970-40db-b17a-12596280fc3e\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"margin_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"4b106ab6-a175-42ed-ace1-603ed7411bd8\",\"item\":{\"id\":\"145\",\"name\":\"Products Title\",\"type\":\"title\"}}]},{\"id\":\"e9bad93d-bfe6-413e-bf7c-e407ae1a6504\",\"options\":{\"width_multi\":[],\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"background_multi\":[],\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"6021d025-8963-45fa-b497-b848e6b52b8b\",\"item\":{\"id\":\"249\",\"name\":\"Catalog Left Image Copy\",\"type\":\"catalog\"}}]}]},{\"id\":\"29df2ef8-25d3-444d-8171-2597bb0b0f99\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"50\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"overlayBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"0384fe8d-c19b-4410-9632-764364363274\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"margin_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"4b106ab6-a175-42ed-ace1-603ed7411bd8\",\"item\":{\"id\":\"143\",\"name\":\"Page Title\",\"type\":\"title\"}}]},{\"id\":\"3db115f4-414d-4496-8135-71e8fa532247\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"f72b66d9-4a2d-468f-a27a-0a65402c58f7\",\"item\":{\"id\":\"38\",\"name\":\"Brands Module\",\"type\":\"manufacturers\"}}]}]},{\"id\":\"b8b16888-da6a-4bad-abf0-10b00a667a6c\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"20\",\"padding-top\":\"50\",\"padding-right\":\"\",\"padding-bottom\":\"50\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"background-size\":\"cover\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"fixed\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"40\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"60\",\"padding-left\":\"20\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"overlayBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"60bed445-3e44-421b-b95d-a53a5faac97f\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"6fe0738f-2fb2-4b99-a22d-65c4d847ee16\",\"item\":{\"id\":\"162\",\"name\":\"Catalog Title\",\"type\":\"title\"}}]},{\"id\":\"5788dad5-c9c0-42e3-bffa-d1a7a93b1e13\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"3a21d45b-40ac-49d1-9c5f-98a2d71c5cd3\",\"item\":{\"id\":\"40\",\"name\":\"New Blog Posts\",\"type\":\"blog_posts\"}}]}]},{\"id\":\"dc2b867e-a1fb-42de-acde-68d1eb316fbb\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"true\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"background_multi\":[],\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"background-size\":\"cover\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"fixed\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"center center\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"catalog\\/journal3\\/misc\\/low-poly-60.jpg\"},\"margin\":\"\",\"overlay\":\"rgba(10, 55, 143, 0.65)\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"80\",\"padding-right\":\"\",\"padding-bottom\":\"80\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"left\",\"overlayBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(221, 221, 221, 0.7)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"dac5df35-54f4-4c56-96a8-b59ac2dfda75\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"100\"}],\"alignH\":\"\",\"align\":\"top\",\"width\":\"50\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"71313212-ebda-4c2d-a72b-e7cf988b5509\",\"item\":{\"id\":\"175\",\"name\":\"About Us\",\"type\":\"blocks\"}}]},{\"id\":\"52bc9317-d95f-4c80-abac-0e9c29c1f0f4\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"100\"}],\"alignH\":\"\",\"align\":\"middle\",\"width\":\"50\",\"marginTop\":\"\",\"background_multi\":[],\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"f6a7961d-7dcc-4802-b8f7-e2362aef55cf\",\"item\":{\"id\":\"180\",\"name\":\"Testimonials\",\"type\":\"testimonials\"}}]}]}]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[{\"id\":\"7378d295-b759-4122-83e2-ab47a0914f1b\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"09d0bae5-4e80-43d4-99f5-3e891d3fe2f0\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"20\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"9a79ba97-5411-4987-ba20-9dc1a8f6543b\",\"item\":{\"id\":\"19\",\"name\":\"Category Menu\",\"type\":\"accordion_menu\"}}]},{\"id\":\"9152eeb4-a664-490c-ac68-01abdfeaceac\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"20\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"73edf5c6-cab2-45fc-9487-644160c47414\",\"item\":{\"id\":\"180\",\"name\":\"Testimonials\",\"type\":\"testimonials\"}}]}]}]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[{\"id\":\"7d3822a6-7293-4d26-8ba4-a32e7f4642c3\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"overlayBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fullwidth\":\"true\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"b7137b71-23f5-44c5-9645-1992e2c6804f\",\"options\":{\"width_multi\":[],\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"margin_multi\":[],\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dimensions\":\"false\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"8fb5f753-0f1e-48a4-b8fe-46774a6b7f4c\",\"item\":{\"id\":\"242\",\"name\":\"Slider Top Home\",\"type\":\"master_slider\"}}]}]},{\"id\":\"424be315-650c-41ed-948a-c4a4dd94e722\",\"options\":{\"shadow\":\"__VAR__UPWARD\",\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayRotate_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"0\"}],\"overlayTop\":\"-1.75\",\"waveDirection\":\"7\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"true\",\"wave2Status\":\"false\",\"overlayRotate\":\"-2\",\"waveVisibility\":\"true\",\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"40\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"overlayBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"__VAR__COLOR_1\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"overlayTop_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"0\"}]},\"columns\":[{\"id\":\"62958257-ed5c-48a4-bbc3-90560862ce47\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"041e758e-b00e-4670-82e8-434d4907b286\",\"item\":{\"id\":\"248\",\"name\":\"Banners Grid\",\"type\":\"grid\"}}]}]},{\"id\":\"fee33511-b41b-4edd-ad9d-ba4c163a4150\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"385485d8-aa16-422b-a9de-2f2ceb22598b\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"}},\"items\":[{\"id\":\"4c385a06-cd1a-4c91-9938-745ad9e4627b\",\"item\":{\"id\":\"263\",\"name\":\"Free Shipping Qualifier Copy\",\"type\":\"info_blocks\"}}]}]},{\"id\":\"0ebaa2b7-3b1d-4fa8-8481-949cde8d0e07\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"20\",\"padding-top\":\"50\",\"padding-right\":\"\",\"padding-bottom\":\"50\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"50\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"80\",\"padding-left\":\"20\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"5f585e95-97a8-4b14-a85d-3d095ac5c65b\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"b0967e92-aebb-437e-b678-79be137f543f\",\"item\":{\"id\":\"27\",\"name\":\"Featured - Home Page\",\"type\":\"products\"}}]}]},{\"id\":\"5496bda8-8689-40fa-9f5d-7c89a1087494\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"true\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"\",\"padding-top\":\"80\",\"padding-left\":\"\",\"padding-bottom\":\"80\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"background-size\":\"cover\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"fixed\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"center center\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"catalog\\/journal3\\/people\\/andrew-neel-369701-unsplash.jpg\"},\"margin\":\"\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"120\",\"padding-right\":\"\",\"padding-bottom\":\"120\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(0, 0, 0, 0.6)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"8a509354-75c8-4615-b791-d49a4ba201e3\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"6bf8a72a-24ea-4092-851c-f865d48bf597\",\"item\":{\"id\":\"261\",\"name\":\"Main Menu Block Copy\",\"type\":\"blocks\"}}]}]}]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Home\"}'),
(18,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"column_left\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[{\"id\":\"de946ef1-5d9b-4025-909a-f1286a11e032\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"false\"},\"columns\":[{\"id\":\"3a691fe4-46dc-492f-b869-32aadefa4ea6\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"800516e1-88f9-4fe2-a9fa-b24b23ecc63a\",\"item\":{\"id\":\"36\",\"name\":\"Filter\",\"type\":\"filter\"}}]}]}]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Special\"}'),
(3,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"column_left\",\"content_top\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[{\"id\":\"d07686f6-a055-40f8-b74c-657eda427df9\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"40\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"d3848c82-93aa-4b8c-b528-621406795ee7\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"}},\"items\":[{\"id\":\"7cb5a4e5-1efb-4e0b-bb00-62b490c47029\",\"item\":{\"id\":\"262\",\"name\":\"About Us Copy\",\"type\":\"blocks\"}}]}]}]},\"column_left\":{\"rows\":[{\"id\":\"38e5c283-540d-4bc4-9eaa-4ee3da5281df\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"3cafb839-9969-49e4-8709-6754208487d5\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"20\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"47cd994a-675d-4b8b-9e45-bd61d4005c60\",\"item\":{\"id\":\"19\",\"name\":\"Category Menu\",\"type\":\"accordion_menu\"}}]},{\"id\":\"096f8f2c-aaa4-4f1f-88d7-c49b1cacf484\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dimensions\":\"false\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"30\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"2a1cc285-5ec3-4ce1-b25b-849196cc14c0\",\"item\":{\"id\":\"36\",\"name\":\"Filter\",\"type\":\"filter\"}}]}]}]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[{\"id\":\"389830f7-d263-4262-b663-251e9c08ae8d\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"9dc95745-3102-4775-9bb6-5298b0fe2217\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"20\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"46d3a07a-85ce-478a-9c92-657d68e618b7\",\"item\":{\"id\":\"222\",\"name\":\"Specials Copy\",\"type\":\"side_products\"}}]},{\"id\":\"cf367242-81fe-474a-ac89-c3d81126ca0e\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"f2198744-9d57-4bfd-be7c-b4a29e0800a6\",\"item\":{\"id\":\"201\",\"name\":\"Sale - Flyout\",\"type\":\"banners\"}}]}]}]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Category\"}'),
(-1,'{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"127\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}'),
(2,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"\",\"footerStatus\":\"\",\"footerVisibility\":\"\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"\"},\"enabledPositions\":[\"content_bottom\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[{\"id\":\"6e6862de-3ebb-480d-a252-2aeef03c9773\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"20\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"fe0d1cfb-6727-412d-b997-393e24332b00\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"8c1494ce-5c9c-41a6-a2fb-daade0b00199\",\"item\":{\"id\":\"181\",\"name\":\"Related Articles\",\"type\":\"blog_side_posts\"}}]}]}]},\"column_right\":{\"rows\":[{\"id\":\"7b178c35-385b-40f4-858f-3bc1f3d43577\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"e2a37444-d712-4a6e-b26b-94f19106ea12\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"20\",\"align\":\"top\"},\"items\":[{\"id\":\"bc80d5dc-1038-43a1-9b6b-f0b84c0d2887\",\"item\":{\"id\":\"215\",\"name\":\"Vertical Product Page\",\"type\":\"info_blocks\"}}]},{\"id\":\"72df7f8e-8675-493d-8d5e-a3edf15684df\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"0dd1ec97-97f1-44f9-b707-56eb7340db2d\",\"item\":{\"id\":\"82\",\"name\":\"Also Bought\",\"type\":\"products\"}}]},{\"id\":\"59351a1d-49a2-4517-88b1-7c512d1b503e\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"1a2026c3-1611-4c73-96e5-852f0a48bcad\",\"item\":{\"id\":\"181\",\"name\":\"Related Articles\",\"type\":\"blog_side_posts\"}}]}]}]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Product\"}'),
(5,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"column_left\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[{\"id\":\"de45f482-3444-43f3-8368-b094f38d809f\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"07cb869a-4aa2-4bbd-83b6-74d46d36c18d\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\",\"dimensions\":\"false\"},\"items\":[{\"id\":\"50b049a2-d7e6-49bf-886f-bf6884aeb9f0\",\"item\":{\"id\":\"36\",\"name\":\"Filter\",\"type\":\"filter\"}}]}]}]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Manufacturer\"}'),
(13,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"column_left\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[{\"id\":\"dcd2b89c-7935-4c12-877f-fc063c61ec69\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"false\"},\"columns\":[{\"id\":\"e6e2e5d8-b248-49e3-a2de-85954ee809f0\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\",\"dimensions\":\"false\"},\"items\":[{\"id\":\"ca7de013-b5ec-435d-9c14-0f22f9e8de56\",\"item\":{\"id\":\"36\",\"name\":\"Filter\",\"type\":\"filter\"}}]}]}]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Search\"}'),
(9,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Sitemap\"}'),
(4,'{\"general\":{\"pageStyle\":\"\",\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"titleVisibility\":\"true\",\"titleStyle\":\"\",\"headerVisibility\":\"true\",\"footerVisibility\":\"true\"},\"enabledPositions\":[],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Default\"}'),
(10,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"top\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Affiliate\"}'),
(7,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"column_right\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[{\"id\":\"52ef789d-3f06-4785-89d5-7e4fdad6288c\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"1b617ff5-a08d-49ff-aebd-803af69c9e98\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"middle\"},\"items\":[{\"id\":\"462ec8c1-bcaa-42ed-82e7-1947e9f40b0e\",\"item\":{\"id\":\"241\",\"name\":\"Upsell Info Notice\",\"type\":\"layout_notice\"}}]},{\"id\":\"819ad50b-bfef-4b4d-9d2b-e65f0b9decd7\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"b5c515a7-148d-41ca-a3a2-124062037ae3\",\"item\":{\"id\":\"258\",\"name\":\"Related - Also Bough\",\"type\":\"products\"}}]}]}]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Checkout\"}'),
(12,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Compare\"}'),
(16,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"__VAR__Narrow Content Width\",\"breadcrumbsStatus\":\"\",\"typographyStyle\":\"\",\"tableStyle\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"formStyle\":\"\",\"pageButtonStyle\":\"\",\"pageMaxWidth\":\"1000\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"column_right\",\"content_bottom\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[{\"id\":\"db86931b-59b5-4766-aa36-29cb3ec61e1a\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"10\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"a2d9168f-58b3-4792-8e9f-4792da07c729\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"c4f3bb2e-2c90-4d09-a6bc-ccdb8f035e8d\",\"item\":{\"id\":\"57\",\"name\":\"Share Plugin Inline\",\"type\":\"blocks\"}}]}]}]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[{\"id\":\"38da0b3b-84c4-4509-a9e1-e2acd6c2e321\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"20\",\"padding-right\":\"\",\"padding-bottom\":\"20\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"b9f632ef-1f88-4555-8820-fc5b543b3027\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__Phone Landscape\",\"value\":\"100\"}],\"alignH\":\"\",\"align\":\"middle\",\"width\":\"60\",\"marginTop\":\"\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__Phone Landscape\",\"value\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"2cb8d162-c4dd-4b76-8120-31382b50525c\",\"item\":{\"id\":\"57\",\"name\":\"Share Plugin Inline\",\"type\":\"blocks\"}}]},{\"id\":\"4f6b3df9-4483-4393-8101-55e22e0228a7\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__Phone Landscape\",\"value\":\"100\"}],\"alignH\":\"\",\"align\":\"top\",\"width\":\"40\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"2cb8d162-c4dd-4b76-8120-31382b50525c\",\"item\":{\"id\":\"184\",\"name\":\"Reaction Buttons ShareThis\",\"type\":\"blocks\"}}]}]},{\"id\":\"954d90bb-6a42-4c12-b521-66b5b3002f87\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"be3be80f-61b2-42cc-9c26-6ec0833c436d\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"2eb2f571-5d59-499a-a254-068093ede319\",\"item\":{\"id\":\"182\",\"name\":\"Related Bottom\",\"type\":\"products\"}}]}]}]},\"column_right\":{\"rows\":[{\"id\":\"72a71075-2212-46d9-8f97-6a788100cd84\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"92411b4a-d4cb-4f5c-b967-b105737ae818\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"20\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"366f4656-6689-4079-9754-b9d6fe70087a\",\"item\":{\"id\":\"44\",\"name\":\"New Blog Search\",\"type\":\"blog_search\"}}]},{\"id\":\"bb44b33e-a3e3-47d3-83a4-05e054d20220\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"20\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"366f4656-6689-4079-9754-b9d6fe70087a\",\"item\":{\"id\":\"42\",\"name\":\"New Blog Categories\",\"type\":\"blog_categories\"}}]},{\"id\":\"dda95e76-edb4-4ce7-89c1-90542a27a951\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"20\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"366f4656-6689-4079-9754-b9d6fe70087a\",\"item\":{\"id\":\"47\",\"name\":\"New Blog Comments \",\"type\":\"blog_comments\"}}]},{\"id\":\"e09fa08b-1cde-460e-9e72-6d1a838c3e66\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"20\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"dbb5bcb4-0f1e-44a5-8227-d15dce2da40e\",\"item\":{\"id\":\"176\",\"name\":\"Gallery Side Column\",\"type\":\"gallery\"}}]},{\"id\":\"f673ba6a-4ab1-4675-aaa2-b4bfd9731ce9\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"20\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"d8278179-967f-41fd-b0cf-1d3a737f0e3c\",\"item\":{\"id\":\"158\",\"name\":\"Deals Banner\",\"type\":\"banners\"}}]}]}]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Blog Post\"}'),
(11,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"\",\"footerStatus\":\"\",\"footerVisibility\":\"\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"\"},\"enabledPositions\":[\"column_right\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[{\"id\":\"60c263ea-6f00-4d04-b21c-e998218818a7\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"ba9c0f9c-f026-4c3f-827d-c0ecc220aaca\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"30\",\"align\":\"top\"},\"items\":[{\"id\":\"acc64bd1-c82e-40fd-b9d3-f42f828057be\",\"item\":{\"id\":\"176\",\"name\":\"Gallery Side Column\",\"type\":\"gallery\"}}]},{\"id\":\"8a4d8691-cfd8-4b62-a83e-fa223ab89c12\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"b558d18c-8384-4755-a0fb-aff8d527cf5f\",\"item\":{\"id\":\"201\",\"name\":\"Sale - Flyout\",\"type\":\"banners\"}}]}]}]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Information\"}'),
(19,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Success\"}'),
(6,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"column_right\",\"top\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[{\"id\":\"f4b8bb6d-535d-4277-b702-bd1f60da91c5\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"false\"},\"columns\":[{\"id\":\"67f10f04-a49d-4715-abfc-f18cce42ee42\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"20\",\"align\":\"top\"},\"items\":[{\"id\":\"40441c0f-fc16-46c2-b4c7-62bcba50f4ca\",\"item\":{\"id\":\"126\",\"name\":\"Account\",\"type\":\"accordion_menu\"}}]}]}]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Account\"}'),
(14,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"column_right\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[{\"id\":\"d3ec17ec-cbfc-4ee7-bf82-3ee2e08561f5\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"false\"},\"columns\":[{\"id\":\"3a6c84de-e2f8-4403-b04d-bcc7a0ebadaa\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"ae862e3c-015c-4986-8602-648d723b3c2f\",\"item\":{\"id\":\"82\",\"name\":\"Also Bought - Side Column\",\"type\":\"products\"}}]}]}]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Wishlist\"}'),
(8,'{\"general\":{\"breadcrumbsStyle\":\"\",\"breadcrumbsVisibility\":\"true\",\"pageStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"titleVisibility\":\"true\",\"footerStatus\":\"\",\"footerVisibility\":\"true\",\"titleStyle\":\"\",\"headerStatus\":\"\",\"headerVisibility\":\"true\"},\"enabledPositions\":[\"content_top\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[{\"id\":\"676bc1c4-b8f9-4509-becf-ea525f0bbb77\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"margin_multi\":[],\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"20\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"3c822773-a2e9-479a-b1c5-b269e748f2fb\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\",\"padding_multi\":[]},\"items\":[{\"id\":\"a4eb54ea-23f1-433d-a3df-f224c0a6b137\",\"item\":{\"id\":\"104\",\"name\":\"Custom Map\",\"type\":\"blocks\"}}]}]},{\"id\":\"b79f0560-06f1-4be7-8de6-3a2dbae2aa10\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"88521d32-2da9-476c-83a6-4618212d06c5\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"100\"}],\"align\":\"top\",\"width\":\"30\",\"border_multi\":[],\"margin_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"20\"}],\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"a76a7f5c-c3cc-4129-8a58-bb90f064e020\",\"item\":{\"id\":\"194\",\"name\":\"Info Blocks Home Copy\",\"type\":\"info_blocks\"}}]},{\"id\":\"b911243d-4ce7-4189-a794-508ea43c3382\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"100\"}],\"align\":\"top\",\"width\":\"70\",\"border_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"background: repeating-linear-gradient(140deg,#168CDA,#3498db 8px,#fafafa 8px,#fafafa 14px,#EB524E 14px,#ff5e37 21px,#fafafa 21px,#fafafa 30px) ; background-size: 100%; background-repeat: no-repeat;\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"3\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"0904fec4-3e73-486d-9781-7a7331622ef1\",\"item\":{\"id\":\"20\",\"name\":\"Contact Form\",\"type\":\"form\"}}]}]}]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Contact\"}'),
(15,'{\"general\":{\"breadcrumbsStyle\":\"\",\"pageStyle\":\"__VAR__Narrow Content Width\",\"breadcrumbsStatus\":\"\",\"typographyStyle\":\"\",\"tableStyle\":\"\",\"titleStatus\":\"\",\"footerStatus\":\"\",\"formStyle\":\"\",\"pageButtonStyle\":\"\",\"titleStyle\":\"\",\"headerStatus\":\"\"},\"enabledPositions\":[\"column_right\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[{\"id\":\"74eb1d27-0d31-4172-8719-b7c712e4c959\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"waveDirection\":\"5\",\"width\":\"\",\"wave2Direction\":\"5\",\"marginTop\":\"\",\"wave2Visibility\":\"true\",\"waveStatus\":\"false\",\"wave2Status\":\"false\",\"overlayRotate\":\"\",\"waveVisibility\":\"true\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"waveOffset\":\"\",\"wave2Offset\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoInline\":\"false\",\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"waveFill\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"wave2Fill\":\"\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"c3e47fe3-aa19-40f3-ae7b-29546c16beba\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"30\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"6602d0d3-0ed6-4d05-af22-c9f7c573bf47\",\"item\":{\"id\":\"44\",\"name\":\"New Blog Search\",\"type\":\"blog_search\"}}]},{\"id\":\"1cbb6943-f657-49d9-8d08-d64d7baa62fc\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"30\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"6602d0d3-0ed6-4d05-af22-c9f7c573bf47\",\"item\":{\"id\":\"42\",\"name\":\"Blog Categories\",\"type\":\"blog_categories\"}}]},{\"id\":\"9e23eab4-228d-4fa9-8734-11cbbc4ef103\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"30\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"6602d0d3-0ed6-4d05-af22-c9f7c573bf47\",\"item\":{\"id\":\"47\",\"name\":\"Latest Comments\",\"type\":\"blog_comments\"}}]},{\"id\":\"98d48da4-e5fe-41d4-a788-7f034e9ae142\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"30\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"6602d0d3-0ed6-4d05-af22-c9f7c573bf47\",\"item\":{\"id\":\"176\",\"name\":\"Gallery Side Column\",\"type\":\"gallery\"}}]},{\"id\":\"a4dbdda5-03fe-4b58-88dc-00a43270bad6\",\"options\":{\"alignH\":\"\",\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"30\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"6602d0d3-0ed6-4d05-af22-c9f7c573bf47\",\"item\":{\"id\":\"41\",\"name\":\"Blog Tags\",\"type\":\"blog_tags\"}}]}]}]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Blog\"}'),
(17,'{\"general\":{\"pageStyle\":\"\",\"breadcrumbsStyle\":\"\",\"titleStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"headerStatus\":\"\",\"footerStatus\":\"\"},\"enabledPositions\":[\"column_left\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[{\"id\":\"c789a6d5-c7d5-409c-9e07-f651d06f6e41\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"false\"},\"columns\":[{\"id\":\"0395fcc7-2165-4b50-b33e-379861cef279\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"bb826851-4dfd-42d0-a76b-42908d3f0a91\",\"item\":{\"id\":\"36\",\"name\":\"Filter\",\"type\":\"filter\"}}]}]}]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"Catalog\"}'),
(20,'{\"general\":{\"pageStyle\":\"\",\"breadcrumbsStyle\":\"\",\"titleStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"false\",\"headerStatus\":\"\",\"footerStatus\":\"\"},\"enabledPositions\":[\"top\",\"content_bottom\",\"column_right\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[{\"id\":\"38ac39a0-56ad-43c4-83df-f218a6d9f06d\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"false\"},\"columns\":[{\"id\":\"779e996d-981a-4c01-823e-2a99f867a86e\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"eac0a91d-a915-45b1-b1bf-56f723bcaeda\",\"item\":{\"id\":\"214\",\"name\":\"New Blocks\",\"type\":\"blocks\"}}]}]}]},\"column_right\":{\"rows\":[{\"id\":\"ca3f9087-6930-4372-b6ff-f20e1fa9c5f4\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"false\"},\"columns\":[{\"id\":\"097c2d28-508f-4052-942c-4d78f0a7ed0b\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"20\",\"align\":\"top\"},\"items\":[{\"id\":\"6303b656-5b17-4a6b-b92f-09820ded7005\",\"item\":{\"id\":\"176\",\"name\":\"Gallery Side Column\",\"type\":\"gallery\"}}]},{\"id\":\"a1432403-b16a-41cf-b1c5-bdc5a8626eea\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"bb22e1b7-b6c7-4fad-b991-81274b626694\",\"item\":{\"id\":\"201\",\"name\":\"Sale - Flyout\",\"type\":\"banners\"}}]}]}]},\"top\":{\"rows\":[{\"id\":\"d24c18e4-845c-45da-9c95-b4ff1d203ede\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"true\"},\"columns\":[{\"id\":\"2385179d-05d4-4d5e-8b87-6780f71413c4\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"e2b287ee-a1c9-4881-bb80-4c9fc3e71bb9\",\"item\":{\"id\":\"143\",\"name\":\"Page Title\",\"type\":\"title\"}}]}]}]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"FAQ\"}'),
(21,'{\"general\":{\"pageStyle\":\"\",\"breadcrumbsStyle\":\"\",\"titleStyle\":\"\",\"breadcrumbsStatus\":\"\",\"titleStatus\":\"\",\"headerStatus\":\"\",\"footerStatus\":\"\"},\"enabledPositions\":[\"content_top\",\"column_right\"],\"positions\":{\"header_top\":{\"rows\":[]},\"bottom\":{\"rows\":[]},\"content_top\":{\"rows\":[{\"id\":\"0487c169-7ae1-4fd6-8125-f200097a718a\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"false\"},\"columns\":[{\"id\":\"b5d65aac-6828-4dd3-b322-ed5667913a88\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"45c0e35b-3fd4-4ed8-bf69-e8b146725411\",\"item\":{\"id\":\"216\",\"name\":\"Popup Text Copy\",\"type\":\"blocks\"}}]}]}]},\"column_left\":{\"rows\":[]},\"content_bottom\":{\"rows\":[]},\"column_right\":{\"rows\":[{\"id\":\"b929f1cd-f4f5-4d0c-be52-9c6701f1427b\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"videoBg\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"videoBgStatus\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoInline\":\"false\",\"fullwidth\":\"false\"},\"columns\":[{\"id\":\"5395de23-e497-43b2-ba7d-eb3931d301ee\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"20\",\"align\":\"top\"},\"items\":[{\"id\":\"608cc068-ce1c-4f55-bc40-851bc29e0ca4\",\"item\":{\"id\":\"176\",\"name\":\"Gallery Side Column\",\"type\":\"gallery\"}}]},{\"id\":\"e73f1496-e0f5-4d65-905e-ab5931adad85\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"margin\":\"\",\"align\":\"top\"},\"items\":[{\"id\":\"b85c0d88-7e2c-4a07-9796-3c099c0a97c0\",\"item\":{\"id\":\"201\",\"name\":\"Sale - Flyout\",\"type\":\"banners\"}}]}]}]},\"top\":{\"rows\":[]},\"absolute\":{\"popup\":\"\",\"notification\":\"\",\"header_notice\":\"\",\"bottom_menu\":\"\",\"fullscreen_slider\":\"\",\"background_slider\":\"\"}},\"layout_name\":\"FAQ\"}');
/*!40000 ALTER TABLE `oc_journal3_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_message`
--
DROP TABLE IF EXISTS `oc_journal3_message`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_message` (
`message_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(256) DEFAULT NULL,
`email` varchar(256) DEFAULT NULL,
`fields` text NOT NULL,
`store_id` int(11) DEFAULT NULL,
`url` varchar(256) DEFAULT NULL,
`date` datetime DEFAULT NULL,
PRIMARY KEY (`message_id`)
) ENGINE=MyISAM AUTO_INCREMENT=160 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_message`
--
LOCK TABLES `oc_journal3_message` WRITE;
/*!40000 ALTER TABLE `oc_journal3_message` DISABLE KEYS */;
INSERT INTO `oc_journal3_message` VALUES
(1,'j','jank@gmail.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"j\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"jank@gmail.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"d\"}}',0,'https://www.journal-theme.com/2/index.php?route=information/contact','2024-11-08 20:05:09'),
(2,'test','test@test.gr','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"test\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"test@test.gr\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"How does it fit?\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"test\"}}',0,'https://www.journal-theme.com/2/index.php?route=product/product&product_id=360','2024-12-19 11:44:13'),
(3,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:41:10'),
(4,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:41:19'),
(5,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:41:37'),
(6,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:22'),
(7,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:28'),
(8,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:33'),
(9,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:42'),
(10,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:43'),
(11,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:44'),
(12,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:47'),
(13,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:48'),
(14,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:48'),
(15,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:56'),
(16,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:56'),
(17,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:42:57'),
(18,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:43:05'),
(19,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:43:21'),
(20,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:43:32'),
(21,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:43:33'),
(22,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:43:33'),
(23,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:43:38'),
(24,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:43:39'),
(25,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:43:43'),
(26,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:06'),
(27,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:10'),
(28,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:18'),
(29,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:18'),
(30,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:22'),
(31,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:23'),
(32,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:23'),
(33,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:30'),
(34,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:31'),
(35,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:51'),
(36,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:44:51'),
(37,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:11'),
(38,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:12'),
(39,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:17'),
(40,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:17'),
(41,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:23'),
(42,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:23'),
(43,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:32'),
(44,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:33'),
(45,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:41'),
(46,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:41'),
(47,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:46'),
(48,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:47'),
(49,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:55'),
(50,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:45:56'),
(51,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:46:17'),
(52,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:46:34'),
(53,'if(now()=sysdate(),sleep(15),0)','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"if(now()=sysdate(),sleep(15),0)\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:46:45'),
(54,'pHqghUme0\'XOR(if(now()=sysdate(),sleep(15),0))XOR\'Z','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme0\'XOR(if(now()=sysdate(),sleep(15),0))XOR\'Z\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:46:56'),
(55,'pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:47:07'),
(56,'(select(0)from(select(sleep(15)))v)/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*/','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"(select(0)from(select(sleep(15)))v)\\/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*\\/\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:47:31'),
(57,'(select(0)from(select(sleep(6)))v)/*\'+(select(0)from(select(sleep(6)))v)+\'"+(select(0)from(select(sleep(6)))v)+"*/','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"(select(0)from(select(sleep(6)))v)\\/*\'+(select(0)from(select(sleep(6)))v)+\'"+(select(0)from(select(sleep(6)))v)+"*\\/\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:48:20'),
(58,'pHqghUme-1 waitfor delay \'0:0:15\' -- ','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme-1 waitfor delay \'0:0:15\' -- \"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:48:25'),
(59,'pHqghUmeJSmtyRfg\'; waitfor delay \'0:0:15\' -- ','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmeJSmtyRfg\'; waitfor delay \'0:0:15\' -- \"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:48:33'),
(60,'pHqghUmeBA78mEwU\' OR 103=(SELECT 103 FROM PG_SLEEP(15))--','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmeBA78mEwU\' OR 103=(SELECT 103 FROM PG_SLEEP(15))--\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:07'),
(61,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:14'),
(62,'pHqghUmeVXA3TVIO\') OR 472=(SELECT 472 FROM PG_SLEEP(15))--','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmeVXA3TVIO\') OR 472=(SELECT 472 FROM PG_SLEEP(15))--\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:21'),
(63,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:22'),
(64,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:23'),
(65,'pHqghUmeUGT70ea0\')) OR 445=(SELECT 445 FROM PG_SLEEP(15))--','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmeUGT70ea0\')) OR 445=(SELECT 445 FROM PG_SLEEP(15))--\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:29'),
(66,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:30'),
(67,'if(now()=sysdate(),sleep(15),0)','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"if(now()=sysdate(),sleep(15),0)\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:31'),
(68,'pHqghUme\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:34'),
(69,'if(now()=sysdate(),sleep(15),0)','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"if(now()=sysdate(),sleep(15),0)\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:36'),
(70,'pHqghUme0\'XOR(if(now()=sysdate(),sleep(15),0))XOR\'Z','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme0\'XOR(if(now()=sysdate(),sleep(15),0))XOR\'Z\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:37'),
(71,'pHqghUme0\'XOR(if(now()=sysdate(),sleep(15),0))XOR\'Z','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme0\'XOR(if(now()=sysdate(),sleep(15),0))XOR\'Z\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:42'),
(72,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:42'),
(73,'pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:43'),
(74,'pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:47'),
(75,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:47'),
(76,'(select(0)from(select(sleep(15)))v)/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*/','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"(select(0)from(select(sleep(15)))v)\\/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*\\/\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:49'),
(77,'(select(0)from(select(sleep(15)))v)/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*/','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"(select(0)from(select(sleep(15)))v)\\/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*\\/\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:53'),
(78,'pHqghUme-1 waitfor delay \'0:0:15\' -- ','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme-1 waitfor delay \'0:0:15\' -- \"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:49:55'),
(79,'pHqghUme-1 waitfor delay \'0:0:15\' -- ','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme-1 waitfor delay \'0:0:15\' -- \"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:04'),
(80,'pHqghUmeNC0MFbLF\'; waitfor delay \'0:0:15\' -- ','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmeNC0MFbLF\'; waitfor delay \'0:0:15\' -- \"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:05'),
(81,'pHqghUmew2kYSU5f\'; waitfor delay \'0:0:15\' -- ','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmew2kYSU5f\'; waitfor delay \'0:0:15\' -- \"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:11'),
(82,'pHqghUmetAyC6X2c\' OR 422=(SELECT 422 FROM PG_SLEEP(15))--','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmetAyC6X2c\' OR 422=(SELECT 422 FROM PG_SLEEP(15))--\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:18'),
(83,'pHqghUmehzijVtEk\' OR 101=(SELECT 101 FROM PG_SLEEP(15))--','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmehzijVtEk\' OR 101=(SELECT 101 FROM PG_SLEEP(15))--\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:39'),
(84,'pHqghUme2km6v74d\') OR 594=(SELECT 594 FROM PG_SLEEP(15))--','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme2km6v74d\') OR 594=(SELECT 594 FROM PG_SLEEP(15))--\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:40'),
(85,'pHqghUmegN4TTAdN\') OR 117=(SELECT 117 FROM PG_SLEEP(15))--','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmegN4TTAdN\') OR 117=(SELECT 117 FROM PG_SLEEP(15))--\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:44'),
(86,'pHqghUmepnw1Ann2\')) OR 733=(SELECT 733 FROM PG_SLEEP(15))--','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmepnw1Ann2\')) OR 733=(SELECT 733 FROM PG_SLEEP(15))--\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:45'),
(87,'pHqghUmexOw8AdwA\')) OR 241=(SELECT 241 FROM PG_SLEEP(15))--','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUmexOw8AdwA\')) OR 241=(SELECT 241 FROM PG_SLEEP(15))--\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:48'),
(88,'pHqghUme\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:49'),
(89,'pHqghUme\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:52'),
(90,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:52'),
(91,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:57'),
(92,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:50:57'),
(93,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:51:05'),
(94,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:51:16'),
(95,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:51:27'),
(96,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"if(now()=sysdate(),sleep(15),0)\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:51:43'),
(97,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields0\'XOR(if(now()=sysdate(),sleep(15),0))XOR\'Z\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:51:59'),
(98,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:06'),
(99,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"(select(0)from(select(sleep(15)))v)\\/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*\\/\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:12'),
(100,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields-1 waitfor delay \'0:0:15\' -- \"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:15'),
(101,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields3o6nfZIL\'; waitfor delay \'0:0:15\' -- \"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:25'),
(102,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:37'),
(103,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fieldsmyyHeScl\' OR 780=(SELECT 780 FROM PG_SLEEP(15))--\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:38'),
(104,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:44'),
(105,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:44'),
(106,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields8vjccr0y\') OR 475=(SELECT 475 FROM PG_SLEEP(15))--\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:45'),
(107,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555*if(now()=sysdate(),sleep(15),0)\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:50'),
(108,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:50'),
(109,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields1uGsLR20\')) OR 407=(SELECT 407 FROM PG_SLEEP(15))--\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:52:51'),
(110,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"5550\'XOR(555*if(now()=sysdate(),sleep(15),0))XOR\'Z\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:53:03'),
(111,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555*if(now()=sysdate(),sleep(15),0)\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:53:17'),
(112,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:53:17'),
(113,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:53:47'),
(114,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"5550\'XOR(555*if(now()=sysdate(),sleep(15),0))XOR\'Z\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:53:51'),
(115,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:54:20'),
(116,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"(select(0)from(select(sleep(15)))v)\\/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*\\/\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:54:25'),
(117,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:54:26'),
(118,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:54:36'),
(119,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1; waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:54:42'),
(120,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"(select(0)from(select(sleep(15)))v)\\/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*\\/\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:54:43'),
(121,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555*if(now()=sysdate(),sleep(15),0)\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:54:48'),
(122,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1); waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:54:51'),
(123,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1; waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:54:54'),
(124,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"5550\'XOR(555*if(now()=sysdate(),sleep(15),0))XOR\'Z\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:20'),
(125,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1 waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:21'),
(126,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1); waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:22'),
(127,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:25'),
(128,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555fF5rFvlF\'; waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:27'),
(129,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1 waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:28'),
(130,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"(select(0)from(select(sleep(15)))v)\\/*\'+(select(0)from(select(sleep(15)))v)+\'"+(select(0)from(select(sleep(15)))v)+"*\\/\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:30'),
(131,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1 OR 414=(SELECT 414 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:33'),
(132,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555ivCE7CGy\'; waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:33'),
(133,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1; waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:36'),
(134,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1) OR 270=(SELECT 270 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:37'),
(135,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1 OR 480=(SELECT 480 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:38'),
(136,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1); waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:40'),
(137,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1)) OR 526=(SELECT 526 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:41'),
(138,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1) OR 750=(SELECT 750 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:41'),
(139,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1 waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:52'),
(140,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555Ta0FEYWO\' OR 730=(SELECT 730 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:55'),
(141,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1)) OR 87=(SELECT 87 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:55:57'),
(142,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555njQjFEzg\'; waitfor delay \'0:0:15\' -- \"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:00'),
(143,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555OjBbrOW5\') OR 649=(SELECT 649 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:01'),
(144,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555wluZPC1c\' OR 674=(SELECT 674 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:01'),
(145,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1 OR 688=(SELECT 688 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:05'),
(146,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555AIQblFBf\')) OR 885=(SELECT 885 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:08'),
(147,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555sjF0PDdI\') OR 189=(SELECT 189 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:09'),
(148,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1) OR 694=(SELECT 694 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:12'),
(149,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:13'),
(150,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555DZ6PPRNi\')) OR 159=(SELECT 159 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:13'),
(151,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555-1)) OR 839=(SELECT 839 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:15'),
(152,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Capture the information you need\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:16'),
(153,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:16'),
(154,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555c9yUFqWc\' OR 348=(SELECT 348 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:18'),
(155,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Your own custom criteria\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:21'),
(156,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555VYDtBrzl\') OR 758=(SELECT 758 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:27'),
(157,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555YgrSUZjQ\')) OR 443=(SELECT 443 FROM PG_SLEEP(15))--\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:33'),
(158,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:41'),
(159,'pHqghUme','testing@example.com','{\"1\":{\"type\":\"name\",\"label\":\"Your Name\",\"value\":\"pHqghUme\"},\"2\":{\"type\":\"email\",\"label\":\"Your Email\",\"value\":\"testing@example.com\"},\"3\":{\"type\":\"select\",\"label\":\"Topic\",\"value\":\"Add or remove any fields\"},\"4\":{\"type\":\"textarea\",\"label\":\"Message\",\"value\":\"555\'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||\'\"}}',0,'https://www.journal-theme.com/2/','2025-01-04 22:56:49');
/*!40000 ALTER TABLE `oc_journal3_message` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_module`
--
DROP TABLE IF EXISTS `oc_journal3_module`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_module` (
`module_id` int(11) NOT NULL AUTO_INCREMENT,
`module_type` varchar(64) NOT NULL,
`module_name` varchar(128) NOT NULL,
`module_data` mediumtext NOT NULL,
PRIMARY KEY (`module_id`)
) ENGINE=MyISAM AUTO_INCREMENT=268 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_module`
--
LOCK TABLES `oc_journal3_module` WRITE;
/*!40000 ALTER TABLE `oc_journal3_module` DISABLE KEYS */;
INSERT INTO `oc_journal3_module` VALUES
(67,'newsletter','Newsletter Footer','{\"general\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titleDivider\":\"\",\"buttonFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"subscribedEmail\":\"true\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"subscribedEmailMessage\":{\"lang_1\":\"Thank you for subscribing to our newsletter.\"},\"buttonOffset\":{\"first\":\"-4\",\"second\":\"4\"},\"agreePadding\":{\"padding\":\"\",\"padding-top\":\"12\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"agreeLink\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"adminAlerts\":\"true\",\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"position\":\"row\",\"unsubscribedEmail\":\"true\",\"name\":\"Newsletter Footer\",\"buttonIcon\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb79\",\"name\":\"mail\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"placeholderColorHover\":\"\",\"buttonType\":\"both\",\"tooltipPosition\":\"top\",\"agree\":\"3\",\"moduleTitle\":\"__VAR__MEDIUM_WHITE\",\"text\":{\"lang_1\":\"Stay up to date with news and promotions by signing up for our newsletter\"},\"subscribedMessage\":{\"lang_1\":\"You have been subscribed to our newsletter.\"},\"titleAlign\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"tooltipStyle\":\"\",\"placeholderColor\":\"\",\"tooltipText\":{\"lang_1\":\"Subscribe\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"inputHeight\":\"40\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"placeholder\":{\"lang_1\":\"Your email\"},\"unsubscribedMessage\":{\"lang_1\":\"You have been unsubscribed from our newsletter.\"},\"tooltipStatus\":\"true\",\"agreeLinkHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"unsubscribeMessage\":{\"lang_1\":\"You are already subscribed. Do you want to unsubscribe?\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"Newsletter\"},\"buttonHeight\":\"30\",\"moduleAlign\":\"left\",\"captcha\":\"false\",\"agreeFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__ACCENT-1\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"textMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"textBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"buttonFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"inputWidth\":\"400\",\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT-1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"unsubscribedEmailMessage\":{\"lang_1\":\"We\'re sorry to see you go.\"},\"moduleInput\":\"__VAR__NEWSLETTER\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}}}'),
(2,'top_menu','Top Menu - Desktop','{\"general\":{\"name\":\"Top Menu - Desktop\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"scheduledStatus\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"}},\"items\":[{\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Home\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Home\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"common\\/home\"},\"id\":\"37dbd35e-70da-4636-89ea-e3ad0cca8f90\"},{\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"About Us\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"About Us\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"information\",\"id\":\"4\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"f56aeef1-cf5e-4324-95cd-4d496fda4089\"},{\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Contact\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Contact\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"information\\/contact\"},\"id\":\"d861760c-be9e-4e69-8fe1-00791918aad6\"},{\"items\":[{\"iconHover\":\"\",\"name\":\"Create\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Create\"},\"icon\":{\"type\":\"\",\"icon\":{\"name\":\"arrow_forward\",\"code\":\"e5c8\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"margin\":{\"margin-right\":\"5\"}},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/compare\"},\"id\":\"de588742-8f97-4182-900f-129bded9d952\"},{\"name\":\"Unlimited\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Unlimited\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"icon\":{\"type\":\"\",\"icon\":{\"name\":\"iconmonstr-gear-1\",\"code\":\"e905\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"margin\":{\"margin-right\":\"5\"}},\"iconHover\":\"\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"id\":\"2b16f99f-63a3-47cf-9aaf-d6fac3bf956b\"},{\"iconHover\":\"\",\"name\":\"Menus\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Menus\"},\"icon\":{\"type\":\"\",\"icon\":{\"name\":\"iconmonstr-delivery-5\",\"code\":\"eab9\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"margin\":{\"margin-right\":\"5\"}},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"ed77cc42-1aa5-4a13-9445-2b132f0f9595\"}],\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"FAQ\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"FAQ\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"information\",\"id\":\"7\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/special\"},\"id\":\"25ecb2b4-2b45-4540-a06a-34ac84ce721c\"}]}'),
(3,'main_menu','Main Menu - Desktop','{\"general\":{\"name\":\"Main Menu - Desktop\",\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"}},\"items\":[{\"items\":[],\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"true\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"All Departments\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"false\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"default\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"desktop\",\"phone\",\"tablet\"],\"customer\":\"\"},\"multiLevelPosition\":\"right\",\"minWidth\":\"\",\"label\":{\"lang_1\":\"New\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"500\",\"megaMenuHeight\":\"\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"All Departments\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"rows\":[{\"id\":\"fbb29168-fe29-4aa8-b00d-66b961555be1\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"background_multi\":[],\"overlay_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"rgba(10, 55, 143, 0.92)\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"]},\"overlayAlign\":\"right\",\"fullwidth\":\"false\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"cba781dd-5af8-4cde-bb20-48f457b35c96\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"align\":\"top\",\"width\":\"80\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"20\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"padding-left\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"0\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"e24f91b5-306f-4493-811b-b9ee28fa22b5\",\"item\":{\"id\":\"69\",\"name\":\"Catalog Left Image\",\"type\":\"catalog\"}}]},{\"id\":\"0a818dc2-b8ed-4b63-b66e-5519e27a9674\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"align\":\"top\",\"width\":\"20\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"1\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"tablet\",\"desktop\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"51d4f0b9-acd5-49f9-a5d0-07a2cfe8312b\",\"item\":{\"id\":\"98\",\"name\":\"Promo Banner\",\"type\":\"banners\"}}]}]}],\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"megamenu\",\"link\":{\"type\":\"category\",\"id\":\"109\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"f56afa20-66e0-4e90-bb09-dfecdd8bced2\",\"megaMenuCustomTriangleAlign\":\"\",\"flyout\":\"\",\"megaMenuLayout\":\"full\",\"subcategories\":\"false\",\"megaMenuCustomTriangleStatus\":\"true\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"__VAR__GREEN\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"\"},{\"items\":[],\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"false\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"Multilevel\",\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"false\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"default\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"desktop\",\"phone\",\"tablet\"],\"customer\":\"\"},\"multiLevelPosition\":\"right\",\"minWidth\":\"\",\"label\":{\"lang_1\":\"\"},\"dropdownWidth\":\"\",\"subcategoriesIcon\":{\"icon\":{\"name\":\"arrow2\",\"code\":\"e93f\"}},\"megaMenuWidth\":\"500\",\"megaMenuHeight\":\"\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"Multilevel\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"rows\":[{\"id\":\"c26de514-acef-4a14-8448-c6ad6295e755\",\"options\":{\"name\":\"New Menu Item\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"type\":\"multilevel\"},\"columns\":[{\"id\":\"a0cd5d4b-15c5-48d7-be36-ab5a1bf8e283\",\"options\":{\"width\":\"25\",\"name\":{\"lang_1\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},\"items\":[{\"id\":\"b09a5291-52f0-48cc-87e1-43ea60f83793\",\"item\":{\"id\":\"6\",\"name\":\"Footer Links\",\"type\":\"links_menu\"}}]},{\"id\":\"a823c290-c17d-4994-8563-24cb1124f51d\",\"options\":{\"width\":\"25\",\"name\":{\"lang_1\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},\"items\":[{\"id\":\"5d4f2d4e-5e5a-4f46-a8c6-d486a9300e31\",\"item\":{\"id\":\"6\",\"name\":\"Footer Links\",\"type\":\"links_menu\"}}]},{\"id\":\"f538d2c4-8d4c-4112-bc65-788fbb4ae170\",\"options\":{\"width\":\"25\",\"name\":{\"lang_1\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},\"items\":[{\"id\":\"f571e265-0d83-4280-a7b2-50fa0778db13\",\"item\":{\"id\":\"6\",\"name\":\"Footer Links\",\"type\":\"links_menu\"}}]},{\"id\":\"c0957865-0bc6-4e57-8f0b-052fa176790f\",\"options\":{\"width\":\"25\",\"name\":{\"lang_1\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},\"items\":[{\"id\":\"8e47581e-adb2-4adc-916a-b30f2767a4e4\",\"item\":{\"id\":\"6\",\"name\":\"Footer Links\",\"type\":\"links_menu\"}}]}]}],\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"59\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/compare\"},\"id\":\"22efcb1d-6240-4c3f-bcb2-448ea09c7410\",\"megaMenuCustomTriangleAlign\":\"\",\"flyout\":\"\",\"megaMenuLayout\":\"full\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"false\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"\"},{\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"false\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"Custom Menu\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"false\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"center\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"desktop\",\"phone\",\"tablet\"],\"customer\":\"\"},\"multiLevelPosition\":\"right\",\"minWidth\":\"\",\"label\":{\"lang_1\":\"New\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"700\",\"megaMenuHeight\":\"\",\"megaMenuCustomTriangleMargin\":\"\",\"title\":{\"lang_1\":\"Custom Menu\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"__VAR__COLOR_1\",\"rows\":[{\"id\":\"e03d9e47-7a21-40db-aba8-5866df09a7a1\",\"options\":{\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"background_multi\":[],\"name\":\"New Menu Item\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\"},\"overlayAlign\":\"center\",\"type\":\"multilevel\"},\"columns\":[{\"id\":\"cdcc2e9f-0d0f-48ae-ba81-80964dd66ea9\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"align\":\"middle\",\"width\":\"40\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"\",\"padding-top\":\"40\",\"padding-right\":\"\",\"padding-bottom\":\"40\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"catalog\\/journal3\\/banners\\/grid-1d.jpg\"},\"margin\":\"\",\"padding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"]}},\"items\":[{\"id\":\"04a9d250-8044-4109-b1b6-d7fa93cf0796\",\"item\":{\"id\":\"260\",\"name\":\"HTML Text Menu Copy\",\"type\":\"blocks\"}}]},{\"id\":\"7973a1cf-7091-4c6d-9e81-1bc552c0db46\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"60\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"padding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"align\":\"top\",\"margin\":\"\",\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}]},\"items\":[{\"id\":\"0fb10840-712c-4bc1-8b45-4e47a4a58370\",\"item\":{\"id\":\"119\",\"name\":\"Menu - No Image\",\"type\":\"catalog\"}}]}]}],\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"megamenu\",\"link\":{\"type\":\"category\",\"id\":\"109\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"0ff72682-0215-4c70-b1ff-0fd8fa6ddd04\",\"megaMenuCustomTriangleAlign\":\"\",\"flyout\":\"\",\"megaMenuLayout\":\"custom\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"true\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"__VAR__BLUE\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"__VAR__No Border\"},{\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"true\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"Top Brands\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"false\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"default\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"desktop\",\"tablet\"],\"customer\":\"\"},\"multiLevelPosition\":\"right\",\"minWidth\":\"\",\"label\":{\"lang_1\":\"\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"500\",\"megaMenuHeight\":\"\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"Top Brands\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"rows\":[{\"id\":\"d7edbb96-df88-4f11-9c4b-a89b82efb1e0\",\"options\":{\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"name\":\"New Menu Item\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"]},\"overlayAlign\":\"left\",\"type\":\"multilevel\",\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"3b1443b6-f275-4883-bfeb-5fde6af588ae\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"align\":\"middle\",\"width\":\"66.66666666666666\",\"name\":{\"lang_1\":\"\"},\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"]}},\"items\":[{\"id\":\"c94b80ff-c509-4162-98c6-6deb4423cf95\",\"item\":{\"id\":\"161\",\"name\":\"Catalog Brands\",\"type\":\"catalog\"}}]},{\"id\":\"d0adaaef-8a00-4717-b126-8a87b4d2dcc6\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"align\":\"top\",\"width\":\"33.33333333333333\",\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"desktop\",\"tablet\"]}},\"items\":[{\"id\":\"af03c8fd-6d1d-493f-ae8d-40b5ba8ecdd2\",\"item\":{\"id\":\"186\",\"name\":\"Top Sellers\",\"type\":\"products\"}}]}]}],\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"megamenu\",\"link\":{\"type\":\"category\",\"id\":\"109\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"5b78521b-6925-4ba7-a9e1-3ca0844a34f5\",\"megaMenuCustomTriangleAlign\":\"\",\"flyout\":\"\",\"megaMenuLayout\":\"full\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"true\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"\"},{\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"true\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"Blog\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"false\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"default\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"desktop\",\"tablet\"],\"customer\":\"\"},\"multiLevelPosition\":\"right\",\"minWidth\":\"\",\"label\":{\"lang_1\":\"\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"500\",\"megaMenuHeight\":\"\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"Blog\"},\"icon\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"rows\":[{\"id\":\"d7edbb96-df88-4f11-9c4b-a89b82efb1e0\",\"options\":{\"name\":\"New Menu Item\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"type\":\"multilevel\"},\"columns\":[{\"id\":\"3b1443b6-f275-4883-bfeb-5fde6af588ae\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"align\":\"middle\",\"width\":\"66.66666666666666\",\"name\":{\"lang_1\":\"\"},\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"20\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"]}},\"items\":[{\"id\":\"c94b80ff-c509-4162-98c6-6deb4423cf95\",\"item\":{\"id\":\"164\",\"name\":\"Catalog Right Image\",\"type\":\"catalog\"}}]},{\"id\":\"d0adaaef-8a00-4717-b126-8a87b4d2dcc6\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"align\":\"top\",\"width\":\"33.33333333333333\",\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"15\",\"padding-right\":\"20\",\"padding-bottom\":\"10\",\"padding-left\":\"20\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"desktop\",\"tablet\"]}},\"items\":[{\"id\":\"af03c8fd-6d1d-493f-ae8d-40b5ba8ecdd2\",\"item\":{\"id\":\"186\",\"name\":\"Top Sellers\",\"type\":\"products\"}}]}]}],\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"\",\"link\":{\"type\":\"blog_home\",\"id\":\"109\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"cefb0543-e8dd-463e-9c63-e3ce5c32426c\",\"megaMenuCustomTriangleAlign\":\"\",\"flyout\":\"\",\"megaMenuLayout\":\"full\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"true\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"\"}]}'),
(260,'blocks','Main Menu Block','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"display\":\"grid\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"\",\"padding-left\":\"15\"},\"itemTitle\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"Main Menu Block\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"0\"},\"c1\":{\"items\":\"1\",\"spacing\":\"0\"},\"c2\":{\"items\":\"1\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_3\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"__VAR__BLUE\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"left\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"1.3\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"New Block\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"center\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"Shop Now\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"\"},\"content\":{\"lang_1\":\"<h3>Custom Menus<\\/h3><p>Full width or custom width mega menu dropdowns with page builder support.<\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"419508e3-eea1-4e0f-b3e5-5821fc8e37b4\",\"image\":\"\",\"footer\":\"button\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(69,'catalog','Catalog Left Image','{\"general\":{\"itemViewMoreFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"carousel\":\"false\",\"itemLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageMargin_multi\":[],\"itemsBoxBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imagePosition\":\"\",\"itemsBoxBorderHover\":\"\",\"moduleStyle\":\"__VAR__DEFAULT\",\"itemTitle\":\"__VAR__CATALOG_MODULE\",\"itemsBoxPadding\":{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"viewMoreText\":{\"lang_1\":\"View More\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"100\",\"height\":\"100\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"itemsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"containerMargin_multi\":[],\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"name\":\"Catalog Left Image\",\"itemsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemIcon\":{\"size\":\"12\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"2\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e409\",\"name\":\"navigate_next\"},\"type\":\"\",\"image\":\"\"},\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemIconHover\":\"\",\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"itemsBoxShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"textTruncate\":\"true\",\"PositionOverride\":\"\",\"itemsBoxBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"images\":\"true\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"itemsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemLinkSpace\":\"3\",\"itemsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"MarginOverride\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemViewMoreFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_4\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"itemsPerRow\":{\"c0\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING_3\"},\"c1\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING_2\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING_3\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__SPACING_2\"}}]},\"imagePosition_multi\":[]},\"items\":[{\"name\":\"Fashion\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Fashion\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"1911c1ea-a4ec-4cd3-af97-5ed7694bc35c\",\"limit\":\"4\",\"category\":\"59\"},{\"name\":\"Bags\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Bags\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"8105ed0f-84d4-4b17-a74c-59a8632b3a55\",\"limit\":\"4\",\"category\":\"107\"},{\"name\":\"Health & Beauty\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Health & Beauty\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"0e1140b7-1865-41a8-bb0e-fd88a93054cf\",\"limit\":\"4\",\"category\":\"109\"},{\"name\":\"Footwear\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Footwear\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"d6f70cde-67e7-4834-9da4-27787bce8d57\",\"limit\":\"4\",\"category\":\"111\"},{\"name\":\"Home\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Home\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"d6a20c61-1959-49fd-82a1-1ca89fd41944\",\"limit\":\"4\",\"category\":\"175\"},{\"name\":\"Electronics\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Electronics\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"a54e5bdf-64e2-497e-811b-11c41ea972e6\",\"limit\":\"4\",\"category\":\"69\"},{\"name\":\"Food\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Food\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"8100d8bf-363a-4274-8c8e-e89aa14499ac\",\"limit\":\"4\",\"category\":\"155\"},{\"name\":\"Baby & Kids\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Baby & Kids\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"5119bbdc-b98c-413c-a945-e098cc8eab6f\",\"limit\":\"4\",\"category\":\"166\"}]}'),
(4,'header_desktop_classic','Classic','{\"general\":{\"headerCartIconWidth\":\"40\",\"CartTextFontHover\":\"__VAR__COLOR_1\",\"currencyStyle\":\"__VAR__DEFAULT\",\"CartShadow\":{\"offsetX\":\"0\",\"offsetY\":\"10\",\"blur\":\"25\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.9)\",\"inner\":\"false\"},\"CartCountBadgeVisibility_multi\":[{\"min\":\"\",\"max\":\"__VAR__DESKTOP\",\"value\":\"true\"}],\"headerCartFontHover\":\"\",\"CartMiniIconBorderHover\":\"\",\"headerMainMenuAlign\":\"start\",\"CartCheckoutLink\":\"false\",\"headerMainMenuFullBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"CartIconHeight\":\"\",\"mobileMenuOn\":\"\",\"infoBlocksModule\":\"\",\"CartTextBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"secondaryMenuMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"dropdown2\":\"__VAR__CENTER\",\"headerLogoPosition\":\"left\",\"CartSize\":{\"first\":\"\",\"second\":\"\"},\"headerSiteOverlayBG\":\"rgba(0, 0, 0, 0.5)\",\"headerMainMenuSpace\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerCartMiniIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"CartDisplay\":\"full\",\"headerCartContentTriangleMargin\":\"-10\",\"menuTriggerFont_multi\":[],\"menuDropdown2\":\"\",\"headerSearchMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"40\"},\"headerMainMenuBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"CartIconHover\":\"\",\"CartTextBorderHover\":\"\",\"searchButtonPosition\":\"right\",\"headerCartBorderHover\":\"\",\"headerCartPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerLangPosition\":\"right\",\"headerCartIconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerMiniSearchBorderHover\":\"\",\"CartTextPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"10\",\"padding-bottom\":\"\",\"padding-left\":\"10\"},\"headerCartMiniShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"cartMiniMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"CartMiniBackground\":\"\",\"CartMiniMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"headerMainMenu\":\"3\",\"CartIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerMiniSearchIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f002\",\"name\":\"search\"},\"type\":\"\",\"image\":\"\"},\"CartMiniShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"menuTriggerText\":{\"lang_1\":\"Menu\"},\"CartIconDimensions\":{\"first\":\"35\",\"second\":\"35\"},\"cartCountBadgeVisibility\":\"true\",\"headerCartIcon\":{\"type\":\"\",\"icon\":{\"code\":\"e904\",\"name\":\"iconmonstr-shopping-cart-6\"},\"image\":\"\",\"color\":\"__VAR__COLOR_1\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerTopBarFullBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"CartCountBadgeVisibility\":\"false\",\"cartWidth\":\"\",\"languageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"headerMiniSearchIconSize\":\"\",\"headerMenuItemAlign\":\"center\",\"headerCartContentTriangleStatus\":\"true\",\"headerCartContentTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"headerTopMenu\":\"2\",\"CartMiniIconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"menuTriggerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"CartIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartIconSize\":\"\",\"stickyPadding\":\"\",\"infoBlock4CountBadgeStyle\":\"\",\"headerMainMenuDividerHover\":\"\",\"CartMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"20\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}],\"menuTriggerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"headerMainMenuFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"languageDropdownStyle\":\"__VAR__CENTER\",\"infoBlock3CountBadgeStyle\":\"\",\"cartPosition\":\"top\",\"searchStyle\":\"__VAR__ROUNDED\",\"headerCartMiniIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerCartBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"menuTriggerIconHover\":\"\",\"headerMiniSearchBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"compactHeight\":\"\",\"infoBlock2CountBadgeStyle\":\"\",\"headerCartContentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerCartMiniBackgroundHover\":\"\",\"headerCartIconBorderHover\":\"\",\"headerMainMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerTopMenu2\":\"240\",\"headerCartIconBG\":\"__VAR__COLOR_4\",\"infoBlock1CountBadgeStyle\":\"\",\"headerLogoOffset\":{\"first\":\"\",\"second\":\"\"},\"headerMiniSearchDropdownBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"CartTextBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"logo\":\"catalog\\/journal3\\/logo\\/logo-1x.png\",\"name\":\"Classic\",\"CartMiniCountBadge\":\"\",\"headerMiniSearchBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock1Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"miniCartCountBadge\":\"\",\"headerCartBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerShadowHome\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerCartContentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"headerMainMenuHeight\":\"42\",\"CartMiniIconHover\":\"\",\"infoBlock2Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"infoBlock1Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"headerMainMenuItemCountBadge\":\"\",\"compactStickyShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerMiniSearchShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"CartBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_2\"},\"headerMainMenuPadding\":\"\",\"headerLogoAlign\":\"flex-start\",\"CartTextShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"headerMainMenu2\":\"\",\"headerMiniSearchSize\":{\"first\":\"\",\"second\":\"\"},\"CartIconWidth\":\"\",\"headerShadow\":\"__VAR__LIGHT\",\"infoBlock2Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"infoBlock3Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerCartIconHeight\":\"40\",\"headerCartCheckoutLink\":\"false\",\"headerCartShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"infoBlock4IconHover\":\"\",\"CartBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"stickyFullwidth\":\"true\",\"CartMiniIconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"CartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"CartBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock3Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"infoBlock4Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMaxWidthHome\":\"\",\"headerLogoWidth\":\"220\",\"headerFullwidthBGHome\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMaxWidth\":\"\",\"infoBlock4Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"CartTextShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"headerCartContentTriangleColor\":\"\",\"infoBlocksSpacing\":\"\",\"headerSiteOverlayOffset\":\"\",\"infoBlock4Text1\":{\"lang_1\":\"\"},\"headerFullwidthBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_12\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"infoBlock3IconHover\":\"\",\"topBarStatus\":\"true\",\"topBarVisibility\":\"true\",\"stickyHeight\":\"42\",\"CartMiniIcon\":{\"type\":\"\",\"icon\":{\"code\":\"e904\",\"name\":\"iconmonstr-shopping-cart-6\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerTopBarBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMiniSearchShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"CartBorderHover\":\"\",\"infoBlock3Text1\":{\"lang_1\":\"\"},\"infoBlock2IconHover\":\"\",\"infoBlock4Text2\":{\"lang_1\":\"\"},\"menuDropdown\":\"__VAR__DEFAULT\",\"dropdown\":\"__VAR__CENTER\",\"headerSearchWidth\":\"\",\"headerMiniSearchBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerSearchInputWidth\":\"150\",\"infoBlock1IconHover\":\"\",\"infoBlock2Text1\":{\"lang_1\":\"\"},\"megaMenu\":\"__VAR__Top Border\",\"headerMainMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"CartMiniIconSize\":{\"first\":\"\",\"second\":\"\"},\"logo2x\":\"catalog\\/journal3\\/logo\\/logo-2x.png\",\"infoBlock3Text2\":{\"lang_1\":\"\"},\"CartStyle\":\"\",\"cartStyle\":\"__VAR__CART\",\"infoBlocksAlign\":\"end\",\"headerBGHome\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartIconBGHover\":\"__VAR__COLOR_5\",\"infoBlock1Text1\":{\"lang_1\":\"\"},\"headerCartBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMenuItemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerTopBarHeight\":\"35\",\"infoBlock2Text2\":{\"lang_1\":\"\"},\"headerMenuSlimPosition\":\"before\",\"headerCartIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerCartMiniBackground\":\"\",\"secondaryMenuAlign\":\"right\",\"menuTriggerIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0c9\",\"name\":\"bars\"},\"type\":\"\",\"image\":\"\"},\"infoBlock1\":\"true\",\"headerBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__BASE_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock1Text2\":{\"lang_1\":\"\"},\"headerCartMiniIconBorderHover\":\"\",\"headerLogoPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"20\"}}],\"headerHeightHome\":\"\",\"headerMainMenuMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"menu2\":\"__VAR__Icon on Top\",\"headerSearchBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerMainMenuBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock2\":\"true\",\"headerMiniSearchDropdownPadding\":\"\",\"headerHeight\":\"110\",\"headerMainMenuFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"menuTriggerFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"headerCartHeight\":\"\",\"headerMainMenuDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"cartCountBadge\":\"\",\"CartCountBadge\":\"__VAR__ALTERNATE\",\"infoBlock3\":\"true\",\"menuTriggerBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_15\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"miniSearchTriangleMargin\":\"-10\",\"CartMiniIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock4\":\"true\",\"CartIconBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerFullwidthBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"stickyHeaderShadow\":\"__VAR__MEDIUM\",\"headerCartIconHover\":\"\",\"headerMenuLayout\":\"default\",\"headerCartTextPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"langPosition\":\"top\",\"mobileMenuDesktopMenuStyle\":\"\",\"headerMiniSearchIconHover\":\"\",\"CartIconBorderRadius\":{\"border-radius\":\"19\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"CartIconBorderHover\":\"\",\"CartMiniShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"CartMiniBackgroundHover\":\"\",\"headerCartMiniShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"CartContentStyle\":\"__VAR__NEW_CART_CONTENT\",\"infoBlock1CountBadgeVisibility\":\"true\",\"menuTriggerPadding\":\"15\",\"headerMiniSearchBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mainMenu\":\"__VAR__Main Menu\",\"cartContentStyle\":\"__VAR__CART_CONTENT\",\"mobileMenuDesktopWrapperStyle\":\"__VAR__DEFAULT\",\"headerMainMenuBGFull\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"languageStyle\":\"__VAR__DEFAULT\",\"headerCartBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"infoBlock2CountBadgeVisibility\":\"true\",\"headerCartWidth\":\"\",\"miniSearchTriangleStatus\":\"true\",\"headerLogoPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"CartTextBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerMainMenuItemPadding\":\"15\",\"CartIcon\":{\"type\":\"\",\"icon\":{\"code\":\"e904\",\"name\":\"iconmonstr-shopping-cart-6\"},\"image\":\"\",\"color\":\"__VAR__COLOR_1\",\"size\":\"24\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerMiniSearchMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"mainMenu2\":\"\",\"compactStickyBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartMiniIconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerTopBarFullShadow\":\"\",\"stickyFullwidthBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"stickyFullHomePadding\":\"false\",\"miniSearchTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"CartIconSize\":{\"first\":\"\",\"second\":\"\"},\"infoBlock3CountBadgeVisibility\":\"true\",\"headerCartMiniIconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"searchOffset\":{\"first\":\"\",\"second\":\"\"},\"stickyHeaderBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock4CountBadgeVisibility\":\"true\",\"CartTextBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMainMenuFullHeight\":\"false\",\"stickyStatus\":\"true\",\"headerCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"CartDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__DESKTOP\",\"value\":\"icon\"}],\"headerSearchHeight\":\"\",\"CartShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"CartMiniIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerCartFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"menuLabelStyle\":\"\",\"headerSiteOverlay\":\"false\",\"CartTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__FONT_3\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"infoBlock4Style\":\"\",\"headerCompactHeightHome\":\"\",\"secondaryMenuPosition\":\"cart\",\"miniSearchTriangleColor\":\"\",\"headerSearchPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"stickyAt\":\"\",\"headerLogoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCompactHeight\":\"50\",\"infoBlocksStyle\":\"\",\"infoBlock3Style\":\"\",\"headerMiniSearchDropdownShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerCartMiniIcon\":{\"type\":\"\",\"icon\":{\"code\":\"e904\",\"name\":\"iconmonstr-shopping-cart-6\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerCartMiniIconSize\":{\"first\":\"\",\"second\":\"\"},\"infoBlock2Style\":\"\",\"headerSearchPosition\":\"right\",\"CartBorderRadius\":{\"border-radius\":\"20\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"mobileMenuOnWrapperStyle\":\"\",\"infoBlock1Style\":\"\",\"menu\":\"__VAR__Top Menu\",\"headerTopBarFullBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMainMenuItemCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"headerLogoBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartMiniIconHover\":\"\",\"cartTextVisibility\":\"true\",\"headerMainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}}'),
(8,'header_desktop_compact','Compact','{\"general\":{\"headerCartIconWidth\":\"\",\"currencyStyle\":\"__VAR__DEFAULT\",\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerCartFontHover\":\"\",\"headerMainMenuAlign\":\"center\",\"headerMainMenuFullBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileMenuOn\":\"\",\"topBarMaxWidth\":\"\",\"infoBlocksModule\":\"\",\"secondaryMenuMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"dropdown2\":\"\",\"headerLogoPosition\":\"left\",\"headerSiteOverlayBG\":\"\",\"headerMainMenuSpace\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerCartMiniIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"dropdown3\":\"\",\"menuDropdown2\":\"\",\"headerMiniSearchBackdrop\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerSearchMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"headerMainMenuBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"searchButtonPosition\":\"right\",\"headerCartBorderHover\":\"\",\"headerCartPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerLangPosition\":\"center\",\"headerCartIconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerMiniSearchBorderHover\":\"\",\"headerCartMiniShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"cartMiniMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"headerMainMenu\":\"3\",\"headerMiniSearchIcon\":{\"size\":\"32\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebaf\",\"name\":\"search3\"},\"type\":\"\",\"image\":\"\"},\"menuTriggerText\":{\"lang_1\":\"Menu\"},\"cartCountBadgeVisibility\":\"false\",\"headerCartIcon\":{\"type\":\"\",\"icon\":{\"code\":\"e904\",\"name\":\"iconmonstr-shopping-cart-6\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerTopBarFullBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"cartWidth\":\"\",\"languageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"headerMiniSearchIconSize\":\"\",\"headerMenuItemAlign\":\"center\",\"cartHeight\":\"\",\"headerTopMenu\":\"2\",\"menuTriggerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartIconSize\":\"\",\"stickyPadding\":\"\",\"infoBlock4CountBadgeStyle\":\"\",\"headerMainMenuDividerHover\":\"\",\"mainMenu2Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"menuTriggerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"headerMainMenuFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"languageDropdownStyle\":\"\",\"infoBlock3CountBadgeStyle\":\"\",\"cartPosition\":\"top\",\"searchStyle\":\"__VAR__DEFAULT\",\"headerMiniSearchPageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"headerCartMiniIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerCartBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"menuTriggerIconHover\":\"\",\"headerMiniSearchBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"compactHeight\":\"\",\"infoBlock2CountBadgeStyle\":\"\",\"headerCartMiniBackgroundHover\":\"\",\"headerCartIconBorderHover\":\"\",\"headerMainMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerTopMenu2\":\"\",\"headerCartIconBG\":\"\",\"infoBlock1CountBadgeStyle\":\"\",\"headerLogoOffset\":{\"first\":\"\",\"second\":\"\"},\"headerMiniSearchDropdownBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"logo\":\"\",\"name\":\"Compact\",\"headerMiniSearchBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock1Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"miniCartCountBadge\":\"\",\"headerCartBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerTopMenu3\":\"14\",\"headerMainMenuBarBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"headerShadowHome\":\"__VAR__NONE\",\"headerLangTopMenuAlign\":\"left\",\"headerMainMenuHeight\":\"40\",\"infoBlock2Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"infoBlock1Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"headerMainMenuItemCountBadge\":\"\",\"compactStickyShadow\":\"__VAR__MEDIUM\",\"headerMiniSearchShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerMainMenuPadding\":\"\",\"headerLogoAlign\":\"flex-start\",\"headerMainMenu2\":\"\",\"headerMiniSearchSize\":{\"first\":\"400\",\"second\":\"50\"},\"topBarPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"10\",\"padding-bottom\":\"\",\"padding-left\":\"10\"}}],\"headerShadow\":\"__VAR__MEDIUM\",\"infoBlock2Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"infoBlock3Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerCartIconHeight\":\"\",\"headerCartCheckoutLink\":\"false\",\"headerCartShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"infoBlock4IconHover\":\"\",\"stickyFullwidth\":\"true\",\"CartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"infoBlock3Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"infoBlock4Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMaxWidthHome\":\"\",\"headerLogoWidth\":\"200\",\"headerFullwidthBGHome\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__TRANSPARENT\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMaxWidth\":\"\",\"infoBlock4Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"infoBlocksSpacing\":\"\",\"headerSiteOverlayOffset\":\"\",\"infoBlock4Text1\":{\"lang_1\":\"\"},\"headerFullwidthBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"infoBlock3IconHover\":\"\",\"currencyDropdownStyle\":\"\",\"topBarStatus\":\"true\",\"topBarVisibility\":\"true\",\"stickyHeight\":\"40\",\"headerCompactHeightHome-hold\":\"\",\"headerTopBarBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMiniSearchShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"infoBlock3Text1\":{\"lang_1\":\"\"},\"infoBlock2IconHover\":\"\",\"infoBlock4Text2\":{\"lang_1\":\"\"},\"menuDropdown\":\"__VAR__DEFAULT\",\"dropdown\":\"__VAR__CENTER\",\"headerSearchWidth\":\"\",\"headerMiniSearchBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerSearchInputWidth\":\"150\",\"infoBlock1IconHover\":\"\",\"infoBlock2Text1\":{\"lang_1\":\"\"},\"megaMenu\":\"__VAR__Top Border\",\"headerMainMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"logo2x\":\"catalog\\/journal3\\/logo\\/logo-2x.png\",\"infoBlock3Text2\":{\"lang_1\":\"\"},\"cartStyle\":\"__VAR__Cart Compact\",\"infoBlocksAlign\":\"end\",\"headerBGHome\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartIconBGHover\":\"\",\"infoBlock1Text1\":{\"lang_1\":\"\"},\"headerCartBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMenuItemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerTopBarHeight\":\"35\",\"infoBlock2Text2\":{\"lang_1\":\"\"},\"headerMenuSlimPosition\":\"before\",\"headerCartIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerCartMiniBackground\":\"\",\"secondaryMenuAlign\":\"right\",\"menuTriggerIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0c9\",\"name\":\"bars\"},\"type\":\"\",\"image\":\"\"},\"infoBlock1\":\"true\",\"headerBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock1Text2\":{\"lang_1\":\"\"},\"headerCartMiniIconBorderHover\":\"\",\"headerLogoPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"15\"}}],\"headerHeightHome\":\"\",\"headerMainMenuMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"menu2\":\"\",\"headerSearchBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"headerMainMenuBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock2\":\"true\",\"topBarPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"thirdMenuMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"headerMiniSearchDropdownPadding\":\"7\",\"headerHeight\":\"\",\"headerMainMenuFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"menu3\":\"\",\"menuTriggerFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"headerCartHeight\":\"\",\"headerMainMenuDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"cartCountBadge\":\"\",\"infoBlock3\":\"true\",\"menuTriggerBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"miniSearchTriangleMargin\":\"-6\",\"infoBlock4\":\"true\",\"headerMainMenu2Position\":\"menu\",\"headerFullwidthBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"last\":\"false\",\"stickyHeaderShadow\":{\"offsetX\":\"0\",\"offsetY\":\"10\",\"blur\":\"30\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.3)\",\"inner\":\"false\",\"none\":\"false\"},\"headerCartIconHover\":\"\",\"headerMiniSearchDisplay\":\"default\",\"headerMenuLayout\":\"default\",\"headerCartTextPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"langPosition\":\"top\",\"mobileMenuDesktopMenuStyle\":\"__VAR__MOBILE\",\"headerMiniSearchIconHover\":\"__VAR__COLOR_7\",\"headerCartMiniShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"infoBlock1CountBadgeVisibility\":\"true\",\"menuTriggerPadding\":\"\",\"headerMiniSearchBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerMainMenu2Align\":\"right\",\"mainMenu\":\"__VAR__Main Menu\",\"cartContentStyle\":\"__VAR__Cart Content\",\"mobileMenuDesktopWrapperStyle\":\"__VAR__DEFAULT\",\"headerMainMenuBGFull\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerHeightHome-hold\":\"\",\"languageStyle\":\"__VAR__DEFAULT\",\"headerCartBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"infoBlock2CountBadgeVisibility\":\"true\",\"headerCartWidth\":\"\",\"miniSearchTriangleStatus\":\"\",\"headerMainMenu2Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerLogoPadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"0\"},\"headerMainMenuItemPadding\":\"15\",\"headerMiniSearchMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"15\",\"margin-bottom\":\"\",\"margin-left\":\"40\"},\"mainMenu2\":\"\",\"compactStickyBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartMiniIconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerTopBarFullShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"stickyFullwidthBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"stickyFullHomePadding\":\"true\",\"headerMainMenuBarBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"miniSearchTriangleOffset\":{\"first\":\"-15\",\"second\":\"\"},\"infoBlock3CountBadgeVisibility\":\"true\",\"headerCartMiniIconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"searchOffset\":{\"first\":\"\",\"second\":\"\"},\"stickyHeaderBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock4CountBadgeVisibility\":\"true\",\"headerMainMenuFullHeight\":\"true\",\"stickyStatus\":\"true\",\"headerCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"headerSearchHeight\":\"\",\"headerMainMenuBarBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"menuLabelStyle\":\"\",\"headerSiteOverlay\":\"false\",\"infoBlock4Style\":\"\",\"headerCompactHeightHome\":\"\",\"secondaryMenuPosition\":\"cart\",\"miniSearchTriangleColor\":\"__VAR__COLOR_1\",\"headerSearchPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"stickyAt\":\"\",\"headerLogoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCompactHeight\":\"80\",\"infoBlocksStyle\":\"\",\"infoBlock3Style\":\"\",\"headerMiniSearchDropdownShadow\":\"__VAR__MEDIUM\",\"headerCartMiniIcon\":{\"type\":\"\",\"icon\":{\"code\":\"e904\",\"name\":\"iconmonstr-shopping-cart-6\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerCartMiniIconSize\":{\"first\":\"\",\"second\":\"\"},\"infoBlock2Style\":\"\",\"headerSearchPosition\":\"right\",\"miniSearchTriangleAlign\":\"\",\"mobileMenuOnWrapperStyle\":\"\",\"infoBlock1Style\":\"\",\"menu\":\"__VAR__Top Menu\",\"shadowHome\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerTopBarFullBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMainMenuItemCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"headerLogoBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCartMiniIconHover\":\"\",\"cartTextVisibility\":\"true\",\"headerMainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}}'),
(5,'header_mobile_1','Mobile 1','{\"general\":{\"headerMobileMenuRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"headerMobileCartRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"headerMobileCartStyle\":\"\",\"headerMobileCartTitleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobilePadding\":\"\",\"mobileMainMenuPosition\":\"group\",\"headerMobileMenuStyle\":\"__VAR__MOBILE\",\"headerMobileMenu2\":\"\",\"headerMobileSearchTriangleColor\":\"\",\"headerMobileMenu3\":\"\",\"mobileTopMenuItem\":\"__VAR__Top Menu\",\"headerMobileTopMenu\":\"13\",\"mobileCustomMenuLink1\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"mobileLanguageDropdownStyle\":\"\",\"mobileDropdownItem\":\"__VAR__CENTER\",\"countBadgeVisibility\":\"true\",\"headerMobileMenu4\":\"\",\"mobileCustomMenuIcon1\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"mobileCustomMenuLink2\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"headerMobileMenuIcon\":{\"size\":\"32\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e8d2\",\"name\":\"subject\"},\"type\":\"\",\"image\":\"\"},\"headerMobileMainMenu\":\"219\",\"countBadgeOffset\":{\"first\":\"-20\",\"second\":\"\"},\"headerMobileCartTitleIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileMenu5\":\"\",\"mobileCustomMenuIcon2\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobileCartIcon\":{\"size\":\"27\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobileCartTitleShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"searchStyle\":\"__VAR__DEFAULT\",\"headerMobileCartTitle\":{\"lang_1\":\"Your Cart\"},\"headerMobileSearchRadius\":{\"borderRadiusUnit\":\"px\"},\"headerMobileStickyStatus\":\"true\",\"headerMobileMenuTitle\":{\"lang_1\":\"Menu\"},\"name\":\"Mobile 1\",\"headerMobileTopPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerMobileMiniCartCountBadgeVisibility\":\"true\",\"headerMobileMenuWrapperStyle\":\"__VAR__DEFAULT\",\"headerMobileMenuIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileTopBarShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerMobileCartIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileLogoOffset\":{\"first\":\"\",\"second\":\"\"},\"headerMobileSearchTriangleMargin\":\"-10\",\"mobileCustomMenuStatus1\":{\"status\":\"false\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"headerMobileCartWrapperStyle\":\"__VAR__DEFAULT\",\"headerMobileCartTitleBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"mobileCustomMenuStatus2\":{\"status\":\"false\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"headerMobileCartIconActive\":\"\",\"headerMobileCartIconBGHover\":{\"background-color\":\"__VAR__COLOR_7\"},\"countBadge1Visibility\":\"true\",\"headerMobileShadow\":\"__VAR__MEDIUM\",\"headerMobileSearchWidth\":\"55\",\"countBadge2Visibility\":\"true\",\"headerMobileSearchIcon\":{\"size\":\"26\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebaf\",\"name\":\"search3\"},\"type\":\"\",\"image\":\"\"},\"countBadge1Offset\":{\"first\":\"\",\"second\":\"\"},\"headerMobileSearchTriangleStatus\":\"false\",\"countBadge2Offset\":{\"first\":\"\",\"second\":\"\"},\"mobileCustomMenuBackground1\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileDropdownStyle\":\"__VAR__DARK\",\"headerMobileSearchTriangleOffset\":{\"first\":\"-60\",\"second\":\"\"},\"headerMobileDropdown2\":\"\",\"headerMobileTopBarBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"mobileCustomMenuBackground2\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileDropdown3\":\"\",\"headerMobileCartIconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileTopBarHeight\":\"30\",\"headerMobileDropdown4\":\"\",\"headerMobileBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"mobileCustomMenuWidth\":\"\",\"countBadge\":\"\",\"headerMobileDropdown5\":\"\",\"headerMobileSearchIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileCartTitleBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerMobileHeight\":\"60\",\"headerMobileSearchShadow\":\"__VAR__MEDIUM\",\"headerMobileCartWidth\":\"55\",\"headerMobileLogoPadding\":{\"padding\":\"17\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"mobileLanguageStyle\":\"__VAR__DEFAULT\",\"headerMobileTopBarAlign\":\"apart\",\"headerMobileCartTitleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"headerMobileMenuWidth\":\"55\",\"headerMobileStickyShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"mobileLangPosition\":\"menu\",\"headerMobileTopBarBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileCartContentStyle\":\"\",\"headerMobileMiniCartCountBadge\":\"\",\"headerMobileSearchPadding\":\"8\",\"headerMobileBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerMobileSearchBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"countBadge1\":\"\",\"headerMobileSearchHeight\":\"55\",\"mobileCustomMenuWidth2\":\"\",\"mobileCurrencyStyle\":\"\",\"countBadge2\":\"\",\"headerMobileLogoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileTopBarVisibility\":\"false\"}}'),
(192,'blog_side_posts','Popular Articles','{\"general\":{\"carousel\":\"true\",\"default\":\"f11b7bee-5e03-43e4-9407-b11c3b2987c0\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"50\",\"height\":\"50\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"modulePostList\":\"\",\"name\":\"Popular Articles\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"-5\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__TOP_ARROWS\",\"modulePostGrid\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__SIMPLE\",\"sectionsDisplay\":\"tabs\",\"sidePostsStyle\":\"__VAR__DEFAULT\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"carouselGutter\":{\"padding\":\"-5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING_2\"},\"c1\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING_2\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"}}},\"items\":[{\"name\":\"Popular Articles\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Popular Articles\"},\"filter\":{\"preset\":\"most_commented\",\"categories\":[],\"posts\":[\"4\"],\"limit\":\"5\"},\"id\":\"f11b7bee-5e03-43e4-9407-b11c3b2987c0\"}]}'),
(197,'banners','Makeup Girl','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"bottom\",\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"310\",\"height\":\"370\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"titleDisplay\":\"hover\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"Makeup Girl\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"scaleHover\":\"false\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"hoverOverlay\":\"rgba(0, 138, 221, 0.52)\",\"imageBorderHover\":\"\",\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"titlePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}}},\"items\":[{\"name\":\"Banner\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/b.jpg\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"e77b9a2f-9833-4b04-bb1a-f18c8e01c03b\"}]}'),
(198,'form','Ask Question','{\"general\":{\"name\":\"Ask Question\",\"moduleTitle\":\"\",\"formStyle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"pageButtons\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"Ask a Question About This Product\"}},\"items\":[{\"name\":\"Name\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"Your Name\"},\"type\":\"name\",\"required\":\"true\",\"id\":\"248893d9-193a-443a-8b92-18fd5eaaca58\",\"items\":[]},{\"name\":\"Email\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"Your Email\"},\"type\":\"email\",\"required\":\"true\",\"id\":\"7fcd6cbf-4590-4599-82a8-6fb1c55bd207\",\"items\":[]},{\"name\":\"Topic\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"Topic\"},\"type\":\"select\",\"required\":\"true\",\"id\":\"6fa62efd-29dd-48b0-9bc8-5cfa72fe7125\",\"items\":[{\"name\":\"Option 1\",\"label\":{\"lang_1\":\"How does it fit?\"},\"id\":\"d94d7e49-234c-4946-b73c-cfbfd94e8bf3\"},{\"name\":\"Option 2\",\"label\":{\"lang_1\":\"How do you wash it?\"},\"id\":\"5313ab46-620e-4540-ad56-ba1e6c2d69f2\"},{\"id\":\"02409987-679c-4afc-8821-7f6161599a66\",\"label\":{\"lang_1\":\"Customize this form with any fields...\"},\"name\":\"Option 3\"},{\"name\":\"Option 4\",\"label\":{\"lang_1\":\"Product name is included in the email\"},\"id\":\"fddafa1b-2919-4956-b273-e2de05474c1c\"}]},{\"name\":\"Message\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"Message\"},\"type\":\"textarea\",\"required\":\"false\",\"id\":\"fef4f2d4-279b-43d9-83cb-c43d9e000b93\",\"items\":[]}]}'),
(109,'banners','Popup Banner','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"bottom\",\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"325\",\"height\":\"325\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"titleDisplay\":\"hover\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(52, 59, 151, 0.3)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"Popup Banner\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"scaleHover\":\"false\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"hoverOverlay\":\"rgba(0, 138, 221, 0.44)\",\"imageBorderHover\":\"\",\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hoverIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"titlePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}}},\"items\":[{\"name\":\"Banner\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/17.jpg\"},\"link\":{\"type\":\"category\",\"id\":\"59\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"c95f807f-848f-405f-931c-1ba5a72d297b\"}]}'),
(155,'title','Gallery Title','{\"general\":{\"dividerHeight\":\"5\",\"containerDisplay\":\"\",\"containerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"align\":\"center\",\"dividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"dividerMargin\":{\"margin\":\"15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"subtitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"titleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"subtitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"name\":\"Gallery Title\",\"containerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dividerWidth\":\"100\",\"Background\":{\"background-color\":\"__VAR__COLOR_14\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"containerPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"30\",\"padding-left\":\"\"},\"containerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"style\":\"__VAR__MODULE TITLE\",\"titleContainerFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"}}],\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"subtitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"subtitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"titleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitle\":{\"lang_1\":\"Improved Gallery module with built-in video and Instagram support. It can also be used as banners. Each item can open the image or video in the popup gallery or point to any other link, or open separate Popup modules.\"},\"titleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"30\"},\"title\":{\"lang_1\":\"Gallery Module\"},\"subtitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"subtitleContainerDisplay\":\"\",\"titleStyle\":\"\",\"divider\":\"true\",\"titleContainerDisplay\":\"\",\"type\":\"custom\",\"containerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}}'),
(10,'header_desktop_slim','Slim','{\"general\":{\"currencyStyle\":\"__VAR__DEFAULT\",\"headerMainMenuAlign\":\"start\",\"cartCheckoutLink\":\"false\",\"CartCheckoutLink\":\"true\",\"headerMainMenuFullBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"infoBlocksModule\":\"\",\"secondaryMenuMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"dropdown2\":\"__VAR__CENTER\",\"headerSiteOverlayBG\":\"\",\"headerSearchMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"10\",\"margin-bottom\":\"\",\"margin-left\":\"15\"},\"headerMainMenuBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"searchButtonPosition\":\"right\",\"headerLangPosition\":\"right\",\"headerMiniSearchBorderHover\":\"\",\"headerMainMenu\":\"239\",\"headerMiniSearchIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f002\",\"name\":\"search\"},\"type\":\"\",\"image\":\"\"},\"headerTopBarFullBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"cartWidth\":\"\",\"languageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"headerMiniSearchIconSize\":\"\",\"headerMenuItemAlign\":\"center\",\"headerTopMenu\":\"2\",\"stickyPadding\":\"\",\"infoBlock4CountBadgeStyle\":\"\",\"headerMainMenuDividerHover\":\"\",\"headerMainMenuFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"languageDropdownStyle\":\"__VAR__CENTER\",\"infoBlock3CountBadgeStyle\":\"\",\"cartPosition\":\"top\",\"searchStyle\":\"__VAR__ROUNDED\",\"headerMiniSearchBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"compactHeight\":\"\",\"infoBlock2CountBadgeStyle\":\"\",\"headerMainMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerTopMenu2\":\"240\",\"infoBlock1CountBadgeStyle\":\"\",\"headerMiniSearchDropdownBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"logo\":\"catalog\\/journal3\\/logo\\/logo-1x.png\",\"name\":\"Slim\",\"headerMiniSearchBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock1Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerShadowHome\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerMainMenuHeight\":\"40\",\"infoBlock2Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"infoBlock1Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"headerMainMenuItemCountBadge\":\"\",\"compactStickyShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerMiniSearchShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerMainMenuPadding\":\"\",\"headerLogoAlign\":\"flex-start\",\"headerMainMenu2\":\"\",\"headerMiniSearchSize\":{\"first\":\"\",\"second\":\"\"},\"headerShadow\":\"__VAR__MEDIUM\",\"infoBlock2Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"infoBlock3Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"infoBlock4IconHover\":\"\",\"stickyFullwidth\":\"true\",\"CartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"10\"},\"infoBlock3Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"infoBlock4Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMaxWidthHome\":\"\",\"headerLogoWidth\":\"200\",\"headerFullwidthBGHome\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMaxWidth\":\"\",\"infoBlock4Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"infoBlocksSpacing\":\"\",\"headerSiteOverlayOffset\":\"\",\"infoBlock4Text1\":{\"lang_1\":\"\"},\"headerFullwidthBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT-1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock3IconHover\":\"\",\"topBarStatus\":\"true\",\"topBarVisibility\":\"true\",\"stickyHeight\":\"40\",\"headerTopBarBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMiniSearchShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"infoBlock3Text1\":{\"lang_1\":\"\"},\"infoBlock2IconHover\":\"\",\"infoBlock4Text2\":{\"lang_1\":\"\"},\"menuDropdown\":\"__VAR__DEFAULT\",\"dropdown\":\"__VAR__CENTER\",\"headerSearchWidth\":\"\",\"headerMiniSearchBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerSearchInputWidth\":\"150\",\"infoBlock1IconHover\":\"\",\"infoBlock2Text1\":{\"lang_1\":\"\"},\"megaMenu\":\"__VAR__Flyout\",\"headerMainMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"logo2x\":\"catalog\\/journal3\\/logo\\/logo-2x.png\",\"infoBlock3Text2\":{\"lang_1\":\"\"},\"cartStyle\":\"__VAR__COMPACT_HEADER\",\"infoBlocksAlign\":\"end\",\"headerBGHome\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock1Text1\":{\"lang_1\":\"\"},\"headerMenuItemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerTopBarHeight\":\"32\",\"infoBlock2Text2\":{\"lang_1\":\"\"},\"headerMenuSlimPosition\":\"before\",\"secondaryMenuAlign\":\"right\",\"infoBlock1\":\"true\",\"headerBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock1Text2\":{\"lang_1\":\"\"},\"headerHeightHome\":\"\",\"headerMainMenuMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"menu2\":\"__VAR__Icon on Top\",\"headerSearchBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerMainMenuBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock2\":\"true\",\"headerMiniSearchDropdownPadding\":\"\",\"headerHeight\":\"\",\"headerMainMenuFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"headerMainMenuDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"CartLabel\":{\"lang_1\":\"\"},\"infoBlock3\":\"true\",\"miniSearchTriangleMargin\":\"-10\",\"infoBlock4\":\"true\",\"headerFullwidthBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"stickyHeaderShadow\":\"__VAR__MEDIUM\",\"headerMenuLayout\":\"default\",\"langPosition\":\"top\",\"headerMiniSearchIconHover\":\"\",\"infoBlock1CountBadgeVisibility\":\"true\",\"headerMiniSearchBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mainMenu\":\"__VAR__Main Menu\",\"cartContentStyle\":\"__VAR__CART_CONTENT\",\"headerMainMenuBGFull\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"languageStyle\":\"__VAR__DEFAULT\",\"infoBlock2CountBadgeVisibility\":\"true\",\"miniSearchTriangleStatus\":\"true\",\"headerLogoPadding\":{\"padding\":\"15\"},\"headerMainMenuItemPadding\":\"15\",\"headerMiniSearchMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"mainMenu2\":\"\",\"compactStickyBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerTopBarFullShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"stickyFullwidthBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"stickyFullHomePadding\":\"false\",\"miniSearchTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"infoBlock3CountBadgeVisibility\":\"true\",\"searchOffset\":{\"first\":\"\",\"second\":\"\"},\"stickyHeaderBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT-1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"infoBlock4CountBadgeVisibility\":\"true\",\"headerMainMenuFullHeight\":\"true\",\"stickyStatus\":\"true\",\"headerSearchHeight\":\"35\",\"menuLabelStyle\":\"\",\"headerSiteOverlay\":\"false\",\"infoBlock4Style\":\"\",\"headerCompactHeightHome\":\"\",\"secondaryMenuPosition\":\"cart\",\"miniSearchTriangleColor\":\"\",\"headerSearchPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"headerLogoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerCompactHeight\":\"60\",\"infoBlocksStyle\":\"\",\"infoBlock3Style\":\"\",\"headerMiniSearchDropdownShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"infoBlock2Style\":\"\",\"headerSearchPosition\":\"right\",\"infoBlock1Style\":\"\",\"menu\":\"__VAR__Top Menu\",\"headerTopBarFullBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMainMenuItemCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"headerLogoBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}}'),
(13,'top_menu','Top Menu - Mobile','{\"general\":{\"name\":\"Top Menu - Mobile\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"scheduledStatus\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"}},\"items\":[{\"items\":[],\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Login\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"guests\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Login\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ead9\",\"name\":\"iconmonstr-user-19\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"login_popup\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/login\"},\"id\":\"0798baca-7d75-46fe-b819-8681ce378e22\"},{\"items\":[],\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Register\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"guests\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Register\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e90d\",\"name\":\"iconmonstr-edit-11\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"register_popup\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/register\"},\"id\":\"2812adc4-e067-4fd7-861d-31fb1b1a7e58\"},{\"items\":[],\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"My Account\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"customers\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Account\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ead9\",\"name\":\"iconmonstr-user-19\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/account\"},\"id\":\"476ba48b-386e-4402-8b86-4113d855b741\"},{\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Logout\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"customers\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Logout\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"ionicons_svg_md-log-out\",\"code\":\"e996\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/logout\"},\"id\":\"36435176-eac6-4af1-bb5f-897ab93e9ce8\"}]}'),
(14,'top_menu','Top Menu 2','{\"general\":{\"name\":\"Top Menu 2\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"scheduledStatus\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"}},\"items\":[{\"items\":[],\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Login - Guest\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"guests\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Login\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"login_popup\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/login\"},\"id\":\"05ac9615-d660-4800-b4ce-83e6828e8075\"},{\"items\":[],\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Register - Guest\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"guests\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Register\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"register_popup\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/register\"},\"id\":\"f21ceca7-993b-4555-8e19-364a6960fdea\"},{\"items\":[{\"name\":\"Edit\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"customers\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Edit Account\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/account\"},\"icon\":{\"type\":\"\",\"icon\":{\"name\":\"iconmonstr-edit-11\",\"code\":\"e90d\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"margin\":{\"margin-right\":\"7\"}},\"iconHover\":\"\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"id\":\"6420d171-9059-49d3-8f99-f753ab24ff2a\"},{\"name\":\"My Orders\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"customers\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"My Orders\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/order\"},\"icon\":{\"type\":\"\",\"icon\":{\"name\":\"iconmonstr-task-1\",\"code\":\"ead5\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"margin\":{\"margin-right\":\"7\"}},\"iconHover\":\"\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"id\":\"cc927316-4c82-4b71-baf4-d5e307cf0cee\"}],\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Account - Customer\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"customers\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Account\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/account\"},\"id\":\"0116381e-c4bf-4e63-8088-8459798fd4de\"},{\"items\":[],\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Logout - Customer\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"customers\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Logout\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/logout\"},\"id\":\"4fcad910-69bb-4a29-9d6b-0b5ac5dd11bd\"},{\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Wishlist\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Wishlist\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/wishlist\"},\"id\":\"0798baca-7d75-46fe-b819-8681ce378e22\"},{\"iconHover\":\"\",\"iconOnly\":\"false\",\"name\":\"Compare\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Compare\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/compare\"},\"id\":\"dd5e4c55-05c0-42a1-849e-eb7d16f38df5\"}]}'),
(18,'header_mobile_2','Mobile 2','{\"general\":{\"headerMobileMenuRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerMobileCartRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerMobileCartTitleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobilePadding\":\"\",\"headerMobileMenuStyle\":\"__VAR__MOBILE\",\"headerMobileMenu2\":\"\",\"headerMobileSearchTriangleColor\":\"\",\"headerMobileMenu3\":\"\",\"mobileTopMenuItem\":\"\",\"headerMobileTopMenu\":\"13\",\"mobileLanguageDropdownStyle\":\"\",\"mobileDropdownItem\":\"\",\"headerMobileMenu4\":\"\",\"headerMobileMenuIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0c9\",\"name\":\"bars\"},\"type\":\"\",\"image\":\"\"},\"headerMobileMainMenu\":\"\",\"headerMobileCartTitleIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileMenu5\":\"\",\"headerMobileCartIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobileCartTitleShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"searchStyle\":\"__VAR__DEFAULT\",\"headerMobileCartTitle\":{\"lang_1\":\"Your Cart\"},\"headerMobileStickyStatus\":\"true\",\"headerMobileMenuTitle\":{\"lang_1\":\"Menu\"},\"name\":\"Mobile 2\",\"headerMobileMenuWrapperStyle\":\"__VAR__DEFAULT\",\"headerMobileMenuIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileTopBarShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerMobileCartIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileLogoOffset\":{\"first\":\"\",\"second\":\"\"},\"headerMobileSearchTriangleMargin\":\"-10\",\"headerMobileCartWrapperStyle\":\"\",\"headerMobileCartTitleBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileCartIconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobileShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerMobileSearchWidth\":\"50\",\"headerMobileSearchIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobileSearchTriangleStatus\":\"true\",\"headerMobileDropdownStyle\":\"\",\"headerMobileSearchTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"headerMobileDropdown2\":\"\",\"headerMobileTopBarBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileDropdown3\":\"\",\"headerMobileCartIconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileTopBarHeight\":\"35\",\"headerMobileDropdown4\":\"\",\"headerMobileBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileDropdown5\":\"\",\"headerMobileSearchIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileCartTitleBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerMobileHeight\":\"\",\"headerMobileSearchShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"headerMobileCartWidth\":\"50\",\"headerMobileLogoPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"mobileLanguageStyle\":\"\",\"headerMobileCartTitleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"headerMobileMenuWidth\":\"50\",\"headerMobileStickyShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"mobileCartContentStyle\":\"\",\"headerMobileSearchPadding\":\"5\",\"headerMobileSearchBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileSearchHeight\":\"35\",\"mobileCurrencyStyle\":\"\",\"headerMobileLogoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}}'),
(78,'links_menu','Footer - Payments','{\"general\":{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"titleDivider\":\"\",\"itemFull\":\"auto\",\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__COLOR_3\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksPlusMobileClose\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"linksColumns\":\"\",\"layout_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"center\"}],\"align\":\"\",\"itemDivider\":{\"width\":\"\",\"style\":\"\",\"color\":{\"color\":\"\"}},\"countBadgeVisibility\":\"\",\"linksColumnDividerStyle\":\"\",\"countBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksColumnGap\":\"\",\"layout\":\"end\",\"Layout\":\"default\",\"name\":\"Footer - Payments\",\"itemIcon\":{\"size\":\"30\",\"color\":{\"color\":\"__VAR__ACCENT_2\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"moduleTitle\":\"\",\"Scroll\":\"false\",\"titleAlign\":\"\",\"Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemIconHover\":\"\",\"Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"ScrollTouch\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"itemWidth\":\"\",\"countBadge\":\"\",\"itemDividerHover\":\"\",\"ScrollColor\":\"\",\"linksPlusMobileCloseOffset\":{\"first\":\"\",\"second\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"TrackColor\":\"\",\"title\":{\"lang_1\":\"\"},\"linksPlusButtonMobileStatus\":\"false\",\"linksColumnDividerColor\":{\"color\":\"\"},\"linksMenuStyle\":\"\",\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"linksColumnDividerWidth\":\"\",\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"7\",\"padding-bottom\":\"\",\"padding-left\":\"7\"},\"Direction\":\"horizontal\",\"linksPlusMobileOpen\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},\"items\":[{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Visa\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f0\",\"name\":\"cc-visa\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"b11e2494-64bd-4696-ad4b-4fcc3e8b4112\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Master\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f1\",\"name\":\"cc-mastercard\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"6f817799-bac5-478b-a557-b05e92135932\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Paypal\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f4\",\"name\":\"cc-paypal\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"cf779819-94ac-46ec-b848-7a3f93937886\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Amex\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f3\",\"name\":\"cc-amex\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"8f93d5e9-2988-417b-a0a9-6888829f0b9d\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Discover\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f2\",\"name\":\"cc-discover\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"fef9215b-3c43-4e46-af87-88f08ab1f539\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}}]}'),
(16,'header_mobile_3','Mobile 3','{\"general\":{\"headerMobileMenuRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerMobileCartRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"headerMobileCartTitleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobilePadding\":\"\",\"headerMobileMenuStyle\":\"__VAR__MOBILE\",\"headerMobileMenu2\":\"\",\"headerMobileSearchTriangleColor\":\"\",\"headerMobileMenu3\":\"\",\"mobileTopMenuItem\":\"__VAR__TOP_MENU\",\"headerMobileTopMenu\":\"13\",\"mobileLanguageDropdownStyle\":\"\",\"mobileDropdownItem\":\"__VAR__DARK\",\"headerMobileMenu4\":\"\",\"headerMobileMenuIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0c9\",\"name\":\"bars\"},\"type\":\"\",\"image\":\"\"},\"headerMobileMainMenu\":\"\",\"headerMobileCartTitleIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileMenu5\":\"\",\"headerMobileCartIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobileCartTitleShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"searchStyle\":\"__VAR__DEFAULT\",\"headerMobileCartTitle\":{\"lang_1\":\"Your Cart\"},\"headerMobileStickyStatus\":\"true\",\"headerMobileMenuTitle\":{\"lang_1\":\"Menu\"},\"name\":\"Mobile 3\",\"headerMobileMiniCartCountBadgeVisibility\":\"true\",\"headerMobileMenuWrapperStyle\":\"__VAR__DEFAULT\",\"headerMobileMenuIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileTopBarShadow\":\"\",\"headerMobileCartIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileLogoOffset\":{\"first\":\"\",\"second\":\"\"},\"headerMobileSearchTriangleMargin\":\"-10\",\"headerMobileCartWrapperStyle\":\"\",\"headerMobileCartTitleBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileCartIconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobileShadow\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"headerMobileSearchWidth\":\"50\",\"headerMobileSearchIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"headerMobileSearchTriangleStatus\":\"true\",\"headerMobileDropdownStyle\":\"\",\"headerMobileSearchTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"headerMobileDropdown2\":\"\",\"headerMobileTopBarBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileDropdown3\":\"\",\"headerMobileCartIconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileTopBarHeight\":\"30\",\"headerMobileDropdown4\":\"\",\"headerMobileBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileDropdown5\":\"\",\"headerMobileSearchIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileCartTitleBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerMobileHeight\":\"50\",\"headerMobileSearchShadow\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"headerMobileCartWidth\":\"35\",\"headerMobileLogoPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"mobileLanguageStyle\":\"\",\"headerMobileCartTitleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"headerMobileMenuWidth\":\"35\",\"headerMobileStickyShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"mobileCartContentStyle\":\"\",\"headerMobileMiniCartCountBadge\":\"\",\"headerMobileSearchPadding\":\"5\",\"headerMobileSearchBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileSearchHeight\":\"35\",\"mobileCurrencyStyle\":\"\",\"headerMobileLogoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}}'),
(17,'header_mobile_4','Mobile 4','{\"general\":{\"headerMobileCartTitleIcon\":{\"type\":\"\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerMobilePadding\":\"\",\"headerMobileTopMenu\":\"13\",\"mobileLanguageDropdownStyle\":\"\",\"mobileDropdownItem\":\"\",\"headerMobileMenuIcon\":{\"type\":\"\",\"icon\":{\"code\":\"f0c9\",\"name\":\"bars\"},\"image\":\"\",\"color\":\"\",\"size\":\"28\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerMobileMainMenu\":\"3\",\"headerMobileCartTitleIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileCartIcon\":{\"type\":\"\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"image\":\"\",\"color\":\"__VAR__COLOR_2\",\"size\":\"30\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerMobileCartTitleShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"searchStyle\":\"__VAR__ROUNDED\",\"headerMobileCartTitle\":{\"lang_1\":\"Your Cart\"},\"headerMobileStickyStatus\":\"true\",\"headerMobileMenuTitle\":{\"lang_1\":\"Menu\"},\"name\":\"Mobile 4\",\"headerMobileMiniCartCountBadgeVisibility\":\"true\",\"headerMobileMenuWrapperStyle\":\"\",\"headerMobileMenuIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileTopBarShadow\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\"},\"headerMobileCartIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileLogoOffset\":{\"first\":\"\",\"second\":\"\"},\"headerMobileCartWrapperStyle\":\"\",\"headerMobileCartTitleBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"headerMobileSearchWidth\":\"50\",\"headerMobileSearchIcon\":{\"type\":\"\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"},\"headerMobileDropdownStyle\":\"\",\"headerMobileDropdown2\":\"\",\"headerMobileTopBarBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileDropdown3\":\"\",\"headerMobileTopBarHeight\":\"35\",\"headerMobileDropdown4\":\"\",\"headerMobileBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileDropdown5\":\"\",\"headerMobileSearchIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"headerMobileCartTitleBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"headerMobileHeight\":\"80\",\"headerMobileSearchShadow\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\"},\"headerMobileCartWidth\":\"50\",\"headerMobileLogoPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"mobileLanguageStyle\":\"\",\"headerMobileCartTitleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"headerMobileMenuWidth\":\"50\",\"mobileCartContentStyle\":\"\",\"headerMobileMiniCartCountBadge\":\"\",\"headerMobileSearchPadding\":\"5\",\"headerMobileSearchBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"color\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"spread\":\"\",\"inner\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"mobileCurrencyStyle\":\"\",\"headerMobileLogoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}}'),
(19,'accordion_menu','Category Menu','{\"general\":{\"iconHover\":\"\",\"subIconHover\":\"\",\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"name\":\"Category Menu\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"moduleTitle\":\"\",\"iconWidth\":\"\",\"subIconWidth\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"desktop\",\"phone\",\"tablet\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"menu2\":\"\",\"menu3\":\"\",\"menu4\":\"\",\"menu5\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"All Categories\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"subIcon\":{\"size\":\"12\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e93f\",\"name\":\"arrow2\"},\"type\":\"\",\"image\":\"\"},\"iconSize\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"menu\":\"__VAR__DEFAULT\"},\"items\":[{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"name\":\"Fashion\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Fashion\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e921\",\"name\":\"noun_fashion_1066446_000000\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"59\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"7e8e25ee-4965-4cc4-8c82-04c5859bfddb\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subcategories\":\"true\"},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"name\":\"Bags\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Bags\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e909\",\"name\":\"noun_bag_1896247\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"107\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"6efe53a2-fecc-4afc-b521-4ce3567f17d8\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subcategories\":\"true\"},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"name\":\"Health & Beauty\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Health & Beauty\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"2\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e971\",\"name\":\"noun_971876_cc-beauty-makeup\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"109\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"bb5073c4-c0ec-4393-8c1a-67883e8b32f5\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subcategories\":\"true\"},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"name\":\"Footwear\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Footwear\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e965\",\"name\":\"noun_Sneaker_235904\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"111\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"08947bfa-70fb-4ecc-8130-94381dd3ca56\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subcategories\":\"true\"},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"name\":\"Home\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Home\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e966\",\"name\":\"noun_889859_cc-furniture\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"175\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"ab09d759-fbd4-4445-a24f-8232853c135e\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subcategories\":\"true\"},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"name\":\"Electronics\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Electronics\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eaf3\",\"name\":\"important_devices\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"69\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"6491f4e1-965e-455e-9c59-98818e56d95c\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subcategories\":\"true\"},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"name\":\"Baby & Kids\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Baby & Kids\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eabb\",\"name\":\"iconmonstr-generation-1\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"166\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"7b9ccbf9-4708-45c7-9ee0-89d0ddb8b092\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subcategories\":\"true\"},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"name\":\"Appliances\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Appliances\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e96d\",\"name\":\"noun_appliance_1830792\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"205\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"cf3a2f43-19da-4baf-872f-1f50a07bc8c2\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subcategories\":\"true\"}]}'),
(20,'form','Contact Form','{\"general\":{\"name\":\"Contact Form\",\"moduleTitle\":\"\",\"formStyle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"25\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"pageButtons\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"Leave Us a Message\"}},\"items\":[{\"name\":\"Name\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"Your Name\"},\"type\":\"name\",\"required\":\"true\",\"id\":\"248893d9-193a-443a-8b92-18fd5eaaca58\",\"items\":[]},{\"name\":\"Email\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"Your Email\"},\"type\":\"email\",\"required\":\"true\",\"id\":\"7fcd6cbf-4590-4599-82a8-6fb1c55bd207\",\"items\":[]},{\"name\":\"Topic\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"Topic\"},\"type\":\"select\",\"required\":\"false\",\"id\":\"6fa62efd-29dd-48b0-9bc8-5cfa72fe7125\",\"items\":[{\"name\":\"Option 1\",\"label\":{\"lang_1\":\"Capture the information you need\"},\"id\":\"5313ab46-620e-4540-ad56-ba1e6c2d69f2\"},{\"name\":\"Option 2\",\"label\":{\"lang_1\":\"Add or remove any fields\"},\"id\":\"d94d7e49-234c-4946-b73c-cfbfd94e8bf3\"},{\"id\":\"02409987-679c-4afc-8821-7f6161599a66\",\"label\":{\"lang_1\":\"Your own custom criteria\"},\"name\":\"Option 3\"},{\"id\":\"ac375534-e110-45ec-b85d-567accd24129\",\"label\":{\"lang_1\":\"Make any field required or not\"},\"name\":\"Option 4\"}]},{\"name\":\"Textarea\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"Message\"},\"type\":\"textarea\",\"required\":\"true\",\"id\":\"fef4f2d4-279b-43d9-83cb-c43d9e000b93\",\"items\":[]}]}'),
(194,'info_blocks','Contact Page Blocks','{\"general\":{\"name\":\"Contact Page Blocks\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"style\":\"__VAR__DEFAULT\",\"status\":{\"status\":\"true\",\"device\":[\"tablet\",\"desktop\",\"phone\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"gutter_multi\":[],\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"gutter\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"2\",\"spacing\":\"\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"2\",\"spacing\":\"\"}}],\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"2\",\"spacing\":\"\"}}],\"c2_multi\":[],\"sc_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"1\",\"spacing\":\"\"}}]},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}},\"items\":[{\"iconHover\":\"\",\"name\":\"Address\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"Border\":{\"border-left-width\":\"1\",\"border-color\":\"__VAR__COLOR_15\",\"border-style\":\"solid\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[],\"title\":{\"lang_1\":\"Store Address\"},\"content\":{\"lang_1\":\"123 Main St, <br \\/> London, UK\"},\"icon\":{\"size\":\"30\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb7b\",\"name\":\"map-pin2\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"128\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"common\\/home\"},\"id\":\"3bc4546f-4173-44fd-88ed-7ac31eed02c3\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}},{\"iconHover\":\"\",\"name\":\"Call Us\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[],\"title\":{\"lang_1\":\"Call Us\"},\"content\":{\"lang_1\":\"Tel: 1.800.555.9090<br \\/>[~nl~]Fax: 1.800.555.9090\"},\"icon\":{\"size\":\"30\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eaad\",\"name\":\"iconmonstr-smartphone-3\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"tel:18005559090\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"3e95ed79-9490-4a17-a235-1d906268adda\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}},{\"iconHover\":\"\",\"name\":\"Hours\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[],\"title\":{\"lang_1\":\"Store Hours\"},\"content\":{\"lang_1\":\"Mon-Fri: 10:00 - 20:00<br \\/>[~nl~]Weekend: 12:00 - 16:00\"},\"icon\":{\"size\":\"30\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e943\",\"name\":\"iconmonstr-time-8\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/special\"},\"id\":\"788f964b-cbef-4e1a-97c7-fff0bce2f52f\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}},{\"iconHover\":\"\",\"name\":\"Custom\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[],\"title\":{\"lang_1\":\"Custom Blocks\"},\"content\":{\"lang_1\":\"Create unlimited blocks with custom styles and add them on any page.\"},\"icon\":{\"size\":\"30\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e922\",\"name\":\"iconmonstr-delivery-8-support\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"22\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"a9fe4110-f774-4b7b-96ef-8a77c18287ea\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}}]}'),
(21,'footer_menu','Footer','{\"general\":{\"name\":\"Footer\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"rows\":[{\"id\":\"80c0b62f-e36c-4fe5-bc46-06aa8f7eac23\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"overlayRotate\":\"\",\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_15\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"40\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"574301f3-2155-47fe-8c55-e834e83afd30\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"align\":\"top\",\"margin\":\"\",\"name\":{\"lang_1\":\"New Column\"}},\"items\":[{\"id\":\"f6461049-b0fd-4e1f-97ef-0caa0d4387ca\",\"item\":{\"id\":\"39\",\"name\":\"Footer Products\",\"type\":\"side_products\"}}]}]},{\"id\":\"69c9487b-a60a-4cc7-a351-9c202309671a\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"overlayRotate\":\"\",\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"overlayAlign\":\"right\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"cf75ef91-2307-4406-88e7-e8b1d10ebfef\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"50\"},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"100\"}],\"align\":\"middle\",\"width\":\"25\",\"border_multi\":[],\"name\":{\"lang_1\":\"New Column\"},\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding-left\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"0\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"40\",\"padding-right\":\"20\",\"padding-bottom\":\"20\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"c5dee172-3079-4a84-a777-fdf74a85e8b9\",\"item\":{\"id\":\"257\",\"name\":\"Footer Logo Block\",\"type\":\"blocks\"}},{\"id\":\"2ef5e545-5d73-4279-b61a-d668d51b22f6\",\"item\":{\"id\":\"61\",\"name\":\"Social Icons\",\"type\":\"icons_menu\"}}]},{\"id\":\"e1222450-64bb-43a6-b5df-90143606a57d\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"50\"},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"100\"}],\"align\":\"top\",\"width\":\"25\",\"border_multi\":[],\"name\":{\"lang_1\":\"New Column\"},\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"30\",\"padding-top\":\"20\",\"padding-right\":\"\",\"padding-bottom\":\"0\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"30\",\"padding-top\":\"\",\"padding-right\":\"0\",\"padding-bottom\":\"\",\"padding-left\":\"40\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"c5dee172-3079-4a84-a777-fdf74a85e8b9\",\"item\":{\"id\":\"75\",\"name\":\"Customer Service\",\"type\":\"links_menu\"}}]},{\"id\":\"daccc1ed-5a2c-4893-bc42-643cae60064f\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"50\"},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"100\"}],\"align\":\"top\",\"width\":\"20\",\"border_multi\":[],\"name\":{\"lang_1\":\"New Column\"},\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"30\",\"padding-top\":\"20\",\"padding-right\":\"\",\"padding-bottom\":\"0\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"30\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"0\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"c5dee172-3079-4a84-a777-fdf74a85e8b9\",\"item\":{\"id\":\"76\",\"name\":\"My Account\",\"type\":\"links_menu\"}}]},{\"id\":\"1c807016-5216-4746-979a-a3b20df68a52\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"50\"},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"100\"}],\"align\":\"top\",\"width\":\"30\",\"border_multi\":[],\"name\":{\"lang_1\":\"New Column\"},\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"30\",\"padding-left\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-top\":\"20\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"background-size\":\"cover\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"30\",\"padding-top\":\"\",\"padding-right\":\"0\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"c5dee172-3079-4a84-a777-fdf74a85e8b9\",\"item\":{\"id\":\"67\",\"name\":\"New Newsletter \",\"type\":\"newsletter\"}}]}]},{\"id\":\"54efd7b7-bf53-4e11-b93c-302466157b03\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_15\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"overlay\":\"\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"overlayAlign\":\"center\",\"fullwidth\":\"false\",\"overlayHeight\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"f3844a78-c01d-4255-a3ff-62be7d89eb50\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"100\"}],\"align\":\"middle\",\"width\":\"33.33333333333333\",\"name\":{\"lang_1\":\"New Column\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"1a50d2f1-24fe-4ffb-b1dc-70e290cc1685\",\"item\":{\"id\":\"77\",\"name\":\"Copyright\",\"type\":\"links_menu\"}}]},{\"id\":\"41243a85-b601-4bc7-9a46-8b0f4381487d\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"100\"}],\"align\":\"middle\",\"width\":\"66.66666666666666\",\"name\":{\"lang_1\":\"New Column\"},\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"padding\":\"\",\"padding-left\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-top\":\"10\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"}},\"items\":[{\"id\":\"1a50d2f1-24fe-4ffb-b1dc-70e290cc1685\",\"item\":{\"id\":\"228\",\"name\":\"Payments\",\"type\":\"icons_menu\"}}]}]}]}'),
(257,'blocks','Logo Block Footer','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"before\",\"display\":\"grid\",\"typographyStyle\":\"\",\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imagePosition\":\"top\",\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"itemTitle\":\"\",\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"200\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"contentAlignV\":\"\",\"name\":\"Logo Block Footer\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"contentAlign\":\"\",\"moduleTitle\":\"\",\"itemsContentWidth\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"\",\"blocksTitleAlign\":\"\",\"imageBorderHover\":\"\",\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"moduleBackground_removed\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"0\"},\"c1\":{\"items\":\"1\",\"spacing\":\"0\"},\"c2\":{\"items\":\"1\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"}},\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemContentWidth\":\"\",\"expandHeight\":\"70\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"blocksColumnDividerColor\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT-1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"blocksColumnDividerWidth\":\"1\",\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"scale\":\"100\",\"imageAlign\":\"center\",\"name\":\"New Block\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"center\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"image\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"scaleOrigin\":\"center\",\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"blocksColumnDividerStyle\":\"solid\",\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"blocksColumns\":\"initial\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"content\":{\"lang_1\":\"<p><b>123 Main St. London, UK<\\/b><\\/p><p><\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"blocksColumnGap\":\"20\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"01a1921a-5560-4bca-b09c-d2468f94e3b1\",\"image\":\"catalog\\/journal3\\/logo\\/10-2x.png\",\"footer\":\"none\",\"shortDescriptionLimit\":\"150\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"dynamic\":\"journal3\\/blocks_example\",\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(22,'popup','Form Popup','{\"general\":{\"footerBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"button2\":\"false\",\"display\":\"page\",\"icon2Right\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"icon1Right\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"cookie\":\"82a79a80\",\"doNotShowAgainPosition\":\"center\",\"popupStyle\":\"\",\"popupPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"doNotShowAgainText\":{\"lang_1\":\"Don\'t show again.\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"doNotShowAgainBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"showOnlyOnce\":\"false\",\"closeButton\":\"true\",\"doNotShowAgainFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"name\":\"Form Popup\",\"headerTitle\":\"\",\"button1Text\":{\"lang_1\":\"Button 1\"},\"button2Text\":{\"lang_1\":\"Button 2\"},\"text\":{\"lang_1\":\"\"},\"popupHeight_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"500\"}],\"typography\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"popupHeight\":\"385\",\"contentType\":\"grid\",\"footerPadding\":{\"padding\":\"3\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"doNotShowAgainPadding\":{\"padding\":\"3\",\"padding-top\":\"\",\"padding-right\":\"5\",\"padding-bottom\":\"\",\"padding-left\":\"5\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"icon1\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"icon2\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"button1Link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"true\",\"rel\":\"\",\"page\":\"product\\/compare\"},\"popupWidth\":\"500\",\"headerText\":{\"lang_1\":\"\"},\"button2Link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"doNotShowAgain\":\"true\",\"image\":{\"lang_1\":\"\"},\"footer\":\"false\",\"btn2Style\":\"\",\"footerShadow\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"15\",\"spread\":\"-2\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"false\",\"none\":\"false\"},\"btn1Style\":\"\",\"doNotShowAgainPosition_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"center\"}],\"button1\":\"false\"},\"rows\":[{\"id\":\"1d9cdb6e-a7be-46e2-84ee-a5a575ed272a\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},\"columns\":[{\"id\":\"d364be7a-b044-4125-b693-e5a3d1a45e7e\",\"options\":{\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"width\":\"100\",\"name\":{\"lang_1\":\"New Column\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"align\":\"top\"},\"items\":[{\"id\":\"d6045383-d66d-4ed2-8027-f894fb2b7b63\",\"item\":{\"id\":\"198\",\"name\":\"Contact Form Copy\",\"type\":\"form\"}}]}]}]}'),
(98,'banners','Fashion Banner','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"bottom\",\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"center\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"220\",\"height\":\"320\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"titleDisplay\":\"hover\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(10, 55, 143, 0.3)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"Fashion Banner\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleWidth\":\"full\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"scaleHover\":\"false\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"hoverOverlay\":\"rgba(0, 138, 221, 0.52)\",\"imageBorderHover\":\"\",\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e954\",\"name\":\"iconmonstr-arrow-762\"},\"type\":\"\",\"image\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"titlePadding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}}},\"items\":[{\"name\":\"Banner\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/17-tall.jpg\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"e77b9a2f-9833-4b04-bb1a-f18c8e01c03b\"}]}'),
(111,'blocks','Popup Text','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"display\":\"grid\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemTitle\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"Popup Text\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"0\"},\"c1\":{\"items\":\"1\",\"spacing\":\"0\"},\"c2\":{\"items\":\"1\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"New Block\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"20\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"\"},\"content\":{\"lang_1\":\"<h4>Super Advanced Popups<\\/h4><p>The Popup module supports the <b>page builder<\\/b> so you can create any module combination: newsletters, contact forms, products, categories, banners, etc.<\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"5b3a2625-3cec-40c9-8665-7c03c3c9f787\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(72,'links_menu','Footer - About Us','{\"general\":{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"titleDivider\":\"\",\"itemFull\":\"auto\",\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksPlusMobileClose\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"linksColumns\":\"\",\"align\":\"\",\"itemDivider\":{\"width\":\"\",\"style\":\"\",\"color\":{\"color\":\"\"}},\"countBadgeVisibility\":\"\",\"linksColumnDividerStyle\":\"\",\"countBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksColumnGap\":\"\",\"layout\":\"start\",\"Layout\":\"default\",\"name\":\"Footer - About Us\",\"itemIcon\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"moduleTitle\":\"\",\"Scroll\":\"false\",\"titleAlign\":\"\",\"Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemIconHover\":{\"color\":\"\"},\"Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"ScrollTouch\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"itemWidth\":\"\",\"countBadge\":\"\",\"itemDividerHover\":\"\",\"ScrollColor\":\"\",\"linksPlusMobileCloseOffset\":{\"first\":\"\",\"second\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"TrackColor\":\"\",\"title\":{\"lang_1\":\"About Us\"},\"linksPlusButtonMobileStatus\":\"false\",\"linksColumnDividerColor\":{\"color\":\"\"},\"linksMenuStyle\":\"__VAR__LINKS_MENU_RCXW4I\",\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"linksColumnDividerWidth\":\"\",\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"Direction\":\"vertical\",\"linksPlusMobileOpen\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},\"items\":[{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"About Us\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"About Us\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"information\",\"id\":\"4\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"89b8566e-175e-4dc4-bd42-9b3fafdaf4fa\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Delivery\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Delivery\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"information\",\"id\":\"6\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"e542c82f-380f-48dc-a3a1-5659a96fb7aa\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Privacy\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Privacy Policy\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"information\",\"id\":\"3\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"018d6216-0dbf-45a6-856b-78ed0d739cf1\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Terms\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Terms & Conditions\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"information\",\"id\":\"5\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"79106498-8310-4437-aaf6-1bb23efe8d6f\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Custom\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Custom Links\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"\",\"id\":\"5\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"3d8ccdee-e97f-4978-b9ff-d605c9bd74c8\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}}]}'),
(145,'title','Our Catalog Title','{\"general\":{\"dividerHeight\":\"5\",\"containerDisplay\":\"\",\"containerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"align\":\"center\",\"dividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"dividerMargin\":{\"margin\":\"15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"subtitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"titleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"subtitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"name\":\"Our Catalog Title\",\"containerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dividerWidth\":\"100\",\"Background\":{\"background-color\":\"__VAR__COLOR_14\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"containerPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"30\",\"padding-left\":\"\"},\"containerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"style\":\"__VAR__MODULE TITLE\",\"titleContainerFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"}}],\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"subtitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"subtitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"titleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitle\":{\"lang_1\":\"\"},\"titleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"30\"},\"title\":{\"lang_1\":\"Our Catalog\"},\"subtitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"subtitleContainerDisplay\":\"\",\"titleStyle\":\"\",\"divider\":\"true\",\"titleContainerDisplay\":\"\",\"type\":\"custom\",\"containerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}}'),
(27,'products','Featured - Home Page','{\"general\":{\"carousel\":\"false\",\"moduleProductCartTooltip\":\"\",\"moduleProductList\":\"__VAR__LIST_STYLE\",\"default\":\"7207ded0-b522-45ab-838c-75a1fa598b4e\",\"moduleProductCompareTooltip\":\"\",\"moduleProductDescriptionLimit\":\"150\",\"display\":\"grid\",\"modulePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"containerMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"-5\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}],\"moduleProductGrid\":\"__VAR__DEFAULT\",\"name\":\"Featured - Home Page\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"-10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"__VAR__PRODUCTS HOME\",\"sectionMargin\":\"20\",\"moduleProductQuickviewTooltip\":\"\",\"sectionsDisplay\":\"tabs\",\"moduleProductExtraTooltip\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"moduleProductStat1\":\"brand\",\"moduleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"moduleProductStat2\":\"none\",\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"moduleProductWishlistTooltip\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"4\",\"spacing\":\"__VAR__Product Grid\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"spacing\":\"__VAR__Product Grid\",\"items\":\"3\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"spacing\":\"__VAR__Side Products\",\"items\":\"2\"}}],\"c1_multi\":[],\"c2_multi\":[]}},\"items\":[{\"iconHover\":\"\",\"name\":\"Featured\",\"tabType\":\"content\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"icon_multi\":[],\"title\":{\"lang_1\":\"Featured\"},\"filter\":{\"manufacturers\":[],\"products\":[\"264\",\"360\",\"342\",\"365\",\"366\",\"42\",\"282\",\"266\",\"358\",\"308\"],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"custom\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconActive_multi\":[],\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"7207ded0-b522-45ab-838c-75a1fa598b4e\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},{\"iconHover\":\"\",\"name\":\"Latest\",\"tabType\":\"content\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"icon_multi\":[],\"title\":{\"lang_1\":\"Latest\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"8\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.price\",\"options\":[],\"preset\":\"latest\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"a7757aed-1a6c-41a3-9733-b22c7afb85c4\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},{\"iconHover\":\"\",\"name\":\"Bestsellers\",\"tabType\":\"content\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"icon_multi\":[],\"title\":{\"lang_1\":\"Bestsellers\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"10\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"bestseller\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"c8573e2a-0642-4644-bef8-e9d0b3bb2b1e\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},{\"iconHover\":\"\",\"name\":\"Best Rated\",\"tabType\":\"content\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"icon_multi\":[],\"title\":{\"lang_1\":\"Best Rated\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"DESC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"6\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"rating\",\"options\":[],\"preset\":\"advanced\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"caffb651-c71e-4f56-83c8-680dea3e40e3\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},{\"iconHover\":\"\",\"name\":\"Link\",\"tabType\":\"link\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"icon_multi\":[],\"title\":{\"lang_1\":\"See All Products\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"8\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"special\"},\"icon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_6\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e954\",\"name\":\"iconmonstr-arrow-762\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"d618b23a-ea31-4489-8daa-40b6494962f3\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}]}'),
(28,'product_label','Sale %','{\"general\":{\"labelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"offsets\":\"\",\"display\":\"default\",\"labelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"labelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"position\":\"end\",\"scale\":\"10\",\"name\":\"Sale %\",\"labelIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"margin\":{\"margin\":\"\",\"margin-top\":\"5\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"labelBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"labelSort\":\"0\",\"visibility\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"labelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"label\":{\"lang_1\":\"Sale\"},\"labelSize\":{\"first\":\"40\",\"second\":\"40\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"9999\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"special\"},\"type\":\"special\",\"labelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"labelStyle\":\"\"}}'),
(29,'product_label','New','{\"general\":{\"labelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"offsets\":\"\",\"display\":\"default\",\"labelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"labelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"position\":\"end\",\"scale\":\"10\",\"name\":\"New\",\"labelIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"margin\":{\"margin\":\"\",\"margin-top\":\"5\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"labelBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"labelSort\":\"\",\"visibility\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"labelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"label\":{\"lang_1\":\"New\"},\"labelSize\":{\"first\":\"\",\"second\":\"\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"50\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"latest\"},\"type\":\"custom\",\"labelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"labelStyle\":\"\"}}'),
(30,'product_label','Sold Out','{\"general\":{\"labelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"offsets\":\"15\",\"display\":\"diagonal\",\"labelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"labelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"position\":\"end\",\"scale\":\"10\",\"name\":\"Sold Out\",\"labelIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"labelBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"labelSort\":\"\",\"visibility\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"labelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"label\":{\"lang_1\":\"New\"},\"labelSize\":{\"first\":\"\",\"second\":\"\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"latest\"},\"type\":\"outofstock\",\"labelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"labelStyle\":\"\"}}'),
(31,'product_label','Hot','{\"general\":{\"labelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"offsets\":\"\",\"display\":\"default\",\"labelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"labelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"position\":\"end\",\"scale\":\"10\",\"name\":\"Hot\",\"labelIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"margin\":{\"margin\":\"\",\"margin-top\":\"5\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"labelBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"labelSort\":\"\",\"visibility\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"labelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"label\":{\"lang_1\":\"Hot\"},\"labelSize\":{\"first\":\"40\",\"second\":\"40\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"10\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"bestseller\"},\"type\":\"custom\",\"labelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"labelStyle\":\"\"}}'),
(35,'product_blocks','Award Winner Info Block','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"before\",\"display\":\"grid\",\"typographyStyle\":\"\",\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imagePosition\":\"top\",\"positionPhone\":\"\",\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"itemTitle\":\"\",\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"boxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"blockType\":\"grid\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"position\":\"top\",\"boxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"accordionStyle\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"contentAlignV\":\"\",\"name\":\"Award Winner Info Block\",\"boxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"boxSize\":{\"first\":\"\",\"second\":\"\"},\"contentAlign\":\"\",\"moduleTitle\":\"\",\"itemsContentWidth\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"positionTablet\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"\",\"blocksTitleAlign\":\"\",\"imageBorderHover\":\"\",\"boxDisplay\":\"\",\"boxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"filter\":{\"manufacturers\":[],\"products\":[\"360\",\"366\",\"361\",\"42\"],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"15\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"bestseller\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"boxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"boxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"25\",\"margin-left\":\"\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"boxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"custom\",\"moduleBackground_removed\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"variable\":\"\",\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}},\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"sort\":\"-10\",\"boxOffset\":{\"first\":\"\",\"second\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"items\":[],\"rows\":[{\"id\":\"efd29dda-4144-4bdf-9b26-ede98e008e05\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"marginTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"overlayAlign\":\"center\",\"overlayHeight\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"02395e01-2aec-49fa-9762-17a08f33b5cf\",\"options\":{\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"name\":{\"lang_1\":\"New Column\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"71027632-589c-42ed-a62f-dd9aa42d7e11\",\"item\":{\"id\":\"231\",\"name\":\"Award Winner\",\"type\":\"info_blocks\"}}]}]}]}'),
(36,'filter','Filter','{\"general\":{\"priceLineForeground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"priceInput\":\"__VAR__INPUT\",\"imageShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"mobileIconHover\":\"\",\"priceThumbBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageShadowHover\":\"__VAR__LIGHT\",\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"priceThumbBorderHover\":\"\",\"priceLineHeight\":\"3\",\"priceSize_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"25\"}],\"imageOnlyBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"itemDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"sectionHeight_multi\":[],\"mobileButtonOffset\":{\"first\":\"\",\"second\":\"\"},\"imageBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"imageOnlyShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"resetIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"3\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c9\",\"name\":\"cancel\"},\"type\":\"\",\"image\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"39\",\"height\":\"39\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"itemFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageOnlyBorderHover\":\"\",\"attributeSeparator\":\",\",\"priceSize\":\"15\",\"input\":\"checkbox\",\"priceLineBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"priceThumbBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"name\":\"Filter\",\"sectionHeight\":\"250\",\"filterCountBadge\":\"\",\"moduleTitle\":\"\",\"imageOnlyShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"priceThumbShadow\":\"__VAR__LIGHT\",\"imageBorderActive\":\"__VAR__COLOR_5\",\"resetButtonOffset_multi\":[],\"priceThumbSize\":\"5\",\"mobileText\":{\"lang_1\":\"Filter Products\"},\"priceThumbShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"filterAccordion\":\"__VAR__FILTER\",\"resetButtonStyle\":\"__VAR__SMALL\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"imageOnlySectionPadding\":\"\",\"imageOnlyBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"resetButtonOffset\":{\"first\":\"\",\"second\":\"\"},\"resetIconHover\":\"\",\"imageBorderHover\":\"__VAR__COLOR_5\",\"imageOnlyShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"priceOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"0\"}],\"collapsed\":\"true\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"Filter\"},\"priceThumbBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"imageOnlyBorderActive\":\"\",\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"mobileIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"noun_1058874_cc_filter\",\"code\":\"e919\"},\"type\":\"\",\"image\":\"\"},\"priceLineBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"priceThumbBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageOnlyTooltip\":\"\",\"imageOnlySpacing\":\"7\",\"resetText\":{\"lang_1\":\"Clear\"},\"priceOffset\":\"5\",\"mobileButtonStyle\":\"__VAR__GREEN\",\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"filterCountBadgeVisibility\":\"false\",\"filterCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"imageOnlyWidth\":\"\"},\"items\":{\"a10\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"test 7\"},\"id\":\"10\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a11\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"test 8\"},\"id\":\"11\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a22\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"Taste\"},\"id\":\"22\",\"sectionCustomHeight\":\"\"},\"o1\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"radio\",\"sortOrder\":\"1\",\"itemFilterCountBadgeVisibility\":\"true\",\"status\":\"true\",\"collapsed\":\"\",\"title\":{\"lang_1\":\"Radio\"},\"id\":\"1\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a12\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"Occasion\"},\"id\":\"12\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a23\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"Type\"},\"id\":\"23\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"c\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"false\",\"input\":\"radio\",\"sortOrder\":\"0\",\"itemFilterCountBadgeVisibility\":\"false\",\"status\":\"true\",\"collapsed\":\"false\",\"title\":{\"lang_1\":\"Subcategories\"},\"id\":\"\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"o2\":{\"display\":\"image\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"false\",\"input\":\"radio\",\"sortOrder\":\"1\",\"itemFilterCountBadgeVisibility\":\"false\",\"status\":\"true\",\"collapsed\":\"false\",\"title\":{\"lang_1\":\"Color\"},\"id\":\"2\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a13\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"true\",\"status\":\"true\",\"collapsed\":\"\",\"title\":{\"lang_1\":\"Style\"},\"id\":\"13\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a24\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":\"false\",\"collapsed\":\"\",\"title\":{\"lang_1\":\"Ingredients\"},\"id\":\"24\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a14\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"Dress Length\"},\"id\":\"14\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a25\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":\"false\",\"collapsed\":\"\",\"title\":{\"lang_1\":\"Hot \\/ Cold\"},\"id\":\"25\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a15\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"Material\"},\"id\":\"15\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a26\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"Attribute 1\"},\"id\":\"26\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"o5\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"radio\",\"sortOrder\":\"1\",\"itemFilterCountBadgeVisibility\":\"true\",\"status\":\"true\",\"collapsed\":\"\",\"title\":{\"lang_1\":\"Select\"},\"id\":\"5\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a27\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"Attribute 2\"},\"id\":\"27\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"f1\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"true\",\"status\":\"true\",\"collapsed\":\"\",\"title\":{\"lang_1\":\"Opencart Filter\"},\"id\":\"1\",\"sectionCustomHeight\":\"\"},\"m\":{\"display\":\"image\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"false\",\"input\":\"radio\",\"sortOrder\":\"0\",\"itemFilterCountBadgeVisibility\":\"false\",\"status\":\"true\",\"collapsed\":\"false\",\"title\":{\"lang_1\":\"Brands\"},\"id\":\"\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"o11\":{\"display\":\"text\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"1\",\"itemFilterCountBadgeVisibility\":\"true\",\"status\":\"true\",\"collapsed\":\"false\",\"title\":{\"lang_1\":\"Size\"},\"id\":\"11\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"p\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"-10\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":\"true\",\"collapsed\":\"false\",\"title\":{\"lang_1\":\"Price\"},\"id\":\"\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a1\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"Description\"},\"id\":\"1\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"q\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"-1\",\"itemFilterCountBadgeVisibility\":\"false\",\"status\":\"true\",\"collapsed\":\"false\",\"title\":{\"lang_1\":\"Availability\"},\"id\":\"\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a2\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"No. of Cores\"},\"id\":\"2\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a3\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"Clockspeed\"},\"id\":\"3\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a4\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"test 1\"},\"id\":\"4\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"t\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"false\",\"status\":\"true\",\"collapsed\":\"\",\"title\":{\"lang_1\":\"Tags\"},\"id\":\"\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a5\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"test 2\"},\"id\":\"5\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a6\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":\"false\",\"collapsed\":\"\",\"title\":{\"lang_1\":\"test 3\"},\"id\":\"6\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a7\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"test 4\"},\"id\":\"7\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a8\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"test 5\"},\"id\":\"8\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}},\"a9\":{\"display\":\"both\",\"sectionCustomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideInput\":\"true\",\"input\":\"\",\"sortOrder\":\"\",\"itemFilterCountBadgeVisibility\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"collapsed\":\"\",\"title\":{\"lang_1\":\"test 6\"},\"id\":\"9\",\"sectionCustomHeight\":\"\",\"outOfStockText\":{\"lang_1\":\"Out of Stock\"},\"inStockText\":{\"lang_1\":\"In Stock\"}}}}'),
(75,'links_menu','Footer - Customer Service','{\"general\":{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"titleDivider\":\"\",\"itemFull\":\"auto\",\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksPlusMobileClose\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"linksColumns\":\"initial\",\"align\":\"start\",\"itemDivider\":{\"width\":\"\",\"style\":\"\",\"color\":{\"color\":\"\"}},\"countBadgeVisibility\":\"false\",\"linksColumnDividerStyle\":\"solid\",\"countBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksColumnGap\":\"30\",\"layout\":\"start\",\"Layout\":\"default\",\"name\":\"Footer - Customer Service\",\"itemIcon\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"moduleTitle\":\"__VAR__MEDIUM_WHITE\",\"Scroll\":\"false\",\"titleAlign\":\"\",\"Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemIconHover\":{\"color\":\"\"},\"Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"ScrollTouch\":\"true\",\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"},\"itemWidth\":\"auto\",\"countBadge\":\"\",\"itemDividerHover\":\"\",\"ScrollColor\":\"\",\"linksPlusMobileCloseOffset\":{\"first\":\"\",\"second\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"TrackColor\":\"\",\"title\":{\"lang_1\":\"Customer Service\"},\"linksPlusButtonMobileStatus\":\"false\",\"linksColumnDividerColor\":\"\",\"linksMenuStyle\":\"__VAR__LINKS_MENU_RCXW4I\",\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"linksColumnDividerWidth\":\"1\",\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"MaxHeight-Removed\":\"\",\"Direction\":\"vertical\",\"linksPlusMobileOpen\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},\"items\":[{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Contact\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Contact\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"information\\/contact\"},\"id\":\"8738c136-d7be-4188-a264-c220a5316fe1\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Returns\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Returns\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/return\\/insert\"},\"id\":\"21ef66f8-86da-4b76-b6e8-4e006366d0ce\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Site Map\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Site Map\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"information\\/sitemap\"},\"id\":\"75811c95-231e-4351-87c8-96ab03b71d62\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Brands\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Brands\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/manufacturer\"},\"id\":\"6fa75e15-c0ce-4c21-aeac-0ebf926bea2c\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Unlimited\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Unlimited Links\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/manufacturer\"},\"id\":\"973d0d62-74e0-4d92-af0e-7d6fbf8bfddc\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}}]}'),
(37,'categories','Categories Module','{\"general\":{\"carousel\":\"false\",\"default\":\"\",\"viewMoreText\":{\"lang_1\":\"See Products\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"200\",\"height\":\"250\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"moduleCategory\":\"__VAR__DEFAULT\",\"descLimit\":\"75\",\"name\":\"Categories Module\",\"moduleTitle\":\"__VAR__SIDE_COLUMN\",\"containerMargin\":{\"margin\":\"-10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__ACTIVE TAB\",\"sectionsDisplay\":\"tabs\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"5\",\"spacing\":\"__VAR__Product Grid\"},\"c1\":{\"items\":\"4\",\"spacing\":\"__VAR__Product Grid\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__Product Grid\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Product Grid\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"spacing\":\"__VAR__Product Grid\",\"items\":\"4\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"spacing\":\"__VAR__Product Grid\",\"items\":\"3\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"spacing\":\"__VAR__Product Grid\",\"items\":\"2\"}}],\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__Product Grid\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__Product Grid\"}}]}},\"items\":[{\"name\":\"Top\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Top Categories\"},\"type\":\"top\",\"limit\":\"4\",\"category\":\"\",\"categories\":\"\",\"id\":\"0a28fc9e-df72-4447-bbfe-893952a78beb\"},{\"name\":\"Fashion\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Fashion\"},\"type\":\"sub\",\"limit\":\"4\",\"category\":\"59\",\"categories\":\"\",\"id\":\"46a014b6-b0e1-433a-bcbb-8153e75d023b\"},{\"name\":\"Beauty\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Health & Beauty\"},\"type\":\"sub\",\"limit\":\"4\",\"category\":\"109\",\"categories\":\"\",\"id\":\"fc84acf6-2ead-429a-a8ab-ec82320e2d21\"},{\"name\":\"Bags\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Bags\"},\"type\":\"sub\",\"limit\":\"4\",\"category\":\"107\",\"categories\":\"\",\"id\":\"610bf457-258f-4623-b588-db3ff766190c\"}]}'),
(38,'manufacturers','Brands Layout','{\"general\":{\"carousel\":\"true\",\"default\":\"f958006e-852a-47a5-8632-0108f59afc52\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"150\",\"height\":\"150\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"Brands Layout\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"-10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"\",\"sectionsDisplay\":\"blocks\",\"moduleManufacturers\":\"__VAR__DEFAULT\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"10\",\"spacing\":\"__VAR__SPACING\"},\"c1\":{\"items\":\"7\",\"spacing\":\"__VAR__SPACING\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING\"},\"sc\":{\"items\":\"2\",\"spacing\":\"__VAR__SPACING\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__DESKTOP\",\"value\":{\"items\":\"8\",\"spacing\":\"__VAR__SPACING\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"7\",\"spacing\":\"__VAR__SPACING\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING_2\"}}],\"c1_multi\":[]}},\"items\":[{\"name\":\"All\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"type\":\"top\",\"limit\":\"99\",\"manufacturers\":\"\",\"id\":\"f958006e-852a-47a5-8632-0108f59afc52\"}]}'),
(39,'side_products','Footer Products','{\"general\":{\"carousel\":\"true\",\"default\":\"a8efcf1c-93b8-4ce3-aa28-79fd91b86d90\",\"display\":\"tabs\",\"space\":\"\",\"carouselTablet\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fit\",\"width\":\"70\",\"height\":\"70\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"150\",\"phone_height\":\"150\"},\"accordionStyle\":\"\",\"moduleSideProductCompareTooltip\":\"\",\"name\":\"Footer Products\",\"moduleSideProduct\":\"__VAR__DEFAULT\",\"moduleTitle\":\"\",\"carouselPhone\":\"\",\"containerMargin\":{\"margin\":\"-10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"moduleSideProductWishlistTooltip\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"__VAR__SIMPLE LIGHT COLOR\",\"blocksRow\":\"1\",\"sectionsDisplay\":\"tabs\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"moduleSideProductCartTooltip\":\"\",\"titleStyle\":\"\",\"sectionsDisplayTablet\":\"\",\"sectionsDisplayPhone\":\"\",\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"moduleSideProductQuickviewTooltip\":\"\",\"itemsPerRow\":{\"variable\":\"\",\"c0\":{\"items\":\"5\",\"spacing\":\"__VAR__Side Products\"},\"c1\":{\"items\":\"4\",\"spacing\":\"__VAR__Side Products\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Side Products\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"}}],\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"}}],\"c2_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"}}]}},\"items\":[{\"name\":\"Same category\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"You Might Also Like\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"related_category\"},\"id\":\"a8efcf1c-93b8-4ce3-aa28-79fd91b86d90\"},{\"name\":\"Recently Viewed\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Recently Viewed\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"recently_viewed\"},\"id\":\"8330ab0e-8837-4e91-86af-a16a252c3058\"},{\"name\":\"Most Viewed\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Most Viewed\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"most_viewed\"},\"id\":\"05491aaa-e000-485b-82d0-4e88a521406f\"}]}'),
(40,'blog_posts','Blog Posts Home','{\"general\":{\"carousel\":\"true\",\"default\":\"586e6edc-2082-438a-b422-3478f02b0a4e\",\"display\":\"grid\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"modulePostList\":\"\",\"name\":\"Blog Posts Home\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"-10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"modulePostGrid\":\"__VAR__POST_GRID\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__CENTER TABS\",\"sectionsDisplay\":\"blocks\",\"carouselGutter_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"padding-left\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding\":\"0\"}}],\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"25\",\"padding-left\":\"20\"},\"itemsPerRow\":{\"c0\":{\"items\":\"4\",\"spacing\":\"__VAR__Blog Posts\"},\"c1\":{\"items\":\"3\",\"spacing\":\"__VAR__Blog Posts\"},\"c2\":{\"items\":\"2\",\"spacing\":\"__VAR__Blog Posts\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Blog Posts\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Blog Posts\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"1\",\"spacing\":\"__VAR__Blog Posts\"}}]}},\"items\":[{\"name\":\"Latest Posts\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"filter\":{\"preset\":\"latest\",\"categories\":[],\"posts\":[],\"limit\":\"5\"},\"id\":\"586e6edc-2082-438a-b422-3478f02b0a4e\"}]}'),
(255,'banners','Sample Banners Home Single','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":\"__VAR__LARGE\",\"titlePosition\":\"bc\",\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"30\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"400\",\"height\":\"380\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"400\",\"phone_height\":\"\"},\"containerMargin_multi\":[],\"titleDisplay\":\"always\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(10, 55, 143, 0.4)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"Sample Banners Home Single\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleWidth\":\"auto\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"scaleHover\":\"true\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"hoverOverlay\":\"rgba(0, 0, 0, 0.6)\",\"imageBorderHover\":\"\",\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e954\",\"name\":\"iconmonstr-arrow-762\"},\"type\":\"\",\"image\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"titlePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"10\",\"padding-bottom\":\"\",\"padding-left\":\"10\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"},\"c0_multi\":[]}},\"items\":[{\"name\":\"Sample\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/people\\/girl-237871.jpg\"},\"link\":{\"type\":\"category\",\"id\":\"214\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"a4d6d4da-2114-45ec-a0ca-2edee54ffd8c\"}]}'),
(41,'blog_tags','Blog Tags','{\"general\":{\"name\":\"Blog Tags\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"Filter by Tags\"},\"moduleTitle\":\"\",\"limit\":\"10\",\"tagsStyle\":\"\",\"titleStyle\":\"\"}}'),
(42,'blog_categories','Blog Categories','{\"general\":{\"linkTruncate\":\"false\",\"linkBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"linkIconHover\":\"\",\"linkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Blog Categories\",\"moduleTitle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"linkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linkIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"4\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e93f\",\"name\":\"arrow2\"},\"type\":\"\",\"image\":\"\"},\"linkBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"linkPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"0\"},\"moduleBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"title\":{\"lang_1\":\"Blog Categories\"},\"linkDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"}}}'),
(44,'blog_search','Blog Search','{\"general\":{\"buttonMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"inputStyle\":\"\",\"name\":\"Blog Search\",\"Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"titleStyle\":\"\",\"buttonStyle\":\"\"}}'),
(45,'gallery','Gallery','{\"general\":{\"carousel\":\"false\",\"instagramPage\":\"\",\"thumbBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"thumbDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"150\",\"height\":\"150\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"thumbBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"moduleGallery\":\"__VAR__DEFAULT\",\"grayscale\":\"\",\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Gallery\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"thumbBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"hoverOverlay\":\"rgba(52, 59, 151, 0.4)\",\"hoverIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eba0\",\"name\":\"plus2\"},\"type\":\"\",\"image\":\"\"},\"hoverType\":\"icon\",\"thumbShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"popupThumbDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"80\",\"height\":\"80\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"title\":{\"lang_1\":\"\"},\"thumbBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbBorderHover\":\"\",\"source\":\"local\",\"thumbPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"4\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"3\",\"spacing\":\"\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"4\",\"spacing\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"3\",\"spacing\":\"\"}}]},\"thumbsLimit\":\"12\"},\"items\":[{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 1\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"4080aeb7-2c6a-42ba-a77d-6a83fad27994\",\"image\":\"catalog\\/journal3\\/gallery\\/233H.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"catalog\\/journal3\\/misc\\/4k.png\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"https:\\/\\/www.youtube.com\\/watch?v=Bey4XXJAqS8\",\"name\":\"Video\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"youtube\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"video\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"e1fef862-a055-43a8-90a4-87fc3954c2a9\",\"image\":\"catalog\\/journal3\\/backdrops\\/backdrop031.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Banner\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"\"},\"type\":\"link\",\"link\":{\"type\":\"category\",\"id\":\"107\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"1317aeae-bff0-4e40-8f1f-02e5e4c3caa4\",\"image\":\"catalog\\/journal3\\/banners\\/0015.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 3\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"eacdda10-6b66-4325-ba93-4274b6217da8\",\"image\":\"catalog\\/journal3\\/gallery\\/beauty.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 4\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"5ca9e0e5-297c-42c5-bae5-00b6eeead81a\",\"image\":\"catalog\\/journal3\\/gallery\\/demo06.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 5\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"0807e92b-44da-4a66-aeb3-c8db92d0ae5f\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop031.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Banner\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"\"},\"type\":\"link\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/special\"},\"id\":\"d6be8ab4-d5bf-470c-9089-41c6cd9ef3c3\",\"image\":\"catalog\\/journal3\\/banners\\/18.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 7\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"b5117f56-41db-40ba-a1c0-7f55a1929c3c\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop036.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 8\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"49ab3017-cc84-4141-ba8d-542a4d14c610\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop023.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 9\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"5789d03d-4268-4ef9-a205-22b51af3defa\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop008.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 10\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"bd45ab26-5497-450b-a61e-a72da1d7b564\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop006b.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 11\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"70624631-da32-4289-ab40-984bb364fa27\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop020.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 12\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"ec6c6f84-55ab-4d1b-996a-6109d1f86725\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop021.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 13\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"f11f2bf9-7ce3-4797-8f7e-6f29938cef4f\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop038.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 14\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"c1cc4401-eca4-4081-8c65-7a7b89a4d577\",\"image\":\"catalog\\/journal3\\/gallery\\/wing.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 15\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"d50e28bb-235e-49b0-b4f6-4676e45d2242\",\"image\":\"catalog\\/journal3\\/gallery\\/demo19.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 16\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"b7423f0e-aef4-41fc-b5a7-1df2c3e64ce8\",\"image\":\"catalog\\/journal3\\/gallery\\/demo26.jpg\"}]}'),
(46,'product_extra_button','Buy Now','{\"general\":{\"buttonPage\":\"\",\"iconHover\":\"\",\"name\":\"Buy Now\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"buttonList\":\"\",\"button\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"label\":{\"lang_1\":\"Buy Now\"},\"action\":\"quickbuy\",\"filter\":{\"0\":\"a\",\"1\":\"l\",\"2\":\"l\",\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"999\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"all\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eaaf\",\"name\":\"iconmonstr-coin-2\"},\"type\":\"\",\"image\":\"\"},\"type\":\"custom\",\"link\":{\"type\":\"popup\",\"id\":\"22\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"hideZeroPrice\":\"false\"}}'),
(47,'blog_comments','Latest Comments','{\"general\":{\"spacing\":\"8\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"name\":\"Latest Comments\",\"moduleTitle\":\"\",\"commentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"commentFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"commentFont\":{\"word-spacing\":\"\",\"line-height\":\"1.2\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"commentPadding\":{\"padding\":\"\",\"padding-top\":\"8\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"Latest Comments\"},\"imageBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"authorFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__GRAY\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"commentDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__ACCENT_2\"},\"imageSize\":\"40\",\"titleTruncate\":\"false\"}}'),
(48,'blocks','Description, Specs - Desktop Tabs','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"display\":\"tabs\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemTitle\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"Description, Specs - Desktop Tabs\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__LAST_ON_END\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"20\"},\"c1\":{\"items\":\"1\",\"spacing\":\"20\"},\"c2\":{\"items\":\"1\",\"spacing\":\"20\"},\"sc\":{\"items\":\"1\",\"spacing\":\"20\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"70\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"expandIconU\":{\"size\":\"10\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"3\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f077\",\"name\":\"chevron-up\"},\"type\":\"\",\"image\":\"\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"expandButtonIcon\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Description\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"true\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"itemTypographyStyle\":\"\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"description\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemTableStyle\":\"\",\"itemBoxStylesBorderHover\":\"\",\"expandCharactersLimit\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"expandButtonIconHover\":\"\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Description\"},\"content\":{\"lang_1\":\"text\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemFormStyle\":\"\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"44e2c703-0097-406e-9e3c-5bee5f34d613\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"70\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Specifications\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f077\",\"name\":\"chevron-up\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"Show Less\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f078\",\"name\":\"chevron-down\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"attributes\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"expandCharactersLimit\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Specifications\"},\"content\":{\"lang_1\":\"code\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"Show More\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"144f6697-75a6-4cb4-8939-f66cee924ecb\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"70\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Reviews\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"reviews\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"expandCharactersLimit\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Reviews\"},\"content\":{\"lang_1\":\"code\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"__VAR__LABEL_TOP\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"ed05a6a9-454f-46be-916e-87a683d13bf0\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"70\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Ask a Question\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb79\",\"name\":\"mail\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"link\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"reviews\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"expandCharactersLimit\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Ask a Question\"},\"content\":{\"lang_1\":\"code\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"__VAR__LABEL_TOP\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"popup\",\"id\":\"22\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"77d40ce5-db5a-4b74-a33b-69f0582ac0e8\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(244,'product_blocks','Related - Also Bought Mini Products','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"before\",\"display\":\"grid\",\"typographyStyle\":\"\",\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imagePosition\":\"top\",\"positionPhone\":\"bottom\",\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"itemTitle\":\"\",\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"boxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"blockType\":\"grid\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"position\":\"image\",\"boxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"accordionStyle\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"contentAlignV\":\"\",\"name\":\"Related - Also Bought Mini Products\",\"boxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"boxSize\":{\"first\":\"\",\"second\":\"\"},\"contentAlign\":\"\",\"moduleTitle\":\"\",\"itemsContentWidth\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"positionTablet\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"\",\"blocksTitleAlign\":\"\",\"imageBorderHover\":\"\",\"boxDisplay\":\"\",\"boxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"999\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"all\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"boxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"boxMargin\":{\"margin\":\"\",\"margin-top\":\"30\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"boxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"custom\",\"moduleBackground_removed\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"variable\":\"\",\"c0\":{\"items\":\"1\",\"spacing\":\"0\"},\"c1\":{\"items\":\"1\",\"spacing\":\"0\"},\"c2\":{\"items\":\"1\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"}},\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"sort\":\"1\",\"boxOffset\":{\"first\":\"\",\"second\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"items\":[],\"rows\":[{\"id\":\"c4a79c15-21ea-4c07-a310-2310b5d1d37d\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"marginTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"overlayAlign\":\"left\",\"overlayHeight\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"25dc59b6-ebc7-4ed5-a9ac-3434341e6d1a\",\"options\":{\"width_multi\":[],\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"name\":{\"lang_1\":\"New Column\"},\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"c40a6f44-c71a-4cc8-820f-6b181b93973b\",\"item\":{\"id\":\"222\",\"name\":\"Bestsellers\",\"type\":\"side_products\"}}]}]}]}'),
(254,'banners','Sample Banners Middle Home','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":\"__VAR__LARGE\",\"titlePosition\":\"bc\",\"title2Position\":\"bc\",\"titleBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title2Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"title2Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title2Display\":\"hover\",\"title2Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"400\",\"height\":\"180\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"title2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title2IconHover\":\"\",\"iconDisplay\":\"hover\",\"containerMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"10\",\"margin-top\":\"0\",\"margin-right\":\"\",\"margin-bottom\":\"0\",\"margin-left\":\"\"}}],\"titleDisplay\":\"never\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(10, 55, 143, 0.4)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"Sample Banners Middle Home\",\"title2Width\":\"full\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleWidth\":\"auto\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"title2Scale\":\"100\",\"carouselStyle\":\"\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"titleScale\":\"100\",\"scaleHover\":\"true\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title2Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"title2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title2BackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title2MarginHover\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"hoverOverlay\":\"rgba(0, 0, 0, 0.6)\",\"imageBorderHover\":\"\",\"iconMarginHover\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"bannerTitleContainer\":\"\",\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e954\",\"name\":\"iconmonstr-arrow-762\"},\"type\":\"\",\"image\":\"\"},\"titleBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"titleMarginHover\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title2ScaleOrigin\":\"center\",\"title2Padding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title2BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"titleScaleOrigin\":\"center\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"titlePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"\",\"padding-left\":\"15\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"bannerTitle2Container\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"__VAR__Banners Home Page\"},\"c1\":{\"items\":\"1\",\"spacing\":\"__VAR__Banners Home Page\"},\"c2\":{\"items\":\"1\",\"spacing\":\"__VAR__Banners Home Page\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Banners Home Page\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"\"}}]}},\"items\":[{\"name\":\"Sample\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"\"},\"title2\":{\"lang_1\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"59\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"a4d6d4da-2114-45ec-a0ca-2edee54ffd8c\",\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/12-1.jpg\"}},{\"name\":\"Sample\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"\"},\"title2\":{\"lang_1\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"59\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"11a4a75e-7cd1-49ca-b79f-40ac56a5e899\",\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/50.png\"}}]}'),
(51,'popup','Size Chart','{\"general\":{\"footerBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"button2\":\"false\",\"display\":\"page\",\"icon2Right\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"icon1Right\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"cookie\":\"c89c2b52\",\"doNotShowAgainPosition\":\"left\",\"popupStyle\":\"\",\"popupPadding\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"footerBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"doNotShowAgainText\":{\"lang_1\":\"Don\'t show again.\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"doNotShowAgainBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"showOnlyOnce\":\"false\",\"closeButton\":\"true\",\"doNotShowAgainFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Size Chart\",\"headerTitle\":\"__VAR__POPUP_TITLE\",\"button1Text\":{\"lang_1\":\"Yes\"},\"button2Text\":{\"lang_1\":\"No\"},\"text\":{\"lang_1\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. <br><\\/p>\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"popupHeight\":\"\",\"contentType\":\"image\",\"footerPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"doNotShowAgainPadding\":{\"padding\":\"3\",\"padding-top\":\"\",\"padding-right\":\"5\",\"padding-bottom\":\"\",\"padding-left\":\"5\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"icon1\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"icon2\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"button1Link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/compare\"},\"popupWidth\":\"500\",\"headerText\":{\"lang_1\":\"Size Chart\"},\"button2Link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"https:\\/\\/www.journal-theme.com\\/\",\"scroll\":\"\",\"target\":\"true\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"doNotShowAgain\":\"false\",\"image\":{\"lang_1\":\"catalog\\/journal3\\/misc\\/size-chart.jpg\"},\"footer\":\"false\",\"btn2Style\":\"__VAR__RED\",\"footerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btn1Style\":\"__VAR__GREEN\",\"button1\":\"false\"},\"rows\":[]}'),
(93,'product_extra_button','Ask Question','{\"general\":{\"buttonPage\":\"\",\"iconHover\":\"\",\"name\":\"Ask Question\",\"buttonList\":\"\",\"button\":\"\",\"label\":{\"lang_1\":\"Ask Question\"},\"action\":\"link\",\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"200\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"all\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb79\",\"name\":\"mail\"},\"type\":\"\",\"image\":\"\"},\"type\":\"custom\",\"link\":{\"type\":\"popup\",\"id\":\"22\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"}}}'),
(59,'blocks','Product Tabs Bottom','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"f17b3ccb-cd5d-493d-a2d9-46a89dc30949\",\"display\":\"tabs\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemTitle\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"Product Tabs Bottom\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__DEFAULT\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"20\"},\"c1\":{\"items\":\"1\",\"spacing\":\"20\"},\"c2\":{\"items\":\"1\",\"spacing\":\"20\"},\"sc\":{\"items\":\"1\",\"spacing\":\"20\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Custom\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab9\",\"name\":\"iconmonstr-delivery-5\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"itemTypographyStyle\":\"\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemTableStyle\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Custom Tabs\"},\"content\":{\"lang_1\":\"<p>Unlimited Blocks, Tabs or Accordions with any HTML content can be assigned to any individual product or to certain groups of products, like entire categories, brands, products with specific options, attributes, price range, etc. You can indicate any criteria via the advanced <a href=\\\"javascript:open_popup(53);\\\">product rules<\\/a> mechanism and only those products matching your criteria will display the modules.<\\/p>[~nl~]<h6>Device Specific<\\/h6><p>Any module can be <b>selectively<\\/b> activated per device. Every module has an advanced <b>Status<\\/b> feature allowing you to load the module based on device type, customer login status and other criteria. Imagine the possibilities. <\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemFormStyle\":\"\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"f17b3ccb-cd5d-493d-a2d9-46a89dc30949\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Videos\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f144\",\"name\":\"play-circle\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"itemTypographyStyle\":\"\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemTableStyle\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Videos\"},\"content\":{\"lang_1\":\"<div class=\\\"video-responsive\\\">[~nl~]<div class=\\\"video-frame\\\">[~nl~]<iframe src=\\\"\\/\\/www.youtube.com\\/embed\\/oMm4F6Ff1oA\\\" allowfullscreen=\\\"\\\"><\\/iframe>[~nl~]<\\/div>[~nl~]<\\/div>[~nl~]<p>Responsive video embeds with max width and float options, as well as full container styles on the video-responsive class. Display videos in your descriptions, blog posts, or custom modules anywhere on the page. Just wrap the iframe in additional div elements with the required classes and you have full control over your video layout.<\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemFormStyle\":\"\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"f6c3f9ff-ac36-4f31-91d4-30a09e95bd11\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Buttons\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f25a\",\"name\":\"hand-pointer-o\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Buttons\"},\"content\":{\"lang_1\":\"<p>Since any HTML is supported you can create custom buttons in any block. Buttons can also open popups which in turn can display any content or module.<\\/p><p><\\/p>[~nl~][~nl~]<a class=\\\"btn\\\" href=\\\"javascript:open_popup(51);\\\">Size Chart<\\/a>[~nl~] [~nl~]<a class=\\\"btn btn-success\\\" href=\\\"javascript:open_popup(22);\\\">Contact Form<\\/a>[~nl~] [~nl~]<a class=\\\"btn btn-danger\\\" href=\\\"javascript:open_popup(195);\\\">Red Button<\\/a>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"76430f75-8c2f-48d5-9fad-7b0ebd616d1b\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(57,'blocks','Share Plugin Inline','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"default\":\"\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"before\",\"display\":\"grid\",\"typographyStyle\":\"\",\"iconHover\":{\"color\":\"\"},\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imagePosition\":\"top\",\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"itemTitle\":\"\",\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselTablet\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"displayTablet\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"contentAlignV\":\"\",\"name\":\"Share Plugin Inline\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"displayPhone\":\"\",\"contentAlign\":\"\",\"moduleTitle\":\"\",\"itemsContentWidth\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselPhone\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"\",\"blocksTitleAlign\":\"\",\"imageBorderHover\":{\"color\":\"\"},\"iconBorderHover\":{\"color\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"lazyLoad\":\"false\",\"moduleBackground_removed\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"variable\":\"\",\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}},\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemContentWidth\":\"\",\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"textHeadStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"contentAlign_multi\":[],\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"blocksColumnDividerColor\":{\"color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"blocksColumnDividerWidth\":\"1\",\"alt\":{\"lang_1\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"scale\":\"100\",\"imageAlign\":\"left\",\"contentAlignV\":\"\",\"name\":\"Code\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"center\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"text\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"scaleOrigin\":\"center\",\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"text\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"blocksColumnDividerStyle\":\"solid\",\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"blocksColumns\":\"initial\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"content\":{\"lang_1\":\"<!-- AddToAny BEGIN -->[~nl~]<div class=\\\"a2a_kit a2a_kit_size_32 a2a_default_style\\\" style=\\\"display: inline-block\\\">[~nl~]<a class=\\\"a2a_dd\\\" href=\\\"https:\\/\\/www.addtoany.com\\/share\\\"><\\/a>[~nl~]<a class=\\\"a2a_button_facebook\\\"><\\/a>[~nl~]<a class=\\\"a2a_button_x\\\"><\\/a>[~nl~]<a class=\\\"a2a_button_pinterest\\\"><\\/a>[~nl~]<a class=\\\"a2a_button_whatsapp\\\"><\\/a>[~nl~]<a class=\\\"a2a_button_email\\\"><\\/a>[~nl~]<\\/div>[~nl~]<script async src=\\\"https:\\/\\/static.addtoany.com\\/menu\\/page.js\\\"><\\/script>[~nl~]<!-- AddToAny END -->\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"blocksColumnGap\":\"20\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"57b0b7ad-4970-48d1-8ad1-675eadeddc48\",\"image\":\"\",\"footer\":\"text\",\"shortDescriptionLimit\":\"150\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"dynamic\":\"journal3\\/blocks_example\",\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(58,'product_blocks','Share Plugin - Phone (Inline)','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"default\":\"\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"before\",\"display\":\"grid\",\"typographyStyle\":\"\",\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imagePosition\":\"top\",\"positionPhone\":\"\",\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"itemTitle\":\"\",\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"boxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"blockType\":\"grid\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"position\":\"image\",\"boxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"accordionStyle\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"contentAlignV\":\"\",\"name\":\"Share Plugin - Phone (Inline)\",\"boxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"boxSize\":{\"first\":\"\",\"second\":\"\"},\"contentAlign\":\"\",\"moduleTitle\":\"\",\"itemsContentWidth\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"positionTablet\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"},\"boxMargin_multi\":[],\"tabsStyle\":\"\",\"blocksTitleAlign\":\"\",\"imageBorderHover\":\"\",\"boxDisplay\":\"\",\"boxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_quantity\":\"\",\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"min_quantity\":\"\",\"special\":\"false\",\"limit\":\"999\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"all\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"boxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"boxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"20\",\"margin-left\":\"\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"boxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"custom\",\"moduleBackground_removed\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"variable\":\"\",\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}},\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"sort\":\"-5\",\"boxOffset\":{\"first\":\"\",\"second\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},\"items\":[],\"rows\":[{\"id\":\"4b88d321-0ed3-4425-9f19-7ba193ad192e\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"marginTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"},\"overlayAlign\":\"center\",\"overlayHeight\":\"\",\"rowOverlayBlend\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},\"columns\":[{\"id\":\"cac51dfb-1a91-4956-97e4-af1189e78bdd\",\"options\":{\"align\":\"middle\",\"width\":\"100\",\"marginTop\":\"\",\"name\":{\"lang_1\":\"New Column\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"}},\"items\":[{\"id\":\"5b4143b4-6cec-42a9-865a-4dab5107c7e5\",\"item\":{\"id\":\"57\",\"name\":\"Share Plugin Inline\",\"type\":\"blocks\"}}]}]}]}'),
(61,'icons_menu','Social Icons','{\"general\":{\"iconsMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltip\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"containerBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconSpacing\":\"10\",\"iconColor\":\"rgba(126, 136, 152, 1)\",\"iconsAlign\":\"center\",\"iconBorderActive\":\"\",\"name\":\"Social Icons\",\"tooltipPosition\":\"top\",\"iconsMenuCountBadge\":\"\",\"iconFontTruncate\":\"false\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"iconColorActive\":\"\",\"containerPad\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconColorHover\":\"__VAR__COLOR_5\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemSize\":\"\",\"tooltipStatus\":\"true\",\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":\"30\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}},\"items\":[{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Facebook\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Facebook\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f09a\",\"name\":\"facebook3\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"5c04bd80-e1eb-4ea1-8a01-116b6ef78e71\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Twitter\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Twitter\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f099\",\"name\":\"twitter3\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"common\\/home\"},\"id\":\"c7f9228f-96c0-49fa-b547-cc9ee2f5cfdb\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Instagram\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Instagram\"},\"icon\":{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e90e\",\"name\":\"iconmonstr-instagram-13\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"common\\/home\"},\"id\":\"39b7b6d5-84dc-4205-bd25-e4959e1d90e7\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Google\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Google\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0d5\",\"name\":\"google-plus\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"common\\/home\"},\"id\":\"82200c0d-db7b-44b1-b9b5-116a6b39d3fd\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}}]}'),
(258,'products','Related - Also Bough Side Column','{\"general\":{\"carousel\":\"true\",\"moduleProductList\":\"\",\"default\":\"57ee8270-7a75-4dc1-9cb3-9e2774927ab3\",\"display\":\"grid\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"moduleProductGrid\":\"__VAR__SIMPLE\",\"name\":\"Related - Also Bough Side Column\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"\",\"sectionMargin\":\"20\",\"sectionsDisplay\":\"blocks\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"moduleProductStat1\":\"brand\",\"moduleProductStat2\":\"none\",\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"5\",\"spacing\":\"0\"},\"c1\":{\"items\":\"4\",\"spacing\":\"0\"},\"c2\":{\"items\":\"3\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Product Grid\"}}},\"items\":[{\"iconHover\":\"\",\"name\":\"Related\",\"tabType\":\"content\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"You Might Like\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"related\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"57ee8270-7a75-4dc1-9cb3-9e2774927ab3\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},{\"iconHover\":\"\",\"name\":\"Also Bought\",\"tabType\":\"content\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Other People Bought\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"alsobought\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"b3e6398e-d165-4bf6-9491-83d812afe0b8\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}]}'),
(77,'links_menu','Footer - Copyright','{\"general\":{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"titleDivider\":\"\",\"itemFull\":\"auto\",\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__ACCENT_2\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksPlusMobileClose\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"linksColumns\":\"\",\"layout_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"center\"}],\"align\":\"\",\"itemDivider\":{\"width\":\"\",\"style\":\"\",\"color\":{\"color\":\"\"}},\"countBadgeVisibility\":\"\",\"linksColumnDividerStyle\":\"\",\"countBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksColumnGap\":\"\",\"layout\":\"start\",\"Layout\":\"default\",\"name\":\"Footer - Copyright\",\"itemIcon\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"moduleTitle\":\"\",\"Scroll\":\"false\",\"titleAlign\":\"\",\"Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemIconHover\":\"\",\"Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"ScrollTouch\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"itemWidth\":\"\",\"countBadge\":\"\",\"itemDividerHover\":\"\",\"ScrollColor\":\"\",\"linksPlusMobileCloseOffset\":{\"first\":\"\",\"second\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"TrackColor\":\"\",\"title\":{\"lang_1\":\"\"},\"linksPlusButtonMobileStatus\":\"false\",\"linksColumnDividerColor\":{\"color\":\"\"},\"linksMenuStyle\":\"\",\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"linksColumnDividerWidth\":\"\",\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"Direction\":\"horizontal\",\"linksPlusMobileOpen\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},\"items\":[{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Copyright\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Copyright \\u00a9 2014, Your Store, All Rights Reserved\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"315a12f5-370a-49e2-82ee-322822991b3e\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}}]}'),
(76,'links_menu','Footer - My Account','{\"general\":{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"titleDivider\":\"\",\"itemFull\":\"auto\",\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksPlusMobileClose\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"linksColumns\":\"\",\"align\":\"\",\"itemDivider\":{\"width\":\"\",\"style\":\"\",\"color\":{\"color\":\"\"}},\"countBadgeVisibility\":\"\",\"linksColumnDividerStyle\":\"\",\"countBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"linksColumnGap\":\"\",\"layout\":\"start\",\"Layout\":\"default\",\"name\":\"Footer - My Account\",\"itemIcon\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"moduleTitle\":\"__VAR__MEDIUM_WHITE\",\"Scroll\":\"false\",\"titleAlign\":\"\",\"Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemIconHover\":{\"color\":\"\"},\"Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"ScrollTouch\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"itemWidth\":\"\",\"countBadge\":\"\",\"itemDividerHover\":\"\",\"ScrollColor\":\"\",\"linksPlusMobileCloseOffset\":{\"first\":\"\",\"second\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"TrackColor\":\"\",\"title\":{\"lang_1\":\"My Account\"},\"linksPlusButtonMobileStatus\":\"false\",\"linksColumnDividerColor\":{\"color\":\"\"},\"linksMenuStyle\":\"__VAR__LINKS_MENU_RCXW4I\",\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"linksColumnDividerWidth\":\"\",\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"Direction\":\"vertical\",\"linksPlusMobileOpen\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},\"items\":[{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"My Account\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"My Account\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/account\"},\"id\":\"7e318382-c91a-4630-9401-fd1f5157547b\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Orders\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Order History\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/order\"},\"id\":\"232e772e-9a44-4ede-a17e-a6609c0d0282\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Affiliates\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Affiliates\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"affiliate\\/account\"},\"id\":\"fa438c20-72fe-48c6-87c1-72cc9c1914a4\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Newsletter\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Newsletter\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/newsletter\"},\"id\":\"40bdeff0-862d-4b70-b921-daac179ae4cf\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}},{\"itemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Gift Certificates\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemIconHover\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"params\":\"\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"customer_groups\":[\"1\"]},\"label\":{\"lang_1\":\"\"},\"title\":{\"lang_1\":\"Gift Certificates\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/voucher\"},\"id\":\"0f04a71f-b46c-4713-a0fa-4db86c66184f\",\"itemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"subcategories\":\"true\",\"labelStyle\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"itemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}}]}'),
(104,'blocks','Custom Map','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"display\":\"grid\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemTitle\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"Custom Map\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"0\"},\"c1\":{\"items\":\"1\",\"spacing\":\"0\"},\"c2\":{\"items\":\"1\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"200\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Map\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"map\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"\"},\"content\":{\"lang_1\":\"<iframe src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2483.6803814444893!2d-0.12681944838379433!3d51.50073251891121!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487604c38c8cd1d9%3A0xb78f2474b9a45aa9!2sBig+Ben!5e0!3m2!1sen!2sro!4v1528897605464\\\" width=\\\"450\\\" height=\\\"450\\\" frameborder=\\\"0\\\" style=\\\"border:0\\\" allowfullscreen><\\/iframe>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"e655ba42-3026-4efe-944e-ef35b016ebd4\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(86,'info_blocks','Info Blocks Footer','{\"general\":{\"name\":\"Info Blocks Footer\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"style\":\"__VAR__SIDE_ICON\",\"status\":{\"status\":\"true\",\"device\":[\"tablet\",\"desktop\",\"phone\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"gutter_multi\":[],\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"gutter\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"4\",\"spacing\":\"\"},\"c1\":{\"items\":\"4\",\"spacing\":\"20\"},\"c2\":{\"items\":\"4\",\"spacing\":\"20\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"2\",\"spacing\":\"\"}}],\"c1_multi\":[],\"c2_multi\":[]},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}},\"items\":[{\"iconHover\":\"\",\"name\":\"Custom\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"Border\":{\"border-left-width\":\"1\",\"border-color\":\"__VAR__COLOR_15\",\"border-style\":\"solid\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"size\":\"17\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}],\"title\":{\"lang_1\":\"Custom Info Blocks\"},\"content\":{\"lang_1\":\"Create and open custom popups from any link or block\"},\"icon\":{\"size\":\"35\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e984\",\"name\":\"iconmonstr-diamond-11-ring-jewel\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"popup\",\"id\":\"174\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"common\\/home\"},\"id\":\"3bc4546f-4173-44fd-88ed-7ac31eed02c3\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}},{\"iconHover\":\"\",\"name\":\"Page\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}],\"title\":{\"lang_1\":\"Advanced Page Builder\"},\"content\":{\"lang_1\":\"The page builder in Journal 3 allows for virtually any layout design\"},\"icon\":{\"size\":\"28\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e96e\",\"name\":\"iconmonstr-view-10-grid-list\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"popup\",\"id\":\"225\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/special\"},\"id\":\"788f964b-cbef-4e1a-97c7-fff0bce2f52f\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}},{\"iconHover\":\"\",\"name\":\"Modules\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"size\":\"17\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}],\"title\":{\"lang_1\":\"30+ Modules Included\"},\"content\":{\"lang_1\":\"Journal 3 comes with the best multi-purpose modules already built in\"},\"icon\":{\"size\":\"35\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e99f\",\"name\":\"sharp-corners_give_gift\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"popup\",\"id\":\"195\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"3e95ed79-9490-4a17-a235-1d906268adda\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}},{\"iconHover\":\"\",\"name\":\"Best\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}],\"title\":{\"lang_1\":\"Best Rated Theme\"},\"content\":{\"lang_1\":\"Journal is the best rated theme from more than 2000 reviews\"},\"icon\":{\"size\":\"35\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e953\",\"name\":\"iconmonstr-medal-10-badge\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"popup\",\"id\":\"226\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"a9fe4110-f774-4b7b-96ef-8a77c18287ea\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}}]}'),
(163,'title','Featured Categories Title','{\"general\":{\"dividerHeight\":\"5\",\"containerDisplay\":\"\",\"containerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"align\":\"center\",\"dividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"dividerMargin\":{\"margin\":\"15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"subtitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"titleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"subtitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"name\":\"Featured Categories Title\",\"containerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dividerWidth\":\"100\",\"Background\":{\"background-color\":\"__VAR__COLOR_14\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"containerPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"30\",\"padding-left\":\"\"},\"containerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"style\":\"__VAR__MODULE TITLE LIGHT\",\"titleContainerFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"}}],\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"subtitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"subtitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"titleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitle\":{\"lang_1\":\"Easily create category based modules and display products from specific categories or brands only. The advanced page builder allows you to create any grid layout with full control at any breakpoint.\"},\"titleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"30\"},\"title\":{\"lang_1\":\"Featured Categories\"},\"subtitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"subtitleContainerDisplay\":\"\",\"titleStyle\":\"\",\"divider\":\"true\",\"titleContainerDisplay\":\"\",\"type\":\"custom\",\"containerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}}'),
(127,'bottom_menu','Bottom Menu','{\"general\":{\"Shadow\":\"__VAR__MEDIUM\",\"iconsActive\":\"\",\"iconsHover\":\"\",\"width\":\"50\",\"countBadgeVisibility\":\"true\",\"barDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_2\"},\"height\":\"50\",\"countBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"name\":\"Bottom Menu\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"rgba(148, 155, 169, 1)\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"11\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"backgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"countBadge\":\"\",\"fontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"divider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_2\"},\"iconSize\":\"20\",\"icons\":\"__VAR__ACCENT_2\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}},\"items\":[{\"name\":\"Login - Guest\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"guests\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"backgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Login\"},\"icon\":{\"size\":\"22\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"user2\",\"code\":\"ebda\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"login_popup\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"common\\/home\"},\"id\":\"54bf2668-42a0-4c5c-9864-3d013f15ba14\"},{\"name\":\"Register - Guest\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"guests\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"backgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Register\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e90d\",\"name\":\"iconmonstr-edit-11\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"register_popup\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"common\\/home\"},\"id\":\"15838f82-21db-4015-ae38-e92bd7487c7f\"},{\"name\":\"Account - Customer\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"customers\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"backgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Account\"},\"icon\":{\"size\":\"23\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"user-check\",\"code\":\"ebdb\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/account\"},\"id\":\"6b9c05e2-10c7-498c-9ca6-22c04f091565\"},{\"name\":\"Logout - Customer\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"customers\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"backgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Logout\"},\"icon\":{\"size\":\"19\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"ionicons_svg_md-log-out\",\"code\":\"e996\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/logout\"},\"id\":\"512ee742-3abe-4399-86f5-65057c070861\"},{\"name\":\"Wishlist\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"backgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Wishlist\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb67\",\"name\":\"heart2\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"common\\/home\"},\"id\":\"cb503c6d-e00a-4ccb-aa3c-dd95d9efc373\"},{\"name\":\"Contact\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"backgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Contact\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"envelope-o\",\"code\":\"f003\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"22\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"information\\/contact\"},\"id\":\"0a9ee6e7-1266-42f6-acda-68385c0e77f3\"},{\"name\":\"Call us\",\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"backgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Call us\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eaac\",\"name\":\"iconmonstr-phone-9\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"22\",\"url\":\"tel:18005559090\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"d25c48a1-8a23-4ce6-ad86-24c9ff35dc8c\"}]}'),
(119,'catalog','Catalog No Image','{\"general\":{\"itemViewMoreFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"carousel\":\"false\",\"itemLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imagePosition\":\"\",\"itemsBoxBorderHover\":\"\",\"moduleStyle\":\"__VAR__DEFAULT\",\"itemTitle\":\"__VAR__SMALL_BOLD\",\"itemsBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"viewMoreText\":{\"lang_1\":\"View More\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"150\",\"height\":\"150\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"itemsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"name\":\"Catalog No Image\",\"itemsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemIcon\":{\"size\":\"12\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e409\",\"name\":\"navigate_next\"},\"type\":\"\",\"image\":\"\"},\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemIconHover\":\"\",\"carouselStyle\":\"\",\"itemsBoxShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"textTruncate\":\"false\",\"PositionOverride\":\"\",\"itemsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"images\":\"false\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"itemsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemLinkSpace\":\"3\",\"itemsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"MarginOverride\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemViewMoreFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"},\"c1\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING_2\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"spacing\":\"__VAR__SPACING_2\",\"items\":\"2\"}}]}},\"items\":[{\"name\":\"Fashion\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Fashion\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"c24c19af-2144-4810-b331-132dc0a4fdfd\",\"limit\":\"4\",\"category\":\"59\"},{\"name\":\"Electronics\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Electronics\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"566e4db8-26c8-4b4b-9776-b6434147f955\",\"limit\":\"4\",\"category\":\"69\"},{\"name\":\"Bags\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Bags\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"b5ba7443-64b0-482e-ba61-441d6be8be25\",\"limit\":\"4\",\"category\":\"107\"},{\"name\":\"Health & Beauty\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Health & Beauty\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"843b521d-1930-4119-a998-44b1031f3e28\",\"limit\":\"4\",\"category\":\"109\"},{\"name\":\"Footwear\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Footwear\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"817ea76c-b0fb-422f-aa33-c56951821df2\",\"limit\":\"4\",\"category\":\"111\"},{\"name\":\"Food\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Food\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"9e370091-2d85-48e8-ae66-5361ddd5bcca\",\"limit\":\"4\",\"category\":\"155\"}]}'),
(188,'categories','Categories - Tabs','{\"general\":{\"carousel\":\"true\",\"default\":\"\",\"viewMoreText\":{\"lang_1\":\"See Products\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"150\",\"height\":\"150\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"moduleCategory\":\"__VAR__SIMPLE\",\"descLimit\":\"75\",\"name\":\"Categories - Tabs\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__SIMPLE\",\"sectionsDisplay\":\"tabs\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"5\",\"spacing\":\"__VAR__SPACING_2\"},\"c1\":{\"items\":\"5\",\"spacing\":\"__VAR__SPACING_2\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"},\"c0_multi\":[],\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"}}]}},\"items\":[{\"name\":\"Fashion\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Fashion\"},\"type\":\"sub\",\"limit\":\"5\",\"category\":\"59\",\"categories\":\"\",\"id\":\"03adacc0-14ea-4dba-bafc-dd6a930be6b8\"},{\"name\":\"Electronics\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Electronics\"},\"type\":\"sub\",\"limit\":\"5\",\"category\":\"69\",\"categories\":\"\",\"id\":\"8ed7c6fb-89b4-4845-9bf5-4634cce8bc3e\"},{\"name\":\"Bags\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Bags\"},\"type\":\"sub\",\"limit\":\"5\",\"category\":\"107\",\"categories\":\"\",\"id\":\"fd5c5040-7408-4552-870d-f80c43bb9ada\"},{\"name\":\"Health & Beauty\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Health & Beauty\"},\"type\":\"sub\",\"limit\":\"5\",\"category\":\"109\",\"categories\":\"\",\"id\":\"b3850478-1770-4120-ba71-13fdde176048\"},{\"name\":\"Footwear\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Footwear\"},\"type\":\"sub\",\"limit\":\"5\",\"category\":\"111\",\"categories\":\"\",\"id\":\"0470c470-f4c1-42fc-a514-9d247b27b61c\"}]}'),
(189,'categories','Beauty','{\"general\":{\"carousel\":\"true\",\"default\":\"\",\"viewMoreText\":{\"lang_1\":\"See Products\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"200\",\"height\":\"250\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"moduleCategory\":\"__VAR__SIMPLE\",\"descLimit\":\"75\",\"name\":\"Beauty\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__CENTER TABS\",\"sectionsDisplay\":\"blocks\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING\"},\"c1\":{\"items\":\"5\",\"spacing\":\"__VAR__SPACING_3\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"spacing\":\"__VAR__SPACING_2\",\"items\":\"3\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"spacing\":\"__VAR__SPACING_2\",\"items\":\"2\"}}],\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"}}]}},\"items\":[{\"name\":\"Beauty\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"type\":\"sub\",\"limit\":\"\",\"category\":\"109\",\"categories\":\"\",\"id\":\"610bf457-258f-4623-b588-db3ff766190c\"}]}'),
(126,'accordion_menu','Account Menu','{\"general\":{\"iconHover\":\"\",\"subIconHover\":\"\",\"iconMargin\":{\"margin-right\":\"0\"},\"name\":\"Account Menu\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleTitle\":\"\",\"iconWidth\":\"15\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e93f\",\"name\":\"arrow2\"},\"type\":\"\",\"image\":\"\"},\"subIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconSize\":\"14\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"menu\":\"__VAR__DEFAULT\"},\"items\":[{\"items\":[],\"iconHover\":\"\",\"name\":\"My Account\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"My Account\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/account\"},\"id\":\"4c039cb5-1f8a-42da-af8d-0bda88d3fa6a\",\"subcategories\":\"true\"},{\"name\":\"Address Book\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Address Book\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconHover\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/address\"},\"subcategories\":\"true\",\"id\":\"4a3f17e6-57a9-4ee9-94a5-74c3a1438ca2\"},{\"name\":\"Wishlist\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Wishlist\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconHover\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/wishlist\"},\"subcategories\":\"true\",\"id\":\"629a36f1-1bbb-484f-bbad-b2e9aaf8e77b\"},{\"name\":\"Order History\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Order History\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconHover\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/order\"},\"subcategories\":\"true\",\"id\":\"da40f556-ae85-41ae-accf-b632ee2e55bf\"},{\"name\":\"Downloads\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Downloads\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconHover\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/download\"},\"subcategories\":\"true\",\"id\":\"8d67945d-f5d7-475d-ba47-cc27692848c8\"},{\"name\":\"Recurring Payments\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Recurring Payments\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconHover\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/recurring\"},\"subcategories\":\"true\",\"id\":\"b905db88-ce18-405f-8480-cbef9aad2cb7\"},{\"name\":\"Reward Points\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Reward Points\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconHover\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/reward\"},\"subcategories\":\"true\",\"id\":\"60c9158f-71ca-496f-8e89-d46ebd07bce0\"},{\"name\":\"Returns\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Returns\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconHover\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/return\\/insert\"},\"subcategories\":\"true\",\"id\":\"e4d89559-eb85-44fb-b195-430c1f147d93\"},{\"name\":\"Transactions\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Transactions\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconHover\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/transaction\"},\"subcategories\":\"true\",\"id\":\"8eb6ede5-8c71-48fd-9876-6f7811610f1a\"},{\"name\":\"Newsletter\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Newsletter\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconHover\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"account\\/newsletter\"},\"subcategories\":\"true\",\"id\":\"74b6b79e-cdc4-4c1b-a6a6-f18478a38cea\"}]}'),
(263,'info_blocks','Free Shipping Home Page','{\"general\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemAutoWidth\":\"false\",\"align\":\"center\",\"text2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"text1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Free Shipping Home Page\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"text1Font_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_SMALL\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"}}],\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"style\":\"__VAR__SINGLE\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"text1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT_2\",\"text-align\":\"center\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"text2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"itemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"gutter\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}},\"items\":[{\"iconHover\":\"\",\"name\":\"New Info Block\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"icon_multi\":[],\"title\":{\"lang_1\":\"Free shipping on any order above $200.\"},\"content\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"20\",\"color\":\"__VAR__COLOR_9\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab9\",\"name\":\"iconmonstr-delivery-5\"},\"type\":\"\",\"image\":\"\"},\"type\":\"icon\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"12111430-edee-4aaa-8a72-839714c3a885\",\"image\":{\"lang_1\":\"\"}}]}'),
(133,'product_label','Free','{\"general\":{\"labelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"offsets\":\"\",\"display\":\"diagonal\",\"labelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"labelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"position\":\"end\",\"scale\":\"10\",\"name\":\"Free\",\"labelIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"labelBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"labelSort\":\"\",\"visibility\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"labelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"label\":{\"lang_1\":\"Free\"},\"labelSize\":{\"first\":\"\",\"second\":\"\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"0\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"999\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"advanced\"},\"type\":\"custom\",\"labelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"labelStyle\":\"\"}}'),
(140,'blocks','Description, Specs - Mobile Accordion','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"display\":\"accordion\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemTitle\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"Description, Specs - Mobile Accordion\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__SIMPLE\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"20\"},\"c1\":{\"items\":\"1\",\"spacing\":\"20\"},\"c2\":{\"items\":\"1\",\"spacing\":\"20\"},\"sc\":{\"items\":\"1\",\"spacing\":\"20\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"expandIconU\":{\"size\":\"10\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"3\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f077\",\"name\":\"chevron-up\"},\"type\":\"\",\"image\":\"\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"expandButtonIcon\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Description\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"itemTypographyStyle\":\"\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"description\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemTableStyle\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"expandButtonIconHover\":\"\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Description\"},\"content\":{\"lang_1\":\"text\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemFormStyle\":\"\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"44e2c703-0097-406e-9e3c-5bee5f34d613\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Specifications\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"attributes\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Specifications\"},\"content\":{\"lang_1\":\"code\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"144f6697-75a6-4cb4-8939-f66cee924ecb\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Reviews\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"reviews\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Reviews\"},\"content\":{\"lang_1\":\"code\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"ed05a6a9-454f-46be-916e-87a683d13bf0\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Size Chart\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Size Chart\"},\"content\":{\"lang_1\":\"<p><img src=\\\"https:\\/\\/static.journal-theme.com\\/v3\\/image\\/catalog\\/journal3\\/misc\\/size-chart.jpg\\\" style=\\\"width: 538px;\\\"><br><\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"__VAR__LABEL_TOP\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"471ff3a9-5647-4623-83ae-dcfff923c31d\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(143,'title','Our Brands','{\"general\":{\"accentTitleVisibility\":\"true\",\"dividerHeight\":\"5\",\"containerDisplay\":\"\",\"containerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"accentTitleOffset\":{\"first\":\"\",\"second\":\"\"},\"font2\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"align\":\"center\",\"dividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"dividerMargin\":{\"margin\":\"10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"subtitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"titleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"subtitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"name\":\"Our Brands\",\"containerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dividerWidth\":\"50\",\"Background\":{\"background-color\":\"__VAR__COLOR_14\"},\"accentTitle\":{\"lang_1\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerBackground\":{\"background-size\":\"\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"fixed\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"catalog\\/journal3\\/misc\\/low-poly-60.jpg\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"containerPadding\":{\"padding\":\"10\",\"padding-top\":\"30\",\"padding-right\":\"\",\"padding-bottom\":\"30\",\"padding-left\":\"\"},\"containerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"style\":\"__VAR__MODULE TITLE\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"pad\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"subtitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"subtitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"titleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitle\":{\"lang_1\":\"\"},\"titleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_MEDIUM\"},\"title\":{\"lang_1\":\"Our Brands\"},\"subtitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"subtitleContainerDisplay\":\"\",\"titleStyle\":\"\",\"divider\":\"true\",\"titleContainerDisplay\":\"\",\"type\":\"custom\",\"accentTitleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"accentTitleOpacity\":\".05\",\"accentTitleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"mar\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"containerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}}'),
(146,'product_label','Custom Labels','{\"general\":{\"labelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"offsets\":\"18\",\"display\":\"diagonal\",\"labelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"labelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"position\":\"end\",\"scale\":\"10\",\"name\":\"Custom Labels\",\"labelIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"margin\":{\"margin\":\"5\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"labelBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"labelSort\":\"-1\",\"visibility\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"labelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"label\":{\"lang_1\":\"Custom Labels\"},\"labelSize\":{\"first\":\"\",\"second\":\"\"},\"filter\":{\"manufacturers\":[],\"products\":[\"360\",\"257\"],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"custom\"},\"type\":\"custom\",\"labelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"labelStyle\":\"\"}}'),
(147,'title','Products Title','{\"general\":{\"dividerHeight\":\"5\",\"containerDisplay\":\"\",\"containerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"align\":\"center\",\"dividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"dividerMargin\":{\"margin\":\"15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"subtitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"titleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"subtitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"name\":\"Products Title\",\"containerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dividerWidth\":\"100\",\"Background\":{\"background-color\":\"__VAR__COLOR_14\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"containerPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"30\",\"padding-left\":\"\"},\"containerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"style\":\"__VAR__MODULE TITLE\",\"titleContainerFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"}}],\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"subtitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"subtitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"titleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitle\":{\"lang_1\":\"\"},\"titleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"30\"},\"title\":{\"lang_1\":\"Top Selection\"},\"subtitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"subtitleContainerDisplay\":\"\",\"titleStyle\":\"\",\"divider\":\"true\",\"titleContainerDisplay\":\"\",\"type\":\"custom\",\"containerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}}'),
(186,'products','Top Sellers Menu','{\"general\":{\"carousel\":\"true\",\"moduleProductList\":\"\",\"default\":\"a7fd22f6-7a40-4f38-8eba-fb98dc2e1a91\",\"display\":\"grid\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"190\",\"height\":\"190\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"moduleProductGrid\":\"__VAR__SIMPLE\",\"name\":\"Top Sellers Menu\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"desktop\",\"phone\",\"tablet\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__SIMPLE\",\"sectionMargin\":\"20\",\"sectionsDisplay\":\"tabs\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"moduleProductStat1\":\"none\",\"moduleProductStat2\":\"none\",\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"2\",\"spacing\":\"__VAR__Product Grid\"},\"c1\":{\"items\":\"2\",\"spacing\":\"__VAR__Product Grid\"},\"c2\":{\"items\":\"1\",\"spacing\":\"__VAR__Product Grid\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Product Grid\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"}}]}},\"items\":[{\"iconHover\":\"\",\"name\":\"Top Sellers\",\"tabType\":\"content\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Top Sellers\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"3\",\"filters\":[],\"min_price\":\"\",\"categories\":[\"205\"],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"bestseller\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"a7fd22f6-7a40-4f38-8eba-fb98dc2e1a91\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}},{\"iconHover\":\"\",\"name\":\"Special Deals\",\"tabType\":\"content\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Special Deals\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"special\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"f24952de-1710-4425-aebb-64ed596af9e8\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}]}'),
(156,'title','Special Deals Title','{\"general\":{\"dividerHeight\":\"5\",\"containerDisplay\":\"\",\"containerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"align\":\"center\",\"dividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"dividerMargin\":{\"margin\":\"15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"subtitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"titleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"subtitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"name\":\"Special Deals Title\",\"containerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dividerWidth\":\"100\",\"Background\":{\"background-color\":\"__VAR__COLOR_14\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"containerPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"30\",\"padding-left\":\"\"},\"containerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"style\":\"__VAR__MODULE TITLE\",\"titleContainerFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"}}],\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"subtitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"subtitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"titleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitle\":{\"lang_1\":\"Combine any modules in any grid format. Banners, Products, Sliders, HTML Blocks, etc. Display products from any category, brand, or by specifying advanced criteria such as price range, options, attributes, and many many others.\"},\"titleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"30\"},\"title\":{\"lang_1\":\"Special Deals\"},\"subtitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"subtitleContainerDisplay\":\"\",\"titleStyle\":\"\",\"divider\":\"true\",\"titleContainerDisplay\":\"\",\"type\":\"custom\",\"containerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}}'),
(158,'banners','Deals Banner','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"bottom\",\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"center\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"385\",\"height\":\"425\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"titleDisplay\":\"hover\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"Deals Banner\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"scaleHover\":\"false\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"hoverOverlay\":\"rgba(0, 0, 0, 0.4)\",\"imageBorderHover\":\"\",\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"titlePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}}},\"items\":[{\"name\":\"Banner\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/22.jpg\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/special\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"651ed93d-d690-4263-b127-6824512d084f\"}]}'),
(161,'catalog','Catalog Brands','{\"general\":{\"itemViewMoreFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"carousel\":\"false\",\"itemLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imagePosition\":\"\",\"itemsBoxBorderHover\":\"\",\"moduleStyle\":\"__VAR__DEFAULT\",\"itemTitle\":\"__VAR__CATALOG_MODULE\",\"itemsBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"viewMoreText\":{\"lang_1\":\"See all from this brand\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"100\",\"height\":\"100\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"itemsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"name\":\"Catalog Brands\",\"itemsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemIcon\":{\"size\":\"12\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"2\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e409\",\"name\":\"navigate_next\"},\"type\":\"\",\"image\":\"\"},\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemIconHover\":\"\",\"carouselStyle\":\"__VAR__TOP_ARROWS\",\"itemsBoxShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"textTruncate\":\"true\",\"itemsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"images\":\"true\",\"imageBorderRadius\":{\"border-radius\":\"5\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"itemsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemLinkSpace\":\"3\",\"itemsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemViewMoreFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_14\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"itemLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"itemsPerRow\":{\"c0\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"},\"c1\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"},\"c2\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Side Products\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"}}]}},\"items\":[{\"name\":\"Apple\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"type\":\"manufacturer\",\"subtype\":\"category\",\"category\":\"\",\"manufacturer\":\"8\",\"limit\":\"4\",\"id\":\"63039bcd-a201-47e9-96fc-b2984f3e094b\"},{\"name\":\"Awesome Brand\",\"manufacturer\":\"12\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Electronics\"},\"subtype\":\"category\",\"type\":\"manufacturer\",\"id\":\"b1863ae8-ee42-4d77-881b-f3662344e4a6\",\"limit\":\"4\",\"category\":\"69\"},{\"name\":\"Chic D\'or\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"type\":\"manufacturer\",\"subtype\":\"category\",\"category\":\"\",\"manufacturer\":\"13\",\"limit\":\"4\",\"id\":\"08ee792f-3dbe-4c2f-ac24-91779fda7e28\"},{\"name\":\"Errickson\",\"manufacturer\":\"15\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Fashion\"},\"subtype\":\"category\",\"type\":\"manufacturer\",\"id\":\"a15ddfef-2f1e-4a5c-b541-c8e7e7bb6620\",\"limit\":\"4\",\"category\":\"59\"},{\"name\":\"Melissa\",\"manufacturer\":\"18\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Health & Beauty\"},\"subtype\":\"category\",\"type\":\"manufacturer\",\"id\":\"7e478bd0-78bb-479e-81ca-313c004a0955\",\"limit\":\"4\",\"category\":\"109\"},{\"name\":\"Hipster\",\"manufacturer\":\"14\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Health & Beauty\"},\"subtype\":\"category\",\"type\":\"manufacturer\",\"id\":\"4066ba72-a0e9-4466-b603-b5d1e92a6661\",\"limit\":\"4\",\"category\":\"109\"}]}'),
(162,'title','Blog Title','{\"general\":{\"dividerHeight\":\"5\",\"containerDisplay\":\"\",\"containerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"align\":\"center\",\"dividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"dividerMargin\":{\"margin\":\"15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"subtitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"titleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"subtitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"name\":\"Blog Title\",\"containerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dividerWidth\":\"100\",\"Background\":{\"background-color\":\"__VAR__COLOR_14\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"containerPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"30\",\"padding-left\":\"\"},\"containerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"style\":\"__VAR__MODULE TITLE\",\"titleContainerFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"}}],\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"subtitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"subtitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"titleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitle\":{\"lang_1\":\"\"},\"titleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"30\"},\"title\":{\"lang_1\":\"Latest News\"},\"subtitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"subtitleContainerDisplay\":\"\",\"titleStyle\":\"\",\"divider\":\"true\",\"titleContainerDisplay\":\"\",\"type\":\"custom\",\"containerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}}'),
(261,'blocks','End of Season Promo Block','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"before\",\"display\":\"grid\",\"typographyStyle\":\"\",\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"\",\"padding-left\":\"15\"},\"imagePosition\":\"top\",\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"itemTitle\":\"\",\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"30\",\"margin-left\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"contentAlignV\":\"\",\"name\":\"End of Season Promo Block\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"contentAlign\":\"\",\"moduleTitle\":\"__VAR__CENTER\",\"itemsContentWidth\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"\",\"blocksTitleAlign\":\"\",\"imageBorderHover\":\"\",\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"moduleBackground_removed\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"0\"},\"c1\":{\"items\":\"1\",\"spacing\":\"0\"},\"c2\":{\"items\":\"1\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"}},\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"40\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemContentWidth\":\"\",\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"1.5\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_11\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"__VAR__RED_LARGE\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"left\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"blocksColumnDividerColor\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_MEDIUM\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"1.3\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"blocksColumnDividerWidth\":\"1\",\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"scale\":\"120\",\"imageAlign\":\"left\",\"name\":\"New Block\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"center\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"Shop Now\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"scaleOrigin\":\"center\",\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"blocksColumnDividerStyle\":\"solid\",\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"blocksColumns\":\"initial\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"End of Season Sale\"},\"content\":{\"lang_1\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. <br><\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"blocksColumnGap\":\"20\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"419508e3-eea1-4e0f-b3e5-5821fc8e37b4\",\"image\":\"\",\"footer\":\"button\",\"shortDescriptionLimit\":\"150\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"dynamic\":\"journal3\\/blocks_example\",\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(171,'title','Improved Gallery Title','{\"general\":{\"dividerHeight\":\"5\",\"containerDisplay\":\"\",\"containerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"align\":\"center\",\"dividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"dividerMargin\":{\"margin\":\"15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"subtitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"titleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"subtitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"name\":\"Improved Gallery Title\",\"containerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"dividerWidth\":\"100\",\"Background\":{\"background-color\":\"__VAR__COLOR_14\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"containerPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"30\",\"padding-left\":\"\"},\"containerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"style\":\"__VAR__MODULE TITLE\",\"titleContainerFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"}}],\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"subtitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"subtitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"titleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"subtitle\":{\"lang_1\":\"The Gallery module supports images, videos and can also act as banners that can point to any other page or open other Popup modules. Create different modules with images, videos, banners or a combination of all. Add your modules on any page in any grid format.\"},\"titleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"30\"},\"title\":{\"lang_1\":\"Improved Gallery Module\"},\"subtitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"subtitleContainerDisplay\":\"\",\"titleStyle\":\"\",\"divider\":\"true\",\"titleContainerDisplay\":\"\",\"type\":\"custom\",\"containerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}}'),
(176,'gallery','Gallery Side Column','{\"general\":{\"carousel\":\"false\",\"instagramPage\":\"\",\"thumbBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"thumbDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"60\",\"height\":\"60\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"thumbBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"moduleGallery\":\"__VAR__DEFAULT\",\"grayscale\":\"hover\",\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Gallery Side Column\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"-5\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"thumbBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"hoverOverlay\":\"rgba(51, 55, 154, 0.45)\",\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eba0\",\"name\":\"plus2\"},\"type\":\"\",\"image\":\"\"},\"hoverType\":\"icon\",\"thumbShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"popupThumbDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"80\",\"height\":\"80\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"title\":{\"lang_1\":\"Gallery Module\"},\"thumbBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbBorderHover\":\"\",\"source\":\"local\",\"thumbPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"8\",\"spacing\":\"__VAR__Side Products\"},\"c1\":{\"items\":\"1\",\"spacing\":\"__VAR__Side Products\"},\"c2\":{\"items\":\"1\",\"spacing\":\"__VAR__Side Products\"},\"sc\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"6\",\"spacing\":\"__VAR__Side Products\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"4\",\"spacing\":\"__VAR__Side Products\"}}]},\"thumbsLimit\":\"9\"},\"items\":[{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 1\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"4080aeb7-2c6a-42ba-a77d-6a83fad27994\",\"image\":\"catalog\\/journal3\\/gallery\\/233H.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"catalog\\/journal3\\/misc\\/4k.png\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"https:\\/\\/www.youtube.com\\/watch?v=Bey4XXJAqS8\",\"name\":\"Video\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"youtube\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"video\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"e1fef862-a055-43a8-90a4-87fc3954c2a9\",\"image\":\"catalog\\/journal3\\/backdrops\\/backdrop031.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 2\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"category\",\"id\":\"107\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"1317aeae-bff0-4e40-8f1f-02e5e4c3caa4\",\"image\":\"catalog\\/journal3\\/gallery\\/demo27.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 3\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"eacdda10-6b66-4325-ba93-4274b6217da8\",\"image\":\"catalog\\/journal3\\/gallery\\/beauty.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 4\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"5ca9e0e5-297c-42c5-bae5-00b6eeead81a\",\"image\":\"catalog\\/journal3\\/gallery\\/demo06.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 5\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"0807e92b-44da-4a66-aeb3-c8db92d0ae5f\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop031.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 6\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/special\"},\"id\":\"d6be8ab4-d5bf-470c-9089-41c6cd9ef3c3\",\"image\":\"catalog\\/journal3\\/gallery\\/pexels-photo-853151.jpeg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 7\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"b5117f56-41db-40ba-a1c0-7f55a1929c3c\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop036.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 8\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"49ab3017-cc84-4141-ba8d-542a4d14c610\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop023.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 9\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"5789d03d-4268-4ef9-a205-22b51af3defa\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop008.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 10\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"bd45ab26-5497-450b-a61e-a72da1d7b564\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop006b.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 11\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"70624631-da32-4289-ab40-984bb364fa27\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop020.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 12\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"ec6c6f84-55ab-4d1b-996a-6109d1f86725\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop021.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 13\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"f11f2bf9-7ce3-4797-8f7e-6f29938cef4f\",\"image\":\"catalog\\/journal3\\/gallery\\/backdrop038.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 14\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"c1cc4401-eca4-4081-8c65-7a7b89a4d577\",\"image\":\"catalog\\/journal3\\/gallery\\/wing.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 15\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"d50e28bb-235e-49b0-b4f6-4676e45d2242\",\"image\":\"catalog\\/journal3\\/gallery\\/demo19.jpg\"},{\"videoHtml5Url\":\"\",\"videoImage\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"name\":\"Image 16\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"videoType\":\"html5\",\"title\":{\"lang_1\":\"Image Caption\"},\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"b7423f0e-aef4-41fc-b5a7-1df2c3e64ce8\",\"image\":\"catalog\\/journal3\\/gallery\\/demo26.jpg\"}]}'),
(177,'banners','Fashion Sale','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"335\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"name\":\"Fashion Sale\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"hoverOverlay\":\"rgba(0, 138, 221, 0.52)\",\"imageBorderHover\":\"\",\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}}},\"items\":[{\"name\":\"Banner\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/07.jpg\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"e77b9a2f-9833-4b04-bb1a-f18c8e01c03b\"}]}'),
(223,'flyout_menu','Categories Only','{\"general\":{\"globalIconHover\":\"\",\"globalSubIconHover\":\"\",\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"name\":\"Categories Only\",\"iconWidth\":\"\",\"dropdown\":\"\",\"megamenu\":\"__VAR__Flyout\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"globalSubIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"iconSize\":\"\",\"globalIcon\":{\"size\":\"13\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"8\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e93f\",\"name\":\"arrow2\"},\"type\":\"\",\"image\":\"\"},\"menu\":\"__VAR__Mobile_Accordion_Menu\"},\"items\":[{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Fashion\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Fashion\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"59\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"4b293671-e2c2-4b59-9a03-91a88ef714d6\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"},{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Bags\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Bags\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"107\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"92bb44c8-a6a8-48e5-a515-b641ba4e3b19\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"},{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Health & Beauty\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Health & Beauty\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"109\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"216612a9-a13b-4d92-b305-3d7d4efebad7\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"},{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Footwear\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Footwear\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"111\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"e49a7cee-4130-45b6-bd80-75b76033c14d\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"},{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Home\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Home\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"175\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"6b99fcd0-1c30-4a09-8911-50b7a0e5156d\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"},{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Electronics\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Electronics\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"69\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"4f97a51a-d3db-46b4-84e6-3849e8a34b63\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"},{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Food\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Food\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"155\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"1a0e4436-8849-42be-86c1-2b7871c628aa\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"},{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Baby & Kids\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Baby & Kids\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"166\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"d90806e1-cf86-40f3-add0-e54627552b22\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"},{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Flowers\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Flowers\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"196\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"187f3d8b-f6c3-49dc-929e-99afae1cd997\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"},{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Appliances\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"label\":{\"lang_1\":\"\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Appliances\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"category\",\"id\":\"205\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"81714b16-2e6c-4f2d-8768-f4b7c54ea2ea\",\"flyout\":\"\",\"subcategories\":\"true\",\"labelStyle\":\"\"}]}'),
(175,'blocks','About Us','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"display\":\"grid\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemTitle\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"200\",\"height\":\"250\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"400\",\"phone_height\":\"250\"},\"accordionStyle\":\"\",\"name\":\"About Us\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"0\"},\"c1\":{\"items\":\"1\",\"spacing\":\"0\"},\"c2\":{\"items\":\"1\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"285\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"imageMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"0\",\"margin-left\":\"0\"}}],\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"__VAR__DEFAULT\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"side\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"20\",\"margin-bottom\":\"10\",\"margin-left\":\"-60\"},\"imageAlign\":\"left\",\"name\":\"About Us\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"true\",\"expandOverlayColor\":\"__VAR__COLOR_1\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"image\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"Show Less\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"\"},\"content\":{\"lang_1\":\"<p><\\/p><h3>About Us<\\/h3>[~nl~]<h5>The best Opencart theme got better, a lot better.<\\/h5>[~nl~]<p><span class=\\\"drop-cap\\\">S<\\/span>ince 2013, Journal has been the best selling and most loved OpenCart theme on the market. Now at version 3, it brings many new and revolutionary features such as an advanced page builder with 30+ multi-purpose modules that can be added on any page in any grid layout configuration, as well as the best possible customizable options for any area of your store.<\\/p><p>Journal 3 also comes with fully customizable CSS options with the added possibility of setting each option differently on any breakpoint. This breakthrough feature will greatly enhance your design skills and allow you to create pixel perfect layouts at any screen width.<\\/p><p>The new advanced Status mechanism allow you to set up modules and menus based on device, customer login status or customer groups.<br><\\/p><blockquote>98% satisfaction rate within our more than 19,000 customers.<\\/blockquote><p>The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and date. Imagine the possibilities and peace of mind...designing your promotional banners or sliders, or entire product modules that only show up on specific dates and are disabled automatically whenever you don\'t need them anymore. <\\/p><p>These are just a few of the outstanding features available in the new Journal 3 framework, there are so many new options and possibilities that it will takes us a very long time to list them all.<\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"Read More\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"632f0955-7d05-4315-bb86-06ee644c1e53\",\"image\":\"catalog\\/journal3\\/people\\/arm.jpg\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"imagePosition_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"top\"}],\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}');
INSERT INTO `oc_journal3_module` VALUES
(182,'products','Related Blog Bottom','{\"general\":{\"carousel\":\"true\",\"moduleProductCartTooltip\":\"\",\"moduleProductList\":\"\",\"default\":\"\",\"moduleProductCompareTooltip\":\"\",\"moduleProductDescriptionLimit\":\"150\",\"display\":\"grid\",\"modulePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"moduleProductGrid\":\"__VAR__SIMPLE\",\"name\":\"Related Blog Bottom\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__TOP_ARROWS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"\",\"sectionMargin\":\"20\",\"moduleProductQuickviewTooltip\":\"\",\"sectionsDisplay\":\"blocks\",\"moduleProductExtraTooltip\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"moduleProductStat1\":\"none\",\"moduleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"moduleProductStat2\":\"none\",\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"moduleProductWishlistTooltip\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"4\",\"spacing\":\"__VAR__Product Grid\"},\"c1\":{\"items\":\"3\",\"spacing\":\"__VAR__Product Grid\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__Product Grid\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Product Grid\"},\"c0_multi\":[],\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Product Grid\"}}]}},\"items\":[{\"iconHover\":\"\",\"name\":\"Related\",\"tabType\":\"content\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Related Products\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"related\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"bc1af651-c07e-42e7-9716-81a54c99adca\",\"iconActiveHover\":\"\",\"iconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}]}'),
(184,'blocks','Reaction Buttons ShareThis','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"display\":\"grid\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemTitle\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"Reaction Buttons ShareThis\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"contentAlign_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"center\"}],\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Reactions Code\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"text\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"\"},\"content\":{\"lang_1\":\"<script type=\'text\\/javascript\' src=\'\\/\\/platform-api.sharethis.com\\/js\\/sharethis.js#property=5b5a260bf5aa6d001130d052&product=inline-reaction-buttons\' async=\'async\'><\\/script>[~nl~]<div class=\\\"sharethis-inline-reaction-buttons\\\"><\\/div>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"fba935da-62ed-4b4a-a020-f738567d2910\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(180,'testimonials','Testimonials','{\"general\":{\"carousel\":\"true\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"display\":\"grid\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"Testimonials\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"__VAR__FANCY\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"__VAR__TESTIMONIALS\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"__VAR__SIMPLE\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"What they say about us\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"75\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"- charlibaltimore\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"center\",\"name\":\"Item 4\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"icon\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f077\",\"name\":\"chevron-up\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"Show Less\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f078\",\"name\":\"chevron-down\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"text\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"italic\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Item 1\"},\"content\":{\"lang_1\":\"I\'ve purchased hundreds and hundreds of files over the past 7 years. But there is nothing close to this support and professionalism. Not only is theme, simple , useful and modern, but again the support is remarkable. Very happy I got this theme! Thank you!\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e98f\",\"name\":\"iconmonstr-quote-7\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"Show More\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"70\",\"second\":\"70\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"3c10e907-a543-4473-bf93-e6669e5ab0ce\",\"image\":\"\",\"footer\":\"text\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"15\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"75\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"- chromebandit\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"center\",\"name\":\"Item 1\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"icon\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f077\",\"name\":\"chevron-up\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"Show Less\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f078\",\"name\":\"chevron-down\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"text\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"italic\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Item 1\"},\"content\":{\"lang_1\":\"I am a web developer for many years i haven\'t seen anything clear clean coded like journal it makes my live so much easier thanks for the great work you have done.\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e98f\",\"name\":\"iconmonstr-quote-7\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"Show More\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"70\",\"second\":\"70\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"66bd3038-d19a-407d-a5fb-24facd3d76a1\",\"image\":\"\",\"footer\":\"text\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"15\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"75\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"- kellyhorne\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"center\",\"name\":\"Item 2\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"icon\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f077\",\"name\":\"chevron-up\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"Show Less\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f078\",\"name\":\"chevron-down\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"text\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"italic\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Item 1\"},\"content\":{\"lang_1\":\"Great toolkit for Opencart. As a base platform, Opencart can be a nightmare to modify and get looking good. Journal takes away all the pain.\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e98f\",\"name\":\"iconmonstr-quote-7\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"Show More\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"70\",\"second\":\"70\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"b6d242c6-6eed-49be-bd85-1f159fbb80d3\",\"image\":\"\",\"footer\":\"text\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"15\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"75\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"- TBNWorld\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"center\",\"name\":\"Item 3\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"icon\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f077\",\"name\":\"chevron-up\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"Show Less\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f078\",\"name\":\"chevron-down\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"text\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"italic\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Item 1\"},\"content\":{\"lang_1\":\"This theme is just amazing. With the new version J3 everything has become much easier to adjust. It\'s indeed, as the author says, not possible to mention all the posibilities, because it\'s just to much. Great value for the price!\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e98f\",\"name\":\"iconmonstr-quote-7\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"Show More\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"70\",\"second\":\"70\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"3ad31dc3-d45b-48b2-8455-2e5488191f72\",\"image\":\"\",\"footer\":\"text\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"15\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"75\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"- sacredcirclegifts\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"center\",\"name\":\"Item 5\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"icon\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f077\",\"name\":\"chevron-up\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"Show Less\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f078\",\"name\":\"chevron-down\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"text\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"italic\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Item 1\"},\"content\":{\"lang_1\":\"Amazing ways to customize so you dont end up with a site looking like everyone elses :) Unique sites are much better than clone sites, as they keep the customers interest and the bounce rate is alot lower. Great Job A++++++\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e98f\",\"name\":\"iconmonstr-quote-7\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"Show More\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"70\",\"second\":\"70\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"2fe8cead-1bd0-49bd-9964-d738b10d70ed\",\"image\":\"\",\"footer\":\"text\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(181,'blog_side_posts','Related Articles','{\"general\":{\"carousel\":\"false\",\"default\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"50\",\"height\":\"50\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"modulePostList\":\"\",\"name\":\"Related Articles\",\"moduleTitle\":\"\",\"containerMargin\":{\"margin\":\"-5\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__TOP_ARROWS\",\"modulePostGrid\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"\",\"sectionsDisplay\":\"blocks\",\"sidePostsStyle\":\"__VAR__DEFAULT\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"carouselGutter\":{\"padding\":\"-5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING_2\"},\"c1\":{\"items\":\"4\",\"spacing\":\"__VAR__SPACING_2\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"},\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"}}],\"c2_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"}}],\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__SPACING_2\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"}}]}},\"items\":[{\"name\":\"Related Articles\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Related Articles\"},\"filter\":{\"preset\":\"related\",\"categories\":[],\"posts\":[\"4\"],\"limit\":\"5\"},\"id\":\"f11b7bee-5e03-43e4-9407-b11c3b2987c0\"}]}'),
(201,'banners','Specials Banner','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"bottom\",\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleMargin\":{\"margin\":\"15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"240\",\"height\":\"375\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"titleDisplay\":\"hover\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(52, 59, 151, 0.2)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"Specials Banner\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"scaleHover\":\"false\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"hoverOverlay\":\"rgba(0, 138, 221, 0.52)\",\"imageBorderHover\":\"\",\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"hoverBackgroundAlways\":{\"background-color\":\"rgba(255, 214, 0, 0.27)\"},\"titlePadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"12\",\"padding-left\":\"\"},\"textMargin\":{\"margin\":\"20\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}}},\"items\":[{\"name\":\"Banner\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"See all specials\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/sale.jpg\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/special\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"e77b9a2f-9833-4b04-bb1a-f18c8e01c03b\"}]}'),
(222,'side_products','Related - Also Bought','{\"general\":{\"carousel\":\"true\",\"default\":\"\",\"display\":\"blocks\",\"space\":\"\",\"carouselTablet\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"60\",\"height\":\"60\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"130\",\"phone_height\":\"130\"},\"accordionStyle\":\"\",\"moduleSideProductCompareTooltip\":\"\",\"name\":\"Related - Also Bought\",\"moduleSideProduct\":\"__VAR__DEFAULT\",\"carouselPhone\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"__VAR__TOP_ARROWS\",\"moduleSideProductWishlistTooltip\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"__VAR__SIMPLE\",\"blocksRow\":\"1\",\"sectionsDisplay\":\"tabs\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"moduleSideProductCartTooltip\":\"\",\"titleStyle\":\"\",\"sectionsDisplayTablet\":\"\",\"sectionsDisplayPhone\":\"\",\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"moduleSideProductQuickviewTooltip\":\"\",\"itemsPerRow\":{\"variable\":\"\",\"c0\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"},\"c1\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"},\"c2\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Side Products\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"}}]}},\"items\":[{\"name\":\"Related\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Pair it With\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"related\"},\"id\":\"a1e9fa53-da7a-49e1-a4ea-73a6668a51f1\"},{\"name\":\"Also Bought\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"People Also Bought\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"alsobought\"},\"id\":\"395a4914-2a88-49d6-8b73-0bc1609332c0\"}]}'),
(228,'icons_menu','Payments - Icons Menu','{\"general\":{\"iconsMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltip\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSpacing_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"8\"}],\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconsAlign_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"center\"}],\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"containerBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconSpacing\":\"15\",\"iconColor\":\"__VAR__COLOR_11\",\"iconsAlign\":\"right\",\"iconBorderActive\":\"\",\"name\":\"Payments - Icons Menu\",\"tooltipPosition\":\"top\",\"iconsMenuCountBadge\":\"\",\"iconFontTruncate\":\"false\",\"containerMargin\":{\"margin\":\"-8\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"iconColorActive\":\"\",\"containerPad\":{\"padding\":\"-10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconColorHover\":\"__VAR__COLOR_5\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemSize\":\"30\",\"tooltipStatus\":\"true\",\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":\"\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}},\"items\":[{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Visa\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Visa\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f0\",\"name\":\"cc-visa\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"cdfc062c-6780-4cac-9bc4-8824656ef788\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Mastercard\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Mastercard\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f1\",\"name\":\"cc-mastercard\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"2475b212-0364-448e-b062-f5cca465bb33\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Amex\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Amex\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f3\",\"name\":\"cc-amex\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"d2c93d10-ebf4-4f9b-b452-1dac9a270cbf\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Discover\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Discover\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f2\",\"name\":\"cc-discover\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"2bfe8fec-8a37-483c-ac35-d88e54010324\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Paypal\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Paypal\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f4\",\"name\":\"cc-paypal\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"53386a23-6aa2-47fd-a23b-91442a1453c8\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Stripe\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Stripe\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f1f5\",\"name\":\"cc-stripe\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"custom\",\"id\":\"\",\"url\":\"#\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"id\":\"9445b6cf-def6-4a4c-88c0-3d1b8eb9cc5a\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}}]}'),
(204,'banners','50% Off','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"bottom\",\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"center\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"125\",\"height\":\"125\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"titleDisplay\":\"hover\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"__VAR__OVERLAY\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"50% Off\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"scaleHover\":\"false\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"hoverOverlay\":\"rgba(0, 0, 0, 0.4)\",\"imageBorderHover\":\"\",\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"titlePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING_2\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}}},\"items\":[{\"name\":\"Banner\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Big savings, hurry up\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/0018.jpg\"},\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/special\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"651ed93d-d690-4263-b127-6824512d084f\"}]}'),
(209,'icons_menu','Category Icons','{\"general\":{\"iconsMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltip\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconsAlign_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"left\"}],\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"containerBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconSpacing\":\"10\",\"iconColor\":\"__VAR__COLOR_4\",\"iconsAlign\":\"right\",\"iconBorderActive\":\"\",\"name\":\"Category Icons\",\"tooltipPosition\":\"top\",\"iconsMenuCountBadge\":\"\",\"iconFontTruncate\":\"true\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"iconColorActive\":\"\",\"containerPad\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconColorHover\":\"__VAR__COLOR_1\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemSize\":\"40\",\"tooltipStatus\":\"false\",\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":\"80\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconShadowActive\":\"__VAR__INNER\"},\"items\":[{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Fashion\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Fashion\"},\"icon\":{\"size\":\"45\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"noun_suit_909105\",\"code\":\"e91a\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"59\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"a49aafb7-4f68-490b-8c58-1b7d40819724\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Bags\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Bags\"},\"icon\":{\"size\":\"45\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e909\",\"name\":\"noun_bag_1896247\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"107\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"46143c3e-59d4-4263-b980-fd915cac27a0\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Health & Beauty\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Health & Beauty\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e971\",\"name\":\"noun_971876_cc-beauty-makeup\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"109\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"4f0ad861-3c2b-419e-b87b-1e2dd71be853\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Footwear\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Footwear\"},\"icon\":{\"size\":\"45\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e965\",\"name\":\"noun_Sneaker_235904\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"111\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"d9e73cc3-9c22-4011-9d6d-7405fea201ea\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Home\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Home\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e966\",\"name\":\"noun_889859_cc-furniture\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"175\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"f25766b9-5b65-4d0d-8653-11487b3b22f1\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Electronics\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Electronics\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eaf3\",\"name\":\"important_devices\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"69\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"18b34342-138e-49b5-8fce-cf52e2c184c0\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Food\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Food\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e973\",\"name\":\"noun_1615093_cc-food\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"155\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"7b1e6b46-c269-4c0f-83f9-d7be1c3fcc4f\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Baby & Kids\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Baby & Kids\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eabb\",\"name\":\"iconmonstr-generation-1\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"166\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"e167a158-4df8-4cf9-a3e7-9ce6da7a9de0\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}},{\"iconHover\":\"\",\"iconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"name\":\"Appliances\",\"iconMenuCountBadge\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"iconFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title\":{\"lang_1\":\"Appliances\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e96d\",\"name\":\"noun_appliance_1830792\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"205\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"ad32b44d-1395-4c24-83d8-a8ae06ed2be3\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconActive\":\"\",\"iconMenuCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"}}]}'),
(262,'blocks','Category Description','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"before\",\"display\":\"grid\",\"typographyStyle\":\"\",\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imagePosition\":\"top\",\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"itemTitle\":\"\",\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"200\",\"height\":\"250\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"400\",\"phone_height\":\"250\"},\"accordionStyle\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"contentAlignV\":\"\",\"name\":\"Category Description\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"contentAlign\":\"\",\"moduleTitle\":\"\",\"itemsContentWidth\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"\",\"blocksTitleAlign\":\"\",\"imageBorderHover\":\"\",\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"moduleBackground_removed\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"0\"},\"c1\":{\"items\":\"1\",\"spacing\":\"0\"},\"c2\":{\"items\":\"1\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"}},\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemContentWidth\":\"\",\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"imageMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"0\",\"margin-left\":\"0\"}}],\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"__VAR__DEFAULT\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"blocksColumnDividerColor\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"blocksColumnDividerWidth\":\"1\",\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"20\",\"margin-bottom\":\"10\",\"margin-left\":\"-60\"},\"scale\":\"100\",\"imageAlign\":\"\",\"name\":\"Category Description\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"\",\"expandButton\":\"true\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"scaleOrigin\":\"center\",\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"description\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"blocksColumnDividerStyle\":\"solid\",\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"blocksColumns\":\"initial\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"content\":{\"lang_1\":\"<p><\\/p><h3><br><\\/h3>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"blocksColumnGap\":\"20\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"632f0955-7d05-4315-bb86-06ee644c1e53\",\"image\":\"\",\"footer\":\"none\",\"shortDescriptionLimit\":\"150\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"imagePosition_multi\":[],\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"dynamic\":\"journal3\\/blocks_example\",\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(215,'info_blocks','Vertical Blocks','{\"general\":{\"name\":\"Vertical Blocks\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"10\",\"padding-top\":\"5\",\"padding-right\":\"\",\"padding-bottom\":\"0\",\"padding-left\":\"\"},\"style\":\"__VAR__VERTICAL\",\"status\":{\"status\":\"true\",\"device\":[\"tablet\",\"desktop\",\"phone\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"gutter_multi\":[],\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"gutter\":{\"margin\":\"-2\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"5\"},\"c0_multi\":[],\"c1_multi\":[],\"c2_multi\":[]},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}},\"items\":[{\"iconHover\":\"\",\"name\":\"Free Shipping\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"Border\":{\"border-left-width\":\"1\",\"border-color\":\"__VAR__COLOR_15\",\"border-style\":\"solid\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[],\"title\":{\"lang_1\":\"Free Shipping\"},\"content\":{\"lang_1\":\"Free delivery over $50\"},\"icon\":{\"size\":\"20\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab9\",\"name\":\"iconmonstr-delivery-5\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"3bc4546f-4173-44fd-88ed-7ac31eed02c3\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}},{\"iconHover\":\"\",\"name\":\"Free Returns\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[],\"title\":{\"lang_1\":\"Free Returns\"},\"content\":{\"lang_1\":\"Hassle free returns\"},\"icon\":{\"size\":\"20\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f122\",\"name\":\"mail-reply-all\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"3e95ed79-9490-4a17-a235-1d906268adda\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}},{\"iconHover\":\"\",\"name\":\"Secured Shopping\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[],\"title\":{\"lang_1\":\"Secured Shopping\"},\"content\":{\"lang_1\":\"Best security features\"},\"icon\":{\"size\":\"20\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e97f\",\"name\":\"iconmonstr-police-9\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"788f964b-cbef-4e1a-97c7-fff0bce2f52f\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}},{\"iconHover\":\"\",\"name\":\"Unlimited Blocks\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonType\":\"both\",\"borderHover\":\"\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[],\"title\":{\"lang_1\":\"Unlimited Blocks\"},\"content\":{\"lang_1\":\"Any content, any page\"},\"icon\":{\"size\":\"20\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb15\",\"name\":\"box\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"a9fe4110-f774-4b7b-96ef-8a77c18287ea\",\"itemStyle\":\"\",\"buttonStyle\":\"\",\"buttonText\":{\"lang_1\":\"Send\"}}]}'),
(216,'blocks','FAQ','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"5b3a2625-3cec-40c9-8665-7c03c3c9f787\",\"display\":\"accordion\",\"typographyStyle\":\"\",\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemTitle\":\"\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"accordionStyle\":\"\",\"name\":\"FAQ\",\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"moduleTitle\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"tabsStyle\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"moduleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"0\"},\"c1\":{\"items\":\"1\",\"spacing\":\"0\"},\"c2\":{\"items\":\"1\",\"spacing\":\"0\"},\"sc\":{\"items\":\"1\",\"spacing\":\"0\"}}},\"items\":[{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Q1\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"Do I need an account to place an order?\"},\"content\":{\"lang_1\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"5b3a2625-3cec-40c9-8665-7c03c3c9f787\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"70\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Q2\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"What payment methods do you accept?\"},\"content\":{\"lang_1\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"8abe5f10-1cd9-4a9b-9804-0bb06a5cde2e\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"75\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Q3\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"What shipping methods do you provide?\"},\"content\":{\"lang_1\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"4ecc5ba5-eee6-4ebe-b7bf-dc433241c801\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"75\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Q4\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"How long will it take to receive my order?\"},\"content\":{\"lang_1\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"d253e0c5-e6b9-450f-bce4-68673b64c9f8\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},{\"footerBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"expandHeight\":\"75\",\"footerBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTypographyStyles\":\"\",\"footerButtonStyle\":\"\",\"tabIconHover2\":\"\",\"expandIconHoverUp\":\"\",\"imagePosition\":\"top\",\"contentWidgetHeight\":\"\",\"footerTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"footerButtonLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"footerText\":{\"lang_1\":\"\"},\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentTypography\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"expandIconHover\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"name\":\"Q5\",\"buttonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"buttonIconHoverRight\":\"\",\"contentAlign\":\"left\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"footerButton\":{\"lang_1\":\"\"},\"header\":\"none\",\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"footerBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerBoxStylesDisplay\":\"\",\"buttonIconHover\":\"\",\"buttonIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"expandButtonTextLess\":{\"lang_1\":\"\"},\"footerBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"footerBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageBorderHover\":\"\",\"itemBoxStylesBorderHover\":\"\",\"footerTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconBorderHover\":\"\",\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"title\":{\"lang_1\":\"What is your return policy?\"},\"content\":{\"lang_1\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<\\/p>\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"footerButtonWidth\":\"auto\",\"expandButtonText\":{\"lang_1\":\"\"},\"itemFormStyles\":\"\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"id\":\"7787fe13-89e7-4fae-b7ca-47bee2c4dbf4\",\"image\":\"\",\"footer\":\"none\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemTableStyles\":\"\",\"footerTextAlign\":\"center\",\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"footerBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]}'),
(217,'product_label','Top Brand','{\"general\":{\"labelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"offsets\":\"\",\"display\":\"default\",\"labelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"labelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"position\":\"end\",\"scale\":\"10\",\"name\":\"Top Brand\",\"labelIcon\":{\"size\":\"13\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"3\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e984\",\"name\":\"iconmonstr-diamond-11-ring-jewel\"},\"type\":\"\",\"image\":\"\"},\"margin\":{\"margin\":\"\",\"margin-top\":\"5\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"labelBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"labelSort\":\"1\",\"visibility\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"labelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"label\":{\"lang_1\":\"Top Brand\"},\"labelSize\":{\"first\":\"\",\"second\":\"\"},\"filter\":{\"manufacturers\":[\"16\"],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"99\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"advanced\"},\"type\":\"custom\",\"labelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"labelStyle\":\"\"}}'),
(219,'main_menu','Main Menu - Mobile','{\"general\":{\"name\":\"Main Menu - Mobile\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"false\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"All Departments\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"true\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"default\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"multiLevelPosition\":\"right\",\"label\":{\"lang_1\":\"New\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"500\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"All Departments\"},\"icon\":{\"size\":\"22\",\"color\":\"\",\"offsetX\":\"-3\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"2\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e8d2\",\"name\":\"subject\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"flyout\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"f45f0676-f39f-49e8-aa5a-bdcfe988ff07\",\"flyout\":\"223\",\"megaMenuLayout\":\"full\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"true\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"__VAR__GREEN\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"\"},{\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"false\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"Compare\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"false\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"default\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"multiLevelPosition\":\"right\",\"label\":{\"lang_1\":\"\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"500\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"Compare\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab6\",\"name\":\"iconmonstr-compare\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"\",\"link\":{\"type\":\"page\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/compare\"},\"id\":\"551191a3-f53a-4a37-affe-2d9bfd47bb16\",\"flyout\":\"\",\"megaMenuLayout\":\"full\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"true\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"\"},{\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"false\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"About Us\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"false\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"default\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"multiLevelPosition\":\"right\",\"label\":{\"lang_1\":\"\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"500\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"About Us\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e97e\",\"name\":\"iconmonstr-award-23-badge\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"\",\"link\":{\"type\":\"information\",\"id\":\"4\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"2e855936-af93-4d8e-b8e7-a33e333a7c2a\",\"flyout\":\"\",\"megaMenuLayout\":\"full\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"true\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"\"},{\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"false\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"Blog\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"false\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"default\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"multiLevelPosition\":\"right\",\"label\":{\"lang_1\":\"\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"500\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"Blog\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e946\",\"name\":\"noun_888682-blog\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"\",\"link\":{\"type\":\"blog_home\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"e07d2a18-a68e-4fe3-9035-8ff245696665\",\"flyout\":\"\",\"megaMenuLayout\":\"full\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"true\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"\"},{\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"false\",\"iconOnly\":\"false\",\"labelOffset\":{\"first\":\"\",\"second\":\"\"},\"itemMinWidth\":\"\",\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"FAQ\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"false\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"borderHover\":\"\",\"customWidthAlign\":\"default\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"multiLevelPosition\":\"right\",\"label\":{\"lang_1\":\"\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"500\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"FAQ\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f29c\",\"name\":\"question-circle-o\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"\",\"link\":{\"type\":\"information\",\"id\":\"7\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"28146cb0-b7b1-4279-961d-6efbcdc294d8\",\"flyout\":\"\",\"megaMenuLayout\":\"full\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"true\",\"megaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"megaStyle\":\"\"}]}'),
(232,'info_blocks','Free Shipping Qualifier','{\"general\":{\"name\":\"Free Shipping Qualifier\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"style\":\"__VAR__SINGLE\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"gutter\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}},\"items\":[{\"iconHover\":\"\",\"name\":\"New Info Block\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"size\":\"32\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}],\"title\":{\"lang_1\":\"This product qualifies for free shipping\"},\"content\":{\"lang_1\":\"This block is set to appear automatically on products above a certain price, which may qualify for free shipping or other perks.\"},\"icon\":{\"size\":\"50\",\"color\":\"__VAR__COLOR_9\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab9\",\"name\":\"iconmonstr-delivery-5\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"12111430-edee-4aaa-8a72-839714c3a885\"}]}'),
(230,'product_blocks','Free Shipping Info Block','{\"general\":{\"carousel\":\"false\",\"itemsBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"default\":\"\",\"imageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"titlePosition\":\"before\",\"display\":\"grid\",\"typographyStyle\":\"\",\"iconHover\":\"\",\"iconShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderHover\":\"\",\"itemsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imagePosition\":\"top\",\"positionPhone\":\"\",\"iconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"itemTitle\":\"\",\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"boxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"blockType\":\"grid\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"position\":\"top\",\"boxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"accordionStyle\":\"\",\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageAlign\":\"left\",\"contentAlignV\":\"\",\"name\":\"Free Shipping Info Block\",\"boxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"boxSize\":{\"first\":\"\",\"second\":\"\"},\"contentAlign\":\"\",\"moduleTitle\":\"\",\"itemsContentWidth\":\"\",\"itemsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"positionTablet\":\"\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselStyle\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"tabsStyle\":\"\",\"blocksTitleAlign\":\"\",\"imageBorderHover\":\"\",\"boxDisplay\":\"\",\"boxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"iconBorderHover\":\"\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"iconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"9999\",\"filters\":[],\"min_price\":\"700\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"advanced\"},\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"itemsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"boxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"boxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"25\",\"margin-left\":\"\"},\"iconSize\":{\"first\":\"\",\"second\":\"\"},\"boxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"custom\",\"moduleBackground_removed\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"containerGutter\":\"\",\"itemsPerRow\":{\"variable\":\"\",\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}},\"iconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"sort\":\"-9\",\"boxOffset\":{\"first\":\"\",\"second\":\"\"},\"iconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"items\":[],\"rows\":[{\"id\":\"9c0306ac-6892-4129-90e6-5bab1e93edb6\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"marginTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"overlayAlign\":\"center\",\"overlayHeight\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"6d13d467-bbdd-4564-8842-5612ce77f589\",\"options\":{\"align\":\"top\",\"width\":\"100\",\"marginTop\":\"\",\"name\":{\"lang_1\":\"New Column\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"be11ae89-82a8-4c1e-b769-0a0835abaad1\",\"item\":{\"id\":\"232\",\"name\":\"Free Shipping Qualifier\",\"type\":\"info_blocks\"}}]}]}]}'),
(231,'info_blocks','Award Winner','{\"general\":{\"name\":\"Award Winner\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"style\":\"__VAR__SINGLE\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"gutter\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"\"},\"c1\":{\"items\":\"1\",\"spacing\":\"\"},\"c2\":{\"items\":\"1\",\"spacing\":\"\"},\"sc\":{\"items\":\"1\",\"spacing\":\"\"}},\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}},\"items\":[{\"iconHover\":\"\",\"name\":\"Award Winner\",\"style\":\"\",\"button\":\"false\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"icon_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"size\":\"32\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}],\"title\":{\"lang_1\":\"Award Winner\"},\"content\":{\"lang_1\":\"Assign specific blocks to specific products. The most comprehensive product selection rules in Opencart.\"},\"icon\":{\"size\":\"50\",\"color\":\"__VAR__COLOR_7\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e97e\",\"name\":\"iconmonstr-award-23-badge\"},\"type\":\"\",\"image\":\"\"},\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"12111430-edee-4aaa-8a72-839714c3a885\"}]}'),
(239,'main_menu','Flyout Only - Desktop','{\"general\":{\"name\":\"Flyout Only - Desktop\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"}},\"items\":[{\"items\":[{\"iconHover\":\"\",\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"position\":\"left\",\"name\":\"Menu Item\",\"flyoutMegaMenuShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"font\":{\"type\":\"\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"},\"flyoutMultiLevelPosition\":\"right\",\"flyoutMultiLevelDropdownWidth\":\"\",\"flyoutMegaMenuBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"bgHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title\":{\"lang_1\":\"Sub Menu Item\"},\"flyoutMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"icon\":{\"type\":\"\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"},\"flyoutMultiLevelOffset\":\"\",\"flyoutMegaMenuWidth\":\"800\",\"type\":\"multilevel\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"a88bdaa7-e6b7-4d83-8fc8-89749d983636\",\"flyout\":\"\",\"subcategories\":\"true\"}],\"mainMenuItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"iconHover\":\"\",\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"megaMenuBGFull\":\"false\",\"iconOnly\":\"true\",\"itemMinWidth\":\"60\",\"background_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}],\"font_multi\":[],\"homeOpen\":\"false\",\"multiLevelDropdownWidth\":\"\",\"megaMenuTriangleColor\":\"\",\"name\":\"All Departments\",\"padding_multi\":[],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"mobileOpen\":\"true\",\"mainMenuItemBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"fontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"backgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"borderHover\":\"\",\"mainMenuItemBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"multiLevelPosition\":\"right\",\"minWidth\":\"\",\"label\":{\"lang_1\":\"\"},\"dropdownWidth\":\"\",\"megaMenuWidth\":\"500\",\"megaMenuHeight\":\"\",\"megaMenuCustomTriangleMargin\":\"-10\",\"title\":{\"lang_1\":\"All Departments\"},\"icon\":{\"size\":\"25\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0c9\",\"name\":\"bars\"},\"type\":\"\",\"image\":\"\"},\"megaMenuCustomTriangleColor\":\"\",\"rows\":[{\"id\":\"c26de514-acef-4a14-8448-c6ad6295e755\",\"options\":{\"name\":\"New Menu Item\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"type\":\"multilevel\"},\"columns\":[{\"id\":\"a0cd5d4b-15c5-48d7-be36-ab5a1bf8e283\",\"options\":{\"width\":\"25\",\"name\":{\"lang_1\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},\"items\":[{\"id\":\"b09a5291-52f0-48cc-87e1-43ea60f83793\",\"item\":{\"id\":\"6\",\"name\":\"Footer Links\",\"type\":\"links_menu\"}}]},{\"id\":\"a823c290-c17d-4994-8563-24cb1124f51d\",\"options\":{\"width\":\"25\",\"name\":{\"lang_1\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},\"items\":[{\"id\":\"5d4f2d4e-5e5a-4f46-a8c6-d486a9300e31\",\"item\":{\"id\":\"6\",\"name\":\"Footer Links\",\"type\":\"links_menu\"}}]},{\"id\":\"f538d2c4-8d4c-4112-bc65-788fbb4ae170\",\"options\":{\"width\":\"25\",\"name\":{\"lang_1\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},\"items\":[{\"id\":\"f571e265-0d83-4280-a7b2-50fa0778db13\",\"item\":{\"id\":\"6\",\"name\":\"Footer Links\",\"type\":\"links_menu\"}}]},{\"id\":\"c0957865-0bc6-4e57-8f0b-052fa176790f\",\"options\":{\"width\":\"25\",\"name\":{\"lang_1\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}},\"items\":[{\"id\":\"8e47581e-adb2-4adc-916a-b30f2767a4e4\",\"item\":{\"id\":\"6\",\"name\":\"Footer Links\",\"type\":\"links_menu\"}}]}]}],\"megaMenuTriangle\":\"true\",\"mainMenuItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"type\":\"flyout\",\"link\":{\"type\":\"category\",\"id\":\"109\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/compare\"},\"id\":\"a3716c90-e1a3-4188-96d1-95339103bd3d\",\"megaMenuCustomTriangleAlign\":\"\",\"flyout\":\"7\",\"megaMenuLayout\":\"full\",\"subcategories\":\"true\",\"megaMenuCustomTriangleStatus\":\"\",\"megaMenuCustomTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"labelStyle\":\"\",\"multiLevelOffset\":\"\",\"borderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"megaStyle\":\"\"}]}'),
(241,'layout_notice','Upsell Info Notice','{\"general\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"closePosition\":\"tr\",\"contentLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"cookie\":\"12f8e0a7\",\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"closeText\":{\"lang_1\":\"\"},\"closeMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"height\":\"\",\"contentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"contentFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"closeButton\":\"true\",\"closeIconHover\":\"__VAR__COLOR_5\",\"name\":\"Upsell Info Notice\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"ease\":\"easeOutQuart\",\"p\":\"0\",\"padding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"closeIcon\":{\"size\":\"20\",\"color\":\"__VAR__COLOR_14\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5cd\",\"name\":\"close2\"},\"type\":\"\",\"image\":\"\"},\"contentIcon\":{\"size\":\"25\",\"color\":\"__VAR__COLOR_9\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e952\",\"name\":\"iconmonstr-coin-7\"},\"type\":\"\",\"image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"duration\":\"600\",\"floatIcon\":\"true\",\"fullHeight\":\"false\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"content\":{\"lang_1\":\"<p><b>Upsell \\/ Cross Sell<\\/b><\\/p>[~nl~]<small>Easily display Related or Also Bought products based on those in the cart or checkout.<\\/small>\"},\"closeStyle\":\"__VAR__LINK\",\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}}}'),
(242,'master_slider','Slider Top Home','{\"general\":{\"static2LayerFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"thumbsInset\":\"false\",\"overlayBorderHover\":\"\",\"bulletBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"bulletsPadding\":\"\",\"static2LayerBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"bulletSpacing\":\"10\",\"staticLayerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"overflow\":\"true\",\"arrowIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"bulletShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overPause\":\"true\",\"thumbBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"staticScaleOrigin\":\"center\",\"thumbsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"bulletSize\":{\"first\":\"5\",\"second\":\"15\"},\"autoplay\":\"true\",\"delay\":\"2500\",\"bulletsVisibility\":\"true\",\"static2LayerBorderHover\":\"\",\"staticLayerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"arrowSize_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"second\":\"30\",\"first\":\"30\"}}],\"loop\":\"true\",\"static2LayerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"arrowShade\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"bulletsOffset\":{\"first\":\"20\",\"second\":\"-10\"},\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_15\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"mouse\":\"true\",\"view\":\"mask\",\"timer\":\"true\",\"static2Scale\":\"100\",\"thumbShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"staticIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"speed\":\"15\",\"arrowBorderHover\":\"\",\"bulletBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbnails\":\"false\",\"arrowBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"1320\",\"height\":\"600\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"1000\",\"phone_height\":\"650\"},\"thumbsAlign\":\"bottom\",\"arrows\":\"true\",\"staticLayerFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"layout\":\"fillwidth\",\"arrowSize\":{\"first\":\"40\",\"second\":\"40\"},\"bulletsHover\":\"true\",\"static2LayerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"static2TextLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"name\":\"Slider Top Home\",\"staticLayerBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"timerHeight\":\"3\",\"staticLayerPosition\":\"tl\",\"arrowsHide\":\"true\",\"overlayHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"static2ScaleOrigin\":\"center\",\"staticLayerBorderHover\":\"\",\"thumbSpacing\":\"10\",\"static2LayerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"bulletBorderHover\":\"\",\"arrowBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"bulletsAlign_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"right\"}],\"staticLayerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"sliderDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"timerPosition\":\"top\",\"arrowBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbsVisibility\":\"true\",\"static2LayerShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"staticLayerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"bulletsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"overlay\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"staticLayerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"static2Text\":{\"lang_1\":\"\"},\"staticLayerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"timerVisibility_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"false\"}],\"bullets\":\"true\",\"staticLayerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"staticContainer\":\"\",\"thumbnailsDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"50\",\"height\":\"50\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"thumbBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"bulletsAlign\":\"left\",\"thumbsPadding\":\"10\",\"bulletBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbOpacity\":\".75\",\"arrowBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"staticIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"staticTextLink\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"static2LayerPosition\":\"bl\",\"thumbShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"startOnAppear\":\"false\",\"arrowsVisibility_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"false\"}],\"autoHeight\":\"true\",\"bulletsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"timerVisibility\":\"false\",\"parallax\":\"35\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"arrowShadeHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"staticLayerShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"static2LayerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"shuffle\":\"false\",\"thumbBorderHover\":\"\",\"bulletShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"arrowIconHover\":\"__VAR__COLOR_1\",\"swipe\":\"true\",\"parallaxMode\":\"true\",\"static2LayerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"staticText\":{\"lang_1\":\"\"},\"static2LayerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"arrowsAlign\":\"right\",\"arrowsVisibility\":\"true\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"static2LayerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"staticScale\":\"100\",\"static2Container\":\"\",\"static2Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"arrowsOffset\":{\"first\":\"\",\"second\":\"\"},\"bulletsVisibility_multi\":[],\"timerColor\":\"__VAR__COLOR_6\",\"static2IconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"bullBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"direction\":\"h\"},\"items\":[{\"videoHtml5Url\":\"\",\"items\":[{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"300\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"\",\"videoContainer\":\"\",\"origin\":\"ml\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Main Text\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"Full Control At <br \\/>Any Resolution\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"right\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"\",\"second\":\"-70\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"__VAR__Slider Layer\",\"layerAutoplay\":\"false\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"html5\",\"showEffectDelay\":\"100\",\"hotspotAlign\":\"\",\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuart\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"3\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"5\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"first\":\"\",\"second\":\"-3\"}}],\"type\":\"text\",\"showEffectDegree\":\"90\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"7d4725c8-0cde-41f4-8553-3447c69dc28a\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"400\",\"second\":\"225\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"buttonBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"},{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"300\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"\",\"videoContainer\":\"\",\"origin\":\"ml\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"btnOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"3\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"5\",\"second\":\"\"}}],\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Button\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"Shop Now\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"right\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"__VAR__SLIDER\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"\",\"second\":\"80\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"\",\"layerAutoplay\":\"false\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"html5\",\"showEffectDelay\":\"300\",\"hotspotAlign\":\"\",\"textFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HUGE\"}}],\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuart\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"5\",\"second\":\"\"}}],\"type\":\"button\",\"showEffectDegree\":\"90\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"https:\\/\\/themeforest.net\\/item\\/journal-advanced-opencart-theme\\/4260361\",\"scroll\":\"\",\"target\":\"true\",\"rel\":\"\"},\"id\":\"c6f19d12-6f84-40b8-99a6-c390a2347355\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"400\",\"second\":\"225\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__BIG\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"buttonBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"},{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__TRANSPARENT\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"300\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"\",\"videoContainer\":\"\",\"origin\":\"ml\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"btnOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"second\":\"\",\"first\":\"3\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"5\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"second\":\"\",\"first\":\"12\"}}],\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Button 2\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"Learn More\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"right\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"__VAR__SLIDER\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"160\",\"second\":\"80\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"\",\"layerAutoplay\":\"false\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"html5\",\"showEffectDelay\":\"300\",\"hotspotAlign\":\"\",\"textFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HUGE\"}}],\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuart\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"5\",\"second\":\"\"}}],\"type\":\"button\",\"showEffectDegree\":\"90\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"https:\\/\\/themeforest.net\\/item\\/journal-advanced-opencart-theme\\/4260361\",\"scroll\":\"\",\"target\":\"true\",\"rel\":\"\"},\"id\":\"63f518db-b8a1-46c5-aab5-8abfdb80f9f8\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"400\",\"second\":\"225\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__BIG\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"buttonBorder\":{\"border-width\":\"3\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"}],\"delay\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"alt\":{\"lang_1\":\"\"},\"name\":\"Slide 1\",\"overlayHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"overlay\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoType\":\"html5\",\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"ae4d8a2e-515d-4ccb-8982-59f1aede6267\",\"image\":{\"lang_1\":\"catalog\\/journal3\\/slider\\/demo2\\/arm.jpg\"}},{\"videoHtml5Url\":{\"lang_1\":\"image\\/catalog\\/journal3\\/videos\\/aurora.mp4\"},\"items\":[{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"300\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"\",\"videoContainer\":\"\",\"origin\":\"ml\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Main Text\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"Fullscreen Videos<br \\/> in Your Sliders\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"right\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"\",\"second\":\"-70\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"__VAR__Slider Layer\",\"layerAutoplay\":\"false\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"html5\",\"showEffectDelay\":\"100\",\"hotspotAlign\":\"\",\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuart\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"3\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"5\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"first\":\"\",\"second\":\"-3\"}}],\"type\":\"text\",\"showEffectDegree\":\"90\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"7d4725c8-0cde-41f4-8553-3447c69dc28a\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"400\",\"second\":\"225\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"buttonBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"},{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"300\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"\",\"videoContainer\":\"\",\"origin\":\"ml\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"btnOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"3\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"5\",\"second\":\"\"}}],\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Button\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"Shop Now\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"right\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"__VAR__SLIDER\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"\",\"second\":\"80\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"\",\"layerAutoplay\":\"false\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"html5\",\"showEffectDelay\":\"300\",\"hotspotAlign\":\"\",\"textFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HUGE\"}}],\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuart\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"5\",\"second\":\"\"}}],\"type\":\"button\",\"showEffectDegree\":\"90\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"https:\\/\\/themeforest.net\\/item\\/journal-advanced-opencart-theme\\/4260361\",\"scroll\":\"\",\"target\":\"true\",\"rel\":\"\"},\"id\":\"c6f19d12-6f84-40b8-99a6-c390a2347355\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"400\",\"second\":\"225\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__BIG\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"buttonBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"},{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__TRANSPARENT\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"300\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"\",\"videoContainer\":\"\",\"origin\":\"ml\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"btnOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"3\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"5\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"first\":\"12\",\"second\":\"\"}}],\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Button 2\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"Shop Now\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"right\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"__VAR__SLIDER\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"160\",\"second\":\"80\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"\",\"layerAutoplay\":\"false\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"html5\",\"showEffectDelay\":\"300\",\"hotspotAlign\":\"\",\"textFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HUGE\"}}],\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuart\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"5\",\"second\":\"\"}}],\"type\":\"button\",\"showEffectDegree\":\"90\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"https:\\/\\/themeforest.net\\/item\\/journal-advanced-opencart-theme\\/4260361\",\"scroll\":\"\",\"target\":\"true\",\"rel\":\"\"},\"id\":\"1e488359-2cf4-42ff-a40d-25e7c06fe1de\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"400\",\"second\":\"225\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__BIG\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"buttonBorder\":{\"border-width\":\"3\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"},{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"videoBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-width\":\"5\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}}],\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"1000\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"https:\\/\\/vimeo.com\\/221171310\",\"videoContainer\":\"\",\"origin\":\"mr\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"10\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_1\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"https:\\/\\/www.youtube.com\\/watch?v=oMm4F6Ff1oA\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Video Layer\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"back\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"\",\"second\":\"\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"\",\"layerAutoplay\":\"true\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"youtube\",\"showEffectDelay\":\"300\",\"hotspotAlign\":\"top\",\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuad\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"type\":\"video\",\"showEffectDegree\":\"60\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"5fffe1fe-fcb2-4e9e-a2ee-ecccce3c611b\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":\"__VAR__LARGE\",\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"500\",\"second\":\"282\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"vidOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"second\":\"\",\"first\":\"5\"}}],\"buttonBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"}],\"delay\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"alt\":{\"lang_1\":\"\"},\"name\":\"Slide 2\",\"overlayHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"overlay\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__OPACITY_MEDIUM\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"catalog\\/journal3\\/misc\\/overlay.png\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoType\":\"html5\",\"type\":\"video\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"1b1576ca-582a-4209-be84-7b4598f32941\",\"image\":{\"lang_1\":\"catalog\\/journal3\\/slider\\/demo2\\/aurora.png\"}},{\"videoHtml5Url\":\"\",\"items\":[{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"300\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"\",\"videoContainer\":\"\",\"origin\":\"ml\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Main Text\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"Most Advanced <br \\/>Mobile Features\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"right\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"\",\"second\":\"-70\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"__VAR__Slider Layer\",\"layerAutoplay\":\"false\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"html5\",\"showEffectDelay\":\"100\",\"hotspotAlign\":\"\",\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuart\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"3\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"5\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"first\":\"\",\"second\":\"-3\"}}],\"type\":\"text\",\"showEffectDegree\":\"90\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"7d4725c8-0cde-41f4-8553-3447c69dc28a\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"400\",\"second\":\"225\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"buttonBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"},{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"300\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"\",\"videoContainer\":\"\",\"origin\":\"ml\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"btnOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"3\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"5\",\"second\":\"\"}}],\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Button\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"Shop Now\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"right\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"__VAR__SLIDER\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"\",\"second\":\"80\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"\",\"layerAutoplay\":\"false\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"html5\",\"showEffectDelay\":\"300\",\"hotspotAlign\":\"\",\"textFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HUGE\"}}],\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuart\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"5\",\"second\":\"\"}}],\"type\":\"button\",\"showEffectDegree\":\"90\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"https:\\/\\/themeforest.net\\/item\\/journal-advanced-opencart-theme\\/4260361\",\"scroll\":\"\",\"target\":\"true\",\"rel\":\"\"},\"id\":\"c6f19d12-6f84-40b8-99a6-c390a2347355\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"400\",\"second\":\"225\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__BIG\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"buttonBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"},{\"textOffset\":{\"first\":\"\",\"second\":\"\"},\"videoHtml5Url\":\"\",\"shapeContainer\":\"\",\"buttonBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__TRANSPARENT\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"videoBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"size\":{\"first\":\"\",\"second\":\"\"},\"shapeShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorderHover\":\"\",\"tooltipBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectDuration\":\"800\",\"iconHover\":\"\",\"showEffectDistance\":\"300\",\"iconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"layerVisibility\":\"true\",\"vidOffset\":{\"first\":\"\",\"second\":\"\"},\"textPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"buttonRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"imageContainer\":\"\",\"videoVimeoUrl\":\"\",\"videoContainer\":\"\",\"origin\":\"ml\",\"textIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"shapeBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDuration\":\"800\",\"videoBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoYoutubeUrl\":\"\",\"layerParallax\":\"0\",\"hotspotBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hideEffectDistance\":\"150\",\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"tooltipBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"position\":\"normal\",\"alt\":{\"lang_1\":\"\"},\"iconRightActive\":\"\",\"btnOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"3\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"5\",\"second\":\"\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"first\":\"12\",\"second\":\"\"}}],\"textBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"name\":\"Button 2\",\"tooltipTriangle\":\"\",\"hotspotBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"text\":{\"lang_1\":\"Shop Now\"},\"hotspotShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shapeBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"imageOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"showEffect\":\"right\",\"hotspotShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"btnOffset\":{\"first\":\"\",\"second\":\"\"},\"tooltipBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"hideEffectDelay\":\"1000\",\"textBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"hotspotContainer\":\"\",\"tooltipFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"button\":\"__VAR__SLIDER\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"offset\":{\"first\":\"160\",\"second\":\"80\"},\"hideEffect\":\"none\",\"resize\":\"true\",\"textContainer\":\"\",\"layerAutoplay\":\"false\",\"hotspotIconHover\":\"\",\"hotspotBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"shapeOffset\":{\"first\":\"\",\"second\":\"\"},\"videoType\":\"html5\",\"showEffectDelay\":\"300\",\"hotspotAlign\":\"\",\"textFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HUGE\"}}],\"tooltipOffset\":{\"first\":\"\",\"second\":\"\"},\"buttonScale\":\"100\",\"icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"textWidth\":\"\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"showEffectEasing\":\"easeOutQuart\",\"iconRightHover\":\"\",\"textBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"textOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"first\":\"5\",\"second\":\"\"}}],\"type\":\"button\",\"showEffectDegree\":\"90\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"https:\\/\\/themeforest.net\\/item\\/journal-advanced-opencart-theme\\/4260361\",\"scroll\":\"\",\"target\":\"true\",\"rel\":\"\"},\"id\":\"82f0c94b-e7aa-4da9-8fa4-68da25cdef3e\",\"image\":{\"lang_1\":\"\"},\"videoShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"hotspotBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"videoSize\":{\"first\":\"400\",\"second\":\"225\"},\"textFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__BIG\"},\"hotspotDimensions\":\"20\",\"hideEffectEasing\":\"easeInOutQuad\",\"buttonBorder\":{\"border-width\":\"3\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"buttonScaleOrigin\":\"center\",\"tooltipContainer\":\"\",\"buttonPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"iconActive\":\"\",\"shapeBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"hideEffectDegree\":\"60\"}],\"delay\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"alt\":{\"lang_1\":\"\"},\"name\":\"Slide 3\",\"overlayHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"overlay\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"videoType\":\"html5\",\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"b07dfeb8-3f6f-4629-8ca1-3a991f965293\",\"image\":{\"lang_1\":\"catalog\\/journal3\\/slider\\/demo2\\/beach.jpg\"}}]}'),
(248,'grid','Banners Grid','{\"general\":{\"name\":\"Banners Grid\"},\"rows\":[{\"id\":\"a2d7abea-d4a5-4c21-ad3b-29025b14cf7e\",\"options\":{\"shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overlayStatus\":\"false\",\"overlayVisibility\":\"true\",\"overlayTop\":\"\",\"marginTop\":\"\",\"overlayRotate\":\"\",\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"overlayAlign\":\"center\",\"overlayHeight\":\"\",\"overlayBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"overlayBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}},\"columns\":[{\"id\":\"da2a6e12-6b6e-4419-8216-49ca3654a7d0\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"alignH\":\"\",\"align\":\"top\",\"width\":\"33.33333333333333\",\"marginTop\":\"\",\"name\":{\"lang_1\":\"New Column\"},\"padding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"d5df28b1-222b-49a9-9f88-2a4c6f5f7bcb\",\"item\":{\"id\":\"251\",\"name\":\"Banners Top Home Copy Copy\",\"type\":\"banners\"}}]},{\"id\":\"9b8355b8-0527-4c23-9591-67898ae88957\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"alignH\":\"\",\"align\":\"top\",\"width\":\"33.33333333333333\",\"marginTop\":\"\",\"name\":{\"lang_1\":\"New Column\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"c31ec3c8-55a8-4a6e-8052-072098e0e509\",\"item\":{\"id\":\"254\",\"name\":\"Beauty \\/ Bags Home Copy\",\"type\":\"banners\"}}]},{\"id\":\"9903a570-2ef1-4ec2-8d3b-48cf7a2aded6\",\"options\":{\"width_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}],\"alignH\":\"\",\"align\":\"top\",\"width\":\"33.33333333333333\",\"marginTop\":\"\",\"name\":{\"lang_1\":\"New Column\"},\"border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"margin\":\"\",\"padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]}},\"items\":[{\"id\":\"d5df28b1-222b-49a9-9f88-2a4c6f5f7bcb\",\"item\":{\"id\":\"252\",\"name\":\"Sample Banners Left Home\",\"type\":\"banners\"}}]}]}]}'),
(249,'catalog','Our Catalog Home Layout','{\"general\":{\"itemViewMoreFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"carousel\":\"false\",\"itemLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemsBoxFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageMargin_multi\":[],\"itemsBoxBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"imagePosition\":\"right\",\"itemsBoxBorderHover\":\"\",\"moduleStyle\":\"__VAR__DEFAULT\",\"itemTitle\":\"__VAR__CATALOG_MODULE\",\"itemsBoxPadding\":{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"viewMoreText\":{\"lang_1\":\"All products\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"100\",\"height\":\"100\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"itemsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"containerMargin_multi\":[],\"imageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"name\":\"Our Catalog Home Layout\",\"itemsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemIcon\":{\"size\":\"12\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"2\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e409\",\"name\":\"navigate_next\"},\"type\":\"\",\"image\":\"\"},\"moduleTitle\":\"\",\"PositionOverride_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"top\"}],\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemIconHover\":\"\",\"imagePositionOverride\":\"\",\"carouselStyle\":\"__VAR__SIDE_ARROWS\",\"itemsBoxShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"Visibility\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"textTruncate\":\"true\",\"PositionOverride\":\"right\",\"imageMarginOverride\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"images\":\"true\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"itemsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"itemLinkSpace\":\"3\",\"itemsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"MarginOverride\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"itemViewMoreFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_4\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"itemLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"itemsPerRow\":{\"c0\":{\"items\":\"3\",\"spacing\":\"__VAR__General\"},\"c1\":{\"items\":\"4\",\"spacing\":\"__VAR__General\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__General\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__General\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__General\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Side Products\"}}]},\"imagePosition_multi\":[]},\"items\":[{\"name\":\"Fashion\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Fashion\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"1911c1ea-a4ec-4cd3-af97-5ed7694bc35c\",\"limit\":\"4\",\"category\":\"59\"},{\"name\":\"Bags\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Bags\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"8105ed0f-84d4-4b17-a74c-59a8632b3a55\",\"limit\":\"4\",\"category\":\"107\"},{\"name\":\"Health & Beauty\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Health & Beauty\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"0e1140b7-1865-41a8-bb0e-fd88a93054cf\",\"limit\":\"4\",\"category\":\"109\"},{\"name\":\"Footwear\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Footwear\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"d6f70cde-67e7-4834-9da4-27787bce8d57\",\"limit\":\"4\",\"category\":\"111\"},{\"name\":\"Home\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Home\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"d6a20c61-1959-49fd-82a1-1ca89fd41944\",\"limit\":\"4\",\"category\":\"175\"},{\"name\":\"Electronics\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Electronics\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"a54e5bdf-64e2-497e-811b-11c41ea972e6\",\"limit\":\"4\",\"category\":\"69\"},{\"name\":\"Food\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Food\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"8100d8bf-363a-4274-8c8e-e89aa14499ac\",\"limit\":\"4\",\"category\":\"155\"},{\"name\":\"Baby & Kids\",\"manufacturer\":\"\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"Baby & Kids\"},\"subtype\":\"category\",\"type\":\"category\",\"id\":\"5119bbdc-b98c-413c-a945-e098cc8eab6f\",\"limit\":\"4\",\"category\":\"166\"},{\"name\":\"Appliances\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"type\":\"category\",\"subtype\":\"category\",\"category\":\"205\",\"manufacturer\":\"\",\"limit\":\"4\",\"id\":\"253c2ca7-689a-4000-a5f7-c6b3ed36e549\"}]}'),
(251,'banners','Top Category Home','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":\"__VAR__LARGE\",\"titlePosition\":\"bl\",\"title2Position\":\"bc\",\"titleBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title2Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleMargin\":{\"margin\":\"20\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS BOLD\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"iconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"title2Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title2Display\":\"hover\",\"title2Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"400\",\"height\":\"380\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"400\",\"phone_height\":\"200\"},\"title2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title2IconHover\":\"\",\"iconDisplay\":\"hover\",\"containerMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"0\",\"margin-left\":\"\"}}],\"titleDisplay\":\"always\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(10, 55, 143, 0.4)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"Top Category Home\",\"title2Width\":\"full\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleWidth\":\"auto\",\"containerMargin\":{\"margin\":\"-10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"title2Scale\":\"100\",\"carouselStyle\":\"\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"titleScale\":\"100\",\"scaleHover\":\"true\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title2Icon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"title2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"title2BackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title2MarginHover\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"hoverOverlay\":\"rgba(0, 0, 0, 0.6)\",\"imageBorderHover\":\"\",\"iconMarginHover\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"bannerTitleContainer\":\"\",\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e954\",\"name\":\"iconmonstr-arrow-762\"},\"type\":\"\",\"image\":\"\"},\"titleBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"titleMarginHover\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"title2ScaleOrigin\":\"center\",\"title2Padding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title2BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"\"},\"titleScaleOrigin\":\"center\",\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"titlePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"10\",\"padding-bottom\":\"\",\"padding-left\":\"10\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"bannerTitle2Container\":\"\",\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING\"},\"c1\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING\"},\"c2\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__SPACING\"},\"c0_multi\":[]}},\"items\":[{\"name\":\"Fashion\",\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"title\":{\"lang_1\":\"Top Category\"},\"title2\":{\"lang_1\":\"\"},\"link\":{\"type\":\"category\",\"id\":\"59\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"11a4a75e-7cd1-49ca-b79f-40ac56a5e899\",\"image\":{\"lang_1\":\"catalog\\/journal3\\/categories\\/demo09.jpg\"}}]}'),
(252,'banners','Sample Banners Right Home','{\"general\":{\"carousel\":\"false\",\"imageShadowHover\":\"__VAR__LARGE\",\"titlePosition\":\"bc\",\"titleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"30\",\"margin-left\":\"\"},\"grayscale\":\"\",\"imageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"titleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"400\",\"height\":\"180\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"400\",\"phone_height\":\"\"},\"containerMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"10\",\"margin-top\":\"0\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}],\"titleDisplay\":\"always\",\"hoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(10, 55, 143, 0.4)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleIconHover\":\"\",\"name\":\"Sample Banners Right Home\",\"moduleTitle\":\"\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"titleWidth\":\"auto\",\"containerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"carouselStyle\":\"\",\"titleIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"scaleHover\":\"true\",\"overlayDisplay\":\"hover\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"hoverOverlay\":\"rgba(0, 0, 0, 0.6)\",\"imageBorderHover\":\"\",\"titleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"hoverIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e954\",\"name\":\"iconmonstr-arrow-762\"},\"type\":\"\",\"image\":\"\"},\"titleBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"title\":{\"lang_1\":\"\"},\"imageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"titlePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"10\",\"padding-bottom\":\"\",\"padding-left\":\"10\"},\"imageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"carouselGutter\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemsPerRow\":{\"c0\":{\"items\":\"1\",\"spacing\":\"__VAR__Banners Home Page\"},\"c1\":{\"items\":\"1\",\"spacing\":\"__VAR__Banners Home Page\"},\"c2\":{\"items\":\"1\",\"spacing\":\"__VAR__Banners Home Page\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Banners Home Page\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"0\"}}]}},\"items\":[{\"name\":\"Sample\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/banners\\/12-2.jpg\"},\"link\":{\"type\":\"category\",\"id\":\"107\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\",\"page\":\"product\\/catalog\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"11a4a75e-7cd1-49ca-b79f-40ac56a5e899\"},{\"name\":\"Sample\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"title\":{\"lang_1\":\"\"},\"image\":{\"lang_1\":\"catalog\\/journal3\\/people\\/girl-237871.jpg\"},\"link\":{\"type\":\"category\",\"id\":\"214\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"itemIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"id\":\"a4d6d4da-2114-45ec-a0ca-2edee54ffd8c\"}]}'),
(256,'fullscreen_slider','Fullscreen Slider','{\"general\":{\"bulletBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"bulletsPadding\":\"\",\"bulletSpacing\":\"5\",\"arrowIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"bulletShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"overPause\":\"true\",\"thumbBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"thumbsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"bulletSize\":{\"first\":\"\",\"second\":\"\"},\"autoplay\":\"true\",\"bulletsVisibility\":\"true\",\"loop\":\"false\",\"arrowShade\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"bulletsOffset\":{\"first\":\"\",\"second\":\"\"},\"bg\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"mouse\":\"true\",\"view\":\"basic\",\"timer\":\"true\",\"thumbShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"speed\":\"30\",\"arrowBorderHover\":\"\",\"bulletBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbnails\":\"false\",\"arrowBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"imageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"1920\",\"height\":\"1200\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"thumbsAlign\":\"bottom\",\"arrows\":\"true\",\"layout\":\"default\",\"arrowSize\":{\"first\":\"50\",\"second\":\"50\"},\"bulletsHover\":\"false\",\"name\":\"Fullscreen Slider\",\"timerHeight\":\"4\",\"arrowsHide\":\"false\",\"thumbSpacing\":\"10\",\"bulletBorderHover\":\"\",\"arrowBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"sliderDimensions\":{\"first\":\"\",\"second\":\"\"},\"timerPosition\":\"top\",\"arrowBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbsVisibility\":\"true\",\"bulletsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"bullets\":\"true\",\"status\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"thumbnailsDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"50\",\"height\":\"50\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"},\"thumbBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"bulletsAlign\":\"bottom\",\"thumbsPadding\":\"10\",\"bulletBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"thumbOpacity\":\".75\",\"arrowBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"thumbShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"autoHeight\":\"false\",\"bulletsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"timerVisibility\":\"false\",\"parallax\":\"25\",\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"arrowShadeHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"shuffle\":\"false\",\"thumbBorderHover\":\"\",\"bulletShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"arrowIconHover\":\"\",\"swipe\":\"true\",\"parallaxMode\":\"false\",\"arrowsAlign\":\"left\",\"arrowsVisibility\":\"true\",\"arrowsOffset\":{\"first\":\"\",\"second\":\"\"},\"timerColor\":\"\",\"bullBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"direction\":\"h\"},\"items\":[{\"videoHtml5Url\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"alt\":{\"lang_1\":\"\"},\"name\":\"New Slide\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":\"true\",\"videoType\":\"html5\",\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"c62e12c6-be38-4b82-bb74-78c6df0c3fe9\",\"image\":{\"lang_1\":\"catalog\\/journal3\\/people\\/arm.jpg\"}},{\"videoHtml5Url\":\"\",\"videoVimeoUrl\":\"\",\"videoYoutubeUrl\":\"\",\"alt\":{\"lang_1\":\"\"},\"name\":\"New Slide\",\"background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"status\":\"true\",\"videoType\":\"html5\",\"type\":\"image\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"id\":\"3cf5ec98-40f6-4165-abfa-21fac4053d13\",\"image\":{\"lang_1\":\"catalog\\/journal3\\/gallery\\/6.jpg\"}}]}'),
(264,'product_tabs','Specifications','{\"general\":{\"itemContentWidth\":\"\",\"expandHeight\":\"70\",\"display\":\"tabs\",\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"expandIconHoverUp\":\"\",\"contentWidgetHeight\":\"\",\"positionPhone\":\"\",\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"blocksColumnDividerColor\":\"\",\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"displayTablet\":\"\",\"contentTypography\":\"\",\"itemBoxStylesDisplay\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"blocksColumnDividerWidth\":\"1\",\"position\":\"top\",\"expandIconHover\":\"\",\"name\":\"Specifications\",\"displayPhone\":\"accordion\",\"contentAlign\":\"\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"itemBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"positionTablet\":\"\",\"expandButtonTextLess\":{\"lang_1\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"desktop\",\"phone\",\"tablet\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_group_2\":\"true\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"attributes\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"blocksColumnDividerStyle\":\"solid\",\"contentTable\":\"\",\"itemBoxStylesBorderHover\":\"\",\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"blocksColumns\":\"initial\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"Specifications\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"all\"},\"content\":{\"lang_1\":\"\"},\"expandButtonText\":{\"lang_1\":\"\"},\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"blocksColumnGap\":\"20\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"type\":\"custom\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"shortDescriptionLimit\":\"150\",\"itemBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"contentForm\":\"\",\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"sort\":\"2\",\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"dynamic\":\"journal3\\/blocks_example\"}}'),
(265,'product_tabs','Reviews','{\"general\":{\"itemContentWidth\":\"\",\"expandHeight\":\"70\",\"display\":\"tabs\",\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"expandIconHoverUp\":\"\",\"contentWidgetHeight\":\"\",\"positionPhone\":\"\",\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"blocksColumnDividerColor\":\"\",\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"displayTablet\":\"\",\"contentTypography\":\"\",\"itemBoxStylesDisplay\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"blocksColumnDividerWidth\":\"1\",\"position\":\"top\",\"expandIconHover\":\"\",\"name\":\"Reviews\",\"displayPhone\":\"accordion\",\"contentAlign\":\"\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"itemBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"positionTablet\":\"\",\"expandButtonTextLess\":{\"lang_1\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"desktop\",\"phone\",\"tablet\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_group_2\":\"true\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"reviews\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"blocksColumnDividerStyle\":\"solid\",\"contentTable\":\"\",\"itemBoxStylesBorderHover\":\"\",\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"blocksColumns\":\"initial\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"Reviews\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"all\"},\"content\":{\"lang_1\":\"\"},\"expandButtonText\":{\"lang_1\":\"\"},\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"blocksColumnGap\":\"20\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"type\":\"custom\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"shortDescriptionLimit\":\"150\",\"itemBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"contentForm\":\"\",\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"sort\":\"3\",\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"dynamic\":\"journal3\\/blocks_example\"}}'),
(266,'product_tabs','Description','{\"general\":{\"itemContentWidth\":\"\",\"expandHeight\":\"70\",\"display\":\"tabs\",\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"expandIconHoverUp\":\"\",\"contentWidgetHeight\":\"\",\"positionPhone\":\"\",\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"blocksColumnDividerColor\":\"__VAR__COLOR_9\",\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"displayTablet\":\"\",\"contentTypography\":\"\",\"itemBoxStylesDisplay\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"blocksColumnDividerWidth\":\"\",\"position\":\"top\",\"expandIconHover\":\"\",\"name\":\"Description\",\"displayPhone\":\"accordion\",\"contentAlign\":\"\",\"expandButton\":\"true\",\"expandOverlayColor\":\"\",\"itemBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"positionTablet\":\"\",\"expandButtonTextLess\":{\"lang_1\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"desktop\",\"phone\",\"tablet\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_group_2\":\"true\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"description\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"blocksColumnDividerStyle\":\"none\",\"contentTable\":\"\",\"itemBoxStylesBorderHover\":\"\",\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"blocksColumns\":\"initial\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"Description\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"all\"},\"content\":{\"lang_1\":\"\"},\"expandButtonText\":{\"lang_1\":\"\"},\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"blocksColumnGap\":\"\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"type\":\"custom\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"shortDescriptionLimit\":\"150\",\"itemBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"contentForm\":\"\",\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"sort\":\"1\",\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"dynamic\":\"journal3\\/blocks_example\"}}'),
(267,'product_tabs','Custom Tabs','{\"general\":{\"itemContentWidth\":\"\",\"expandHeight\":\"70\",\"display\":\"tabs\",\"itemBoxStylesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"contentShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"expandIconHoverUp\":\"\",\"contentWidgetHeight\":\"\",\"positionPhone\":\"\",\"contentBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"expandButtonStyle\":\"\",\"itemBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"blocksColumnDividerColor\":\"\",\"itemBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"displayTablet\":\"\",\"contentTypography\":\"\",\"itemBoxStylesDisplay\":\"\",\"itemBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"itemBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"blocksColumnDividerWidth\":\"1\",\"position\":\"top\",\"expandIconHover\":\"\",\"name\":\"Custom Tabs\",\"displayPhone\":\"accordion\",\"contentAlign\":\"\",\"expandButton\":\"false\",\"expandOverlayColor\":\"\",\"itemBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"expandIconUp\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"tabType\":\"content\",\"positionTablet\":\"\",\"expandButtonTextLess\":{\"lang_1\":\"\"},\"status\":{\"status\":\"true\",\"device\":[\"desktop\",\"phone\",\"tablet\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_group_2\":\"true\"},\"expandIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"itemBoxStylesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"contentType\":\"html\",\"itemBoxStylesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"blocksColumnDividerStyle\":\"solid\",\"contentTable\":\"\",\"itemBoxStylesBorderHover\":\"\",\"itemBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"schedule\":{\"from\":\"\",\"to\":\"\",\"between\":\"true\"},\"contentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"blocksColumns\":\"initial\",\"contentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"itemBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"title\":{\"lang_1\":\"Custom Tabs\"},\"filter\":{\"manufacturers\":[],\"products\":[],\"max_price\":\"\",\"order\":\"ASC\",\"attributes\":[],\"special\":\"false\",\"limit\":\"5\",\"filters\":[],\"min_price\":\"\",\"categories\":[],\"sort\":\"p.sort_order\",\"options\":[],\"preset\":\"all\"},\"content\":{\"lang_1\":\"<p>Unlimited Blocks, Tabs or Accordions with any HTML content can be assigned to any individual product or to certain groups of products, like entire categories, brands, products with specific options, attributes, price range, etc. You can indicate any criteria via the advanced product assignment mechanism and only those products matching your criteria will display the modules.<\\/p><p>Also, any module can be selectively activated per device (desktop\\/tablet\\/phone), customer login status and other criteria. Imagine the possibilities. <\\/p>\"},\"expandButtonText\":{\"lang_1\":\"\"},\"contentShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"blocksColumnGap\":\"20\",\"itemBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"type\":\"custom\",\"link\":{\"type\":\"\",\"id\":\"\",\"url\":\"\",\"scroll\":\"\",\"target\":\"false\",\"rel\":\"\"},\"contentBorderHover2\":\"\",\"shortDescriptionLimit\":\"150\",\"itemBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"contentForm\":\"\",\"contentBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"sort\":\"4\",\"contentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"dynamic\":\"journal3\\/blocks_example\"}}');
/*!40000 ALTER TABLE `oc_journal3_module` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_newsletter`
--
DROP TABLE IF EXISTS `oc_journal3_newsletter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_newsletter` (
`newsletter_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(256) DEFAULT NULL,
`email` varchar(256) DEFAULT NULL,
`ip` varchar(40) DEFAULT NULL,
`store_id` int(11) DEFAULT NULL,
PRIMARY KEY (`newsletter_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_newsletter`
--
LOCK TABLES `oc_journal3_newsletter` WRITE;
/*!40000 ALTER TABLE `oc_journal3_newsletter` DISABLE KEYS */;
INSERT INTO `oc_journal3_newsletter` VALUES
(1,'','petro-stelte@hotmail.com','79.107.88.232',0),
(2,'','testing@example.com','45.66.10.174',0);
/*!40000 ALTER TABLE `oc_journal3_newsletter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_product_attribute`
--
DROP TABLE IF EXISTS `oc_journal3_product_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_product_attribute` (
`product_id` int(11) NOT NULL,
`attribute_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`text` varchar(256) NOT NULL,
`sort_order` int(3) NOT NULL DEFAULT 0,
KEY `product_id` (`product_id`,`attribute_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_product_attribute`
--
LOCK TABLES `oc_journal3_product_attribute` WRITE;
/*!40000 ALTER TABLE `oc_journal3_product_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_journal3_product_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_setting`
--
DROP TABLE IF EXISTS `oc_journal3_setting`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_setting` (
`store_id` int(11) NOT NULL,
`setting_group` varchar(128) NOT NULL,
`setting_name` varchar(128) NOT NULL,
`setting_value` text NOT NULL,
`serialized` int(1) NOT NULL,
PRIMARY KEY (`store_id`,`setting_group`,`setting_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_setting`
--
LOCK TABLES `oc_journal3_setting` WRITE;
/*!40000 ALTER TABLE `oc_journal3_setting` DISABLE KEYS */;
INSERT INTO `oc_journal3_setting` VALUES
(0,'general','adminBar','false',0),
(0,'active_skin','active_skin','1',0),
(0,'seo','seoOpenGraphTagsStatus','true',0),
(0,'seo','seoOpenGraphTagsAppId','',0),
(0,'seo','seoOpenGraphTagsImageDimensions','{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"600\",\"height\":\"315\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(0,'seo','seoTwitterCardsStatus','true',0),
(0,'seo','seoTwitterCardsImageDimensions','{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"200\",\"height\":\"200\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(0,'seo','seoGoogleRichSnippetsStatus','true',0),
(0,'custom_code','customCSS','',0),
(0,'blog','blogDateFormatIntl','{\"lang_1\":\"dd <\'i\'>MMM<\\/\'i\'>\"}',1),
(0,'custom_code','customJS','',0),
(0,'blog','blogPageMetaTitle','{\"lang_1\":\"Journal Blog\"}',1),
(0,'blog','blogPageMetaDescription','{\"lang_1\":\"Journal Blog\"}',1),
(0,'blog','blogPageTitle','{\"lang_1\":\"Journal Blog\"}',1),
(0,'blog','blogPostsSort','latest',0),
(0,'blog','blogPostsDescriptionLimit','150',0),
(0,'blog','blogFeedStatus','true',0),
(0,'blog','blogPageMetaKeyword','{\"lang_1\":\"Journal Blog\"}',1),
(0,'blog','blogStatus','true',0),
(0,'blog','blogPostComments','true',0),
(0,'blog','blogPageKeyword','{\"lang_1\":\"blog\"}',1),
(0,'blog','blogAuthorName','username',0),
(0,'blog','blogPostsPerPage','12',0),
(0,'blog','blogPostApproveComments','true',0),
(0,'blog','blogReadMoreButton','{\"lang_1\":\"Read Article\"}',1),
(0,'blog','blogImageDimensions','{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"270\",\"height\":\"270\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(0,'custom_code','customCodeHeader','',0),
(0,'custom_code','customCodeFooter','',0),
(0,'blog','blogLeaveReplyText','{\"lang_1\":\"Leave a Reply\"}',1),
(0,'blog','blogCommentsText','{\"lang_1\":\"Comment(s)\"}',1),
(0,'blog','blogPostedByText','{\"lang_1\":\"Posted By\"}',1),
(0,'blog','blogReadMoreButtonText','{\"lang_1\":\"Read More\"}',1),
(0,'blog','blogReplyText','{\"lang_1\":\"Reply\"}',1),
(0,'blog','blogLeaveCommentText','{\"lang_1\":\"Leave a Comment\"}',1),
(0,'blog','blogDateFormat','{\"lang_1\":\"d \\\\<\\\\i\\\\>M\\\\<\\\\\\/\\\\i\\\\>\"}',1),
(0,'blog','blogViewsText','{\"lang_1\":\"View(s)\"}',1),
(0,'blog','authorIcon','{\"size\":\"11\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e916\",\"name\":\"iconmonstr-user-5\"},\"type\":\"\",\"image\":\"\"}',1),
(0,'blog','timeIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb29\",\"name\":\"clock\"},\"type\":\"\",\"image\":\"\"}',1),
(0,'blog','viewsIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(0,'blog','dateIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f133\",\"name\":\"calendar-o\"},\"type\":\"\",\"image\":\"\"}',1),
(0,'blog','websiteIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"-1\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e321\",\"name\":\"laptop_windows\"},\"type\":\"\",\"image\":\"\"}',1),
(0,'blog','categoryIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f022\",\"name\":\"list-alt\"},\"type\":\"\",\"image\":\"\"}',1),
(0,'blog','commentIcon','{\"size\":\"13\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f27a\",\"name\":\"commenting\"},\"type\":\"\",\"image\":\"\"}',1),
(0,'blog','viewIcon','{\"size\":\"13\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f06e\",\"name\":\"eye\"},\"type\":\"\",\"image\":\"\"}',1),
(0,'blog','blogDateFormat2','{\"lang_1\":\"d \\\\<\\\\i\\\\>M\\\\<\\\\\\/\\\\i\\\\>\"}',1),
(0,'blog','blogNoResults','{\"lang_1\":\"There are no blog posts to list.\"}',1),
(0,'blog','blogCommentSubmitText','{\"lang_1\":\"Comment submitted\"}',1),
(0,'blog','blogFeedText','{\"lang_1\":\"RSS Feed\"}',1),
(0,'blog','blogCommentApprovalText','{\"lang_1\":\"Comment awaiting approval\"}',1),
(1,'active_skin','active_skin','1',0),
(0,'seo','seoTwitterCardsTwitterUser','',0),
(0,'system','filterAttributeValuesSeparator','',0),
(0,'system','filterUrlValuesSeparator',',',0),
(0,'system','filterCheckQuantity','false',0),
(0,'system','filterOrderByStock','false',0),
(0,'system','filterAddToCartStock','true',0),
(0,'system','filterCheckOptionsQuantity','false',0),
(0,'system','filterTaxClassId','',0),
(0,'system','filterScrollTop','false',0),
(0,'system','filterCheckQuantityRelated','false',0),
(0,'system','adminDimensions','false',0),
(0,'system','adminEditor','false',0);
/*!40000 ALTER TABLE `oc_journal3_setting` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_skin`
--
DROP TABLE IF EXISTS `oc_journal3_skin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_skin` (
`skin_id` int(11) NOT NULL AUTO_INCREMENT,
`skin_name` varchar(128) NOT NULL,
PRIMARY KEY (`skin_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_skin`
--
LOCK TABLES `oc_journal3_skin` WRITE;
/*!40000 ALTER TABLE `oc_journal3_skin` DISABLE KEYS */;
INSERT INTO `oc_journal3_skin` VALUES
(1,'Default');
/*!40000 ALTER TABLE `oc_journal3_skin` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_skin_setting`
--
DROP TABLE IF EXISTS `oc_journal3_skin_setting`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_skin_setting` (
`skin_id` int(11) NOT NULL,
`setting_name` varchar(128) NOT NULL,
`setting_value` text NOT NULL,
`serialized` int(1) NOT NULL,
PRIMARY KEY (`skin_id`,`setting_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_skin_setting`
--
LOCK TABLES `oc_journal3_skin_setting` WRITE;
/*!40000 ALTER TABLE `oc_journal3_skin_setting` DISABLE KEYS */;
INSERT INTO `oc_journal3_skin_setting` VALUES
(1,'postCommentsBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'accountLoginForm','',0),
(1,'labelBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'countdownSec','{\"lang_1\":\"Sec\"}',1),
(1,'infiniteScrollNoneLeft','{\"lang_1\":\"You have reached the end of the list.\"}',1),
(1,'quickCheckoutAddressFirstNameField','required',0),
(1,'notificationCheckoutStyle','',0),
(1,'subcategoriesContainerGutter','{\"margin\":\"-5\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'countdownStyle','__VAR__LIGHT',0),
(1,'postDateVisibility','true',0),
(1,'notificationCloseOffset','{\"first\":\"-12\",\"second\":\"-12\"}',1),
(1,'globalTooltip','__VAR__DEFAULT',0),
(1,'postColumnGap','40',0),
(1,'infiniteButtonWidth','auto',0),
(1,'postColumnDividerColor','__VAR__COLOR_11',0),
(1,'maintenanceHeader','false',0),
(1,'comparePageDimensions','true',0),
(1,'quickCheckoutPageButtonsConfirm','__VAR__CHECKOUT',0),
(1,'accountPageWishlist','true',0),
(1,'sectionTitlePaymentAddress','{\"lang_1\":\"Billing Address\"}',1),
(1,'maintenanceBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'subcategoriesTitleBG','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'subcategoriesItemsPerRow','{\"variable\":\"\",\"c0\":{\"items\":\"8\",\"spacing\":\"__VAR__Side Products\"},\"c1\":{\"items\":\"7\",\"spacing\":\"__VAR__Side Products\"},\"c2\":{\"items\":\"6\",\"spacing\":\"__VAR__Side Products\"},\"sc\":{\"items\":\"1\",\"spacing\":\"15\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"spacing\":\"__VAR__Side Products\",\"items\":\"7\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"spacing\":\"__VAR__Side Products\",\"items\":\"4\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"spacing\":\"__VAR__Side Products\",\"items\":\"3\"}}],\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"spacing\":\"__VAR__Side Products\",\"items\":\"5\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"spacing\":\"__VAR__Side Products\",\"items\":\"4\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"}}],\"c2_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"items\":\"4\",\"spacing\":\"__VAR__Side Products\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"3\",\"spacing\":\"__VAR__Side Products\"}}]}',1),
(1,'quickviewExtraButtonStyle','',0),
(1,'rssFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'globalPostList','__VAR__POST_LIST',0),
(1,'countdownMin','{\"lang_1\":\"Min\"}',1),
(1,'categoryPageCategoryImagePadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'cartPanelsStatus','true',0),
(1,'image_dimensions_product','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"250\",\"height\":\"250\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'accountPageRecurring','true',0),
(1,'quickviewButtonsPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'categoryPageDescriptionPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'spaceBetween','15',0),
(1,'sitemapBoxBorder','{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"}',1),
(1,'maintenanceTypography','',0),
(1,'postCommentsMargin','{\"margin\":\"\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\",\"padding-top\":\"15\"}',1),
(1,'sectionTitleShippingMethod','{\"lang_1\":\"Shipping Method\"}',1),
(1,'titleVisibilityShipPay','true',0),
(1,'accountLoginBoxPadding','{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'categoryPageCategoryImageVisibility','true',0),
(1,'quickCheckoutBoxStylesLoginPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'postCommentsBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'manufacturerLinkFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'labelBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'notificationImageStatus','true',0),
(1,'subcategoriesImageShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'categoryPageCategoryImageStatus','{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"desktop\"],\"customer\":\"\"}',1),
(1,'cartPagePanelsForm','',0),
(1,'sitemapSubCategoryIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0f6\",\"name\":\"file-text-o\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'sortBarBoxBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'notificationImageRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}',1),
(1,'accountRegisterPageButtons','',0),
(1,'sectionVVisibility','true',0),
(1,'categoryPageCategoryDescriptionVisibility','true',0),
(1,'infiniteFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickviewSplitRatio','50',0),
(1,'notificationCheckoutVisibility','true',0),
(1,'labelFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postColumnDividerWidth','1',0),
(1,'countdownStatus','true',0),
(1,'infiniteBoxBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'notificationCloseBorderHover','',0),
(1,'image_dimensions_location','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"100\",\"height\":\"100\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'postReplyOddBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'contactLocationTitle','',0),
(1,'postCommentsTitle','',0),
(1,'categoryCountBadgeVisibility','false',0),
(1,'quickviewStatus','true',0),
(1,'sortBarBoxMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"}',1),
(1,'postAuthorIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'sortBarBoxBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'notificationCartIcon','{\"type\":\"\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'contactLocationFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickviewCloseBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}',1),
(1,'sitemapBoxMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'adminBar','false',0),
(1,'sitemapBoxBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'sitemapFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'wishlistPageButtonsStyle','__VAR__DEFAULT',0),
(1,'quickCheckoutBoxStylesConfirmBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'rssVisibility','true',0),
(1,'globalPostGridGutter','{\"margin\":\"-10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'sectionTitleCouponVoucherReward','{\"lang_1\":\"Coupon \\/ Voucher \\/ Reward\"}',1),
(1,'checkoutPageButtonsStyle','',0),
(1,'quickCheckoutFormShipping','',0),
(1,'quickCheckoutFormPaymentAddress','',0),
(1,'quickviewExtraIconHover','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'globalAccordion','__VAR__DEFAULT',0),
(1,'quickCheckoutBoxStylesShippingAddressPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'sectionCartTitleVisibility','true',0),
(1,'sortBarBoxFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'rssOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutAddressRegionField','required',0),
(1,'accountPageLinkFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'sitemapBoxFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'globalPagePaginationStyle','__VAR__DEFAULT',0),
(1,'notificationNameFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postCommentTimeIcon','{\"size\":\"\",\"color\":\"__VAR__COLOR_9\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'infiniteBoxBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'infiniteBoxMargin','{\"margin\":\"10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickCheckoutAddressCountryField','required',0),
(1,'infiniteBoxFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postCommentDateIcon','{\"size\":\"\",\"color\":\"__VAR__COLOR_5\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'quickCheckoutBoxStylesCartBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'globalPageTitle','__VAR__PAGE_TITLE_TOP',0),
(1,'image_dimensions_manufacturer','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"100\",\"height\":\"100\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'notificationPadding','{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'subcategoriesDisplay','carousel',0),
(1,'postCommentsVisibility','true',0),
(1,'subcategoriesNameFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'manufacturerBoxBorder','{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"}',1),
(1,'postStatVisibility','true',0),
(1,'quickCheckoutBoxStylesShippingBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'quickCheckoutConfirmNewsletter','true',0),
(1,'contactStoresTitle','',0),
(1,'notificationCartStyle','',0),
(1,'confirmOrderLanguage','{\"lang_1\":\"Confirm Order\"}',1),
(1,'notificationCloseIcon','{\"type\":\"\",\"icon\":{\"code\":\"f00d\",\"name\":\"close\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'maintenanceContent','{\"lang_1\":\"We are currently performing some scheduled maintenance. We will be back as soon as possible. Please check back soon.\"}',1),
(1,'countBadgeVisibility','true',0),
(1,'accountPageEdit','true',0),
(1,'quickCheckoutBoxStylesPaymentAddressBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'quickCheckoutBoxStylesDetailsBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'cartPanelsBoxStylesShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'inputStyle','',0),
(1,'quickviewCloseSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'comparePageImage','true',0),
(1,'postImageBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'checkoutFormStyle','',0),
(1,'image_dimensions_autosuggest','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"60\",\"height\":\"60\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'replyStyle','',0),
(1,'manufacturerTitle','',0),
(1,'quickCheckoutBoxStylesCardPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'notificationTextFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'accountPageIconHover','',0),
(1,'quickCheckoutFormCard','',0),
(1,'quickCheckoutSectionBoxStylesBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'postContentBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'sortBarStatus','{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"}',1),
(1,'postDateIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'quickviewDescriptionPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'postReplyPadding','{\"padding\":\"\",\"padding-top\":\"20\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'postCommentSpace','30',0),
(1,'wishlistPageRemoveButtonStyle','',0),
(1,'cartPageUpdateButtonStyle','',0),
(1,'accountPageReturns','true',0),
(1,'comparePageRemoveButtonStyle','',0),
(1,'globalPostView','grid',0),
(1,'notificationLinkFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postStatsLinkFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'gridBackgroundHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutBoxStylesCartBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'subcategoriesItemBoxStylesShadowHover','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'quickviewBackdrop','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(0,0,0,.7)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'quickCheckoutBoxStylesCardBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'manufacturerBoxBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'accountPageRewards','true',0),
(1,'image_dimensions_thumb','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"550\",\"height\":\"550\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'sitemapColumns','2',0),
(1,'sitemapBox2Border','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'skinName','Default',0),
(1,'quickCheckoutBoxStylesCartMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'postCommentImageBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'subcategoriesItemBoxStylesShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'manufacturerBoxMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'subcategoriesTitleBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'subcategoriesImageShadowHover','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'postImageDimensions','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"550\",\"height\":\"550\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'postReplyBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'quickviewExtraWidth','full',0),
(1,'scrollTop','true',0),
(1,'notificationButtonsStatus','true',0),
(1,'notificationBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}',1),
(1,'globalPostGrid','__VAR__POST_GRID',0),
(1,'quickCheckoutFormConfirm','',0),
(1,'quickCheckoutSectionBoxStylesBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'postImageMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickCheckoutSectionBoxStylesMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickCheckoutBoxStylesCartFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickCheckoutBoxStylesDetailsPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'globalModuleTitle','__VAR__MEDIUM',0),
(1,'quickCheckoutSpaceColumn','20',0),
(1,'manufacturerBoxFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickCheckoutBoxStylesPaymentAddressPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'postCommentImageDimensions','{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"\",\"height\":\"\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'subcategoriesTitleMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'sitemapBox2Background','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutSectionBoxStylesFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'contactLocationMapStyle','',0),
(1,'subcategoriesNamePadding','{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"0\",\"padding-left\":\"\"}',1),
(1,'quickCheckoutPageButtonsLogin','',0),
(1,'checkoutPageConfirmPageButtonsStyle','',0),
(1,'cartPagePanelsAccordion','',0),
(1,'subcategoriesTitleShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'quickviewCloseBorderHover','',0),
(1,'titleVisibilityCart','',0),
(1,'bottomMenu','',0),
(1,'postReply','__VAR__GREEN',0),
(1,'quickviewDescription','true',0),
(1,'globalProductList','__VAR__DEFAULT',0),
(1,'subcategoriesBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'cartPanelsBoxStylesBorder','{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"}',1),
(1,'sitemapBox2Margin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"20\"}',1),
(1,'postImageAlign','left',0),
(1,'searchPageButtons','__VAR__DEFAULT',0),
(1,'notificationCheckoutIcon','{\"type\":\"\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'notificationCloseBGHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'subcategoriesItemBoxStylesBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingAddressBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'postCommentImageMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"15\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'compareIconOnly','false',0),
(1,'postCommentImageShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'titleVisibilityPersonal','true',0),
(1,'notificationCloseBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}',1),
(1,'sitemapBox2Font','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickCheckoutFormDetails','',0),
(1,'postStatsBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'manufacturersImageStatus','true',0),
(1,'quickCheckoutBoxStylesConfirmPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'categoryPageTitle','',0),
(1,'wishlistPageCartButtonStyle','__VAR__BLUE',0),
(1,'quickviewCloseBG','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'subcategoriesTitleFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'globalTable','__VAR__DEFAULT',0),
(1,'sitemapBox2Shadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'rssIcon','{\"size\":\"14\",\"color\":\"__VAR__COLOR_14\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f143\",\"name\":\"rss-square\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'comparePageCartButtonStyle','',0),
(1,'postCommentBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"}',1),
(1,'infiniteButtonStyle','',0),
(1,'subcategoriesImageBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'quickviewExtraText','{\"lang_1\":\"More Details\"}',1),
(1,'countdownDay','{\"lang_1\":\"Day\"}',1),
(1,'quickCheckoutAuthentication','register',0),
(1,'accountLoginFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'image_dimensions_category','{\"tablet_height\":\"\",\"phone_resize\":\"fit\",\"width\":\"220\",\"height\":\"220\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"100\",\"phone_height\":\"100\"}',1),
(1,'quickviewExtraMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'cartPageRemoveButtonStyle','__VAR__RED',0),
(1,'listBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'cartPanelsBoxStylesMargin','{\"margin\":\"\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'sectionCVRLabelVisibility','true',0),
(1,'comparePageWeight','true',0),
(1,'cartPanelsBoxStylesBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'subcategoriesItemBoxStylesMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'subcategoriesItemBoxStylesBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'postReplyOddPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'quickCheckoutAddressPostcodeField','required',0),
(1,'quickCheckoutSectionBoxStylesShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'textareaVisibility','true',0),
(1,'cartPagePanelsTitleVisibility','false',0),
(1,'globalForms','__VAR__DEFAULT',0),
(1,'postImageShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'quickCheckoutBoxStylesCouponBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'comparePadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"15\"}',1),
(1,'sitemapCategoryIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f15c\",\"name\":\"file-text\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'sectionCVRVisibility','true',0),
(1,'postCommentBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'accountLoginBoxBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'sectionTitleConfirm','{\"lang_1\":\"Confirm Your Order\"}',1),
(1,'subcategoriesImageMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'subcategoriesImageBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'globalProductGridGutter','{\"margin\":\"-10\",\"margin-top\":\"5\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'titleVisibilityCouponVoucherReward','true',0),
(1,'globalBreadcrumbs','__VAR__DEFAULT',0),
(1,'checkoutPaymentFormStyle','',0),
(1,'postCommentsIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'postImageVisibility','true',0),
(1,'postStatsBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'postStatsMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"20\",\"margin-left\":\"\"}',1),
(1,'categoryPageDescriptionBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'cartPanelsBoxStylesFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'cartPagePanelsFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'contactFormStyle','',0),
(1,'subcategoriesItemBoxStylesFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'manufacturerBoxShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'formStyle','',0),
(1,'subcategoriesNameTruncate','false',0),
(1,'quickCheckoutBoxStylesLoginBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'listIconHover2','',0),
(1,'mobileHeaderOn','tablet',0),
(1,'quickCheckoutBoxStylesCouponMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'postStatsFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"}',1),
(1,'quickviewDescriptionTypo','',0),
(1,'quickCheckoutAddressCityField','required',0),
(1,'postColumnDividerStyle','solid',0),
(1,'quickCheckoutTitles','__VAR__SIDE_COLUMN',0),
(1,'image_dimensions_cart','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"60\",\"height\":\"60\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'notificationCloseSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'cartPagePanel1Visibility','true',0),
(1,'globalStepper','__VAR__DEFAULT',0),
(1,'compareLinkFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postCommentFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'subcategoriesImageFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'maintenanceFooter','false',0),
(1,'postCategoriesVisibility','true',0),
(1,'postCommentImageVisibility','false',0),
(1,'subcategoriesImageFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'categoryPageCategoryImageBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'compareLinkFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'subcategoriesStatus','{\"params\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"status\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"],\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\"}',1),
(1,'quickCheckoutBoxStylesCouponBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'postDetailsPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'checkoutAccordionStyle','',0),
(1,'subcategoriesImageBackgroundHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickviewDescriptionBG','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'cartPagePanel2Visibility','true',0),
(1,'comparePageAvailability','true',0),
(1,'headerDesktop','8/header_desktop_compact',0),
(1,'cartPageStepperStyle','',0),
(1,'notificationHideAfter','2000',0),
(1,'headerMobile','5/header_mobile_1',0),
(1,'postTypography','__VAR__DEFAULT',0),
(1,'showVisibility','true',0),
(1,'accountPageDownloads','true',0),
(1,'subcategoriesItemBoxStylesFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'labelSpacing','',0),
(1,'quickviewTitlePosition','options',0),
(1,'quickCheckoutBoxStylesCouponFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'sectionTitlePaymentDetails','{\"lang_1\":\"Payment Details\"}',1),
(1,'quickviewPopupStyle','',0),
(1,'infiniteBoxShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'sitemapBoxShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'searchPageProductsTitleVisibility','true',0),
(1,'quickCheckoutFormShippingAddress','',0),
(1,'listBackgroundHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'buttonBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'postDetailsBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'sortBarBoxShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'sitemapCategoryIconHover','',0),
(1,'searchPageTitleStyle','',0),
(1,'quickCheckoutAccountTelephoneField','visible',0),
(1,'notificationBG','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'cartPageConfirmPageButtonsStyle','__VAR__CHECKOUT',0),
(1,'cartPagePanel3Visibility','true',0),
(1,'subcategoriesItemBoxStylesBackgroundHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickviewBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}',1),
(1,'quickCheckoutColumnsSplit','30',0),
(1,'sortVisibility','true',0),
(1,'sectionCVisibility','true',0),
(1,'subcategoriesImageBorderHover','',0),
(1,'globalProductView','grid',0),
(1,'quickviewCloseBGActive','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'quickCheckoutBoxStylesCouponPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'accountPageTransactions','true',0),
(1,'quickviewSpacing','',0),
(1,'rssIconHover','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'quickviewCloseBGHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'subcategoriesImageStatus','true',0),
(1,'postReplyOddBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'comparePageRating','true',0),
(1,'quickCheckoutAccountFieldsSort','[]',1),
(1,'postCommentsBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'subcategoriesImagePadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'notificationCloseBG','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'globalPage','__VAR__DEFAULT',0),
(1,'labelBorderRadius','{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'quickCheckoutSpaceSection','20',0),
(1,'globalProductGrid','__VAR__DEFAULT',0),
(1,'globalTypography','__VAR__DEFAULT',0),
(1,'postCommentPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"15\",\"padding-left\":\"\"}',1),
(1,'cartPageTableStyle','',0),
(1,'contactPageButtons','',0),
(1,'postCommentsShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'quickviewCloseBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'postStatsPadding','{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"12\",\"padding-bottom\":\"\",\"padding-left\":\"12\"}',1),
(1,'categoryCountBadge','',0),
(1,'quickCheckoutBoxStylesConfirmBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'subcategoriesItemBoxStylesBorderHover','',0),
(1,'comparePageSummary','true',0),
(1,'notificationCheckoutIconHover','',0),
(1,'quickCheckoutFormLogin','',0),
(1,'subcategoriesItemBoxStylesPadding','{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'quickviewButtonsDisplay','default',0),
(1,'postReplyOddMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'image_dimensions_wishlist','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"60\",\"height\":\"60\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'cartPanelsBoxStylesPadding','{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'infiniteScrollStatus','true',0),
(1,'postReplyOddBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'searchPageCategories','true',0),
(1,'sectionTitlePersonal','{\"lang_1\":\"Your Personal Details\"}',1),
(1,'quickviewDescriptionPosition','top',0),
(1,'buttonSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'comparePageBrand','true',0),
(1,'manufacturerBoxFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'sectionTitleShippingAddress','{\"lang_1\":\"Shipping Address\"}',1),
(1,'accountRegisterForm','',0),
(1,'globalDropdown','__VAR__DEFAULT',0),
(1,'image_dimensions_options','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"40\",\"height\":\"40\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'manufacturerBoxBackgroundHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'gridBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutBoxStylesConfirmMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickCheckoutBoxStylesPaymentAddressBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'cartPagePanelsPageButtons','',0),
(1,'notificationLinkFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickviewButtonsBG','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'postStatsLinkFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickCheckoutBoxStylesConfirmBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutBoxStylesDetailsBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'infiniteScrollOffset','2',0),
(1,'accountLoginBoxSpacing','20',0),
(1,'quickviewWidth','700',0),
(1,'sectionTitlePaymentMethod','{\"lang_1\":\"Payment Method\"}',1),
(1,'sortBarBoxBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'compareIconHover2','',0),
(1,'notificationPosition','tr',0),
(1,'quickCheckoutBoxStylesShippingBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'infiniteButtonMargin','{\"margin\":\"10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickCheckoutNewsConfirmNewsletterChecked','true',0),
(1,'countBadge','',0),
(1,'sitemapBoxBorderRadius','{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'searchPageCriteriaTitleVisibility','false',0),
(1,'gridIconHover2','',0),
(1,'accountPageNewsletter','true',0),
(1,'globalTitle','__VAR__DEFAULT',0),
(1,'comparePagePrice','true',0),
(1,'infiniteBoxBorderRadius','{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'globalButton','__VAR__DEFAULT',0),
(1,'notificationCheckoutWidth','full',0),
(1,'accountPageIcon','{\"type\":\"\",\"icon\":{\"code\":\"f0a9\",\"name\":\"arrow-circle-right\"},\"image\":\"\",\"color\":\"\",\"size\":\"40\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'subcategoriesTitlePadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'subcategoriesCarouselStyle','__VAR__SIDE_ARROWS',0),
(1,'quickCheckoutBoxStylesConfirmFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postCategoriesIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'sitemapBox2Padding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'comparePageModel','true',0),
(1,'subcategoriesCarouselPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'quickviewMarginTop','',0),
(1,'contactLocationTitleVisibility','false',0),
(1,'postCommentSiteFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'countdownHour','{\"lang_1\":\"Hour\"}',1),
(1,'postParagraphSpacing','10',0),
(1,'image_dimensions_additional','{\"tablet_height\":\"\",\"phone_resize\":\"fit\",\"width\":\"80\",\"height\":\"80\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"60\",\"phone_height\":\"60\"}',1),
(1,'quickCheckoutBoxStylesCardBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'sectionTitleLogin','{\"lang_1\":\"Login or Register\"}',1),
(1,'categoryPageCategoryImageShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'quickCheckoutBoxStylesShippingMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'contactStoresAccordion','',0),
(1,'quickviewCloudZoom','true',0),
(1,'quickCheckoutSectionBoxStylesPadding','{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'subcategoriesNameFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickCheckoutFormCardTypography','',0),
(1,'contactFormStatus','false',0),
(1,'quickCheckoutBoxStylesPaymentAddressBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutBoxStylesDetailsBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'postReplyBorder','{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"}',1),
(1,'quickCheckoutBoxStylesPaymentAddressMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'accountLoginPageButtons','',0),
(1,'quickCheckoutBoxStylesDetailsMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'searchPageProductsStyle','',0),
(1,'manufacturerBoxBorderHover','',0),
(1,'titleVisibilityConfirm','true',0),
(1,'quickCheckoutSpaceColumnShipping','',0),
(1,'notificationBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'accountPagePassword','true',0),
(1,'quickCheckoutBoxStylesShippingFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'compareVisibility','true',0),
(1,'quickviewBG','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'listIcon','{\"size\":\"19\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e97a\",\"name\":\"noun_89836_cc-grid-list\",\"size\":\"17\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'accountPageLinkFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'manufacturerBoxPadding','{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'comparePageTableStyle','',0),
(1,'quickviewExtraIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'quickCheckoutBoxStylesCartPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'quickviewPageTitle','',0),
(1,'accountLoginBoxShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'manufacturerImageDimensions','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"120\",\"height\":\"120\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'wishlistPageTableStyle','',0),
(1,'quickCheckoutBoxStylesPaymentAddressFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'globalCountBadge','__VAR__DEFAULT',0),
(1,'quickCheckoutBoxStylesDetailsFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'image_dimensions_compare','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"90\",\"height\":\"90\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'quickviewMarginSide','',0),
(1,'postReplyMargin','{\"margin\":\"\",\"margin-top\":\"15\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"60\"}',1),
(1,'quickviewCloseBorderActive','',0),
(1,'quickCheckoutBoxStylesCardBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutBoxStylesCartBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'contactLocationFontMap','false',0),
(1,'quickviewDescriptionMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingAddressBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'sitemapFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'contactStoresTitleVisibility','true',0),
(1,'manufacturerBoxBorderRadius','{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'titleVisibilityPaymentAddress','true',0),
(1,'checkoutPageTableStyle','',0),
(1,'postTitle','',0),
(1,'postCommentDataFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"}',1),
(1,'notificationCartIconHover','',0),
(1,'accountPageAddress','true',0),
(1,'quickCheckoutBoxStylesCardMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'postContentPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'comparePageCartButtonVisibility','true',0),
(1,'notificationCloseBGActive','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'quickCheckoutAddressLastNameField','required',0),
(1,'accountPageHistory','true',0),
(1,'quickCheckoutAutoSaveFields','false',0),
(1,'gridVisibility','true',0),
(1,'postReplyBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'cartPageTotalTableStyle','',0),
(1,'postImageBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'notificationCartMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'postTags','__VAR__DEFAULT',0),
(1,'quickCheckoutSectionBoxStylesBorderRadius','{\"border-radius\":\"4\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'postCommentUserFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"18\"}',1),
(1,'postReplyFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickviewHeight','',0),
(1,'notificationCloseBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'quickCheckoutBoxStylesCardFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickviewCloseOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutAccountFirstNameField','required',0),
(1,'sitemapBox2BorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'globalAlerts','__VAR__DEFAULT',0),
(1,'globalPostItemsPerRow','{\"variable\":\"\",\"c0\":{\"items\":\"3\",\"spacing\":\"__VAR__Product Grid\"},\"c1\":{\"items\":\"2\",\"spacing\":\"__VAR__Product Grid\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__Product Grid\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Product Grid\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Product Grid\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"1\",\"spacing\":\"__VAR__Product Grid\"}}],\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"items\":\"1\",\"spacing\":\"__VAR__Product Grid\"}}],\"c2_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Product Grid\"}}]}',1),
(1,'infiniteBoxPadding','{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'postCommentImageBorderRadius','{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\",\"custom\":\"\"}',1),
(1,'infiniteScrollLoadPrev','{\"lang_1\":\"Load Previous Products\"}',1),
(1,'quickCheckoutBoxStylesLoginShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'footerMenu','21',0),
(1,'quickCheckoutBoxStylesShippingAddressShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'infiniteScrollLoadNext','{\"lang_1\":\"Load Next Products\"}',1),
(1,'quickCheckoutFormStyle','__VAR__DEFAULT',0),
(1,'manufacturerLinkFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingAddressMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'categoryPageCategoryDescriptionPosition','top',0),
(1,'sitemapSubCategoryIconHover','',0),
(1,'cartPagePanelsTitle','__VAR__MEDIUM',0),
(1,'globalItemsPerRow','{\"variable\":\"\",\"c0\":{\"items\":\"5\",\"spacing\":\"__VAR__Product Grid\"},\"c1\":{\"items\":\"4\",\"spacing\":\"__VAR__Product Grid\"},\"c2\":{\"items\":\"3\",\"spacing\":\"__VAR__Product Grid\"},\"sc\":{\"items\":\"1\",\"spacing\":\"__VAR__Product Grid\"},\"c0_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"spacing\":\"__VAR__Product Grid\",\"items\":\"4\"}},{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"spacing\":\"__VAR__Product Grid\",\"items\":\"3\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"spacing\":\"__VAR__Product Grid Mobile\",\"items\":\"2\"}}],\"c1_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"spacing\":\"__VAR__Product Grid\",\"items\":\"3\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Product Grid Mobile\"}}],\"c2_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"spacing\":\"__VAR__Product Grid\",\"items\":\"2\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"items\":\"2\",\"spacing\":\"__VAR__Product Grid Mobile\"}}]}',1),
(1,'quickCheckoutBoxStylesShippingAddressBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutAddressAddress2Field','visible',0),
(1,'globalProductPage','__VAR__DEFAULT',0),
(1,'contactLocationStrongFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'searchPageForm','',0),
(1,'notificationCartWidth','full',0),
(1,'categoryPageDescriptionBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'sitemapBoxPadding','{\"padding\":\"15\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'image_dimensions_manufacturer_logo','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"60\",\"height\":\"60\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'sectionTitleShoppingCart','{\"lang_1\":\"Shopping Cart\"}',1),
(1,'notificationButtonsBG','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'quickCheckoutTableCart','',0),
(1,'quickCheckoutBoxStylesLoginBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'notificationButtonsPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'sortBarBoxPadding','{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'informationTypography','',0),
(1,'notificationWidth','',0),
(1,'infiniteScrollLoading','{\"lang_1\":\"Loading...\"}',1),
(1,'rssFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'accountLoginBoxBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingAddressFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'cartPanelsBoxStylesBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'subcategoriesItemBoxStylesBorderRadius','{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'accountPageTitle','',0),
(1,'titleVisibilityShippingAddress','true',0),
(1,'categoryPageTypography','',0),
(1,'subcategoriesCarousel','true',0),
(1,'globalTags','__VAR__DEFAULT',0),
(1,'postReplyShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'accountLoginTitle','__VAR__MEDIUM',0),
(1,'comparePageRemoveButtonVisibility','true',0),
(1,'titleVisibilityPayment','true',0),
(1,'subcategoriesTitle','{\"lang_1\":\"Subcategories\"}',1),
(1,'notificationImageBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'quickCheckoutAddressAddress1Field','required',0),
(1,'categoryPageCategoryImageBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'notificationCartVisibility','true',0),
(1,'quickCheckoutBoxStylesLoginMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickCheckoutBoxStylesLoginBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutFormCoupon','',0),
(1,'notificationStatus','true',0),
(1,'postStatsBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'cartPagePanelsTextVisibility','false',0),
(1,'accountLoginBoxMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'accountLoginBoxBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'postCommentsPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'categoryPageTitleVisibility','true',0),
(1,'image_dimensions_related','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"250\",\"height\":\"250\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'postColumns','initial',0),
(1,'postCommentBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'notificationImageDimensions','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"75\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'globalPagination','__VAR__DEFAULT',0),
(1,'categoryPageDescriptionMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"30\",\"margin-left\":\"\"}',1),
(1,'categoryPageDescriptionBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'postAuthorVisibility','true',0),
(1,'subcategoriesImageBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'image_dimensions_popup','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"1000\",\"height\":\"1000\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'quickCheckoutBoxStylesDetailsShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'categoryPageCategoryImageBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickviewBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'notificationImageMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'categoryPageCategoryImageMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"20\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'maintenancePadding','{\"padding\":\"40\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'categoryPageDescriptionFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'responsiveLayout','true',0),
(1,'quickCheckoutBoxStylesCouponBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'globalButtons','__VAR__DEFAULT',0),
(1,'globalStars','__VAR__DEFAULT',0),
(1,'quickCheckoutBoxStylesLoginFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'compareIcon','{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'quickCheckoutAddressCompanyField','visible',0),
(1,'quickCheckoutBoxStylesPaymentAddressShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'subcategoriesTitleOverflow','false',0),
(1,'quickCheckoutBoxStylesShippingShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'accountLoginBoxFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickviewCountdown','true',0),
(1,'notificationCheckoutMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'accountRegisterFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickviewCloseIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"f00d\",\"name\":\"close\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'gridIcon','{\"size\":\"18\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e97b\",\"name\":\"noun_392251_cc\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'sectionRVisibility','true',0),
(1,'quickCheckoutAccountLastNameField','required',0),
(1,'quickviewPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'buttonStyle','',0),
(1,'comparePageName','true',0),
(1,'titleVisibilityLogin','true',0),
(1,'notificationCloseStatus','true',0),
(1,'quickviewText','{\"lang_1\":\"Quickview\"}',1),
(1,'notificationCloseBorderActive','',0),
(1,'postCommentSiteIcon','{\"size\":\"\",\"color\":\"__VAR__COLOR_14\",\"offsetX\":\"-1\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'postReplyOddShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'categoryPageCategoryImageFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'globalPopup','__VAR__DEFAULT',0),
(1,'loginPopup','__VAR__SMALL',0),
(1,'registerPopup','__VAR__SMALL',0),
(1,'loadingIcon','{\"size\":\"28\",\"color\":\"__VAR__COLOR_14\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e92e\",\"name\":\"iconmonstr-loading-1\",\"size\":\"28\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'loadingSpeed','1100',0),
(1,'scrollTopIcon','{\"size\":\"40\",\"color\":\"__VAR__COLOR_5\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e957\",\"name\":\"iconmonstr-book-6\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'scrollTopIconHover','__VAR__COLOR_7',0),
(1,'Align','left',0),
(1,'scrollTopAlign','right',0),
(1,'scrollTopOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'globalNotification','__VAR__DEFAULT',0),
(1,'wishlistNotification','__VAR__CENTER',0),
(1,'compareNotification','',0),
(1,'forgotFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'forgotFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'Display','box',0),
(1,'accountDisplay','box',0),
(1,'accountPageDisplay','links',0),
(1,'accountLoginBoxDisplay','',0),
(1,'accountPageBoxesSpacing','10',0),
(1,'accountPageBoxesPerRow','5',0),
(1,'accountPageBoxesBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_10\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'accountPageBoxesBorder','{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"}',1),
(1,'accountPageBoxesBackgroundHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'accountPageBoxesBorderRadius','{\"border-radius\":\"4\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}',1),
(1,'manufacturerBoxShadowHover','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'accountPageBoxPerRow','6',0),
(1,'accountPageBoxSpacing','8',0),
(1,'accountPageBoxesPadding','{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'quickCheckoutBoxStylesCouponShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'accountIconPagePassword','{\"icon\":{\"name\":\"iconmonstr-menu-9\",\"code\":\"eae9\"}}',1),
(1,'accountIconPageAddress','{\"icon\":{\"name\":\"iconmonstr-gear-thin\",\"code\":\"e903\"}}',1),
(1,'accountIconPageEdit','{\"icon\":{\"name\":\"iconmonstr-menu-3\",\"code\":\"eae8\"}}',1),
(1,'accountPageIconRecurring','{\"type\":\"\",\"icon\":{\"code\":\"e8b3\",\"name\":\"restore\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconTransactions','{\"type\":\"\",\"icon\":{\"code\":\"e928\",\"name\":\"iconmonstr-currency-37\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconReturns','{\"type\":\"\",\"icon\":{\"code\":\"e94a\",\"name\":\"iconmonstr-undo-4\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconNewsletter','{\"type\":\"\",\"icon\":{\"code\":\"e94c\",\"name\":\"iconmonstr-email-1\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconRewards','{\"type\":\"\",\"icon\":{\"code\":\"e952\",\"name\":\"iconmonstr-coin-7\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconPassword','{\"type\":\"\",\"icon\":{\"code\":\"eac4\",\"name\":\"iconmonstr-lock-6\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconDownloads','{\"type\":\"\",\"icon\":{\"code\":\"eb4e\",\"name\":\"download-cloud\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconWishlist','{\"type\":\"\",\"icon\":{\"code\":\"e955\",\"name\":\"heart-edit-wish2\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconEdit','{\"type\":\"\",\"icon\":{\"code\":\"e90d\",\"name\":\"iconmonstr-edit-11\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconAddress','{\"type\":\"\",\"icon\":{\"code\":\"e956\",\"name\":\"iconmonstr-id-card-8\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconHistory','{\"type\":\"\",\"icon\":{\"code\":\"ead5\",\"name\":\"iconmonstr-task-1\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconCards_multi','[]',1),
(1,'accountPageIconCards','{\"type\":\"\",\"icon\":{\"code\":\"e950\",\"name\":\"cards\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageCards','true',0),
(1,'accountPageIconAffiliateEdit','{\"type\":\"\",\"icon\":{\"code\":\"e95a\",\"name\":\"users-edit\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageIconAffiliateTrack','{\"type\":\"\",\"icon\":{\"code\":\"e93c\",\"name\":\"code-tracking-search\"},\"image\":\"\",\"color\":\"\",\"size\":\"\",\"offsetX\":\"\",\"offsetY\":\"\"}',1),
(1,'accountPageAffiliates','true',0),
(1,'accountRegisterTitle','',0),
(1,'accountLoginPopup','',0),
(1,'accountPageStyle','__VAR__ACCOUNT_GRID',0),
(1,'accountRegisterPopup','',0),
(1,'accountForgotFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'accountForgotFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'cartPanelsBoxStylesDisplay','',0),
(1,'globalCarousel','',0),
(1,'quickCheckoutColumnsSplit_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}]',1),
(1,'quickCheckoutSpaceColumn_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"0\"}]',1),
(1,'sitemapColumns_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"1\"}]',1),
(1,'sitemapBox2Margin_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"0\"}}]',1),
(1,'quickCheckoutBoxStylesCouponDisplay','',0),
(1,'quickCheckoutSectionBoxStylesDisplay','',0),
(1,'quickCheckoutBoxStylesCartDisplay','',0),
(1,'quickCheckoutBoxStylesLoginDisplay','',0),
(1,'quickCheckoutBoxStylesShippingAddressDisplay','',0),
(1,'quickCheckoutBoxStylesCardDisplay','',0),
(1,'image_dimensions_notification','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"60\",\"height\":\"60\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'quickCheckoutBoxStylesDetailsDisplay','',0),
(1,'quickCheckoutBoxStylesPaymentAddressDisplay','',0),
(1,'quickCheckoutBoxStylesShippingDisplay','',0),
(1,'quickCheckoutBoxStylesConfirmDisplay','',0),
(1,'compareIconOnly_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"true\"}]',1),
(1,'wishlistNotificationStyle','__VAR__TOP_RIGHT',0),
(1,'compareNotificationStyle','__VAR__TOP_RIGHT',0),
(1,'cartNotificationStyle','__VAR__TOP_RIGHT',0),
(1,'subcategoriesLinksSpacing','10',0),
(1,'subcategoriesCarouselMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"20\",\"margin-left\":\"\"}',1),
(1,'subcategoriesMargin','20',0),
(1,'categoryFixedBGImage','false',0),
(1,'subcategoriesPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'infiniteListMargin','{\"margin\":\"0\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'infinitePrevIcon','{\"icon\":{\"name\":\"chevrons-up\",\"code\":\"eb25\"}}',1),
(1,'infiniteButtonIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eba7\",\"name\":\"refresh-ccw\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'infiniteButtonIconHover','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'comparePadding_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"5\"}}]',1),
(1,'image_dimensions_popup_thumb','{\"tablet_height\":\"\",\"phone_resize\":\"fit\",\"width\":\"80\",\"height\":\"80\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"60\",\"phone_height\":\"60\"}',1),
(1,'postStatsShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'quickCheckoutBoxStylesCartShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'quickviewPageStyle','__VAR__QUICKVIEW',0),
(1,'categoryPageDescriptionShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'quickCheckoutBoxStylesCardShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'subcategoriesTitleTextShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"color\":\"\"}',1),
(1,'quickCheckoutBoxStylesConfirmShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'postCommentShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'productPageStyle','__VAR__DEFAULT',0),
(1,'quickviewDescriptionBoxDisplay','',0),
(1,'quickviewDescriptionBoxShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'quickviewDescriptionBoxBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'quickviewDescriptionBoxBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickviewDescriptionBoxMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickviewDescriptionBoxPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'quickviewDescriptionBoxFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'quickviewDescriptionBoxBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'image_dimensions_subcategory','{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"120\",\"height\":\"120\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'categoryCountBadgeOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'countBadgeOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'subcategoriesNameFont_multi','[{\"min\":\"\",\"max\":\"\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"}}]',1),
(1,'quickCheckoutSpaceColumnShipping_multi','[]',1),
(1,'quickCheckoutSpaceColumnShippingSplit','40',0),
(1,'categoryPageCategoryImageDisplay','',0),
(1,'categoryPageDescriptionDisplay','',0),
(1,'quickCheckoutColumnShippingMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickCheckoutColumnShippingPadding','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'quickCheckoutColumnPaymentPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"20\"}',1),
(1,'quickCheckoutColumnPaymentPadding_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"\",\"padding-top\":\"20\",\"padding-right\":\"\",\"padding-left\":\"0\"}}]',1),
(1,'quickCheckoutSpaceColumnShippingSplit_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"100\"}]',1),
(1,'globalProductGridGutter_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"0\",\"margin-top\":\"5\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}]',1),
(1,'productOrder','ASC',0),
(1,'infiniteLoaderBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'allProductsPageMetaKeywords','{\"lang_1\":\"All Products\"}',1),
(1,'allProductsPageMetaDescription','{\"lang_1\":\"All Products\"}',1),
(1,'allProductsPageTitle','{\"lang_1\":\"All Products\"}',1),
(1,'allProductsPageMetaTitle','{\"lang_1\":\"All Products\"}',1),
(1,'comparePageName_multi','[]',1),
(1,'quickviewPopupHeight','600',0),
(1,'quickviewPopupWidth','700',0),
(1,'globalOptionsPopupStyle','',0),
(1,'accountRegisterPopupHeight','590',0),
(1,'accountRegisterPopupWidth','500',0),
(1,'globalOptionsPopupWidth','400',0),
(1,'accountLoginPopupWidth','500',0),
(1,'accountLoginPopupHeight','270',0),
(1,'globalOptionsPopupHeight','380',0),
(1,'categoryPageCategoryDescriptionVisibility_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"false\"}]',1),
(1,'categoryDescriptionTextBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'productLimit','12',0),
(1,'productDescriptionLimit','300',0),
(1,'accountLoginPopupHeight_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"310\"}]',1),
(1,'image_dimensions_post','{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"270\",\"height\":\"270\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'image_dimensions_blog_post','{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"1060\",\"height\":\"400\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"335\",\"phone_height\":\"200\"}',1),
(1,'image_dimensions_blog','{\"tablet_height\":\"\",\"phone_resize\":\"fill\",\"width\":\"335\",\"height\":\"200\",\"tablet_resize\":\"fill\",\"tablet_width\":\"\",\"resize\":\"fill\",\"phone_width\":\"\",\"phone_height\":\"\"}',1),
(1,'postColumns_multi','[]',1),
(1,'refineTitleText','',0),
(1,'pageButtons','',0),
(1,'postStatVisibility_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"false\"}]',1),
(1,'postCommentImageSize','60',0),
(1,'postReplyMargin_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"0\"}}]',1),
(1,'logo','catalog/journal3/logo/10-1x.png',0),
(1,'logo2x','catalog/journal3/logo/10-2x.png',0),
(1,'infiniteButtonMarginPrev','{\"margin\":\"10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'checkoutTitle','{\"lang_1\":\"Quick Checkout\"}',1),
(1,'maintenanceFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'scrollTopOffset_multi','[]',1),
(1,'globalSideColumnTitle','',0),
(1,'globalProductStat1','brand',0),
(1,'globalProductStat2','none',0),
(1,'postLinksHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postCommentSiteFontHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postLinks','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postStatsPosition','image',0),
(1,'StatPosition','default',0),
(1,'quickCheckoutBoxStylesCouponSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickviewDescriptionBoxSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesConfirmSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesPaymentAddressSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesDetailsSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesCardSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingAddressSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'categoryPageDescriptionSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesLoginSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'accountLoginBoxSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'categoryPageCategoryImageSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesCartSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutSectionBoxStylesSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'cartPanelsBoxStylesSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'postStatsScroll','true',0),
(1,'postStatsStatsFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'postStatsScrollTouch','true',0),
(1,'postStatsTrackColor','',0),
(1,'postStatsScrollColor','__VAR__COLOR_14',0),
(1,'quickCheckoutSectionBoxStylesBorder_multi','[]',1),
(1,'quickCheckoutBoxStylesConfirmBackground_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__TRANSPARENT\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}]',1),
(1,'quickCheckoutSectionBoxStylesBackground_multi','[]',1),
(1,'quickCheckoutBoxStylesConfirmBorder_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}}]',1),
(1,'quickCheckoutSectionBoxStylesPadding_multi','[]',1),
(1,'quickCheckoutBoxStylesConfirmPadding_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}]',1),
(1,'secondaryButton','__VAR__BLUE',0),
(1,'successButton','__VAR__GREEN',0),
(1,'dangerButton','__VAR__RED',0),
(1,'infoButton','__VAR__GRAY',0),
(1,'darkButton','__VAR__DARK',0),
(1,'lightButton','__VAR__LIGHT',0),
(1,'warningButton','__VAR__RED',0),
(1,'contactLocationFax','false',0),
(1,'contactLocationPhone','false',0),
(1,'contactLocationHours','false',0),
(1,'contactLocationAddress','false',0),
(1,'quickviewDescriptionBottom','false',0),
(1,'accountLoginBoxSpacing_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"0\"}]',1),
(1,'accountLoginBoxPadding_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-left\":\"\",\"padding-bottom\":\"20\"}}]',1),
(1,'postViewsVisibility','true',0),
(1,'dateMonthFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'datePadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'postViewsIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'dateBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'dateShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'datePosition','image',0),
(1,'dateBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'dateMargin','{\"margin\":\"7\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'dateBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'dateDayFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"}',1),
(1,'globalRemoveIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5cd\",\"name\":\"close2\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'globalWishlistIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb67\",\"name\":\"heart2\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'authorIcon','{\"size\":\"11\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eadc\",\"name\":\"iconmonstr-user-1\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'globalUpdateIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f021\",\"name\":\"refresh\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'timeIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb29\",\"name\":\"clock\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'dateIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f133\",\"name\":\"calendar-o\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'pageTitlePosition','top',0),
(1,'websiteIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"-1\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e321\",\"name\":\"laptop_windows\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'categoryIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f022\",\"name\":\"list-alt\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'commentIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f27a\",\"name\":\"commenting\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'globalCompareIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab6\",\"name\":\"iconmonstr-compare\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'globalCartIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e936\",\"name\":\"iconmonstr-shopping-cart-9\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'viewIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f06e\",\"name\":\"eye\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'postImageMargin_multi','[]',1),
(1,'pageTitleDivider','true',0),
(1,'pageTitleDividerWidth','60',0),
(1,'pageTitleDividerHeight','4',0),
(1,'pageTitleDividerBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'pageTitleDividerMargin','{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'pageTitleDividerAlign','center',0),
(1,'pageDividerAlign','center',0),
(1,'checkoutCartNameVisibility','',0),
(1,'cartPageUnitVisibility','true',0),
(1,'checkoutCartImageVisibility','',0),
(1,'cartPageModelVisibility','true',0),
(1,'cartPageNameVisibility','true',0),
(1,'checkoutCartModelVisibility','',0),
(1,'checkoutCartUnitVisibility','',0),
(1,'cartPageImageVisibility','true',0),
(1,'scrollBarStatus','false',0),
(1,'scrollBarWidth','12',0),
(1,'scrollBarBorderRadius','{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'scrollBarShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'expandButtonTextLess','{\"lang_1\":\"kmkmk\"}',1),
(1,'scrollBarBorderHover','',0),
(1,'scrollBarBorder','{\"border-width\":\"3\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_3\"}',1),
(1,'scrollBarBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'scrollBarThumbBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__GRAY\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'scrollBarThumbBackgroundHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'expandButtonText','{\"lang_1\":\"kmkmkm\"}',1),
(1,'expandHeight','60',0),
(1,'expandIconHoverUp','',0),
(1,'expandButtonStyle','',0),
(1,'expandIconHover','',0),
(1,'expandButton','true',0),
(1,'expandOverlayColor','__VAR__COLOR_5',0),
(1,'expandIconUp','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f077\",\"name\":\"chevron-up\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'expandIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f078\",\"name\":\"chevron-down\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'quickviewExpandIconUp','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'globalExpandIconHoverUp','',0),
(1,'globalExpandButtonStyle','__VAR__SMALL_BLUE',0),
(1,'defaultExpandHeight','60',0),
(1,'quickviewExpandButtonTextLess','{\"lang_1\":\"\"}',1),
(1,'globalExpandHeight','70',0),
(1,'quickviewExpandIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'globalExpandIconHover','',0),
(1,'quickviewExpandButtonText','{\"lang_1\":\"\"}',1),
(1,'globalExpandOverlayColor','__VAR__COLOR_1',0),
(1,'globalExpandIconUp','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0d8\",\"name\":\"caret-up\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'quickviewExpandIconHoverUp','',0),
(1,'quickviewExpandButtonStyle','',0),
(1,'defaultExpandButtonTextLess','{\"lang_1\":\"\"}',1),
(1,'quickviewExpandHeight','',0),
(1,'globalExpandButtonTextLess','{\"lang_1\":\"Show Less\"}',1),
(1,'globalExpandIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0d7\",\"name\":\"caret-down\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'quickviewExpandIconHover','',0),
(1,'defaultExpandButtonText','{\"lang_1\":\"\"}',1),
(1,'globalExpandButtonText','{\"lang_1\":\"Show More\"}',1),
(1,'quickviewExpandButton','true',0),
(1,'quickviewExpandOverlayColor','',0),
(1,'wishlistPageNameVisibility','true',0),
(1,'wishlistPageModelVisibility','true',0),
(1,'wishlistPageUnitVisibility','true',0),
(1,'wishlistPageImageVisibility','true',0),
(1,'wishlistPageStockVisibility','true',0),
(1,'wishlistPageOldPriceFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__GRAY\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'wishlistPageNewPriceFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'wishlistPageOutStockFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'wishlistPageStockFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_9\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'cartPagePanel1Open','true',0),
(1,'cartPagePanel2Open','true',0),
(1,'cartPagePanel3Open','true',0),
(1,'cartPagePanel1Open_multi','[]',1),
(1,'accountLoginBoxOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'categoryPageDescriptionOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesLoginOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'categoryPageCategoryImageOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesCartOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutSectionBoxStylesOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'cartPanelsBoxStylesOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesCouponOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickviewDescriptionBoxOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesConfirmOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesPaymentAddressOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesDetailsOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesCardOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'quickCheckoutBoxStylesShippingAddressOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'accountRegisterPopupHeight_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"775\"}]',1),
(1,'globalLegend','__VAR__DEFAULT',0),
(1,'oldBrowserColor','rgba(0, 0, 0, 1)',0),
(1,'oldBrowserText','{\"0\":\"O\",\"1\":\"u\",\"2\":\"t\",\"3\":\"d\",\"4\":\"a\",\"5\":\"t\",\"6\":\"e\",\"7\":\"d\",\"8\":\" \",\"9\":\"b\",\"10\":\"r\",\"11\":\"o\",\"12\":\"w\",\"13\":\"s\",\"14\":\"e\",\"15\":\"r\",\"16\":\"s\",\"17\":\" \",\"18\":\"h\",\"19\":\"a\",\"20\":\"v\",\"21\":\"e\",\"22\":\" \",\"23\":\"s\",\"24\":\"e\",\"25\":\"c\",\"26\":\"u\",\"27\":\"r\",\"28\":\"i\",\"29\":\"t\",\"30\":\"y\",\"31\":\" \",\"32\":\"i\",\"33\":\"s\",\"34\":\"s\",\"35\":\"u\",\"36\":\"e\",\"37\":\"s\",\"38\":\" \",\"39\":\"a\",\"40\":\"n\",\"41\":\"d\",\"42\":\" \",\"43\":\"d\",\"44\":\"o\",\"45\":\"n\",\"46\":\"\'\",\"47\":\"t\",\"48\":\" \",\"49\":\"f\",\"50\":\"o\",\"51\":\"l\",\"52\":\"l\",\"53\":\"o\",\"54\":\"w\",\"55\":\" \",\"56\":\"n\",\"57\":\"e\",\"58\":\"w\",\"59\":\" \",\"60\":\"w\",\"61\":\"e\",\"62\":\"b\",\"63\":\" \",\"64\":\"s\",\"65\":\"t\",\"66\":\"a\",\"67\":\"n\",\"68\":\"d\",\"69\":\"a\",\"70\":\"r\",\"71\":\"d\",\"72\":\"s\",\"73\":\".\",\"74\":\" \",\"75\":\"P\",\"76\":\"l\",\"77\":\"e\",\"78\":\"a\",\"79\":\"s\",\"80\":\"e\",\"81\":\" \",\"82\":\"u\",\"83\":\"p\",\"84\":\"d\",\"85\":\"a\",\"86\":\"t\",\"87\":\"e\",\"88\":\" \",\"89\":\"y\",\"90\":\"o\",\"91\":\"u\",\"92\":\"r\",\"93\":\" \",\"94\":\"b\",\"95\":\"r\",\"96\":\"o\",\"97\":\"w\",\"98\":\"s\",\"99\":\"e\",\"100\":\"r\",\"101\":\" \",\"102\":\"t\",\"103\":\"o\",\"104\":\" \",\"105\":\"f\",\"106\":\"u\",\"107\":\"l\",\"108\":\"l\",\"109\":\"y\",\"110\":\" \",\"111\":\"e\",\"112\":\"x\",\"113\":\"p\",\"114\":\"e\",\"115\":\"r\",\"116\":\"i\",\"117\":\"e\",\"118\":\"n\",\"119\":\"c\",\"120\":\"e\",\"121\":\" \",\"122\":\"t\",\"123\":\"h\",\"124\":\"i\",\"125\":\"s\",\"126\":\" \",\"127\":\"w\",\"128\":\"e\",\"129\":\"b\",\"130\":\"s\",\"131\":\"i\",\"132\":\"t\",\"133\":\"e\",\"134\":\".\",\"135\":\"u\",\"136\":\"l\",\"137\":\"l\",\"138\":\"y\",\"139\":\" \",\"140\":\"e\",\"141\":\"x\",\"142\":\"p\",\"143\":\"e\",\"144\":\"r\",\"145\":\"i\",\"146\":\"e\",\"147\":\"n\",\"148\":\"c\",\"149\":\"e\",\"150\":\" \",\"151\":\"t\",\"152\":\"h\",\"153\":\"i\",\"154\":\"s\",\"155\":\" \",\"156\":\"w\",\"157\":\"e\",\"158\":\"b\",\"159\":\"s\",\"160\":\"i\",\"161\":\"t\",\"162\":\"e\",\"163\":\".\",\"lang_1\":\"Outdated browsers have security issues and don\'t follow new web standards. Please update your browser to fully experience this website.\"}',1),
(1,'oldBrowserBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(255, 255, 0, 1)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'oldBrowserStatus','true',0),
(1,'oldBrowserTitle','{\"lang_1\":\"Your browser is out of date!\"}',1),
(1,'loaderBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT-1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'loaderText','{\"lang_1\":\"Loading\"}',1),
(1,'loaderIcon','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"-2\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'loaderFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'loaderStatus','off',0),
(1,'cartTotalsBoxStylesMargin','{\"margin\":\"\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"20\"}',1),
(1,'cartTotalsBoxStylesPadding','{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'cartTotalsBoxStylesBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'loaderSpacing','',0),
(1,'loaderMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'cartTotalPosition','side',0),
(1,'cartTableMaxWidth','300',0),
(1,'cartTableAlign','start',0),
(1,'cartTotalsBoxStylesBorder','{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"}',1),
(1,'cartTotalsBoxStylesDisplay','',0),
(1,'qcShipIcon1','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab8\",\"name\":\"iconmonstr-delivery-3\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'cartTotalsBoxStylesFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'cartTotalsBoxStylesOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'cartTotalsBoxStylesBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'cartTotalsBoxStylesShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'cartTotalsBoxStylesSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'qcPayIcon1','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e961\",\"name\":\"iconmonstr-payment-paypal-card-14\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcPayIcon2','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e95f\",\"name\":\"iconmonstr-credit-card-6\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcPayIcon3','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0d6\",\"name\":\"money\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcPayIcon4','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcShipIcon2','{\"size\":\"\",\"color\":\"__VAR__COLOR_9\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab9\",\"name\":\"iconmonstr-delivery-5\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcShipIcon3','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcShipPayPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"8\"}',1),
(1,'qcShipPaySpacing','5',0),
(1,'qcPayIcon5','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcShipIcon4','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcShipIcon5','{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'cartTotalsBoxStylesMargin_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"0\"}}]',1),
(1,'cartTotalPosition_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"default\"}]',1),
(1,'cartTableMaxWidth_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"760\"}]',1),
(1,'globalExpandCharactersLimit','200',0),
(1,'categoryDescriptionDisplay','default',0),
(1,'categoryDescriptionTextBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'categoryDescriptionTextPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'categoryDescriptionTextFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'categoryDescriptionTextShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'categoryDescriptionTextSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'categoryDescriptionTextBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'categoryDescriptionTextDisplay','',0),
(1,'categoryDescriptionTextMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'categoryDescriptionTextOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'productSort','p.sort_order',0),
(1,'infiniteLoaderShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'infiniteLoaderPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'infiniteLoaderBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'infiniteLoaderBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'infiniteLoaderMargin','{\"margin\":\"10\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'infiniteLoaderFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'shipVariantsTitleStatus','false',0),
(1,'shipVariantsTitle','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'duplicateTitle','true',0),
(1,'pageTitleModule','false',0),
(1,'accountRegisterPopupForm','',0),
(1,'cartPageBottomBoxStylesBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'cartPageBottomBoxStylesMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'cartPageBottomBoxStylesFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'cartPageBottomPosition','top',0),
(1,'quickCheckoutAddressRegionFieldSort','',0),
(1,'quickCheckoutAddressCountryFieldSort','',0),
(1,'cartPageBottomBoxStylesOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'accountLoginPopupTitle','__VAR__DEFAULT',0),
(1,'quickCheckoutAddressPostcodeFieldSort','',0),
(1,'cartPageBottomWidth','',0),
(1,'quickCheckoutAddressCityFieldSort','',0),
(1,'quickCheckoutAccountTelephoneFieldSort','',0),
(1,'cartPageBottomBoxStylesDisplay','',0),
(1,'cartPageBottomBoxStylesBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'cartPageBottomBoxStylesShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'cartPageBottomBoxStylesSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'accountLoginPopupForm','',0),
(1,'quickCheckoutLoginBox','true',0),
(1,'quickCheckoutAddressLastNameFieldSort','',0),
(1,'quickCheckoutAccountFirstNameFieldSort','',0),
(1,'titleBeforeBreadcrumbs','false',0),
(1,'quickCheckoutAddressAddress2FieldSort','',0),
(1,'quickCheckoutAddressAddress1FieldSort','',0),
(1,'quickCheckoutAddressCompanyFieldSort','',0),
(1,'quickCheckoutAccountLastNameFieldSort','',0),
(1,'cartPageBottomBoxStylesPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'quickCheckoutAddressFirstNameFieldSort','',0),
(1,'cartPageBottomBoxStylesBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'sectionGuestText','{\"lang_1\":\"Guest\"}',1),
(1,'sectionLoginText','{\"lang_1\":\"Login\"}',1),
(1,'sectionRegisterText','{\"lang_1\":\"Register\"}',1),
(1,'globalProductGridBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'checkoutPageUpdateButtonStyle','',0),
(1,'contactMaxWidth','',0),
(1,'catalogMiniCartStatus','true',0),
(1,'categoryPageCategoryDescriptionStatus','{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"}',1),
(1,'catalogLanguageStatus','true',0),
(1,'contactStoresVisibility','true',0),
(1,'quickviewDescriptionOrder','',0),
(1,'scrollTopBackgroundHover','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}',1),
(1,'checkoutPageRemoveButtonStyle','',0),
(1,'postCommentsWebsite','true',0),
(1,'registerPopupPageButtons','',0),
(1,'scrollTopPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'globalProductCompareTooltip','',0),
(1,'quickCheckoutCVRSort','',0),
(1,'catalogCartStatus','true',0),
(1,'informationColumnDividerColor','',0),
(1,'postTagsAlign','center',0),
(1,'scrollToTop','false',0),
(1,'informationColumnDividerWidth','1',0),
(1,'catalogWishlistStatus','true',0),
(1,'quickCheckoutCartSort','',0),
(1,'informationColumns','',0),
(1,'globalLabel','__VAR__DEFAULT',0),
(1,'globalProductWishlistTooltip','',0),
(1,'quickCheckoutPaySort','',0),
(1,'accountPopupPageButtons','',0),
(1,'catalogSearchStatus','true',0),
(1,'contactOtherStoresVisibility','true',0),
(1,'informationColumnGap','30',0),
(1,'quickCheckoutAccountFaxFieldSort','',0),
(1,'checkoutPageStepperStyle','',0),
(1,'manufacturerTitleFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'scrollTopBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutShipPaySort','',0),
(1,'globalProductCartTooltip','',0),
(1,'quickCheckoutAccountFaxField','visible',0),
(1,'informationColumnDividerStyle','solid',0),
(1,'quickCheckoutSameAddress','true',0),
(1,'confirmOrderLoadingText','{\"lang_1\":\"\"}',1),
(1,'globalHideZeroPrice','false',0),
(1,'catalogCurrencyStatus','true',0),
(1,'globalProductQuickviewTooltip','',0),
(1,'cartTotalsBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'globalCartZeroPrice','false',0),
(1,'catalogCompareStatus','true',0),
(1,'globalProductGridBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}',1),
(1,'categoryImageFloat','left',0),
(1,'globalProductGridPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'globalProductExtraTooltip','',0),
(1,'postDateCommentVisibility','true',0),
(1,'cartPagePanelsTitleMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'categoryPageDescStatus','false',0),
(1,'postPageMaxWidth','',0),
(1,'postStatsTrackHeight','5',0),
(1,'primaryButton','',0),
(1,'loadingType','spin',0),
(1,'rssIconOnly','false',0),
(1,'accountRegisterPopupTitle','',0),
(1,'postTimeVisibility','true',0),
(1,'quickCheckoutCustomerGroupSort','',0),
(1,'quickCheckoutCustomerGroup','visible',0),
(1,'quickviewBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'globalTabs','',0),
(1,'accountLoginColumns','2',0),
(1,'globalOptionsPopupStatus','true',0),
(1,'refineTitleStyle','',0),
(1,'contactLocationImage','true',0),
(1,'catalogQuickviewPhoneStatus','false',0),
(1,'refineTitle','false',0),
(1,'cartPageQuantityVisibility','true',0),
(1,'postFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'catalogQuickviewTabletStatus','false',0),
(1,'globalMenuLabel','',0),
(1,'defaultButton','',0),
(1,'logoMobile2x','',0),
(1,'quickCheckoutAccountEmailFieldSort','',0),
(1,'scrollTopRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'defaultPopupCloseOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'maintenanceMetaTitle','{\"lang_1\":\"Maintenance\"}',1),
(1,'globalOptionsStepperBoxBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}}',1),
(1,'accountAddressCompanyFieldSort','',0),
(1,'globalOptionsStepperBoxBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'quickCheckoutAccountPasswordFieldSort','',0),
(1,'globalOptionsStepperBoxMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'searchPageContinueButtons','',0),
(1,'accountAddressFirstNameFieldSort','',0),
(1,'accountAddressCompanyField','visible',0),
(1,'globalOptionsButtonStyle','',0),
(1,'globalOptionsStepperBoxFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'accountAddressPostcodeFieldSort','',0),
(1,'maintenanceGridModule','',0),
(1,'cartPagePanel0Open','true',0),
(1,'sectionShippingVisibility','true',0),
(1,'accountAddressPostcodeField','required',0),
(1,'accountAddressFirstNameField','required',0),
(1,'qcShipIcon10','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'globalOptionsButtonIcon','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'accountAddressCityFieldSort','',0),
(1,'quickCheckoutComments','visible',0),
(1,'qcPayIcon6','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'accountAddressCityField','required',0),
(1,'globalOptionsStepperBoxOffset','{\"first\":\"\",\"second\":\"\"}',1),
(1,'qcPayIcon7','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'accountAddressCountryFieldSort','',0),
(1,'defaultPopupBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'qcPayIcon8','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcPayIcon9','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'accountAddressCountryField','required',0),
(1,'defaultPopupShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'defaultPopupClose','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'globalOptionsStepperBoxDisplay','',0),
(1,'cartPagePanel0Visibility','true',0),
(1,'qcPayIcon10','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'defaultPopupDivider','{\"width\":\"\",\"style\":\"\",\"color\":{\"color\":\"\"}}',1),
(1,'qcShipIcon6','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'confirmOrderAddressErrorText','{\"lang_1\":\"Incomplete address, please edit your address in Account > Addresses\"}',1),
(1,'defaultPopupCloseHover','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'qcShipIcon7','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'accountAddressLastNameFieldSort','',0),
(1,'qcShipIcon8','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'qcShipIcon9','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'accountAddressLastNameField','required',0),
(1,'addToCartAction','',0),
(1,'accountCustomerGroupSort','',0),
(1,'sectionPaymentVisibility','true',0),
(1,'globalOptionsStepperBoxBorderRadius','{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}',1),
(1,'accountAddressAddress2FieldSort','',0),
(1,'gridDimensions','true',0),
(1,'accountCustomerGroup','visible',0),
(1,'accountAddressAddress1FieldSort','',0),
(1,'accountAccountTelephoneFieldSort','',0),
(1,'footerMenuPhone','',0),
(1,'globalOptionsStepperBoxShadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"}',1),
(1,'accountAddressAddress2Field','visible',0),
(1,'globalOptionsButtonIconHover','{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}',1),
(1,'accountAddressAddress1Field','required',0),
(1,'globalOptionsStepperBoxSize','{\"first\":\"\",\"second\":\"\"}',1),
(1,'accountAccountTelephoneField','required',0),
(1,'quickCheckoutAccountConfirmPasswordFieldSort','',0),
(1,'accountAccountLastNameFieldSort','',0),
(1,'globalProductViewTablet','',0),
(1,'defaultPopupBorder','{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}}',1),
(1,'defaultPopupBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'accountAccountLastNameField','required',0),
(1,'defaultPopupFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'globalOptionsButtonMargin','{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}',1),
(1,'globalOptionsStepperStyle','',0),
(1,'accountAccountFaxFieldSort','',0),
(1,'defaultPopupTitleBackground','{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}',1),
(1,'defaultPopupTitleFont','{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}',1),
(1,'accountAccountEmailFieldSort','',0),
(1,'globalOptionsStepperBoxPadding','{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}',1),
(1,'spaceBetween_multi','[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"20\"}]',1),
(1,'accountAddressRegionFieldSort','',0),
(1,'accountAccountFirstNameFieldSort','',0),
(1,'accountAccountFaxField','visible',0),
(1,'globalProductViewPhone','',0),
(1,'accountAddressRegionField','required',0),
(1,'accountAccountFirstNameField','required',0);
/*!40000 ALTER TABLE `oc_journal3_skin_setting` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_style`
--
DROP TABLE IF EXISTS `oc_journal3_style`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_style` (
`style_name` varchar(64) NOT NULL,
`style_label` varchar(64) NOT NULL,
`style_type` varchar(64) NOT NULL,
`style_value` mediumtext NOT NULL,
`serialized` int(1) NOT NULL,
PRIMARY KEY (`style_name`,`style_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_style`
--
LOCK TABLES `oc_journal3_style` WRITE;
/*!40000 ALTER TABLE `oc_journal3_style` DISABLE KEYS */;
INSERT INTO `oc_journal3_style` VALUES
('DEFAULT','','menu','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueAccordionOpenIconHover\":\"\",\"valueAccordionCloseIconHover\":\"\",\"valueAccordionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueTextTruncate\":\"true\",\"valueCountBadge\":\"\",\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueIconSize\":\"\",\"valueSFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDropdownIndicator\":\"true\",\"valueStaticFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgePosition\":\"inline\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueIconActive\":\"\",\"valueSFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDisplay\":\"left\",\"valueIconHover\":\"\",\"valueAccordionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueAccordionBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountBadgeVisibility\":\"false\",\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAccordionBorderHover\":\"\",\"valueIconColor\":\"\",\"valueAccordionCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueAccordionOpenIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconWidth\":\"20\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueItemSpacing\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('Top Menu','','menu','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT_2\",\"text-align\":\"\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueAccordionOpenIconHover\":\"\",\"valueAccordionCloseIconHover\":\"\",\"valueAccordionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueTextTruncate\":\"true\",\"valueCountBadge\":\"\",\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueIconSize\":\"13\",\"valueSFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDropdownIndicator\":\"true\",\"valueStaticFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgePosition\":\"inline\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueIconActive\":\"\",\"valueSFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDisplay\":\"\",\"valueIconHover\":\"\",\"valueAccordionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueAccordionBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountBadgeVisibility\":\"false\",\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAccordionBorderHover\":\"\",\"valueIconColor\":\"\",\"valueAccordionCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueAccordionOpenIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconWidth\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueItemSpacing\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('CENTER','','dropdown','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuStyle\":\"__VAR__Dropdown\",\"valueCountBadge\":\"\",\"valueMenuTriangleMargin\":\"-15\",\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueMenuTriangleStatus\":\"\",\"valueMenuTriangleColor\":\"__VAR__COLOR_1\",\"valueMenuTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"valueMenuTriangleAlign\":\"\",\"valueItemPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStaticFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":\"__VAR__MEDIUM\",\"valueIconHover\":\"\",\"valueAlign\":\"center\",\"valueWidth\":\"\",\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountBadgeVisibility\":\"true\",\"valueHeight\":\"\",\"valueIconColor\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('Flyout','','mega_menu','{\"valueMegaMenuBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMegaMenuBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueMegaMenuShadow\":\"__VAR__LARGE\",\"valueMegaMenuPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueMegaMenuHeight\":\"\"}',1),
('DEFAULT','','menu_label','{\"valueMenuLabelBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueMenuLabelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMenuLabelFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuLabelBackgroundHover\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMenuLabelBorderHover\":\"\",\"valueMenuLabelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"4\",\"padding-bottom\":\"\",\"padding-left\":\"4\"},\"valueMenuLabelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueMenuLabelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMenuLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__BODY\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"none\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"400\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuLabelOffset\":{\"first\":\"-10\",\"second\":\"12\"},\"valueMenuLabelShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}}',1),
('Cart Content','','cart_content','{\"valueCartContentProductImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartContentCheckoutRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCartTotalsTopBorder\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueCartViewButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueContentTriangleStatus\":\"\",\"valueCartCheckoutButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueContentTriangleOffset\":{\"first\":\"-10\",\"second\":\"\"},\"valueCartContentCheckoutPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCartContentTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueContentBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueContentShadow\":\"__VAR__MEDIUM\",\"valueCartViewButton\":\"__VAR__DEFAULT\",\"valueCartContentTotalsValueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartContentCartPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCartCheckoutButton\":\"__VAR__GREEN\",\"valueCartContentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCartContentProductButtonColor\":\"__VAR__COLOR_6\",\"valueCartTotalsBorder\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueCartContentProductLinkFontHover\":\"\",\"valueCartContentBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartContentButtonsWidth\":\"auto\",\"valueCartContentProductLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartContentTotalsTitleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartContentProductImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCartContentProductButtonColorHover\":\"__VAR__COLOR_5\",\"valueCartContentProductsHeight\":\"275\",\"valueContentTriangleColor\":\"__VAR__COLOR_1\",\"valueCartContentImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartContentEmptyFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartContentBorder\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueCartViewButtonVisibility_multi\":[],\"valueCartCheckoutButtonVisibility_multi\":[],\"valueCartContentCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartContentTotalsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartContentProductOptions\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartContentCartRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCartContentTotalsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCartViewButtonVisibility\":\"true\",\"valueCartCheckoutButtonIconHover\":\"\",\"valueCartContentProductOptionsValue\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartCheckoutButtonVisibility\":\"true\",\"valueCartViewButtonIconHover\":\"\",\"valueCartContentTotalsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartButtonsBorder\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueCartContentCheckoutMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartContentButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContentTriangleMargin\":\"-15\",\"valueCartContentWidth\":\"350\",\"valueCartContentTableAlign\":\"center\"}',1),
('DEFAULT','DEFAULT','typography','{\"valueDropCapMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueLinkVisitedSize\":{\"first\":\"\",\"second\":\"\"},\"valueBFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSDisplay\":\"\",\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"1.5\",\"font-family\":\"__VAR__HEADINGS\",\"color\":{\"color\":\"__VAR__COLOR_2\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"valueLinkFocusOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePSize\":{\"first\":\"\",\"second\":\"\"},\"valueBPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueSBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDropCapBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueDivShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueH6Size\":{\"first\":\"\",\"second\":\"\"},\"valueLinkHoverFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_14\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLinkActivePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBlockquoteShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinkHoverPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueLinkActiveFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAmpBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueVideoBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueHRBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueOLOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDivSize\":{\"first\":\"\",\"second\":\"\"},\"valueVideoBoxDisplay\":\"\",\"valueAmpMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBlockquoteSize\":{\"first\":\"\",\"second\":\"\"},\"valueDropCapFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__SERIF\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HUGE\"},\"valueSShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"},\"valueBlockquoteMaxWidth\":\"\",\"valueListStyle\":\"\",\"valueAmpFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSmallBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueBlockquoteDisplay\":\"\",\"valueDivDisplay\":\"\",\"valueHeadings\":{\"word-spacing\":\"\",\"line-height\":\"1.4\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueVideoBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueSSize\":{\"first\":\"\",\"second\":\"\"},\"valueLinkVisitedDisplay\":\"\",\"valueCl1Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueOLPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueH6Display\":\"inline-block\",\"valueHRBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePDisplay\":\"\",\"valueBlockquoteIconFloat\":\"left\",\"valueHRIconBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueH1Font_multi\":[],\"valueCl2Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueLinkFocusPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueH5Display\":\"\",\"valueBOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePSpacing\":\"\",\"valueLinkHoverOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSmallMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueLinkActiveOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSmallBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueHRIconBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueHRIconBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCl1Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCl1Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueDropCapOffset\":{\"first\":\"\",\"second\":\"\"},\"valueEMBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSmallFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueH4Display\":\"\",\"valueIBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueLinkPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueHRIconBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAmpOffset\":{\"first\":\"\",\"second\":\"\"},\"valueCl2Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueCl2Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCl1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFontTagBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueH1Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueH3Display\":\"\",\"valueStrongBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueULBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueSpanBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueEMMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueIFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueH5Font_multi\":[],\"valueCl2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueH2Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueH2Display\":\"\",\"valueSpanDisplay\":\"\",\"valueEMBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueFontTagMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueH1Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"20\",\"margin-left\":\"\"},\"valueFontTagDisplay\":\"\",\"valueH1Display\":\"\",\"valueH3Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueEMFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__GRAY\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStrongShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontTagBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueH1Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueULShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinkBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueH4Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueEMDisplay\":\"\",\"valueFontTagFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueH1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueH2Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueSpanMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueSmallOffset\":{\"first\":\"\",\"second\":\"\"},\"valueULPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStrongSize\":{\"first\":\"\",\"second\":\"\"},\"valueStrongPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueH2Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"15\",\"margin-left\":\"\"},\"valueSpanBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueULSize\":{\"first\":\"\",\"second\":\"\"},\"valueH3Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueIDisplay\":\"\",\"valueH2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCl1Offset\":{\"first\":\"\",\"second\":\"\"},\"valueH3Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"15\",\"margin-left\":\"\"},\"valueSpanFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueHRIconBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueCl2Display\":\"\",\"valueH5Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCl2Offset\":{\"first\":\"\",\"second\":\"\"},\"valueH3Font\":{\"word-spacing\":\"\",\"line-height\":\"1\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_MEDIUM\"},\"valueLinkVisitedBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueHRIconBoxDisplay\":\"\",\"valuePBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueLinkShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueH4Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"15\",\"margin-left\":\"\"},\"valueLinkFocusBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCl1Display\":\"\",\"valueH6Border\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueH4Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueIOffset\":{\"first\":\"\",\"second\":\"\"},\"valueH4Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"},\"valueFontRendering\":\"antialiased\",\"valueH5Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"15\",\"margin-left\":\"\"},\"valueDivBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueAmpIcon\":{\"size\":\"25\",\"color\":\"__VAR__GRAY\",\"offsetX\":\"1\",\"offsetY\":\"3\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e901\",\"name\":\"ampersand-1\"},\"type\":\"\",\"image\":\"\"},\"valueSmallDisplay\":\"\",\"valueH5Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueOLBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueBlockquoteBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__ACCENT-1\"},\"valueBlockquoteIconAlign\":\"center\",\"valueLinkSize\":{\"first\":\"\",\"second\":\"\"},\"valueEMOffset\":{\"first\":\"\",\"second\":\"\"},\"valueH6Margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueH6Background\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_17\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueLinkFocusShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinkVisitedMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueLinkVisitedBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueFontTagOffset\":{\"first\":\"\",\"second\":\"\"},\"valueH1Offset\":{\"first\":\"\",\"second\":\"\"},\"valueVideoBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueH5Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"valuePBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueLinkFocusSize\":{\"first\":\"\",\"second\":\"\"},\"valueBlockquoteMargin\":{\"margin\":\"\",\"margin-top\":\"15\",\"margin-right\":\"\",\"margin-bottom\":\"15\",\"margin-left\":\"\"},\"valueLinkVisitedFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSpanOffset\":{\"first\":\"\",\"second\":\"\"},\"valueHRBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueOLShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueH2Offset\":{\"first\":\"\",\"second\":\"\"},\"valueDivBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueH6Font\":{\"word-spacing\":\"\",\"line-height\":\"1\",\"font-family\":\"__VAR__HEADINGS BOLD\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueDivMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBlockquoteBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueSBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueOLSize\":{\"first\":\"\",\"second\":\"\"},\"valueSPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueVideoBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"15\",\"margin-bottom\":\"15\",\"margin-left\":\"\"},\"valueAmpFontStyle\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLinkHoverBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDivFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueH3Offset\":{\"first\":\"\",\"second\":\"\"},\"valueLinkActiveBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueAmpDisplay\":\"\",\"valueBlockquoteFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__SERIF\",\"color\":\"__VAR__COLOR_17\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"italic\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"valueBBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueVideoBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueDropCapDisplay\":\"\",\"valueDropCapBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueVideoBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueH4Offset\":{\"first\":\"\",\"second\":\"\"},\"valueSMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueHRBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDropCapFontStyle\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__SERIF\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HUGE\"},\"valueSBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueVideoBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueH5Offset\":{\"first\":\"\",\"second\":\"\"},\"valueLinkActiveShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLinkHoverDisplay\":\"\",\"valueBShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBlockquotePadding\":{\"padding\":\"\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valueHRBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueAmpBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDivPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBDisplay\":\"\",\"valueLinkHoverShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinkActiveDisplay\":\"\",\"valueBSize\":{\"first\":\"\",\"second\":\"\"},\"valueH6Padding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"8\",\"padding-bottom\":\"\",\"padding-left\":\"8\"},\"valueHRBoxDisplay\":\"\",\"valueLinkVisitedOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePOffset\":{\"first\":\"\",\"second\":\"\"},\"valueLinkHoverSize\":{\"first\":\"\",\"second\":\"\"},\"valueVideoFloat\":\"left\",\"valueDropCapShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinkVisitedPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueLinkActiveSize\":{\"first\":\"\",\"second\":\"\"},\"valueH6Offset\":{\"first\":\"\",\"second\":\"\"},\"valueH5Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueAmpShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDivOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDropCapSize\":{\"first\":\"\",\"second\":\"\"},\"valueBlockquoteOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSmallBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueAmpSize\":{\"first\":\"\",\"second\":\"\"},\"valueHRIcon\":{\"size\":\"20\",\"color\":\"__VAR__COLOR_11\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e993\",\"name\":\"iconmonstr-star-6\"},\"type\":\"\",\"image\":\"\"},\"valueStrongBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueOLDisplay\":\"\",\"valueULBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueTableStyle\":\"\",\"valueH4Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueVideoBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSOffset\":{\"first\":\"\",\"second\":\"\"},\"valueolSpacing\":\"\",\"valueHRIconBoxBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\",\"custom\":\"\"},\"valueLinkFocusDisplay\":\"\",\"valueH3Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCl1BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueIBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueH2Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCl2BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueStrongBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueSmallShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"},\"valueULBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueStrongMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueSpanPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueULMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueULFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueEMBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueH1Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueFontTagPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueLinkBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueLinkDisplay\":\"inline-block\",\"valueCl1Shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"},\"valueSmallSize\":{\"first\":\"\",\"second\":\"\"},\"valueHRIconBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStrongFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueHRIconBoxSize\":{\"first\":\"40\",\"second\":\"40\"},\"valueCl2Shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":{\"color\":\"\"},\"inner\":\"false\",\"none\":\"false\"},\"valueCl1Size\":{\"first\":\"\",\"second\":\"\"},\"valueFontTagBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueH1BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueEMPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueEMShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinkBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueISize\":{\"first\":\"\",\"second\":\"\"},\"valueLinkFocusBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueH2BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCl2Size\":{\"first\":\"\",\"second\":\"\"},\"valueLinkMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBlockquoteIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_17\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"10\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e98f\",\"name\":\"iconmonstr-quote-7\"},\"type\":\"\",\"image\":\"\"},\"valueCl2Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueSpanBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueIPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueH3BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueHRIconBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStrongDisplay\":\"\",\"valueOLBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueEMSize\":{\"first\":\"\",\"second\":\"\"},\"valueCl1Padding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueFontTagShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueULDisplay\":\"\",\"valueH1Shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSmallPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueFontTagSize\":{\"first\":\"\",\"second\":\"\"},\"valueH1Size\":{\"first\":\"\",\"second\":\"\"},\"valueSpanShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStrongOffset\":{\"first\":\"\",\"second\":\"\"},\"valueULOffset\":{\"first\":\"\",\"second\":\"\"},\"valueH4BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueLinkFocusMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueH2Shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueulSpacing\":\"\",\"valueLinkFocusBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueLinkFocusFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueH2Size\":{\"first\":\"\",\"second\":\"\"},\"valueH5BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueHRBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"__VAR__COLOR_11\"},\"valueVideoWidth\":\"550\",\"valueH3Shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueOLMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueOLBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueSpanSize\":{\"first\":\"\",\"second\":\"\"},\"valueBlockquoteFloat\":\"none\",\"valueH3Size\":{\"first\":\"\",\"second\":\"\"},\"valueBBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueOLFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLinkVisitedBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueH4Shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinkHoverBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueHROverflow\":\"v\",\"valueLinkActiveBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueH6BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueH5Shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDivBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueLinkOffset\":{\"first\":\"\",\"second\":\"\"},\"valueAmpPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBlockquoteBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDropCapBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueHRBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueHRBoxMargin\":{\"margin\":\"\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"20\",\"margin-left\":\"\"},\"valueH4Size\":{\"first\":\"\",\"second\":\"\"},\"valueH6Shadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueAmpBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueLinkActiveMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueLinkVisitedShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueHRBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueVideoBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valuePShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinkHoverBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueH5Size\":{\"first\":\"\",\"second\":\"\"},\"valueLinkActiveBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueDropCapPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueLinkHoverMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('DEFAULT','','breadcrumbs','{\"valueBreadcrumbsHomeIconHover\":\"\",\"valueBreadcrumbsAlign\":\"center\",\"valueBreadcrumbsSymbolOffset\":{\"first\":\"\",\"second\":\"\"},\"valueBreadcrumbsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBreadcrumbsSymbolColor\":\"\",\"valueBreadcrumbsPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"padding-left\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\"}}],\"valueBreadcrumbsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBreadcrumbsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBreadcrumbsFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBreadcrumbsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"underline\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueBreadcrumbsVisibility\":\"true\",\"valueBreadcrumbsPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"0\"},\"valueBreadcrumbsFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBreadcrumbsSymbol\":\"\",\"valueBreadcrumbsHomeIcon\":{\"size\":\"15\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e88a\",\"name\":\"home2\"},\"type\":\"\",\"image\":\"\"},\"valueFullBreadcrumbsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBreadcrumbsFullBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_10\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBreadcrumbsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}',1),
('DEFAULT','','count_badge','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueOffset\":{\"first\":\"\",\"second\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"20\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontHover\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShowEmpty\":\"false\",\"valueBorderHover\":\"\"}',1),
('ALTERNATE','','count_badge','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueOffset\":{\"first\":\"\",\"second\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontHover\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShowEmpty\":\"\",\"valueBorderHover\":\"\"}',1),
('COMPACT','','language_currency','{\"valueSymbolColorHover\":\"\",\"valueSymbolBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSymbolShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSymbolSize\":{\"first\":\"35\",\"second\":\"35\"},\"valueTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDisplay\":\"symbol\",\"valueSymbolShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTextPadding\":{\"padding\":\"\",\"padding-top\":\"5\",\"padding-right\":\"5\",\"padding-bottom\":\"5\",\"padding-left\":\"0\"},\"valueSymbolBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSymbolColor\":\"__VAR__COLOR_1\",\"valueSymbolRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"}}',1),
('DEFAULT','','tooltip','{\"valueTooltipText\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valueTooltipBackground\":\"__VAR__COLOR_5\",\"valueTooltipRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueTooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTooltipShadow\":{\"offsetX\":\"0\",\"offsetY\":\"-5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"false\",\"none\":\"false\"}}',1),
('TRANSPARENT_DARK','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":\"__VAR__NONE\",\"valueShadowHover\":\"__VAR__NONE\",\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":\"__VAR__NONE\",\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":\"__VAR__NONE\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"none\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('Top Border','','mega_menu','{\"valueMegaMenuBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMegaMenuBorder\":{\"border-width\":\"\",\"border-top-width\":\"7\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_6\"},\"valueMegaMenuShadow\":\"__VAR__LARGE\",\"valueMegaMenuPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueMegaMenuHeight\":\"\",\"valueMegaMenuPadding_multi\":[]}',1),
('Cart Compact','','cart','{\"valueCartLabel\":{\"lang_1\":\"Cart\"},\"valueCartIconBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartCountBadge\":\"__VAR__DEFAULT\",\"valueCartIconBorderHover\":\"\",\"valueCartTextAlign\":\"left\",\"valueCartIconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCartLabelFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartIcon\":{\"size\":\"33\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"rtl\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ea9c\",\"name\":\"iconmonstr-shopping-cart-8\"},\"type\":\"\",\"image\":\"\"},\"valueCartShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIconSize\":\"60\",\"valueCartLabelPosition\":\"below\",\"valueCartTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valueCartBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCartTextFontHover\":\"\",\"valueCartCustomText\":\"default\",\"valueCartTextVisibility\":\"false\",\"valueCartShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartCheckoutLink\":\"true\",\"valueCartDisplay\":\"full\",\"valueCartLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartCountBadgeOffset_multi\":[],\"valueCartIconHover\":\"__VAR__COLOR_7\",\"valueCartTextPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"5\",\"padding-bottom\":\"\",\"padding-left\":\"15\"},\"valueCartLabelVisibility\":\"false\",\"valueCartCountBadgeZ\":\"false\",\"valueCartIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartLabelOffset\":{\"first\":\"\",\"second\":\"1\"},\"valueCartIconDimensions\":{\"first\":\"\",\"second\":\"\"},\"valueCartCountBadgeVisibility\":\"true\",\"valueCartIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartCountBadgeOffset\":{\"first\":\"-23\",\"second\":\"18\"},\"valueCartBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartBorderHover\":\"\"}',1),
('GREEN_LARGE','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"13\",\"padding-left\":\"15\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"40\",\"second\":\"40\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_9\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('ROUNDED','','search','{\"valueSearchAutoSuggestPriceFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchInputFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchViewMoreText\":{\"lang_1\":\"View More\"},\"valueSearchCategoriesSelectorDropdownWidth\":\"\",\"valueSearchAutoSuggestViewMoreBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchCategoriesSelectorBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestHeight\":\"\",\"valueSearchCategoriesSelectorFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSearchCategoriesSelectorDropdown\":\"__VAR__DEFAULT\",\"valueSearchIconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestViewMoreFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchFullBorderRadius\":{\"border-radius\":\"20\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSearchCategoriesSelectorStatus\":\"true\",\"valueSearchInputBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestProductImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSearchCategoriesTriangleColor\":\"\",\"valueSearchAutoSuggestProductImageBorderHover\":\"\",\"valueSearchAutoSuggestProductImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSearchAutoSuggestViewMoreStatus\":\"true\",\"valueSearchAutoSuggestBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSearchAutoSuggestPriceOldFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchPlaceholderColor\":\"\",\"valueSearchNoResultsText\":{\"lang_1\":\"No results found.\"},\"valueSearchAutoSuggestWidth\":\"\",\"valueSearchIconHover\":\"\",\"valueSearchAutoSuggestFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchCategoriesTriangleMargin\":\"-10\",\"valueSearchCategoriesSelectorDropdownHeight\":\"\",\"valueSearchAutoSuggestViewMoreIconHover\":\"\",\"valueSearchCategoriesSelectorIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0dc\",\"name\":\"sort\"},\"type\":\"\",\"image\":\"\"},\"valueSearchAutoSuggestStatus\":\"true\",\"valueSearchCategoriesTriangleStatus\":\"\",\"valueSearchCategoriesSelectorIconHover\":\"\",\"valueSearchAutoSuggestViewMoreIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueSearchCategoriesTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSearchAutoSuggestImageStatus\":\"true\",\"valueSearchAutoSuggestFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f002\",\"name\":\"search\"},\"type\":\"\",\"image\":\"\"},\"valueSearchAutoSuggestTriangleMargin\":\"-10\",\"valueSearchAutoSuggestPriceOldFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchAutoSuggestProductImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSearchAutoSuggestProductImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSearchIconWidth\":\"\",\"valueSearchCategories\":{\"lang_1\":\"All\"},\"valueSearchInputBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestTriangleStatus\":\"true\",\"valueSearchAutoSuggestViewMoreFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSearchIconActive\":\"\",\"valueSearchCategoriesSelectorFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSearchAutoSuggestNameStatus\":\"true\",\"valueSearchCategoriesSelectorBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSearchPlaceholder\":{\"lang_1\":\"Search entire store...\"},\"valueSearchAutoSuggestViewMorePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueSearchAutoSuggestViewMoreBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestPriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchAutoSuggestShadow\":{\"offsetX\":\"0\",\"offsetY\":\"10\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueSearchIconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueSearchAutoSuggestPriceOldBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestPriceOldBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestTriangleColor\":\"\",\"valueSearchAutoSuggestDividerHover\":\"\",\"valueSearchAutoSuggestPriceStatus\":\"true\",\"valueSearchAutoSuggestLimit\":\"10\"}',1),
('SIMPLE LIGHT COLOR','','tabs','{\"valueLastTabBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT-1\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueActiveBorderColor\":\"\",\"valueTrackHeight\":\"2\",\"valuetabAlign\":\"right\",\"valueTabAlign\":\"center\",\"valueTabWhiteSpace\":\"nowrap\",\"valueScrollTouch\":\"true\",\"valueTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabSpace\":\"\",\"valueTabWidth\":\"\",\"valueIconColorHover\":\"\",\"valueBorderActive\":\"__VAR__ACCENT-1\",\"valueActiveTabIndicatorOffset\":{\"first\":\"\",\"second\":\"\"},\"valueFullBGShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueScrollColor\":\"__VAR__COLOR_5\",\"valueFullBG\":\"false\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueContentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueBorderBottom\":\"\",\"valueContentPadding\":{\"0\":\"1\",\"1\":\"5\",\"padding\":\"\",\"padding-top\":\"15\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTrackColor\":\"\",\"valueLastBorderHover\":\"\",\"valueIconSize\":\"\",\"valueFirstBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTabHeight\":\"\",\"valueLastTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsDirection\":\"h\",\"valueFullBGBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDisplay\":\"default\",\"valueFirstBorderHover\":\"\",\"valueActiveTabIndicator\":\"false\",\"valueFirstBorderActive\":\"\",\"valueActiveTabIndicatorColor\":\"\",\"valueActiveTabIndicatorSize\":\"\",\"valueLastBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFullBGBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContentBorder\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueFirstTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"0\",\"border-left-width\":\"\"}}],\"valueContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueContentTypography\":\"\",\"valueLastTabAlign\":\"group\",\"valueTabsWidth\":\"50\",\"valueLastBorderActive\":\"\",\"valueIconColor\":\"\",\"valueActiveTabBottomColor\":\"\",\"valueTabsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__ACCENT-1\"},\"valueLastTabBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"2\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__TRANSPARENT\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLastTabFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueScroll\":\"true\",\"valueIconColorActive\":\"\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueLastTabFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}}',1),
('DEFAULT','','pagination','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"1\",\"font-size\":\"\"},\"valuePadding\":{\"0\":\"1\",\"1\":\"0\",\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueLinkBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueResults\":\"true\",\"valueLinkPadding\":{\"padding\":\"3\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueLinkBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueLink\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLinkShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueGroupBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueGroupShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueLinkShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueLinkShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueLinkHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLinkActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSpaceBetween\":\"7\",\"valueFirstIcon\":{\"type\":\"\",\"icon\":{\"code\":\"eb23\",\"name\":\"chevrons-left\"},\"image\":\"\",\"color\":\"\",\"size\":\"15\",\"offsetX\":\"\",\"offsetY\":\"\"},\"valueLinkBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueGroupBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueLastIconHover\":\"\",\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueNextIcon\":{\"type\":\"\",\"icon\":{\"code\":\"f104\",\"name\":\"angle-left\"},\"image\":\"\",\"color\":\"\",\"size\":\"15\",\"offsetX\":\"\",\"offsetY\":\"\"},\"valueLinksAlign\":\"left\",\"valueLinkBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePrevIconHover\":\"\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('Icon on Top','','menu','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueAccordionOpenIconHover\":\"\",\"valueAccordionCloseIconHover\":\"\",\"valueAccordionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCountBadge\":\"__VAR__DEFAULT\",\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueIconSize\":\"29\",\"valueItemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"7\",\"padding-bottom\":\"\",\"padding-left\":\"7\"},\"valueDropdownIndicator\":\"false\",\"valueStaticFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconActive\":\"\",\"valueDisplay\":\"top\",\"valueIconHover\":\"__VAR__COLOR_7\",\"valueAccordionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueAccordionBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountBadgeVisibility\":\"true\",\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconMargin\":{\"margin\":\"0\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAccordionBorderHover\":\"\",\"valueIconColor\":\"__VAR__COLOR_1\",\"valueAccordionCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueAccordionOpenIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconWidth\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_4\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueItemSpacing\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('DEFAULT','','dropdown','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuStyle\":\"__VAR__Dropdown\",\"valueCountBadge\":\"\",\"valueMenuTriangleMargin\":\"-10\",\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueMenuTriangleStatus\":\"\",\"valueMenuTriangleColor\":\"__VAR__COLOR_15\",\"valueMenuTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"valueMenuTriangleAlign\":\"\",\"valueItemPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStaticFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDropBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueShadow\":\"__VAR__MEDIUM\",\"valueDropPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueIconHover\":\"\",\"valueAlign\":\"left\",\"valueWidth\":\"150\",\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountBadgeVisibility\":\"true\",\"valueHeight\":\"\",\"valueIconColor\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('SIDE_ARROWS','SIDE_ARROWS','carousel','{\"valueBullets\":\"true\",\"valueCarouselBulletsSize\":{\"first\":\"10\",\"second\":\"10\"},\"valueCarouselArrowSideIconNextActive\":\"\",\"valueCarouselArrowPosition\":\"side\",\"valueCarouselArrowSideBorderActive\":\"\",\"valueCarouselArrowSideBorderHover\":\"\",\"valueArrowsHover\":\"true\",\"valueCarouselArrowSideIconNextHover\":\"\",\"valueCarouselBulletBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueCarouselArrowSideOffset\":{\"first\":\"-25\",\"second\":\"\"},\"valueCarouselArrowSideBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueCarouselBulletBorderActive\":\"\",\"valueCarouselArrowSideIcon\":{\"size\":\"\",\"color\":{\"color\":\"__VAR__COLOR_1\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c4\",\"name\":\"arrow_back\"},\"type\":\"\",\"image\":\"\"},\"valueCarouselBulletShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowSideDisabled\":\"0.2\",\"valueCarouselBulletColorHover\":\"__VAR__COLOR_6\",\"valueArrowsStatus\":\"always\",\"valueCarouselArrowSideShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueOverflow_multi\":[],\"valueCarouselArrowSideBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCarouselArrowSideIconActive\":\"\",\"valueCarouselArrowSideShadow\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.15)\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselBulletColor\":\"__VAR__COLOR_4\",\"valueCarouselBulletSpacing\":\"7\",\"valueCarouselArrowSideSize\":{\"first\":\"50\",\"second\":\"50\"},\"valueCarouselBulletBorderRadius\":{\"border-radius\":\"20\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCarouselBulletsPadding\":\"\",\"valueCarouselBulletAlign\":\"center\",\"valueBulletsStatus\":\"hover\",\"valueDelay\":\"3000\",\"valueOverflow\":\"true\",\"valueCarouselBulletsOffset\":{\"first\":\"\",\"second\":\"-10\"},\"valueCarouselBulletShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueAutoPlay\":\"false\",\"valueCarouselArrowSideIconHover\":\"\",\"valueLoop\":\"false\",\"valueCarouselArrowSideShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSpeed\":\"500\",\"valueCarouselBulletColorActive\":\"__VAR__COLOR_14\",\"valuePauseOnHover\":\"true\",\"valueCarouselBulletShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowSideIconNext\":{\"size\":\"\",\"color\":{\"color\":\"__VAR__COLOR_1\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueArrows\":\"true\",\"valueCarouselArrowSideBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueBulletsHover\":\"true\",\"valueCarouselBulletBorderHover\":\"\",\"valueCarouselArrowSideBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"__VAR__COLOR_4\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueCarouselBulletsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCarouselBulletPadding\":\"\",\"valueCarouselBulletBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCarouselArrowSideBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}}',1),
('INPUT','','form_input','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePlaceholderColor\":\"\",\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"3\",\"spread\":\"\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWidth\":\"350\",\"valueHeight\":\"\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderFocus\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"__VAR__ACCENT_1\"}',1),
('DEFAULT','','form','{\"valueInputHeight\":\"\",\"valueLabelAlign\":\"left\",\"valueFormBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRadioInline\":\"false\",\"valueRequiredOffset\":{\"first\":\"\",\"second\":\"\"},\"valueErrorBorder\":{\"width\":\"\",\"style\":\"\",\"color\":\"__VAR__COLOR_6\"},\"valueCheckboxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFormBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueFormBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFormGroupBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueControlLabelMaxWidth_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"300\"}],\"valueSelectStyle\":\"__VAR__SELECT\",\"valueDateTimeStyle\":\"\",\"valueFormBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLabelError\":\"__VAR__COLOR_6\",\"valueFormGroupBorderHover\":\"\",\"valueFormGroupPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRadioPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRequiredSymbol\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"valueFormGroupBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCheckboxSpacing_multi\":[],\"valueFormBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueControlLabelMaxWidth\":\"180\",\"valueFormGroupShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueInputGroupStyle\":\"\",\"valueInputGroupButtonSpacing\":\"5\",\"valueUploadIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebd8\",\"name\":\"upload2\"},\"type\":\"\",\"image\":\"\"},\"valueFormBoxDisplay\":\"\",\"valueCheckboxInline\":\"false\",\"valueInputWidth\":\"335\",\"valueUploadButtonStyle\":\"\",\"valueInputGroupButtonWidth\":\"35\",\"valueLabelPadding\":{\"padding\":\"\",\"padding-top\":\"7\",\"padding-right\":\"\",\"padding-bottom\":\"5\",\"padding-left\":\"\"},\"valueCheckboxSpacing\":\"\",\"valueLabelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueControlLabelPosition\":\"side\",\"valueLabelBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueUploadIconHover\":\"\",\"valueTextareaHeight\":\"\",\"valueTextAreaHeight\":\"\",\"valueLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueFormGroupShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRadioSpacing_multi\":[],\"valueTextStyle\":\"__VAR__TEXTAREA\",\"valueSelectHeight\":\"\",\"valueFormBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueLabelVisibility\":\"true\",\"valueFormBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFormGroupBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFormBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueInputStyle\":\"__VAR__INPUT\",\"valueFormGroupBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRequiredError\":\"__VAR__COLOR_6\",\"valueInputGroupButton\":\"__VAR__ICON_ONLY\",\"valueFormGroupMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"8\",\"margin-left\":\"\"},\"valueRadioFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRadioSpacing\":\"\",\"valueSelectWidth\":\"335\",\"valueLegendTitle\":\"\",\"valueTextAreaWidth\":\"\",\"valueTextareaWidth\":\"\",\"valueFormBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueLabelBottomMargin\":\"\",\"valueCheckboxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}',1),
('DEFAULT','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valuePadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":\"__VAR__LIGHT\",\"valueFontFocusColor\":\"__VAR__COLOR_1\",\"valueBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":\"__VAR__INNER\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(9, 132, 207, 1)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"__VAR__COLOR_3\",\"valueBorderHover\":\"\"}',1),
('DEFAULT','','page_buttons','{\"valueButtonsBorderHover\":\"\",\"valueButtonSpacing\":\"\",\"valueButtonsPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonAlign\":\"right\",\"valueContinueButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueAgreeMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"5\"}],\"valueButtonSpace\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBackButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c4\",\"name\":\"arrow_back\"},\"type\":\"\",\"image\":\"\"},\"valueButtonWidth\":\"auto\",\"valueButtonBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueAgreeLinkHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueButtonBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueAgreeMargin\":\"\",\"valueContinueButtonIconActive\":\"\",\"valueBackButtonIconActive\":\"\",\"valueContinueButton\":\"\",\"valueAgreeFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueBackButton\":\"__VAR__RED\",\"valueButtonsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsDisplay\":\"\",\"valueButtonBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueAgreeLink\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSingleButtonWidth_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"full\"}],\"valueButtonsBorder_multi\":[],\"valueButtonBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBackground_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}],\"valueBackButtonIconHover\":\"\",\"valueButtonDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_SMALL\",\"value\":\"block\"}],\"valueContinueButtonIconHover\":\"\",\"valueButtonsPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"valueAgreeLinkActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAgreeCheckMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueSingleButtonWidth\":\"auto\",\"valueButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonAlign_multi\":[],\"valueButtonSpace_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"10\"}},{\"min\":\"\",\"max\":\"__VAR__PHONE_SMALL\",\"value\":{\"padding\":\"\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"0\"}}],\"valueButtonWidth_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"full\"}],\"valueButtonsFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonDisplay\":\"inline\"}',1),
('DEFAULT','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS BOLD\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"left\",\"text-transform\":\"uppercase\",\"text-decoration\":\"none\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"26\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"7\",\"padding-left\":\"\"},\"valueDividerSize\":{\"first\":\"\",\"second\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDividerTopSpacing\":\"\",\"valueTruncate\":\"false\",\"valueFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"20\"}}],\"valueDividerStatus\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueDividerAlign\":\"\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"15\",\"margin-left\":\"\"}}',1),
('DEFAULT','','stepper','{\"valueQtyBtnBGHover\":\"__VAR__COLOR_9\",\"valueQtyInputWidth\":\"50\",\"valueQtyBtnBGActive\":\"\",\"valueQtyBorderRadius\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueQtyInput\":\"__VAR__STEPPER\",\"valueQtyInputHeight\":\"35\",\"valueQtyBtnColor\":\"__VAR__COLOR_11\",\"valueQtyBtnWidth\":\"\",\"valueQtyBtnColorHover\":\"__VAR__COLOR_10\",\"valueQtyBtnColorActive\":\"\",\"valueQtyDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_4\"},\"valueQtyBtnBG\":\"__VAR__GRAY\"}',1),
('DEFAULT','','accordion','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"none\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"13\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBodyBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_12\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBodyMargin\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDivider\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueOuterBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"plus-circle2\",\"code\":\"eba1\"},\"type\":\"\",\"image\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueIconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"minus-circle2\",\"code\":\"eb86\"},\"type\":\"\",\"image\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBodyBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSpacing\":\"\",\"valueIconHover\":\"\",\"valueBodyShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadiusActive\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBodyPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBodyBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('TOP_ARROWS','','carousel','{\"valueBullets\":\"true\",\"valueCarouselBulletsSize\":{\"first\":\"10\",\"second\":\"10\"},\"valueCarouselArrowSideIconNextActive\":\"\",\"valueCarouselArrowPosition\":\"top\",\"valueCarouselArrowSideBorderActive\":\"\",\"valueCarouselArrowSideBorderHover\":\"\",\"valueCarouselArrowSideIconNextHover\":\"\",\"valueCarouselBulletBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCarouselArrowSideOffset\":{\"first\":\"\",\"second\":\"-25\"},\"valueCarouselArrowSideBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCarouselBulletBorderActive\":\"\",\"valueCarouselArrowSideDisabled_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"0\"}],\"valueCarouselArrowSideIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c4\",\"name\":\"arrow_back\"},\"type\":\"\",\"image\":\"\"},\"valueCarouselBulletShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowSideDisabled\":\"0.5\",\"valueCarouselBulletColorHover\":\"__VAR__COLOR_14\",\"valueArrowsStatus\":\"always\",\"valueCarouselArrowSideShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowSideBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCarouselArrowSideIconActive\":\"\",\"valueCarouselArrowSideShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselBulletColor\":\"__VAR__COLOR_5\",\"valueCarouselBulletSpacing\":\"7\",\"valueCarouselArrowSideSize\":{\"first\":\"25\",\"second\":\"25\"},\"valueCarouselBulletBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCarouselBulletsPadding\":\"15\",\"valueCarouselBulletAlign\":\"center\",\"valueBulletsStatus\":\"hover\",\"valueDelay\":\"3000\",\"valueOverflow\":\"true\",\"valueCarouselBulletsOffset\":{\"first\":\"\",\"second\":\"-10\"},\"valueCarouselBulletShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueAutoPlay\":\"false\",\"valueCarouselArrowSideIconHover\":\"\",\"valueCarouselArrowSideShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSpeed\":\"400\",\"valueCarouselBulletColorActive\":\"__VAR__COLOR_14\",\"valuePauseOnHover\":\"true\",\"valueCarouselBulletShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowPosition_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"side\"}],\"valueCarouselArrowSideIconNext\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueArrows\":\"true\",\"valueCarouselArrowSideBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCarouselArrowSideOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"first\":\"-12\",\"second\":\"-10\"}}],\"valueCarouselBulletBorderHover\":\"\",\"valueCarouselArrowSideBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCarouselBulletsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCarouselBulletPadding\":\"\",\"valueCarouselBulletBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCarouselArrowSideBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('DEFAULT','','popup','{\"valueCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valuePadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBackdrop\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(0, 0, 0, 0.75)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePopupBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCloseSize\":{\"first\":\"30\",\"second\":\"30\"},\"valueCloseStyle\":\"__VAR__CLOSE_ROUND\",\"valueWidth\":\"\",\"valueMarginSide\":\"20\",\"valueMarginTop\":\"55\",\"valueHeight\":\"\",\"valuePopupBorderRadius\":{\"border-radius\":\"5\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCloseOffset\":{\"first\":\"-12\",\"second\":\"12\"},\"valuePopupShadow\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"50\",\"spread\":\"-10\",\"color\":\"__VAR__OPACITY_HIGH\",\"inner\":\"false\",\"none\":\"false\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('YELLOW','','menu_label','{\"valueMenuLabelBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueMenuLabelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMenuLabelFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuLabelBackgroundHover\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMenuLabelBorderHover\":\"\",\"valueMenuLabelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"4\",\"padding-bottom\":\"\",\"padding-left\":\"4\"},\"valueMenuLabelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueMenuLabelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMenuLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"none\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"400\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuLabelOffset\":{\"first\":\"-10\",\"second\":\"10\"},\"valueMenuLabelShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}}',1),
('SIDE_ICON','','info_block','{\"valuePadding\":{\"padding\":\"15\",\"padding-top\":\"30\",\"padding-right\":\"\",\"padding-bottom\":\"30\",\"padding-left\":\"\"},\"valueText2Visibility_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"false\"}],\"valueText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT-1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueInfoBlockBorderHover\":\"__VAR__COLOR_7\",\"valueText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_8\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueInfoBlockPadding\":\"\",\"valueCountBadge\":\"\",\"valueInfoBlockText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING\"},\"valueIconSize_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"first\":\"30\",\"second\":\"30\"}}],\"valueText1Visibility\":\"true\",\"valueInfoBlockPad\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_13\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueText2Visibility\":\"true\",\"valueIconPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueIconBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"valueContentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLastBorderHover\":\"\",\"valueIconSize\":{\"first\":\"60\",\"second\":\"60\"},\"valueFirstBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadowHover\":\"__VAR__LARGE\",\"valueInfoBlockBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueInfoBlockShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueInfoBlockShadowHover\":\"__VAR__MEDIUM\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueInfoBlockIconPosition\":\"side\",\"valueText1Spacing\":\"\",\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFirstBorderHover\":\"\",\"valueIconMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}],\"valueIconPosition\":\"side\",\"valueLastBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueInfoBlockBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueInfoBlockText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCountBadgeVisibility\":\"false\",\"valueInfoBlockAlign\":\"left\",\"valueBorder_multi\":[],\"valueInfoBlockText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(33, 44, 53, 1)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueIconMargin\":{\"padding-right\":\"\",\"padding-left\":\"\",\"margin-left\":\"\",\"padding-bottom\":\"\",\"margin-bottom\":\"\",\"margin\":\"\",\"padding\":\"\",\"margin-top\":\"\",\"padding-top\":\"\",\"margin-right\":\"15\"},\"valueText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconColor\":\"__VAR__ACCENT-1\",\"valuePadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding-left\":\"\",\"padding\":\"10\",\"padding-right\":\"\"}}],\"valueText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueInfoBlockBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_2\"},\"valueIconAlign\":\"center\",\"valueText1Font_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__EXTRA_SMALL\"}}],\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueText2Font_multi\":[],\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\"}',1),
('CHECKOUT','','page_buttons','{\"valueButtonsBorderHover\":\"\",\"valueButtonSpacing\":\"\",\"valueButtonsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonAlign\":\"\",\"valueContinueButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueButtonSpace\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBackButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c4\",\"name\":\"arrow_back\"},\"type\":\"\",\"image\":\"\"},\"valueButtonWidth\":\"\",\"valueButtonBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueAgreeLinkHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueButtonBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueAgreeMargin\":\"\",\"valueContinueButtonIconActive\":\"\",\"valueBackButtonIconActive\":\"\",\"valueContinueButton\":\"__VAR__GREEN_LARGE\",\"valueAgreeFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackButton\":\"__VAR__DEFAULT_LARGE\",\"valueButtonsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsDisplay\":\"\",\"valueButtonBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueAgreeLink\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSingleButtonWidth_multi\":[],\"valueButtonBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackButtonIconHover\":\"\",\"valueButtonDisplay_multi\":[],\"valueContinueButtonIconHover\":\"\",\"valueAgreeLinkActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSingleButtonWidth\":\"\",\"valueButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonSpace_multi\":[],\"valueButtonWidth_multi\":[],\"valueButtonsFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonDisplay\":\"\"}',1),
('ICON_ROUND','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"32\",\"second\":\"32\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderHover\":\"\"}',1),
('DEFAULT_LARGE','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"25\",\"padding-bottom\":\"15\",\"padding-left\":\"25\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"40\",\"second\":\"40\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('WHITE_LARGE','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"13\",\"padding-left\":\"15\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_17\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"40\",\"second\":\"40\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('NEWSLETTER','','form_input','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"3\",\"spread\":\"\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWidth\":\"300\",\"valueHeight\":\"45\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderFocus\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"5\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_3\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"__VAR__ACCENT_1\"}',1),
('DEFAULT','','product_list','{\"valueExtraButtonDisplay1\":\"both\",\"valueRatingVisibility\":\"true\",\"valueStepper\":\"\",\"valueExtraVisibility1\":\"true\",\"valueExtraAlign_multi\":[],\"valueWishGroupListAlign\":\"right\",\"valueDescriptionBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDetailsPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsStatus\":\"true\",\"valueCountdown\":\"\",\"valueCompareTooltipStatus\":\"true\",\"valueExtraButtonDisplay2\":\"both\",\"valueDescriptionBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraVisibility2\":\"true\",\"valueNameBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueListDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQuickviewDisplay\":\"icon\",\"valuePriceBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueLabelsVisibility\":\"\",\"valueNameBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDescriptionBoxDisplay\":\"\",\"valueCompareMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueQuickviewTooltip\":\"\",\"valuePriceTaxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valueQuickviewIconHover\":\"\",\"valuePriceBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsPadding\":{\"padding\":\"4\",\"padding-top\":\"\",\"padding-right\":\"8\",\"padding-bottom\":\"\",\"padding-left\":\"8\"},\"valueCartButton\":\"\",\"valueExtraButtonVisibility\":\"true\",\"valueRatingCountdown\":\"\",\"valueGridBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartStatus\":\"true\",\"valueExtraButtonButton\":\"\",\"valueRatingStyle\":\"\",\"valueExtraButtonTooltipStatus\":\"true\",\"valuePriceBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartIcon_multi\":[],\"valueCartTooltipStatus\":\"true\",\"valueExtraMargin1\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishlistMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"valueQuickviewAlign\":\"center\",\"valuePriceTaxStatus\":\"true\",\"valueStatsBoxDisplay\":\"\",\"valueRatingBoxDisplay\":\"\",\"valueExtraMargin2\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"valueRatingAlignHover\":\"center\",\"valueExtraBoxPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBoxListBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueExtraAlign\":\"end\",\"valueStatsLabel\":\"true\",\"valuePriceMargin\":{\"margin\":\"\",\"margin-top\":\"8\",\"margin-right\":\"\",\"margin-bottom\":\"8\",\"margin-left\":\"\"},\"valueCompareButton\":\"__VAR__GRAY\",\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCompareStatus\":\"true\",\"valueImageBorderHover\":\"\",\"valueDescriptionPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBoxListBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsBoxListMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"-15\",\"margin-bottom\":\"\",\"margin-left\":\"-15\"},\"valueButtonsBoxDisplay\":\"\",\"valueStepperHeight\":\"\",\"valueImagePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"left\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"},\"valueButtonsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCompareOffset\":{\"first\":\"\",\"second\":\"\"},\"valueWishlistButton\":\"__VAR__BLUE\",\"valueWishlistStatus\":\"true\",\"valueButtonsBoxListFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSecondImageStatus\":\"true\",\"valueStatsLink\":\"\",\"valueNameBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtraPosition\":\"bottom\",\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsBoxListDisplay\":\"\",\"valueNameAlign\":\"start\",\"valueDetailsList_multi\":[{\"min\":\"\",\"max\":\"600\",\"value\":\"bottom\"}],\"valueWishButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueDescriptionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIcon\":{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ea9b\",\"name\":\"iconmonstr-shopping-cart-6\",\"size\":\"18\"},\"type\":\"\",\"image\":\"\"},\"valuePriceStatus\":\"true\",\"valueNameMargin\":{\"margin\":\"\",\"margin-top\":\"0\",\"margin-right\":\"\",\"margin-bottom\":\"8\",\"margin-left\":\"\"},\"valueExtraButtonIcon\":{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"eb79\",\"name\":\"mail\",\"size\":\"18\"},\"type\":\"\",\"image\":\"\"},\"valueButtonsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishGroupCountdown\":\"\",\"valueNameWidth\":\"auto\",\"valueWishOffset\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewTooltipPosition\":\"top\",\"valueRatingBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsBoxMargin\":{\"margin\":\"-15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueRatingBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.15)\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraButtonDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"icon\"}],\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"valueStatsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueCartDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"icon\"}],\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtraBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat1\":\"brand\",\"valueWishlistDisplay\":\"icon\",\"valueRatingBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStatsLabel2\":\"false\",\"valueStatsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingEmptyOpacity\":\".3\",\"valueWishlistTooltip\":\"\",\"valueCompareIcon\":{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab6\",\"name\":\"iconmonstr-compare\"},\"type\":\"\",\"image\":\"\"},\"valueStat2\":\"model\",\"valueNameBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueExtraBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueWishlistIconHover\":\"\",\"valueExtraIconHover1\":\"\",\"valueButtonsSpacing_multi\":[],\"valuePriceAlign\":\"start\",\"valueStatsHover\":\"\",\"valueStatsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueWishButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueDescriptionBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"5\",\"margin-left\":\"\"},\"valueStepperMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceWidth\":\"auto\",\"valueNameStatus\":\"true\",\"valueExtraIconHover2\":\"\",\"valueCompareDisplay\":\"icon\",\"valueDescriptionBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCompareIconHover\":\"\",\"valuePriceBoxDisplay\":\"\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCompareTooltip\":\"\",\"valueDetailsList\":\"side\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishlistIcon\":{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eaa7\",\"name\":\"iconmonstr-favorite-2\"},\"type\":\"\",\"image\":\"\"},\"valueNameBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueWishGroupPosition\":\"group\",\"valueButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueDescriptionBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraButton\":\"__VAR__GREEN\",\"valueExtraButtonStyle1\":\"__VAR__GREEN\",\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraButtonDisplay\":\"both\",\"valueCartDisplay\":\"both\",\"valuePriceBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDescriptionBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStepperStatus\":\"false\",\"valueCompareOffsetBottom\":{\"first\":\"\",\"second\":\"\"},\"valueExtraButtonStyle2\":\"__VAR__RED\",\"valueExtraButtonTooltip\":\"\",\"valueExtraButtonIconHover\":\"\",\"valueCartTooltip\":\"\",\"valueCountdownVisibility\":\"true\",\"valueCartIconHover\":\"\",\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCountdownOffset\":\"\",\"valueNameBoxDisplay\":\"\",\"valueButtonsSpacing\":\"5\",\"valueQuickviewVisibility\":\"true\",\"valueQuickviewButton\":\"\",\"valuePriceBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStatsBoxPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"3\",\"padding-left\":\"8\"},\"valueRatingBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueExtraBoxMargin_multi\":[],\"valuePriceBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewOffset\":{\"first\":\"\",\"second\":\"\"},\"valueListSpacing\":\"20\",\"valueQuickviewTooltipStatus\":\"true\",\"valueButtonsAlign\":\"start\",\"valueWishGroupMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsWidth\":\"\",\"valueStatsFont2\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNamePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueWishGroupHover\":\"false\",\"valueButtonsBorder_multi\":[],\"valueButtonsBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishlistTooltipPosition\":\"top\",\"valueGrayscale\":\"\",\"valuePriceBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishOffsetBottom\":{\"first\":\"\",\"second\":\"\"},\"valueExtraBoxDisplay\":\"\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceNewFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBoxListBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishButtonsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsPosition\":\"top\",\"valueRatingAlign\":\"start\",\"valueDetailsBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-color\":\"\",\"border-style\":\"\",\"border-left-width\":\"0\"}}],\"valueRatingPosition\":\"top\",\"valueWishButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDescriptionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsAlign\":\"start\",\"valueCompareTooltipPosition\":\"top\",\"valuePriceShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBoxListPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBoxListShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraIcon1\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueDetailsMargin_multi\":[],\"valueButtonsPosition\":\"bottom\",\"valueButtonsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valuePricePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueExtraButtonMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"margin\":\"\",\"margin-top\":\"5\",\"margin-right\":\"\",\"margin-bottom\":\"5\",\"margin-left\":\"\"}}],\"valueDescriptionMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtraButtonDisplay1_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_SMALL\",\"value\":\"icon\"}],\"valueRatingBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionFont\":{\"word-spacing\":\"\",\"line-height\":\"1.5\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraBoxMargin\":{\"margin\":\"\",\"margin-top\":\"-57\",\"margin-right\":\"-15\",\"margin-bottom\":\"-15\",\"margin-left\":\"-15\"},\"valueExtraIcon2\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueNameBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxListSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueQuickviewIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f06e\",\"name\":\"eye\"},\"type\":\"\",\"image\":\"\"},\"valueExtraButtonTooltipPosition\":\"top\",\"valueRatingBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueRatingOffsetHover\":{\"first\":\"\",\"second\":\"\"},\"valueNameBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCartTooltipPosition\":\"top\",\"valueExtraBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraButtonDisplay2_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"icon\"}],\"valueButtonsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStatsMargin\":{\"margin\":\"-15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueButtonsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueStatsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"5\",\"margin-left\":\"\"},\"valueRatingBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valuePriceBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueDescriptionStatus\":\"true\",\"valueCountdownShow\":\"always\",\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"5\",\"margin-left\":\"\"},\"valueNameBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"1\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueStatsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePriceOldFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"valueRatingBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewShow\":\"always\",\"valueButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"-20\",\"margin-bottom\":\"-15\",\"margin-left\":\"-15\"},\"valueStatsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraMargin1_multi\":[{\"min\":\"\",\"max\":\"\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}],\"valueNameOverflow\":\"false\",\"valueDescriptionBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueExtraButtonMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueWishlistTooltipStatus\":\"true\",\"valueRatingEmpty\":\"false\"}',1),
('DEFAULT','','side_products','{\"valueRatingVisibility\":\"true\",\"valuePadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDetailsPadding\":{\"padding\":\"5\",\"padding-top\":\"2\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImagePadding_multi\":[],\"valuePriceBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"4\",\"margin-left\":\"\"},\"valueNameBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQuickviewTooltip\":\"\",\"valuePriceTaxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valueQuickviewIconHover\":\"\",\"valueNameBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePriceBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"5\"},\"valueRatingStyle\":\"__VAR__SMALL\",\"valuePriceBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePriceTaxStatus\":\"false\",\"valueRatingBoxDisplay\":\"\",\"valuePriceMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorderHover\":\"\",\"valueImagePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueSecondImageStatus\":\"false\",\"valueNameBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameAlign\":\"center\",\"valueRatingBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceStatus\":\"true\",\"valueNameMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueNameWidth\":\"auto\",\"valueQuickviewTooltipPosition\":\"top\",\"valueRatingBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"-2\"},\"valueRatingBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"1.3\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRatingBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valuePriceAlign\":\"start\",\"valueRatingShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceWidth\":\"auto\",\"valueNameStatus\":\"true\",\"valuePriceBoxDisplay\":\"\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDetailsList\":\"bottom\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueRatingBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameBoxDisplay\":\"\",\"valueQuickviewVisibility\":\"true\",\"valueQuickviewButton\":\"__VAR__SMALL_BLUE\",\"valuePriceBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRatingBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewOffset\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewTooltipStatus\":\"true\",\"valueNamePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueGrayscale\":\"\",\"valuePriceBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceNewFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_9\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingAlign\":\"start\",\"valueImageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsMargin_multi\":[],\"valueBackground_multi\":[],\"valuePricePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRatingBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePadding_multi\":[],\"valueNameBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDetailsPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"\",\"padding-top\":\"5\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"0\"}}],\"valueQuickviewIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f06e\",\"name\":\"eye\"},\"type\":\"\",\"image\":\"\"},\"valueRatingBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRatingMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"2\",\"margin-left\":\"\"},\"valueNameBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRatingBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePriceOldFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__GRAY\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewShow\":\"hover\",\"valueNameOverflow\":\"false\",\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valuePriceBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRatingEmpty\":\"false\"}',1),
('DEFAULT','','category','{\"valueButtonTooltip\":\"\",\"valueDetailsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonIconHover\":\"\",\"valueButtonAlign\":\"center\",\"valueDescriptionContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonWidth\":\"auto\",\"valueDescriptionContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDescriptionContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerDisplay\":\"\",\"valueDescriptionContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorderHover\":\"\",\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameAlign\":\"center\",\"valueDescriptionContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueButtonTooltipPosition\":\"top\",\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIconHover\":\"\",\"valueButtonContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameWidth\":\"auto\",\"valueShadowHover\":\"__VAR__LIGHT\",\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"\",\"padding-left\":\"15\"},\"valueDescriptionContainerDisplay\":\"\",\"valueButtonContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameStatus\":\"true\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonTooltipStatus\":\"true\",\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueNameContainerMargin\":{\"margin\":\"\",\"margin-top\":\"-15\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueButtonContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsWidth\":\"150\",\"valueButtonButton\":\"__VAR__LINK\",\"valueButtonStatus\":\"true\",\"valueGrayscale\":\"\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueNameContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDescriptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePosition\":\"bottom\",\"valueDescriptionContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueNameContainerDisplay\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionStatus\":\"false\",\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameOverflow\":\"true\",\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueButtonDisplay\":\"both\"}',1),
('DEFAULT','','manufacturers','{\"valueNameDisplay_multi\":[],\"valueImageOpacity\":\"0.5\",\"valueNameContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueImageBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameDisplay\":\"none\",\"valueNameContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueImageBorderHover\":\"\",\"valueImagePadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueNameContainerPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueItemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameStatus\":\"true\",\"valueNameVisibility\":\"true\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueNameContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueGrayscale\":\"hover\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageOpacityHover\":\"1\",\"valueNameContainerDisplay\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameOverflow\":\"true\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\"}',1),
('DEFAULT','','countdown','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valueDays\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueWidth\":\"\"}',1),
('DEFAULT','','stars','{\"valueSize\":\"13\",\"valueFill\":\"__VAR__COLOR_7\",\"valueOutline\":\"__VAR__GRAY\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"}}',1),
('DEFAULT','','alerts','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSuccessFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDangerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueInfoCloseHover\":\"\",\"valueDangerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWarningIcon\":\"\",\"valueDangerClose\":\"\",\"valueSuccessClose\":\"\",\"valueClose\":\"\",\"valueIcon\":\"\",\"valueSuccessIcon\":\"\",\"valueInfoBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDangerIcon\":\"\",\"valueWarningClose\":\"\",\"valueInfoFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWarningCloseHover\":\"\",\"valueCloseHover\":\"\",\"valueSuccessCloseHover\":\"\",\"valueDangerCloseHover\":\"\",\"valueInfoIcon\":\"\",\"valueWarningBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueInfoClose\":\"\",\"valueWarningFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}}',1),
('DEFAULT','','gallery','{\"valueCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebeb\",\"name\":\"x\"},\"type\":\"\",\"image\":\"\"},\"valueCaptionBottom\":\"90\",\"valueBarsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePopupThumbShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePopupThumbShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBarShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueZoomInIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebef\",\"name\":\"zoom-in\"},\"type\":\"\",\"image\":\"\"},\"valueCaptionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueZoomOutIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebf0\",\"name\":\"zoom-out\"},\"type\":\"\",\"image\":\"\"},\"valueArrowIconNext\":{\"size\":\"\",\"color\":\"__VAR__COLOR_2\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueCaptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueArrowBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueArrowIconPrev\":{\"size\":\"\",\"color\":\"__VAR__COLOR_2\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c4\",\"name\":\"arrow_back\",\"color\":\"rgba(165,165,165,1)\",\"size\":\"25\"},\"type\":\"\",\"image\":\"\"},\"valueArrowShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueArrowBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePopupThumbsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__OPACITY_HIGH\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueThumbIconPosition\":\"right\",\"valuePopupThumbBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__ACCENT_3\"},\"valueBackdrop\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__OPACITY_HIGH\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePopupThumbSpacing\":\"10\",\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueArrowBorderActive\":\"\",\"valueArrowIconPrevActive\":\"__VAR__COLOR_2\",\"valueArrowIconActiveNext\":\"__VAR__COLOR_2\",\"valuePopupThumbsSpacing\":\"10\",\"valueThumbIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueArrowBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePopupThumbBorderActive\":\"\",\"valueBarPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBarBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueThumbIconBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageHeight\":\"100\",\"valuePopupThumbBorderHover\":\"__VAR__COLOR_5\",\"valueCaptionShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueArrowBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueArrowBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueZoomVisibility\":\"true\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueArrowIconPrevHover\":\"__VAR__COLOR_1\",\"valueArrowBorderHover\":\"\",\"valueArrowShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCaptionPosition_multi\":[],\"valuePopupThumbsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePopupThumbBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueZoomOutIconHover\":\"__VAR__COLOR_8\",\"valueZoomInIconHover\":\"__VAR__COLOR_8\",\"valuePopupThumbShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCaptionTruncate\":\"true\",\"valueCloseIconHover\":\"__VAR__COLOR_8\",\"valueCaptionPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCaptionBackground_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__OPACITY_MEDIUM\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}],\"valueCounterVisibility\":\"true\",\"valueThumbIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueArrowShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueThumbIconHover\":\"\",\"valueCaptionPosition\":\"bottom\",\"valueArrowIconHoverNext\":\"__VAR__COLOR_1\"}',1),
('SIMPLE','','tabs','{\"valueFontActive_multi\":[],\"valueLastTabBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"10\",\"padding-top\":\"5\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueActiveBorderColor\":\"\",\"valueTrackHeight\":\"2\",\"valuetabAlign\":\"right\",\"valueTabAlign\":\"center\",\"valueTabWhiteSpace\":\"nowrap\",\"valueScrollTouch\":\"true\",\"valueTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabSpace\":\"\",\"valueTabWidth\":\"\",\"valueIconColorHover\":\"\",\"valueBorderActive\":\"__VAR__COLOR_5\",\"valueActiveTabIndicatorOffset\":{\"first\":\"\",\"second\":\"\"},\"valueFullBGShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueScrollColor\":\"__VAR__COLOR_5\",\"valueFullBG\":\"false\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueContentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueBorderBottom\":\"\",\"valueContentPadding\":{\"0\":\"1\",\"1\":\"5\",\"padding\":\"\",\"padding-top\":\"15\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTrackColor\":\"\",\"valueLastBorderHover\":\"\",\"valueIconSize\":\"18\",\"valueFirstBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDisplay_multi\":[],\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTabHeight\":\"\",\"valueLastTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsDirection\":\"h\",\"valueFullBGBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDisplay\":\"default\",\"valueFirstBorderHover\":\"\",\"valueActiveTabIndicator\":\"false\",\"valueFirstBorderActive\":\"\",\"valueActiveTabIndicatorColor\":\"\",\"valueActiveTabIndicatorSize\":\"\",\"valueLastBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFullBGBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContentBorder\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueFirstTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsBorder_multi\":[],\"valueContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueContentTypography\":\"\",\"valueLastTabAlign\":\"group\",\"valueTabsBackground_multi\":[],\"valueTabsWidth\":\"50\",\"valueBorder_multi\":[],\"valueBackground_multi\":[],\"valueLastBorderActive\":\"\",\"valueIconColor\":\"__VAR__COLOR_5\",\"valueActiveTabBottomColor\":\"\",\"valueFont_multi\":[],\"valuePadding_multi\":[],\"valueTabAlign_multi\":[],\"valueTabsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_5\"},\"valueLastTabBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabWidth_multi\":[],\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderActive_multi\":[],\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"2\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__TRANSPARENT\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLastTabFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueScroll\":\"true\",\"valueIconColorActive\":\"\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackgroundActive_multi\":[],\"valueBorderHover\":\"__VAR__COLOR_5\",\"valueLastTabFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}}',1),
('DEFAULT','','tags','{\"valueTagFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTagBorderHover\":\"\",\"valueTagBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueTagsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTagPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"8\",\"padding-bottom\":\"\",\"padding-left\":\"8\"},\"valueTagShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTagBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTagBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTagShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTagsTagsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCommaFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTagShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTagBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTagBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCommaVisibility\":\"false\",\"valueTagMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"8\",\"margin-bottom\":\"8\",\"margin-left\":\"\"},\"valueTagFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"400\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTagsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTagsMargin\":{\"margin\":\"\",\"margin-top\":\"15\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueTagsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valueTagsAlign\":\"left\",\"valueTagsTitleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTagFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}}',1),
('DEFAULT','','table','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueHeadFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueHeadPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTrackHeight\":\"5\",\"valueScrollTouch\":\"false\",\"valueScrollColor\":\"__VAR__COLOR_5\",\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"__VAR__COLOR_11\"},\"valueHeadDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueTrackColor\":\"__VAR__COLOR_1\",\"valueLink\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFootBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFootFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFontOdd\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundOdd\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_10\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLinkHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFootPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueSpacing\":\"\",\"valueTableResponsiveBorder_multi\":[],\"valueBorder_multi\":[],\"valueThumbRadius\":\"\",\"valueFootDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueTableResponsiveBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueHeadBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('POST_GRID','','post_grid','{\"valueButtonTooltip\":\"\",\"valueStatAlign\":\"center\",\"valueDetailsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valueButtonIconHover\":\"\",\"valueButtonAlign\":\"center\",\"valueDescriptionContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDescriptionContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueDescriptionContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerDisplay\":\"\",\"valueDescriptionContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDateBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueStatContainerDisplay\":\"\",\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorderHover\":\"\",\"valueStatContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"5\",\"border-top-right-radius\":\"5\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameAlign\":\"center\",\"valueDescriptionContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueButtonTooltipPosition\":\"top\",\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIconHover\":\"\",\"valueStatContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDateBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueStatContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueNameWidth\":\"auto\",\"valueStatContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadowHover\":\"__VAR__MEDIUM\",\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_15\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDateDayFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDateBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionContainerDisplay\":\"\",\"valueButtonContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueButtonContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDateBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueItemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueAuthorVisibility\":\"true\",\"valueNameStatus\":\"true\",\"valueStatPosition\":\"image\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueStatContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueViewsVisibility\":\"true\",\"valueBorderRadius\":{\"border-radius\":\"5\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDateMonthFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDateVisibility\":\"true\",\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonTooltipStatus\":\"true\",\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueNameContainerMargin\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDescriptionContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAuthorIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueButtonButton\":\"__VAR__DARK\",\"valueStatContainerPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonStatus\":\"true\",\"valueViewsIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueGrayscale\":\"\",\"valueDateBoxDisplay\":\"\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueDescriptionStatus_multi\":[],\"valueCommentsVisibility\":\"true\",\"valueStatStatus\":\"true\",\"valueNameContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDateIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueDateBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDescriptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__GRAY\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDateBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDateBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsPosition\":\"bottom\",\"valueDescriptionContainerPadding\":{\"padding\":\"10\",\"padding-top\":\"5\",\"padding-right\":\"\",\"padding-bottom\":\"5\",\"padding-left\":\"\"},\"valueDateBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueStatContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueStatContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueNameContainerDisplay\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionStatus\":\"true\",\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCommentsIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueButtonContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameOverflow\":\"false\",\"valueDetailsBorderHover\":\"\",\"valueDateBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueButtonDisplay\":\"text\"}',1),
('POST_LIST','','post_list','{\"valueButtonTooltip\":\"\",\"valueStatAlign\":\"start\",\"valueDetailsPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonIconHover\":\"\",\"valueButtonAlign\":\"start\",\"valueDescriptionContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDescriptionContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDescriptionContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerDisplay\":\"\",\"valueDescriptionContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDateBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueStatContainerDisplay\":\"\",\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorderHover\":\"\",\"valueStatContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameAlign\":\"start\",\"valueButtonTooltipPosition\":\"top\",\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIconHover\":\"\",\"valueStatContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueDateBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueStatContainerMargin\":{\"margin\":\"-15\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueNameWidth\":\"auto\",\"valueStatContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDateDayFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDateBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionContainerDisplay\":\"\",\"valueButtonContainerMargin\":{\"margin\":\"-15\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDateBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueItemPadding\":{\"padding\":\"1\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueAuthorVisibility\":\"true\",\"valueNameStatus\":\"true\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueViewsVisibility\":\"true\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDateMonthFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDateVisibility\":\"true\",\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonTooltipStatus\":\"true\",\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueNameContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDescriptionContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueListSpacing\":\"20\",\"valueDetailsWidth\":\"200\",\"valueAuthorIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueButtonButton\":\"\",\"valueStatContainerPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonStatus\":\"true\",\"valueViewsIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueGrayscale\":\"\",\"valueDateBoxDisplay\":\"\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueCommentsVisibility\":\"true\",\"valueStatStatus\":\"true\",\"valueDateIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueDateBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDescriptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDateBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDateBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionContainerPadding\":{\"padding\":\"\",\"padding-top\":\"5\",\"padding-right\":\"\",\"padding-bottom\":\"5\",\"padding-left\":\"\"},\"valueDateBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueStatContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueStatContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueNameContainerDisplay\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionStatus\":\"true\",\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCommentsIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueButtonContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameOverflow\":\"false\",\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_11\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueButtonDisplay\":\"both\"}',1),
('BLUE_ROUND','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"\",\"padding-left\":\"20\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_14\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"20\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFont_multi\":[],\"valuePadding_multi\":[],\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderHover\":\"\"}',1),
('SELECT','','form_input','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"3\",\"spread\":\"\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWidth\":\"350\",\"valueHeight\":\"\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderFocus\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"__VAR__ACCENT_1\"}',1),
('DEFAULT','','mobile_wrapper','{\"valueMobileWrapperCartShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMobileWrapperTitleBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueMobileWrapperTitleBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMobileWrapperTitleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT_2\",\"text-align\":\"\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"valueMobileWrapperCartContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMobileWrapperMenuContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMobileWrapperCloseIconIcon\":{\"size\":\"28\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"name\":\"close\",\"code\":\"f00d\"},\"type\":\"\",\"image\":\"\"},\"valueMobileWrapperCloseIconHover\":\"\",\"valueMobileWrapperCloseIconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueMobileWrapperFilterContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMobileWrapperContentWidthDesktop\":\"300\",\"valueMobileWrapperContentWidthMobile\":\"85\",\"valueMobileWrapperCartPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueMobileWrapperCloseIcon\":{\"size\":\"\",\"color\":\"__VAR__ACCENT_2\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueMobileWrapperMenuPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueMobileWrapperBackdrop\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMobileWrapperTitleShadow\":\"__VAR__LIGHT\",\"valueMobileWrapperFilterPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueMobileWrapperCloseIconBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMobileWrapperCloseIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueMobileWrapperTitleHeight\":\"45\",\"valueMobileWrapperCloseIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMobileWrapperMenuShadow\":\"__VAR__LARGE\"}',1),
('POPUP_TITLE','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"},\"valuePadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTruncate\":\"false\",\"valueFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"}}],\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"0\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('GREEN','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_9\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderHover\":\"\"}',1),
('RED','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderHover\":\"\"}',1),
('VERTICAL_IMAGES','','carousel','{\"valueBullets\":\"true\",\"valueCarouselBulletsSize\":{\"first\":\"10\",\"second\":\"10\"},\"valueCarouselArrowSideIconNextActive\":\"\",\"valueCarouselArrowPosition\":\"side\",\"valueCarouselArrowSideBorderActive\":\"\",\"valueCarouselArrowSideBorderHover\":\"\",\"valueArrowsHover\":\"true\",\"valueCarouselArrowSideIconNextHover\":\"\",\"valueCarouselBulletBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCarouselArrowSideOffset\":{\"first\":\"\",\"second\":\"\"},\"valueCarouselArrowSideBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCarouselBulletBorderActive\":\"\",\"valueCarouselArrowSideIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c4\",\"name\":\"arrow_back\"},\"type\":\"\",\"image\":\"\"},\"valueCarouselBulletShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowSideSize_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"first\":\"50\",\"second\":\"\"}}],\"valueCarouselArrowSideDisabled\":\"0\",\"valueCarouselBulletColorHover\":\"__VAR__COLOR_4\",\"valueArrowsStatus\":\"always\",\"valueCarouselArrowSideShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowSideBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCarouselArrowSideIconActive\":\"\",\"valueCarouselArrowSideShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselBulletColor\":\"__VAR__COLOR_5\",\"valueCarouselBulletSpacing\":\"7\",\"valueCarouselArrowSideSize\":{\"first\":\"100\",\"second\":\"20\"},\"valueCarouselBulletBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCarouselBulletsPadding\":\"10\",\"valueCarouselBulletAlign\":\"center\",\"valueBulletsStatus\":\"none\",\"valueDelay\":\"3000\",\"valueOverflow\":\"true\",\"valueCarouselBulletsOffset\":{\"first\":\"\",\"second\":\"-10\"},\"valueCarouselBulletShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueAutoPlay\":\"true\",\"valueCarouselArrowSideIconHover\":\"\",\"valueCarouselArrowSideShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSpeed\":\"500\",\"valueCarouselBulletColorActive\":\"__VAR__COLOR_4\",\"valuePauseOnHover\":\"true\",\"valueCarouselBulletShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowSideIconNext\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueArrows\":\"true\",\"valueCarouselArrowSideBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBulletsHover\":\"true\",\"valueCarouselBulletBorderHover\":\"\",\"valueCarouselArrowSideBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__GRAY\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCarouselBulletsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCarouselBulletPadding\":\"\",\"valueCarouselBulletBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCarouselArrowSideBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('CLOSE_ROUND','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\",\"custom\":\"\"},\"valueShadow\":{\"offsetX\":\"0\",\"offsetY\":\"2\",\"blur\":\"5\",\"spread\":\"\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"25\",\"second\":\"25\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('CENTER','','notification','{\"valueCartStyle\":\"\",\"valueCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsStatus\":\"true\",\"valueLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartVisibility\":\"true\",\"valueCloseBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCheckoutMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"10\"},\"valueCloseShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueCloseSize\":{\"first\":\"\",\"second\":\"\"},\"valueCheckoutVisibility\":\"true\",\"valueCloseBorderHover\":\"\",\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ea9b\",\"name\":\"iconmonstr-shopping-cart-6\"},\"type\":\"\",\"image\":\"\"},\"valueCartIconHoverRight\":\"\",\"valueCloseStyle\":\"__VAR__CLOSE\",\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCheckoutIconHover\":\"\",\"valueCheckoutIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCloseBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCloseShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCheckoutWidth\":\"full\",\"valueBorderRadius\":{\"border-radius\":\"5\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCheckoutIconHoverRight\":\"\",\"valueCheckoutIcon\":{\"size\":\"14\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab0\",\"name\":\"iconmonstr-coin-3\"},\"type\":\"\",\"image\":\"\"},\"valueCloseBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadow\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIconHover\":\"\",\"valueCloseBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCloseBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartWidth\":\"full\",\"valueButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCloseShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueWidth\":\"400\",\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"75\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"valueImageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"10\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueCloseStatus\":\"true\",\"valueCloseBorderActive\":\"\",\"valuePosition\":\"center\",\"valueCheckoutStyle\":\"__VAR__GREEN\",\"valueCloseOffset\":{\"first\":\"-12\",\"second\":\"-12\"},\"valueLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCloseIconHover\":\"\",\"valueButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageStatus\":\"true\",\"valueImageRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsMargin\":{\"margin\":\"-10\",\"margin-top\":\"0\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueMargin\":{\"margin\":\"20\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"0\",\"margin-left\":\"\"}}',1),
('DEFAULT','','search','{\"valueSearchAutoSuggestPriceFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchInputFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchViewMoreText\":{\"lang_1\":\"View More\"},\"valueSearchAutoSuggestDescription\":\"true\",\"valueSearchCategoriesSelectorDropdownWidth\":\"\",\"valueSearchAutoSuggestViewMoreBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchCategoriesSelectorBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestHeight\":\"\",\"valueSearchCategoriesSelectorFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSearchCategoriesSelectorDropdown\":\"__VAR__DEFAULT\",\"valueSearchIconBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestViewMoreFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchFullBorderRadius\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSearchCategoriesSelectorStatus\":\"true\",\"valueSearchInputBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestProductImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSearchCategoriesTriangleColor\":\"\",\"valueSearchAutoSuggestProductImageBorderHover\":\"\",\"valueSearchAutoSuggestProductImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSearchAutoSuggestViewMoreStatus\":\"true\",\"valueSearchAutoSuggestBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSearchAutoSuggestPriceOldFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchPlaceholderColor\":\"\",\"valueSearchNoResultsText\":{\"lang_1\":\"No results found.\"},\"valueSearchAutoSuggestWidth\":\"\",\"valueSearchIconHover\":\"\",\"valueSearchAutoSuggestFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchCategoriesTriangleMargin\":\"-10\",\"valueSearchCategoriesSelectorDropdownHeight\":\"\",\"valueSearchAutoSuggestViewMoreIconHover\":\"\",\"valueSearchCategoriesSelectorIcon\":{\"size\":\"\",\"color\":\"__VAR__ACCENT_2\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f0dc\",\"name\":\"sort\"},\"type\":\"\",\"image\":\"\"},\"valueSearchAutoSuggestStatus\":\"true\",\"valueSearchCategoriesTriangleStatus\":\"\",\"valueSearchCategoriesSelectorIconHover\":\"\",\"valueSearchAutoSuggestViewMoreIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueSearchCategoriesTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSearchAutoSuggestImageStatus\":\"true\",\"valueSearchAutoSuggestFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchIcon\":{\"size\":\"\",\"color\":\"__VAR__ACCENT_2\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f002\",\"name\":\"search\"},\"type\":\"\",\"image\":\"\"},\"valueSearchAutoSuggestTriangleMargin\":\"-10\",\"valueSearchAutoSuggestPriceOldFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchAutoSuggestProductImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSearchAutoSuggestProductImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSearchIconWidth\":\"45\",\"valueSearchCategories\":{\"lang_1\":\"All\"},\"valueSearchInputBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestTriangleStatus\":\"false\",\"valueSearchAutoSuggestViewMoreFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchIconBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestTriangleOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSearchIconActive\":\"\",\"valueSearchCategoriesSelectorFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSearchAutoSuggestNameStatus\":\"true\",\"valueSearchCategoriesSelectorBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSearchPlaceholder\":{\"lang_1\":\"Search for products...\"},\"valueSearchAutoSuggestViewMorePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueSearchAutoSuggestViewMoreBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestPriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSearchAutoSuggestShadow\":{\"offsetX\":\"0\",\"offsetY\":\"10\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueSearchIconBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_7\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueSearchAutoSuggestPriceOldBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestPriceOldBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSearchAutoSuggestTriangleColor\":\"\",\"valueSearchAutoSuggestDividerHover\":\"\",\"valueSearchAutoSuggestPriceStatus\":\"true\",\"valueSearchAutoSuggestLimit\":\"10\"}',1),
('FILTER','','accordion','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_15\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"0\"},\"valueBodyBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBodyMargin\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDivider\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"__VAR__COLOR_1\"},\"valueOuterBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f067\",\"name\":\"plus\"},\"type\":\"\",\"image\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueIconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f068\",\"name\":\"minus\"},\"type\":\"\",\"image\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBodyBorderRadius\":{\"border-radius\":\"5\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSpacing\":\"10\",\"valueIconHover\":\"\",\"valueBodyShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadiusActive\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_4\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBodyPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBodyBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"5\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('STEPPER','','form_input','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"3\",\"spread\":\"\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"0\",\"offsetY\":\"2\",\"blur\":\"15\",\"spread\":\"-2\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"false\",\"none\":\"false\"},\"valueWidth\":\"\",\"valueHeight\":\"\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderFocus\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\"}',1),
('GRAY','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__GRAY\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderHover\":\"\"}',1),
('DEFAULT','','page','{\"valueBodyBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueColumnRightBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBoxedLayout\":\"fullwidth\",\"valueColumnRightBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContentPadding_multi\":[],\"valueColumnLeftPadding\":{\"padding\":\"\",\"padding-top\":\"20\",\"padding-right\":\"20\",\"padding-bottom\":\"20\",\"padding-left\":\"\"},\"valueBoxedBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueColumnLeftTabletStatus\":\"true\",\"valueBoxedBodySpacing\":\"\",\"valueBoxedContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueContentPadding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePageTitleVisibility\":\"true\",\"valueBoxedHeaderPadding\":\"20\",\"valueContentSidePadding_multi\":[],\"valueColumnRightTabletStatus\":\"true\",\"valueContentBackground_multi\":[],\"valueContentSidePadding\":\"\",\"valueColumnsWidth_multi\":[],\"valueContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueColumnRightPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"valueContentWidth_multi\":[],\"valuePageTitleStyle\":\"\",\"valueColumnLeftBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"1\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueColumnsWidth\":\"220\",\"valueContainerPadding_multi\":[],\"valueBodyBackground_multi\":[],\"valueColumnRightPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"20\"},\"valueColumnLeftBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueColumnLeftPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__LAPTOP\",\"value\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"20\"}}],\"valueContentWidth\":\"1320\",\"valueContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('SMALL','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePadding\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"7\",\"margin-left\":\"\"},\"valueTruncate\":\"false\"}',1),
('ACCOUNT_GRID','','account','{\"valueIconDownloads\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb4e\",\"name\":\"download-cloud\"},\"type\":\"\",\"image\":\"\"},\"valueMyOrders\":\"true\",\"valueLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAddress\":\"true\",\"valueHistory\":\"true\",\"valueIconNewsletter\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e94c\",\"name\":\"iconmonstr-email-1\"},\"type\":\"\",\"image\":\"\"},\"valueIconPassword\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eac4\",\"name\":\"iconmonstr-lock-6\"},\"type\":\"\",\"image\":\"\"},\"valueBoxesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTitlesStyle\":\"__VAR__MEDIUM_SIZE\",\"valueBoxesBorderRadius\":{\"border-radius\":\"4\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueTransactions\":\"true\",\"valueMyCards\":\"true\",\"valueBoxesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBoxesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueIconAffiliateTrack\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f126\",\"name\":\"code-fork\"},\"type\":\"\",\"image\":\"\"},\"valueBoxesBorderHover\":\"\",\"valueBoxSpacing\":\"8\",\"valueBoxesPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNewsletter\":\"true\",\"valueIcon\":{\"size\":\"45\",\"color\":\"__VAR__COLOR_17\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e93f\",\"name\":\"arrow2\"},\"type\":\"\",\"image\":\"\"},\"valueIconAddress\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e956\",\"name\":\"iconmonstr-id-card-8\"},\"type\":\"\",\"image\":\"\"},\"valueIconHistory\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ead5\",\"name\":\"iconmonstr-task-1\"},\"type\":\"\",\"image\":\"\"},\"valueRecurring\":\"true\",\"valuePassword\":\"true\",\"valueIconAffiliateEdit\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"users-edit\",\"code\":\"e95a\"},\"type\":\"\",\"image\":\"\"},\"valueIconWishlist\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e930\",\"name\":\"edit-heart\"},\"type\":\"\",\"image\":\"\"},\"valueMyAccount\":\"true\",\"valueMyAffiliate\":\"true\",\"valueBoxPerRow_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"3\"},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"2\"}],\"valueDisplay\":\"boxes\",\"valueCards\":\"true\",\"valueIconHover\":\"__VAR__COLOR_6\",\"valueReturns\":\"true\",\"valueIconRecurring\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e8b3\",\"name\":\"restore\"},\"type\":\"\",\"image\":\"\"},\"valueRewards\":\"true\",\"valueBoxesShadowHover\":\"__VAR__LIGHT\",\"valueIconEdit\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e90d\",\"name\":\"iconmonstr-edit-11\"},\"type\":\"\",\"image\":\"\"},\"valueBoxesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBoxesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBoxesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishlist\":\"true\",\"valueMyNewsletter\":\"true\",\"valueAffiliates\":\"true\",\"valueBoxesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBoxPerRow\":\"5\",\"valueIconReturns\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f112\",\"name\":\"mail-reply\"},\"type\":\"\",\"image\":\"\"},\"valueIconCards\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e95e\",\"name\":\"cards3\"},\"type\":\"\",\"image\":\"\"},\"valueIconRewards\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e952\",\"name\":\"iconmonstr-coin-7\"},\"type\":\"\",\"image\":\"\"},\"valueDownloads\":\"true\",\"valueLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueEdit\":\"true\",\"valueIconAffiliateAdd\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"users-edit\",\"code\":\"e95a\"},\"type\":\"\",\"image\":\"\"},\"valueIconTransactions\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e928\",\"name\":\"iconmonstr-currency-37\"},\"type\":\"\",\"image\":\"\"}}',1),
('ACCOUNT_LIST','','account','{\"valueIconDownloads\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueMyOrders\":\"true\",\"valueLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAddress\":\"true\",\"valueHistory\":\"true\",\"valueIconNewsletter\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconPassword\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueBoxesFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTitlesStyle\":\"\",\"valueBoxesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueTransactions\":\"true\",\"valueMyCards\":\"true\",\"valueBoxesBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBoxesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueIconAffiliateTrack\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueBoxesBorderHover\":\"\",\"valueBoxSpacing\":\"\",\"valueBoxesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"5\",\"padding-left\":\"\"},\"valueNewsletter\":\"true\",\"valueIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f18e\",\"name\":\"arrow-circle-o-right\"},\"type\":\"\",\"image\":\"\"},\"valueIconAddress\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconHistory\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueRecurring\":\"true\",\"valuePassword\":\"true\",\"valueIconAffiliateEdit\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconWishlist\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueMyAccount\":\"true\",\"valueMyAffiliate\":\"true\",\"valueDisplay\":\"links\",\"valueCards\":\"true\",\"valueIconHover\":\"\",\"valueReturns\":\"true\",\"valueIconRecurring\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueRewards\":\"true\",\"valueBoxesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueIconEdit\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueBoxesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBoxesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBoxesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishlist\":\"true\",\"valueMyNewsletter\":\"true\",\"valueAffiliates\":\"true\",\"valueBoxesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBoxPerRow\":\"\",\"valueIconReturns\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconCards\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconRewards\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueDownloads\":\"true\",\"valueLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueEdit\":\"true\",\"valueIconAffiliateAdd\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconTransactions\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}',1),
('SIDE_COLUMN','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePadding\":{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"12\",\"padding-bottom\":\"\",\"padding-left\":\"12\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueTruncate\":\"false\"}',1),
('Slider Layer','','container','{\"valueContainerBorderHover\":\"\",\"valueContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueContainerShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueContainerFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueContainerBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"1.1\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"__VAR__COLOR_3\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HUGE\"}}',1),
('GREEN','','menu_label','{\"valueMenuLabelBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueMenuLabelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMenuLabelFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuLabelBackgroundHover\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMenuLabelBorderHover\":\"\",\"valueMenuLabelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"4\",\"padding-bottom\":\"\",\"padding-left\":\"4\"},\"valueMenuLabelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueMenuLabelOffset_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"first\":\"0\",\"second\":\"\"}}],\"valueMenuLabelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_9\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMenuLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__BODY\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"none\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"400\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuLabelOffset\":{\"first\":\"-10\",\"second\":\"12\"},\"valueMenuLabelShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}}',1),
('Main Menu','','menu','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS BOLD\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueAccordionOpenIconHover\":\"\",\"valueAccordionCloseIconHover\":\"\",\"valueAccordionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueTextTruncate\":\"true\",\"valueCountBadge\":\"\",\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueIconSize\":\"\",\"valueSFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDropdownIndicator\":\"false\",\"valueStaticFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgePosition\":\"inline\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueIconActive\":\"\",\"valueSFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDisplay\":\"\",\"valueIconHover\":\"\",\"valueAccordionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueAccordionBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountBadgeVisibility\":\"true\",\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAccordionBorderHover\":\"\",\"valueIconColor\":\"\",\"valueAccordionCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueAccordionOpenIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconWidth\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueItemSpacing\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('ICON_ONLY','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"35\",\"second\":\"33\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderHover\":\"\"}',1),
('SMALL','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valuePadding\":{\"padding\":\"2\",\"padding-top\":\"\",\"padding-right\":\"7\",\"padding-bottom\":\"\",\"padding-left\":\"7\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"20\",\"second\":\"20\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('GREEN','','tooltip','{\"valueTooltipText\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTooltipBackground\":\"__VAR__COLOR_9\",\"valueTooltipRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueTooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"}}',1),
('RED','','tooltip','{\"valueTooltipText\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTooltipBackground\":\"__VAR__COLOR_6\",\"valueTooltipRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueTooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"}}',1),
('YELLOW','','tooltip','{\"valueTooltipText\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTooltipBackground\":\"__VAR__COLOR_7\",\"valueTooltipRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueTooltipPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTooltipShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"}}',1),
('TOP_RIGHT','','notification','{\"valueCartStyle\":\"\",\"valueCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsStatus\":\"true\",\"valueLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCheckoutVisibility_multi\":[],\"valueCartVisibility\":\"true\",\"valueCloseBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCheckoutMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"10\"},\"valueCloseShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueCloseSize\":{\"first\":\"\",\"second\":\"\"},\"valueCheckoutVisibility\":\"true\",\"valueCloseBorderHover\":\"\",\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCartIconHoverRight\":\"\",\"valueCloseStyle\":\"__VAR__CLOSE_ROUND\",\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCheckoutIconHover\":\"\",\"valueCheckoutIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCloseBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCloseShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCheckoutWidth\":\"full\",\"valueBorderRadius\":{\"border-radius\":\"5\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCheckoutIconHoverRight\":\"\",\"valueCheckoutIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCloseBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadow\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIconHover\":\"\",\"valueCloseBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCloseBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCloseOffset_multi\":[],\"valueCartWidth\":\"full\",\"valueButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCloseShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueWidth\":\"400\",\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"75\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"valueImageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"10\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueCloseStatus\":\"true\",\"valueCloseBorderActive\":\"\",\"valuePosition\":\"tr\",\"valueCheckoutStyle\":\"__VAR__GREEN\",\"valueCloseOffset\":{\"first\":\"-12\",\"second\":\"-12\"},\"valueLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCloseIconHover\":\"\",\"valueButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageStatus\":\"true\",\"valueImageRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCartVisibility_multi\":[],\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsMargin\":{\"margin\":\"-10\",\"margin-top\":\"5\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueMargin\":{\"margin\":\"20\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"0\",\"margin-left\":\"\"}}',1),
('BOTTOM','','notification','{\"valueCartStyle\":\"__VAR__DEFAULT\",\"valueCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valuePadding\":{\"padding\":\"15\",\"padding-top\":\"12\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsPadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsStatus\":\"true\",\"valueLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartVisibility\":\"true\",\"valueCloseBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCheckoutMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCloseShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueCloseSize\":{\"first\":\"\",\"second\":\"\"},\"valueCheckoutVisibility\":\"true\",\"valueCloseBorderHover\":\"\",\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIcon\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ea9b\",\"name\":\"iconmonstr-shopping-cart-6\"},\"type\":\"\",\"image\":\"\"},\"valueCartIconHoverRight\":\"\",\"valueCloseStyle\":\"__VAR__CLOSE_ROUND\",\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCheckoutIconHover\":\"\",\"valueCheckoutIconRight\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eab0\",\"name\":\"iconmonstr-coin-3\"},\"type\":\"\",\"image\":\"\"},\"valueCloseBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCloseShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCheckoutWidth\":\"full\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCheckoutIconHoverRight\":\"\",\"valueCheckoutIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCloseBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIconHover\":\"\",\"valueCloseBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartIconRight\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCloseBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartWidth\":\"full\",\"valueButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCloseShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueWidth\":\"\",\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(0, 0, 0, 0.8)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"75\",\"height\":\"\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"crop\",\"phone_width\":\"\",\"phone_height\":\"\"},\"valueImageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"10\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCloseStatus\":\"true\",\"valueCloseBorderActive\":\"\",\"valuePosition\":\"bottom\",\"valueCheckoutStyle\":\"__VAR__GREEN\",\"valueCloseOffset\":{\"first\":\"5\",\"second\":\"5\"},\"valueLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCloseIconHover\":\"\",\"valueButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageStatus\":\"true\",\"valueImageRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsMargin\":{\"margin\":\"-10\",\"margin-top\":\"0\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"10\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('BLUE_LARGE','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"13\",\"padding-left\":\"15\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"40\",\"second\":\"40\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('ICON_BLUE_ROUND','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_9\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"32\",\"second\":\"32\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderHover\":\"\"}',1),
('LINK','LINK','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__COLOR_15\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valuePadding\":{\"padding\":\"3\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueShadowFocus\":\"__VAR__NONE\",\"valueShadowHover\":\"__VAR__NONE\",\"valueFontFocusColor\":\"\",\"valueButtonLoadingSpeed\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueShadow\":\"__VAR__NONE\",\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueButtonLoadingIcon\":{\"size\":\"20\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueButtonLoadingType\":\"\",\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueShadowActive\":\"__VAR__NONE\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"}}],\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"none\",\"border-color\":{\"color\":\"\"}},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('LIGHT','','countdown','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDays\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_12\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDivider\":{\"width\":\"\",\"style\":\"solid\",\"color\":\"__VAR__COLOR_11\"},\"valueWidth\":\"\"}',1),
('OPTIONS','','form_input','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"3\",\"spread\":\"\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWidth\":\"200\",\"valueHeight\":\"\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderFocus\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"__VAR__ACCENT_1\"}',1),
('PRODUCTS HOME','','tabs','{\"valueLastTabBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"16\",\"padding-left\":\"20\"},\"valueActiveBorderColor\":\"\",\"valueTrackHeight\":\"5\",\"valuetabAlign\":\"right\",\"valueTabAlign\":\"center\",\"valueTabWhiteSpace\":\"nowrap\",\"valueScrollTouch\":\"true\",\"valueTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabSpace\":\"\",\"valueTabWidth\":\"\",\"valueIconColorHover\":\"\",\"valueBorderActive\":\"\",\"valueActiveTabIndicatorOffset\":{\"first\":\"\",\"second\":\"\"},\"valueFullBGShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueScrollColor\":\"__VAR__COLOR_5\",\"valueFullBG\":\"false\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLastTabBorderRadius_multi\":[],\"valueContentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueBorderBottom\":\"10\",\"valueBorderRadius_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}}],\"valueContentPadding\":{\"0\":\"1\",\"1\":\"5\",\"padding\":\"\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTrackColor\":\"\",\"valueLastBorderHover\":\"\",\"valueIconSize\":\"\",\"valueFirstBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"stretch\"}],\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTabHeight\":\"\",\"valueLastTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueLastBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"1\",\"border-bottom-width\":\"1\",\"border-left-width\":\"0\",\"border-style\":\"\",\"border-color\":\"\"}}],\"valueFirstTabBorderRadius_multi\":[],\"valueTabsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"8\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsDirection\":\"h\",\"valueLastTabAlign_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"group\"}],\"valueFullBGBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDisplay\":\"default\",\"valueFirstBorderHover\":\"\",\"valueActiveTabIndicator\":\"true\",\"valueFirstBorderActive\":\"\",\"valueActiveTabIndicatorColor\":\"__VAR__COLOR_6\",\"valueActiveTabIndicatorSize\":\"8\",\"valueLastBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"0\",\"border-bottom-width\":\"\",\"border-left-width\":\"1\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFullBGBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContentBorder\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueFirstTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-color\":\"__VAR__COLOR_11\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"1\",\"border-style\":\"solid\"}}],\"valueContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueContentTypography\":\"\",\"valueLastTabAlign\":\"end\",\"valueTabsWidth\":\"\",\"valueBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"1\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}}],\"valueLastBorderActive\":\"\",\"valueIconColor\":\"\",\"valueActiveTabBottomColor\":\"\",\"valueFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"}}],\"valueTabAlign_multi\":[],\"valueTabsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueLastTabBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabWidth_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"3\"},{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"2\"}],\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"1\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLastTabFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueScroll\":\"false\",\"valueIconColorActive\":\"\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueLastTabFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}}',1),
('DEFAULT','','language_currency','{\"valueDropdownDisplay\":\"full\",\"valueSymbolColorHover\":\"\",\"valueSymbolBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSymbolShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSymbolSize\":{\"first\":\"\",\"second\":\"\"},\"valueTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__ACCENT_2\",\"text-align\":\"\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueTextFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_7\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDisplay\":\"full\",\"valueSymbolShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTextPadding\":{\"padding\":\"\",\"padding-top\":\"5\",\"padding-right\":\"5\",\"padding-bottom\":\"5\",\"padding-left\":\"0\"},\"valueSymbolBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSymbolColor\":\"\",\"valueSymbolRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}}',1),
('DEFAULT','DEFAULT','label','{\"valueLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__COLOR_1\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueLabelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"__VAR__COLOR_6\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueLabelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueLabelBorderRadius\":{\"border-radius\":\"20\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueLabelPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"7\",\"padding-left\":\"\"},\"valueLabelMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueLabelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLabelSize\":{\"first\":\"\",\"second\":\"\"}}',1),
('CENTER','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"center\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING\"},\"valuePadding\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTruncate\":\"false\",\"valueFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"}}],\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"0\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"}}',1),
('MODULE_TITLE','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM_2\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTruncate\":\"false\",\"valueFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"}}],\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('FLOAT_ICON','','info_block','{\"valuePadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueInfoBlockBorderHover\":\"__VAR__COLOR_7\",\"valueText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueInfoBlockPadding\":\"\",\"valueCountBadge\":\"\",\"valueInfoBlockText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING\"},\"valueText1Visibility\":\"true\",\"valueInfoBlockPad\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_13\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueText2Visibility\":\"true\",\"valueIconPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueIconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueContentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueIconSize\":{\"first\":\"\",\"second\":\"\"},\"valueShadowHover\":\"__VAR__LIGHT\",\"valueInfoBlockBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueInfoBlockShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueInfoBlockShadowHover\":\"__VAR__MEDIUM\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueInfoBlockIconPosition\":\"side\",\"valueText1Spacing\":\"3\",\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueIconPosition\":\"float\",\"valueInfoBlockBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueInfoBlockText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCountBadgeVisibility\":\"false\",\"valueInfoBlockAlign\":\"left\",\"valueInfoBlockText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconColor\":\"\",\"valueText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueInfoBlockBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_2\"},\"valueIconAlign\":\"start\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\"}',1),
('QUICKVIEW','','quickview','{\"valueRatingBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueRightBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueStatsBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueAdditionalImagesBorderHover\":\"\",\"valueCountdownTextBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsSortOrder\":\"\",\"valueCountdownBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueOptionsFormStyle\":\"\",\"valueOptionsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePushImageBorderHover\":\"\",\"valueRightBoxStylesDisplay\":\"\",\"valueTaxBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCloudZoomPosition\":\"inner\",\"valueDetailsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountdown\":\"\",\"valueTaxBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCompareTooltipStatus\":\"true\",\"valueCountdownTextBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueGallery\":\"\",\"valueLeftBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueAdditionalImagesCarouselStyle\":\"__VAR__VERTICAL_IMAGES\",\"valueExtraButton2\":\"\",\"valueOptionsBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueDiscountFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePushOptionsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBrandNameLinkHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePushTooltipPosition\":\"top\",\"valueSoldViewBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valuePriceBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBlocksTopBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCountdownTextBoxStylesDisplay\":\"\",\"valueCompareMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAdditionalImagesStatus\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"customer_groups\":[\"1\"],\"admin\":\"false\"},\"valueSplitRatio\":\"50\",\"valueRatingSortOrder\":\"\",\"valueStatsSortOrder\":\"\",\"valuePushImageBorderActive\":\"\",\"valueOldPriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePushOptionsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRewardsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRightBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueOptionsBoxStylesDisplay\":\"\",\"valueRatingBoxStylesDisplay\":\"\",\"valuePriceBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"-10\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartVisibility\":\"true\",\"valueLeftBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueViewsValueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSoldViewBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraDisplay\":\"icon\",\"valueCartButton\":\"\",\"valueRightBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueOptionsSortOrder\":\"\",\"valueStatsBoxStylesDisplay\":\"\",\"valueLeftBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceNewBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valuePriceOldBoxStylesDisplay\":\"\",\"valueCountdownBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartTooltipStatus\":\"true\",\"valueOptionsTitleRecurringVisibility\":\"true\",\"valueExtraIconHover\":\"\",\"valueSoldViewBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valuePriceGroupBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueLeftBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDiscountVisibility\":\"true\",\"valueQtySelector\":\"\",\"valueRewardsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueTaxBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueAdditionalImagesHeightAdjustment\":\"5\",\"valueWishlistMargin\":{\"margin\":\"0\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceNewBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePushOptionsBorderActive\":\"\",\"valueButtonsBoxStylesDisplay\":\"\",\"valueRewardsVisibility\":\"true\",\"valuePriceGroupBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRewardsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBlocksBottomBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCompareVisibility\":\"true\",\"valuePriceNewBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueMoreDetailsDisplay\":\"icon\",\"valueViewsLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCompareButton\":\"__VAR__GREEN\",\"valueDetailsBoxStylesDisplay\":\"\",\"valueRewardsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceGroupBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueMoreDetailsIconHover\":\"\",\"valueRewardsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStatsIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\",\"size\":\"10\"},\"type\":\"\",\"image\":\"\"},\"valueTitle\":\"__VAR__PAGE_TITLE\",\"valueDiscountsBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePushOptionsBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraWidth\":\"auto\",\"valuePriceBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePushOptionsFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueProductDimension\":\"false\",\"valueOutStockFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishlistButton\":\"__VAR__RED\",\"valueWishButtonsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueLeftBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueWishlistVisibility\":\"true\",\"valueDiscountsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCloudZoomStatus\":\"true\",\"valueBlocksBottomBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valuePushOptionsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__ACCENT-1\"},\"valueTaxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMoreDetailsWidth\":\"auto\",\"valueCartIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueDetailsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceOldBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRewardsBoxDisplay\":\"\",\"valueOptionsPushCheckbox\":\"true\",\"valueProductUPC\":\"false\",\"valueViewsText\":{\"lang_1\":\"Product Views:\"},\"valueDetailsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDiscountsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMoreDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDiscountsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT-1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePriceGroupBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueAdditionalImagesGutter\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"-5\",\"margin-bottom\":\"\",\"margin-left\":\"-5\"},\"valueBlocksBottomBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueOptionsTitle\":\"\",\"valueRewardsBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueCountdownBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueProductModel\":\"false\",\"valueButtonsBoxStylesMargin\":{\"margin\":\"0\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCountdownTextBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueAdditionalImagesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceNewBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQtyHeight\":\"42\",\"valueOptionsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishlistDisplay\":\"icon\",\"valuePriceOldBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePushImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceOldBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTaxVisibility\":\"true\",\"valueProductMPN\":\"false\",\"valuePriceOldBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAdditionalImagesItemsPerRow\":\"4\",\"valueWishAlign\":\"left\",\"valueCompareIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCountdownText\":{\"lang_1\":\"This offer ends in:\"},\"valueCountdownBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBlocksTopBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueRatingBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueWishlistIconHover\":\"\",\"valueLeftBoxStylesDisplay\":\"\",\"valueProductReward\":\"true\",\"valueStatsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraTooltipPosition\":\"top\",\"valuePriceAlign\":\"center\",\"valueExtraMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceBoxStylesDisplay\":\"\",\"valueCountdownBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueRatingBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAdditionalImagesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCountdownTextBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMoreDetailsButton\":\"__VAR__DEFAULT_LARGE\",\"valueStatsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStats\":\"true\",\"valueCountdownTextBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueOptionsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRightBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueOptionsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueSoldViewBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBlocksBottomSortOrder\":\"\",\"valueMoreDetailsVisibility\":\"true\",\"valueCountdownOrder\":\"\",\"valueCompareDisplay\":\"icon\",\"valuePushImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCompareIconHover\":\"\",\"valueCountdownTextBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueProductManufacturer\":\"true\",\"valueOldPriceDisplay\":\"right\",\"valueTaxBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSoldViewBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueOptionsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueRightBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBlocksTopBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueInStockFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishlistIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valuePushOptionsSpacing\":\"\",\"valueWishlistWidth\":\"auto\",\"valuePushImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTitlePosition\":\"top\",\"valueAdditionalImagesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRightBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueAdditionalImagesCarousel\":\"false\",\"valueProductViews\":\"true\",\"valueMoreDetailsTooltipPosition\":\"top\",\"valueRightBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueTaxBoxDisplay\":\"\",\"valuePriceOldBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSoldViewBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraButton\":\"\",\"valueExtraVisibility\":\"false\",\"valueOptionsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRightBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSoldViewBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartDisplay\":\"both\",\"valuePushOptionsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueTaxBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceNewBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCountdownTextBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueProductSold\":\"true\",\"valueSoldText\":{\"lang_1\":\"Products Sold:\"},\"valueRatingBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueButtonsDisplay\":\"fixed\",\"valueStatsBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSoldViewBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBlocksTopSortOrder\":\"\",\"valueStatsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTaxBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueCountdownVisibility\":\"true\",\"valuePriceGroupBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartIconHover\":\"\",\"valueStatsValueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCompareWidth\":\"auto\",\"valueProductManufacturerDisplay\":\"list\",\"valueCountdownTextBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueLeftBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueBlocksTopBoxStylesDisplay\":\"\",\"valueAdditionalImagesSpacing\":\"10\",\"valuePriceNewBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueOptionsBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePushImageSpacing\":\"\",\"valuePriceNewBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingStars\":\"\",\"valuePushOptionsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceOldBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSplitSpacing_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"0\"}],\"valuePriceGroupBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceGroupBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceNewBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBoxStylesPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueProductISBN\":\"false\",\"valuePushOptionsSize\":{\"first\":\"\",\"second\":\"\"},\"valueOptionsPushRadio\":\"true\",\"valueCartWidth\":\"full\",\"valuePriceBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceGroupBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountdownBoxStylesDisplay\":\"\",\"valueAdditionalImagesBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMoreDetailsIcon\":{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueLeftBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDetailsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRightBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueStatsLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePushImageShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"8\",\"spread\":\"\",\"color\":\"rgba(0,0,0,.7)\",\"inner\":\"true\",\"none\":\"false\"},\"valueRewardsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valuePriceBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueQtySelectorVisibility\":\"true\",\"valueWishlistTooltipPosition\":\"top\",\"valueViewsIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f06e\",\"name\":\"eye\"},\"type\":\"\",\"image\":\"\"},\"valueSoldViewBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueLeftBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueDiscountsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueProductWeight\":\"false\",\"valueExtraTooltipStatus\":\"true\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRatingSeparator\":\"-\",\"valueBlocksBottomBoxStylesDisplay\":\"\",\"valueRatingAlign\":\"left\",\"valueBlocksBottomBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueWishButtonsMargin\":{\"margin\":\"0\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsAlign\":\"apart\",\"valuePriceNewBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDiscountsBoxDisplay\":\"\",\"valuePriceSortOrder\":\"\",\"valuePushTooltip\":\"\",\"valueCompareTooltipPosition\":\"top\",\"valueDiscountsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCountdownTitle\":\"\",\"valueProductStock\":\"true\",\"valueDiscountsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRewardsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMoreDetailsTooltipStatus\":\"true\",\"valueAdditionalPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRewardsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueRewardsBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDiscountsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBlocksBottomBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountdownBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueAdditionalImagesPosition\":\"bottom\",\"valueBlocksBottomBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueProductJAN\":\"false\",\"valuePriceGroupBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePushOptionsShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBlocksBottomBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePushOptionsFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSplitSpacing\":\"20\",\"valueDetailsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valuePushOptionsBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSoldValueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBlocksTopBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartTooltipPosition\":\"top\",\"valueCountdownBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCountdownBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBrandNameLink\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSplitRatio_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"100\"}],\"valuePushImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCountdownBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAdditionalImagesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePriceOldBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueLeftBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDetailsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceGroupBoxStylesDisplay\":\"\",\"valuePriceBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDetailsBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueWishButtonsWidth\":\"auto\",\"valueAdditionalImagesContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRatingBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCustomStats\":\"false\",\"valueStatsMaxHeight\":\"\",\"valuePriceNewBoxStylesDisplay\":\"\",\"valueStatsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDiscountsBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueTaxBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePushOptionsBorderHover\":\"\",\"valueButtonsBoxStylesShadow\":\"__VAR__MEDIUM\",\"valueBlocksTopBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBlocksTopBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueOptionsTitleVisibility\":\"false\",\"valueSoldLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueOptionsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valuePriceOldBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBlocksTopBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSoldIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e263\",\"name\":\"monetization_on\"},\"type\":\"\",\"image\":\"\"},\"valueCountdownTextBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"7\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueProductSKU\":\"false\",\"valuePushOptionsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTaxBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueWishlistTooltipStatus\":\"true\",\"valueRatingFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSoldViewBoxStylesDisplay\":\"\",\"valuePriceOldBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueTaxBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('SIMPLE','','product_grid','{\"valueExtraButtonDisplay1\":\"both\",\"valueRatingVisibility\":\"true\",\"valueStepper\":\"\",\"valueExtraVisibility1\":\"true\",\"valueExtraAlign_multi\":[],\"valueWishGroupListAlign\":\"right\",\"valueDescriptionBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat1BoxSize\":{\"first\":\"\",\"second\":\"\"},\"valuePadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCartPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDetailsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsStatus\":\"false\",\"valueCountdown\":\"\",\"valueCompareTooltipStatus\":\"true\",\"valueExtraButtonDisplay2\":\"both\",\"valueDescriptionBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraVisibility2\":\"true\",\"valueNameBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLayoutShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueListDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQuickviewDisplay\":\"icon\",\"valuePriceBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueLabelsVisibility\":\"\",\"valueButtonsVisibility\":\"true\",\"valueNameBoxPadding\":{\"padding\":\"\",\"padding-top\":\"8\",\"padding-right\":\"\",\"padding-bottom\":\"5\",\"padding-left\":\"8\"},\"valueDescriptionBoxDisplay\":\"\",\"valueLabelsStatus\":\"always\",\"valueCompareMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueQuickviewTooltip\":\"\",\"valuePriceTaxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"left\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valueQuickviewIconHover\":\"\",\"valueNameBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewSize\":{\"first\":\"\",\"second\":\"\"},\"valuePriceBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingPadding\":{\"padding\":\"4\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsPadding\":{\"padding\":\"4\",\"padding-top\":\"\",\"padding-right\":\"8\",\"padding-bottom\":\"\",\"padding-left\":\"8\"},\"valueCartButton\":\"__VAR__SMALL_BLUE\",\"valueStat1BoxDisplay\":\"\",\"valueExtraButtonVisibility\":\"false\",\"valueRatingCountdown\":\"\",\"valueGridBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartStatus\":\"true\",\"valueExtraButtonButton\":\"\",\"valueRatingStyle\":\"\",\"valueExtraButtonTooltipStatus\":\"true\",\"valuePriceBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueCartTooltipStatus\":\"true\",\"valueStat2BoxDisplay\":\"\",\"valueExtraMargin1\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishlistMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"valueQuickviewAlign\":\"center\",\"valuePriceTaxStatus\":\"false\",\"valueStatsLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStatsBoxDisplay\":\"\",\"valueNamePosition\":\"default\",\"valueRatingBoxDisplay\":\"\",\"valueNameFont_multi\":[],\"valueExtraMargin2\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingAlignHover\":\"center\",\"valueExtraBoxPadding\":{\"padding\":\"4\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBoxListBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtraIcond2\":\"\",\"valueExtraAlign\":\"apart\",\"valueStatsLabel\":\"false\",\"valuePriceMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueCompareButton\":\"__VAR__LINK\",\"valueImageOverlay\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCompareStatus\":\"true\",\"valueImageBorderHover\":\"\",\"valueDescriptionPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBoxListBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraButtonIcon1\":{\"color\":\"__VAR__COLOR_9\"},\"valueSecondImageEffect\":\"fade\",\"valueQuickviewStockStatus\":\"\",\"valueButtonsBoxListMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsBoxDisplay\":\"\",\"valueStepperHeight\":\"36\",\"valueImagePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueButtonsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__ACCENT_3\"},\"valueCompareOffset\":{\"first\":\"\",\"second\":\"\"},\"valueStockStatFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraButtonIcon2\":{\"color\":\"__VAR__COLOR_6\"},\"valueWishlistButton\":\"__VAR__LINK\",\"valueWishlistStatus\":\"true\",\"valueButtonsBoxListFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSecondImageStatus\":\"true\",\"valueStatsLink\":\"\",\"valueNameBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtraPosition\":\"bottom\",\"valueImageBorderRadius\":{\"border-radius\":\"5\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueButtonsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsBoxListDisplay\":\"\",\"valueNameAlign\":\"start\",\"valueWishButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueDescriptionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueLayoutBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIcon\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"2\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"2\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\",\"size\":\"18\"},\"type\":\"\",\"image\":\"\"},\"valuePriceStatus\":\"true\",\"valueNameMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtraButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\",\"size\":\"18\"},\"type\":\"\",\"image\":\"\"},\"valueButtonsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueWishGroupPosition_multi\":[],\"valueWishGroupCountdown\":\"\",\"valueStat2BoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameWidth\":\"auto\",\"valueWishOffset\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewTooltipPosition\":\"top\",\"valueRatingBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat1BoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraBorder\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartDisplay_multi\":[],\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsBoxListOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDescriptionBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueStat2BoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStepperBorder\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueExtraBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat2BoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStat1\":\"brand\",\"valueWishlistDisplay\":\"icon\",\"valueRatingBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStepperStatus_multi\":[],\"valueStatsLabel2\":\"false\",\"valueStatsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingEmptyOpacity\":\"0.5\",\"valueWishlistTooltip\":\"\",\"valueCompareIcon\":{\"size\":\"14\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueStat2\":\"model\",\"valueNameBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueExtraBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueStat2BoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishlistIconHover\":\"\",\"valueExtraIconHover1\":\"\",\"valueStat1BoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStat1BoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueImageOverlayHeight\":\"\",\"valuePriceAlign\":\"start\",\"valueExtraMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsHover\":\"\",\"valueStatsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWishButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStat1BoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDescriptionBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStepperMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceWidth\":\"auto\",\"valueNameStatus\":\"true\",\"valueExtraIconHover2\":\"\",\"valueButtonsBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueCompareDisplay\":\"icon\",\"valueDescriptionBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCompareIconHover\":\"\",\"valueButtonsAlign_multi\":[],\"valueQuickviewMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceBoxDisplay\":\"\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueNameBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraIcon1h\":\"\",\"valueCartBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCompareTooltip\":\"\",\"valueDetailsList\":\"side\",\"valueBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueWishlistIcon\":{\"size\":\"15\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueStatsBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueNameBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishGroupPosition\":\"cart\",\"valueButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraButton\":\"\",\"valueExtraButtonStyle1\":\"__VAR__LINK\",\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraButtonDisplay\":\"both\",\"valueCartDisplay\":\"text\",\"valueStat2BoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePriceBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDescriptionBoxPadding\":{\"padding\":\"12\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valueStepperStatus\":\"false\",\"valueCompareBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueStepperRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCompareOffsetBottom\":{\"first\":\"\",\"second\":\"\"},\"valueExtraButtonStyle2\":\"__VAR__LINK\",\"valueExtraButtonTooltip\":\"\",\"valueExtraPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishlistGroupPosition\":\"group\",\"valueExtraButtonIconHover\":\"\",\"valueStat1BoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueStat1BoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishlistStockStatus\":\"\",\"valueCartTooltip\":\"\",\"valueCountdownVisibility\":\"false\",\"valueCartIconHover\":\"\",\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartSize\":{\"first\":\"\",\"second\":\"\"},\"valueCountdownOffset\":\"\",\"valueDescriptionBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueStat2BoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBoxDisplay\":\"\",\"valueButtonsSpacing\":\"\",\"valueQuickviewVisibility\":\"true\",\"valueQuickviewButton\":\"__VAR__ICON_BLUE_ROUND\",\"valueLayoutBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStatsBoxPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"8\",\"padding-bottom\":\"4\",\"padding-left\":\"8\"},\"valueRatingBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valuePriceBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewOffset\":{\"first\":\"\",\"second\":\"\"},\"valueListSpacing\":\"\",\"valueQuickviewTooltipStatus\":\"true\",\"valueCompareStockStatus\":\"\",\"valueButtonsAlign\":\"apart\",\"valueCartWidth\":\"auto\",\"valueWishGroupMargin\":{\"margin\":\"-10\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueCompareSize\":{\"first\":\"\",\"second\":\"\"},\"valueStatsFont2\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNamePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtra2StockStatus\":\"\",\"valueWishGroupHover\":\"false\",\"valueExtra1StockStatus\":\"\",\"valueButtonsBoxPadding\":{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"5\",\"padding-left\":\"\"},\"valueWishlistTooltipPosition\":\"top\",\"valueWishBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueGrayscale\":\"\",\"valueImageOverlayHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishOffsetBottom\":{\"first\":\"\",\"second\":\"\"},\"valueExtraBoxDisplay\":\"\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceNewFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBoxListBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueWishButtonsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsPosition\":\"top\",\"valueRatingAlign\":\"center\",\"valueRatingPosition\":\"hover\",\"valueWishButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartStockStatus\":\"\",\"valueDescriptionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsAlign\":\"apart\",\"valueStatsLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueImageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCompareTooltipPosition\":\"top\",\"valuePriceShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceOldPosition\":\"side\",\"valueImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBoxListPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQuickviewShow_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"always\"}],\"valueButtonsBoxListShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraIcon1\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueWishSize\":{\"first\":\"\",\"second\":\"\"},\"valueButtonsPosition\":\"bottom\",\"valueButtonsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valuePricePadding\":{\"padding\":\"\",\"padding-top\":\"5\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDescriptionMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueExtraBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtraIcon2\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueNameBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxListSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueQuickviewIcon\":{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f06e\",\"name\":\"eye\"},\"type\":\"\",\"image\":\"\"},\"valueExtraButtonTooltipPosition\":\"top\",\"valueLayoutShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRatingBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueRatingOffsetHover\":{\"first\":\"\",\"second\":\"\"},\"valueNameBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCartTooltipPosition\":\"top\",\"valueExtraBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraButtonDisplay2_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"icon\"}],\"valueButtonsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat2BoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueStatsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"7\",\"margin-left\":\"\"},\"valueButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueButtonsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueStatsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueDescriptionStatus\":\"false\",\"valueStat1BoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCountdownShow\":\"always\",\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueNameBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueComparePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCartBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRatingBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBoxPadding\":{\"padding\":\"8\",\"padding-top\":\"0\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePriceOldFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_14\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"line-through\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueRatingBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewShow\":\"hover\",\"valueButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueWishGroupAlign\":\"start\",\"valueNameOverflow\":\"true\",\"valueStat2BoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueQuickviewBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueStat2BoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBorderHover\":\"__VAR__ACCENT_3\",\"valueExtraButtonMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStat1BoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWishlistTooltipStatus\":\"true\",\"valueRatingEmpty\":\"false\",\"valueExtraBoxOffset\":{\"first\":\"\",\"second\":\"\"}}',1),
('Label on Top','','form','{\"valueInputHeight\":\"\",\"valueLabelAlign\":\"left\",\"valueFormBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRadioInline\":\"false\",\"valueRequiredOffset\":{\"first\":\"\",\"second\":\"\"},\"valueErrorBorder\":{\"width\":\"\",\"style\":\"\",\"color\":\"__VAR__COLOR_6\"},\"valueCheckboxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFormBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueFormBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFormGroupBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSelectStyle\":\"__VAR__SELECT\",\"valueDateTimeStyle\":\"\",\"valueFormBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLabelError\":\"__VAR__COLOR_6\",\"valueFormGroupBorderHover\":\"\",\"valueFormGroupPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRadioPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRequiredSymbol\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_14\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"},\"valueFormGroupBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCheckboxSpacing_multi\":[],\"valueFormBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueControlLabelMaxWidth\":\"9999\",\"valueFormGroupShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueInputGroupStyle\":\"\",\"valueInputGroupButtonSpacing\":\"5\",\"valueUploadIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebd8\",\"name\":\"upload2\"},\"type\":\"\",\"image\":\"\"},\"valueFormBoxDisplay\":\"\",\"valueCheckboxInline\":\"false\",\"valueInputWidth\":\"500\",\"valueUploadButtonStyle\":\"\",\"valueInputGroupButtonWidth\":\"35\",\"valueLabelPadding\":{\"padding\":\"\",\"padding-top\":\"7\",\"padding-right\":\"\",\"padding-bottom\":\"5\",\"padding-left\":\"\"},\"valueCheckboxSpacing\":\"\",\"valueLabelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueControlLabelPosition\":\"side\",\"valueLabelBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueUploadIconHover\":\"\",\"valueTextareaHeight\":\"\",\"valueLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFormGroupShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRadioSpacing_multi\":[],\"valueTextStyle\":\"__VAR__INPUT\",\"valueSelectHeight\":\"\",\"valueFormBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWidth\":\"\",\"valueLabelVisibility\":\"true\",\"valueFormBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFormGroupBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFormBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueInputStyle\":\"__VAR__INPUT\",\"valueHeight\":\"\",\"valueFormGroupBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRequiredError\":\"__VAR__COLOR_6\",\"valueInputGroupButton\":\"__VAR__ICON_ONLY\",\"valueFormGroupMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"8\",\"margin-left\":\"\"},\"valueRadioFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRadioSpacing\":\"\",\"valueSelectWidth\":\"\",\"valueLegendTitle\":\"__VAR__DEFAULT\",\"valueTextareaWidth\":\"\",\"valueFormBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueLabelBottomMargin\":\"\",\"valueCheckboxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}',1),
('Accordion Menu Level 2','','menu','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__BODY\",\"color\":\"rgba(116, 121, 140, 1)\",\"text-align\":\"\",\"text-transform\":\"none\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueAccordionOpenIconHover\":\"\",\"valueAccordionCloseIconHover\":\"\",\"valueAccordionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueTextTruncate\":\"true\",\"valueCountBadge\":\"\",\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding_multi\":[],\"valueDivider\":{\"width\":\"\",\"style\":\"none\",\"color\":\"\"},\"valueIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconSize\":\"13\",\"valueSFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding\":{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDropdownIndicator\":\"false\",\"valueStaticFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgePosition\":\"inline\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueIconActive\":\"\",\"valueSFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDisplay\":\"\",\"valueIconHover\":\"\",\"valueAccordionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueAccordionBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountBadgeVisibility\":\"false\",\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAccordionBorderHover\":\"\",\"valueIconColor\":\"\",\"valueAccordionCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueFont_multi\":[],\"valueAccordionOpenIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconWidth\":\"10\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueItemSpacing\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('SMALL_BOLD','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePadding\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"7\",\"margin-left\":\"\"},\"valueTruncate\":\"false\"}',1),
('MEDIUM_WHITE','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_3\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"valuePadding\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDividerSize\":{\"first\":\"\",\"second\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDividerTopSpacing\":\"\",\"valueTruncate\":\"false\",\"valueDividerStatus\":\"\",\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDividerAlign\":\"\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"}}',1),
('VERTICAL','','info_block','{\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"5\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valueText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueInfoBlockBorderHover\":\"__VAR__COLOR_7\",\"valueText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_15\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueInfoBlockPadding\":\"\",\"valueCountBadge\":\"\",\"valueInfoBlockText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING\"},\"valueText1Visibility\":\"true\",\"valueInfoBlockPad\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_13\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueText2Visibility\":\"true\",\"valueIconPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueIconBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"valueContentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLastBorderHover\":\"\",\"valueIconSize\":{\"first\":\"40\",\"second\":\"40\"},\"valueFirstBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadowHover\":\"__VAR__LIGHT\",\"valueInfoBlockBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueInfoBlockShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueInfoBlockShadowHover\":\"__VAR__MEDIUM\",\"valueBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueInfoBlockIconPosition\":\"side\",\"valueText1Spacing\":\"\",\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFirstBorderHover\":\"\",\"valueIconPosition\":\"side\",\"valueLastBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"0\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueInfoBlockBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueInfoBlockText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCountBadgeVisibility\":\"false\",\"valueInfoBlockAlign\":\"left\",\"valueInfoBlockText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"10\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconColor\":\"__VAR__COLOR_8\",\"valueText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueInfoBlockBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_2\"},\"valueIconAlign\":\"center\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\"}',1),
('WHITE-BG','','gallery','{\"valueCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebeb\",\"name\":\"x\"},\"type\":\"\",\"image\":\"\"},\"valueCaptionBottom\":\"90\",\"valueBarsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePopupThumbShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePopupThumbShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCaptionVisibility_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"false\"}],\"valueBarShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueZoomInIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebef\",\"name\":\"zoom-in\"},\"type\":\"\",\"image\":\"\"},\"valueCaptionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"rgba(255, 255, 255, 0.85)\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueZoomOutIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"ebf0\",\"name\":\"zoom-out\"},\"type\":\"\",\"image\":\"\"},\"valueArrowIconNext\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueCaptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueArrowBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueArrowIconPrev\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c4\",\"name\":\"arrow_back\",\"color\":\"rgba(165,165,165,1)\",\"size\":\"25\"},\"type\":\"\",\"image\":\"\"},\"valueArrowShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueArrowBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__OPACITY_HIGH\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePopupThumbsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCaptionVisibility\":\"true\",\"valueThumbIconPosition\":\"right\",\"valuePopupThumbBorder\":{\"border-width\":\"2\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__ACCENT-1\"},\"valueBackdrop\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePopupThumbSpacing\":\"10\",\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueArrowBorderActive\":\"\",\"valueArrowIconPrevActive\":\"\",\"valueArrowIconActiveNext\":\"\",\"valuePopupThumbsSpacing\":\"10\",\"valueImageHeight_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"0\"}],\"valueThumbIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueArrowBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePopupThumbBorderActive\":\"\",\"valueBarPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBarBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueThumbIconBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageHeight\":\"100\",\"valuePopupThumbBorderHover\":\"__VAR__COLOR_5\",\"valueCaptionShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueArrowBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueArrowBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueZoomVisibility\":\"true\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueArrowIconPrevHover\":\"\",\"valueArrowBorderHover\":\"\",\"valueArrowShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCaptionPosition_multi\":[],\"valuePopupThumbsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePopupThumbBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueZoomOutIconHover\":\"__VAR__COLOR_5\",\"valueZoomInIconHover\":\"__VAR__COLOR_5\",\"valuePopupThumbShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCaptionTruncate\":\"true\",\"valueCloseIconHover\":\"__VAR__COLOR_5\",\"valueCaptionPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCounterVisibility\":\"true\",\"valueThumbIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_2\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueArrowShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueThumbIconHover\":\"__VAR__COLOR_1\",\"valueCaptionPosition\":\"bottom\",\"valueArrowIconHoverNext\":\"\"}',1),
('SMALL_BLUE','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valuePadding\":{\"padding\":\"2\",\"padding-top\":\"\",\"padding-right\":\"7\",\"padding-bottom\":\"3\",\"padding-left\":\"7\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_9\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"20\",\"second\":\"20\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('BLUE','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_9\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":\"__VAR__LIGHT\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":\"__VAR__INNER\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderHover\":\"\"}',1),
('DARK_LARGE','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"13\",\"padding-left\":\"15\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"40\",\"second\":\"40\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('SMALL','','stars','{\"valueSize\":\"10\",\"valueFill\":\"__VAR__COLOR_7\",\"valueOutline\":\"__VAR__GRAY\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}}',1),
('LAST_ON_END','','tabs','{\"valueLastTabBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS BOLD\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"\",\"padding-left\":\"15\"},\"valueActiveBorderColor\":\"\",\"valueTrackHeight\":\"5\",\"valuetabAlign\":\"right\",\"valueTabAlign\":\"center\",\"valueTabWhiteSpace\":\"nowrap\",\"valueScrollTouch\":\"true\",\"valueTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabSpace\":\"\",\"valueBorderBottom_multi\":[],\"valueTabWidth\":\"\",\"valueIconColorHover\":\"\",\"valueBorderActive\":\"\",\"valueActiveTabIndicatorOffset\":{\"first\":\"\",\"second\":\"\"},\"valueFullBGShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueScrollColor\":\"__VAR__COLOR_5\",\"valueFullBG\":\"false\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueContentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueBorderBottom\":\"\",\"valueContentPadding\":{\"0\":\"1\",\"1\":\"5\",\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTrackColor\":\"\",\"valueLastBorderHover\":\"\",\"valueIconSize\":\"\",\"valueFirstBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"stretch\"}],\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTabHeight\":\"\",\"valueLastTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsDirection\":\"h\",\"valueFullBGBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDisplay\":\"default\",\"valueFirstBorderHover\":\"\",\"valueActiveTabIndicator\":\"false\",\"valueFirstBorderActive\":\"\",\"valueActiveTabIndicatorColor\":\"__VAR__COLOR_11\",\"valueActiveTabIndicatorSize\":\"10\",\"valueLastBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFullBGBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContentBorder\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueFirstTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsBorder_multi\":[],\"valueContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueContentTypography\":\"\",\"valueLastTabAlign\":\"end\",\"valueTabsWidth\":\"50\",\"valueBorder_multi\":[],\"valueLastBorderActive\":\"\",\"valueIconColor\":\"\",\"valueActiveTabBottomColor\":\"__VAR__COLOR_12\",\"valueFont_multi\":[],\"valuePadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"valueTabsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueLastTabBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabWidth_multi\":[],\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLastTabFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueScroll\":\"true\",\"valueIconColorActive\":\"\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueLastTabFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_9\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}}',1),
('Accordion Menu','','menu','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueAccordionOpenIconHover\":\"\",\"valueAccordionCloseIconHover\":\"\",\"valueAccordionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueTextTruncate\":\"true\",\"valueCountBadge\":\"\",\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding_multi\":[],\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconSize\":\"18\",\"valueSFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"0\"},\"valueDropdownIndicator\":\"false\",\"valueStaticFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgePosition\":\"inline\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueIconActive\":\"\",\"valueSFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDisplay\":\"\",\"valueIconHover\":\"\",\"valueAccordionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueAccordionBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountBadgeVisibility\":\"true\",\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"8\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAccordionBorderHover\":\"\",\"valueIconColor\":\"__VAR__COLOR_17\",\"valueAccordionCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueFont_multi\":[],\"valueAccordionOpenIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueIconWidth\":\"20\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueItemSpacing\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('MOBILE','','accordion_menu','{\"valueAccordionCloseIconActive\":\"__VAR__COLOR_9\",\"valuePadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"0\",\"padding-bottom\":\"\",\"padding-left\":\"20\"},\"valueAccordionOpenIconActive\":\"__VAR__COLOR_9\",\"valueAccordionOpenIconHover\":\"\",\"valueAccordionCloseIconHover\":\"\",\"valueAccordionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueAccordionSubIconSize\":\"\",\"valueAccordionSubIconWidth\":\"\",\"valueAccordionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionSubPadding1\":\"15\",\"valueAccordionSubStyle1\":\"__VAR__Accordion Menu Level 2\",\"valueAccordionSubPadding2\":\"25\",\"valueAccordionSubStyle2\":\"\",\"valueAccordionSubPadding3\":\"35\",\"valueAccordionSubStyle3\":\"\",\"valueAccordionSubPadding4\":\"45\",\"valueAccordionSubStyle4\":\"\",\"valueAccordionSubIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAccordionOpenPadding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueAccordionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueAccordionBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionBorderHover\":\"\",\"valueAccordionCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb86\",\"name\":\"minus-circle2\"},\"type\":\"\",\"image\":\"\"},\"valueAccordionOpenIcon\":{\"size\":\"20\",\"color\":\"__VAR__GRAY\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eba1\",\"name\":\"plus-circle2\"},\"type\":\"\",\"image\":\"\"},\"valueAccordionMenuStyle\":\"__VAR__Accordion Menu\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('DEFAULT','','accordion_menu','{\"valueAccordionCloseIconActive\":\"__VAR__COLOR_9\",\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueAccordionOpenIconActive\":\"__VAR__COLOR_9\",\"valueAccordionOpenIconHover\":\"__VAR__COLOR_6\",\"valueAccordionCloseIconHover\":\"\",\"valueAccordionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueAccordionSubIconSize\":\"\",\"valueAccordionSubIconWidth\":\"\",\"valueAccordionBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionSubPadding1\":\"10\",\"valueAccordionSubStyle1\":\"__VAR__Accordion Menu Level 2\",\"valueAccordionSubPadding2\":\"20\",\"valueAccordionSubStyle2\":\"\",\"valueAccordionSubPadding3\":\"30\",\"valueAccordionSubStyle3\":\"\",\"valueAccordionSubPadding4\":\"40\",\"valueAccordionSubStyle4\":\"\",\"valueAccordionSubIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAccordionOpenPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueAccordionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueAccordionBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAccordionBorderHover\":\"\",\"valueAccordionCloseIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb85\",\"name\":\"minus2\"},\"type\":\"\",\"image\":\"\"},\"valueAccordionOpenIcon\":{\"size\":\"16\",\"color\":\"__VAR__GRAY\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eba0\",\"name\":\"plus2\"},\"type\":\"\",\"image\":\"\"},\"valueAccordionMenuStyle\":\"__VAR__Accordion Menu\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('MODULE TITLE','','title_module','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTitleContainerFont_multi\":[],\"valueSubtitle_multi\":[],\"valueContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSubtitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSubtitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSubtitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueTitleContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSubtitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDivider\":\"true\",\"valueTitleContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTitleContainerDisplay\":\"\",\"valueTitleContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueTitleContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS BOLD\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"uppercase\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_MEDIUM\"},\"valueSubtitle\":\"true\",\"valueSubtitleContainerDisplay\":\"\",\"valueSubtitleContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueTitleContainerOffset\":{\"first\":\"\",\"second\":\"\"},\"valueContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDividerHeight\":\"5\",\"valueContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueContainerDisplay\":\"\",\"valueAlign\":\"center\",\"valueDividerMargin\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueSubtitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueSubtitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTitleContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueSubtitleContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueSubtitleContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueFont_multi\":[],\"valueTitleContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueContainerPadding_multi\":[],\"valueTitleContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueSubtitleWidth\":\"900\",\"valueDividerWidth\":\"50\",\"valueContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}}',1),
('DEFAULT','DEFAULT','catalog','{\"valueItemsBoxShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueLinksBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTitleBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueItemLinkSpace_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"14\"}],\"valueLinksBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTextTruncate\":\"true\",\"valueLinksBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueTitleBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTitleFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemLinkFont_multi\":[],\"valueTitle\":\"\",\"valueItemViewMoreFont_multi\":[],\"valueItemLinkSpace\":\"6\",\"valueItemsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTitleBoxFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueItemsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueTitleBoxBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueItemsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueItemsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTitleBoxBorderHover\":\"\",\"valueViewIconHover\":\"\",\"valueItemViewMoreFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__COLOR_15\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"underline\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueTitleTruncate\":\"false\",\"valueTitleBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"5\",\"padding-left\":\"\"},\"valueItemLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueImagePosition_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"top\"}],\"valueLinksBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueViewIcon\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"true\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueItemLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLinksBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueItemViewMoreFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTitleBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__ACCENT_3\"},\"valueLinksBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueItemsBoxFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLinksBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueTitleBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueTitleMinHeight\":\"\",\"valueItemsBoxBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueLinksBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueImageMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"0\",\"margin-bottom\":\"15\",\"margin-left\":\"\"}}],\"valueTitleBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueImagePosition\":\"left\",\"valueTitleBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemsBoxBorderHover\":\"\",\"valueItemTitle\":\"\",\"valueItemsBoxPadding\":{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueViewMoreSpace_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"10\"}}],\"valueTitleMargin\":\"10\",\"valueTitleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS BOLD\",\"color\":{\"color\":\"__VAR__COLOR_2\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueGrayscale\":\"\",\"valueLinksBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueTitleBoxShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueImageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueTitleVisibility\":\"true\",\"valueItemsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueViewMoreSpace\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"valueItemsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueItemIcon\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e409\",\"name\":\"navigate_next\"},\"type\":\"\",\"image\":\"\"},\"valueLinksAlign\":\"start\",\"valueTitleAlign\":\"start\",\"valueItemIconHover\":\"\",\"valueTitleWidth\":\"full\",\"valueLinksBoxDisplay\":\"\"}',1),
('TESTIMONIALS','','carousel','{\"valueBullets\":\"true\",\"valueCarouselBulletsSize\":{\"first\":\"10\",\"second\":\"10\"},\"valueCarouselArrowSideIconNextActive\":\"\",\"valueCarouselArrowPosition\":\"side\",\"valueCarouselArrowSideBorderActive\":\"\",\"valueCarouselArrowSideBorderHover\":\"\",\"valueArrowsHover\":\"true\",\"valueCarouselArrowSideIconNextHover\":\"\",\"valueCarouselBulletBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCarouselArrowSideOffset\":{\"first\":\"-25\",\"second\":\"-12\"},\"valueCarouselArrowSideBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCarouselBulletBorderActive\":\"\",\"valueCarouselArrowSideIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c4\",\"name\":\"arrow_back\"},\"type\":\"\",\"image\":\"\"},\"valueCarouselBulletShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowSideDisabled\":\"0\",\"valueCarouselBulletColorHover\":\"__VAR__COLOR_6\",\"valueArrowsStatus\":\"none\",\"valueCarouselArrowSideShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueOverflow_multi\":[],\"valueCarouselArrowSideBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCarouselArrowSideIconActive\":\"\",\"valueCarouselArrowSideShadow\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.15)\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselBulletColor\":\"__VAR__COLOR_4\",\"valueCarouselBulletSpacing\":\"7\",\"valueCarouselArrowSideSize\":{\"first\":\"25\",\"second\":\"25\"},\"valueCarouselBulletBorderRadius\":{\"border-radius\":\"20\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCarouselBulletsPadding\":\"10\",\"valueCarouselBulletAlign\":\"center\",\"valueBulletsStatus\":\"always\",\"valueDelay\":\"3000\",\"valueOverflow\":\"true\",\"valueCarouselBulletsOffset\":{\"first\":\"\",\"second\":\"-15\"},\"valueCarouselBulletShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueAutoPlay\":\"true\",\"valueCarouselArrowSideIconHover\":\"\",\"valueCarouselArrowSideShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSpeed\":\"500\",\"valueCarouselBulletColorActive\":\"__VAR__COLOR_14\",\"valuePauseOnHover\":\"true\",\"valueCarouselBulletShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCarouselArrowSideIconNext\":{\"size\":\"\",\"color\":\"__VAR__COLOR_1\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueArrows\":\"true\",\"valueCarouselArrowSideBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBulletsHover\":\"true\",\"valueCarouselBulletBorderHover\":\"\",\"valueCarouselArrowSideBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCarouselBulletsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCarouselBulletPadding\":\"\",\"valueCarouselBulletBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCarouselArrowSideBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('BORDER','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_17\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_17\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":\"__VAR__LIGHT\",\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":\"__VAR__INNER\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_17\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"3\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_2\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"__VAR__COLOR_4\"}',1),
('DEFAULT','','tabs','{\"valueLastTabBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS BOLD\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"\",\"padding-left\":\"15\"},\"valueActiveBorderColor\":\"\",\"valueTrackHeight\":\"2\",\"valuetabAlign\":\"right\",\"valueTabAlign\":\"center\",\"valueTabWhiteSpace\":\"nowrap\",\"valueScrollTouch\":\"true\",\"valueTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabSpace\":\"\",\"valueBorderBottom_multi\":[],\"valueTabWidth\":\"\",\"valueIconColorHover\":\"\",\"valueBorderActive\":\"\",\"valueActiveTabIndicatorOffset\":{\"first\":\"\",\"second\":\"\"},\"valueFullBGShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueScrollColor\":\"__VAR__COLOR_5\",\"valueFullBG\":\"false\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueContentBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDivider\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueBorderBottom\":\"\",\"valueContentPadding\":{\"0\":\"1\",\"1\":\"5\",\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTrackColor\":\"\",\"valueLastBorderHover\":\"\",\"valueIconSize\":\"\",\"valueFirstBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"stretch\"}],\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTabHeight\":\"\",\"valueLastTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueContentBackground_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}],\"valueTabsDirection\":\"h\",\"valueFullBGBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDisplay\":\"default\",\"valueFirstBorderHover\":\"\",\"valueActiveTabIndicator\":\"false\",\"valueFirstBorderActive\":\"\",\"valueActiveTabIndicatorColor\":\"__VAR__COLOR_11\",\"valueActiveTabIndicatorSize\":\"10\",\"valueLastBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFullBGBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContentBorder\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueFirstTabBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsBorder_multi\":[],\"valueContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueContentTypography\":\"\",\"valueLastTabAlign\":\"group\",\"valueBackgroundHover_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}],\"valueTabsWidth\":\"50\",\"valueBorder_multi\":[],\"valueBackground_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}],\"valueLastBorderActive\":\"\",\"valueIconColor\":\"\",\"valueActiveTabBottomColor\":\"\",\"valueFont_multi\":[],\"valuePadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"8\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"valueTabsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueLastTabBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabWidth_multi\":[],\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLastTabFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueScroll\":\"true\",\"valueIconColorActive\":\"\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueLastTabFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"}}',1),
('DEFAULT','','side_posts','{\"valueNameBoxBorderHover\":\"\",\"valueSidePostBoxBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueSidePostBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStatContainerDisplay\":\"\",\"valueImageBorderHover\":\"\",\"valueImagePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStatContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueSidePostBoxFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSidePostBoxBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSidePostBoxBorderHover\":\"\",\"valueNameBoxShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSidePostBoxPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameStatus\":\"true\",\"valueNameBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSidePostBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueSidePostBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDateVisibility\":\"true\",\"valueSidePostBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSidePostBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameBoxDisplay\":\"\",\"valueStatFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStatContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueGrayscale\":\"hover\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"background-color\":\"__VAR__COLOR_9\"},\"valueCommentsVisibility\":\"true\",\"valueStatStatus\":\"true\",\"valueDateIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueSidePostBoxShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStatContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStatContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueNameBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueNameBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCommentsIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueNameBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameBoxFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameOverflow\":\"false\",\"valueNameBoxBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('DEFAULT','','info_block','{\"valuePadding\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueText2Visibility_multi\":[],\"valueText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueInfoBlockBorderHover\":\"__VAR__COLOR_7\",\"valueText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_8\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueInfoBlockPadding\":\"\",\"valueCountBadge\":\"\",\"valueInfoBlockText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING\"},\"valueIconSize_multi\":[],\"valueText1Visibility\":\"true\",\"valueInfoBlockPad\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_13\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueText2Visibility\":\"true\",\"valueIconPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueIconBorderRadius\":{\"border-radius\":\"50\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"%\"},\"valueContentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLastBorderHover\":\"\",\"valueIconSize\":{\"first\":\"60\",\"second\":\"60\"},\"valueFirstBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadowHover\":\"__VAR__LARGE\",\"valueInfoBlockBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueIconPosition_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"top\"}],\"valueInfoBlockShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueInfoBlockShadowHover\":\"__VAR__MEDIUM\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueInfoBlockIconPosition\":\"side\",\"valueText1Spacing\":\"\",\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFirstBorderHover\":\"\",\"valueIconMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"0\",\"margin-bottom\":\"10\",\"margin-left\":\"\"}}],\"valueIconPosition\":\"side\",\"valueLastBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueInfoBlockBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueInfoBlockText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconBorder\":{\"border-width\":\"2\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_17\"},\"valueCountBadgeVisibility\":\"false\",\"valueInfoBlockAlign\":\"left\",\"valueBorder_multi\":[],\"valueInfoBlockText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueIconMargin\":{\"padding-right\":\"\",\"padding-left\":\"\",\"margin-left\":\"\",\"padding-bottom\":\"\",\"margin-bottom\":\"\",\"margin\":\"\",\"padding\":\"\",\"margin-top\":\"\",\"padding-top\":\"\",\"margin-right\":\"15\"},\"valueText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconColor\":\"__VAR__ACCENT-1\",\"valuePadding_multi\":[],\"valueText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueInfoBlockBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_2\"},\"valueIconAlign\":\"center\",\"valueText1Font_multi\":[],\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"1\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_15\"},\"valueText2Font_multi\":[],\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_15\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\"}',1),
('TEXTAREA','','form_input','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"3\",\"spread\":\"\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWidth\":\"\",\"valueHeight\":\"\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBackgroundFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderFocus\":\"\",\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"__VAR__ACCENT_1\"}',1),
('SIMPLE','','category','{\"valueButtonTooltip\":\"\",\"valueDetailsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonIconHover\":\"\",\"valueButtonAlign\":\"center\",\"valueDescriptionContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonWidth\":\"auto\",\"valueDescriptionContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDescriptionContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerDisplay\":\"\",\"valueDescriptionContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorderHover\":\"\",\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameAlign\":\"center\",\"valueButtonTooltipPosition\":\"top\",\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIconHover\":\"\",\"valueButtonContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameWidth\":\"full\",\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"\",\"padding-left\":\"15\"},\"valueDescriptionContainerDisplay\":\"\",\"valueButtonContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameStatus\":\"true\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonTooltipStatus\":\"true\",\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueNameContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"-5\",\"margin-left\":\"\"},\"valueButtonContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsWidth\":\"150\",\"valueButtonButton\":\"__VAR__LINK\",\"valueButtonStatus\":\"false\",\"valueGrayscale\":\"\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueDescriptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePosition\":\"bottom\",\"valueDescriptionContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueNameContainerDisplay\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionStatus\":\"false\",\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameOverflow\":\"true\",\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueButtonDisplay\":\"both\"}',1),
('LINKS','','category','{\"valueButtonTooltip\":\"\",\"valueDetailsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonIconHover\":\"\",\"valueButtonAlign\":\"center\",\"valueDescriptionContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonWidth\":\"auto\",\"valueDescriptionContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDescriptionContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerDisplay\":\"\",\"valueDescriptionContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorderHover\":\"\",\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameAlign\":\"center\",\"valueButtonTooltipPosition\":\"top\",\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIconHover\":\"\",\"valueButtonContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameWidth\":\"full\",\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"\",\"padding-left\":\"15\"},\"valueDescriptionContainerDisplay\":\"\",\"valueButtonContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameStatus\":\"true\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonTooltipStatus\":\"true\",\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonRightIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueNameContainerMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"-5\",\"margin-left\":\"\"},\"valueButtonContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameContainerFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsWidth\":\"150\",\"valueButtonButton\":\"__VAR__LINK\",\"valueButtonStatus\":\"false\",\"valueGrayscale\":\"\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueDescriptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePosition\":\"bottom\",\"valueDescriptionContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonContainerBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueNameContainerDisplay\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionStatus\":\"false\",\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameOverflow\":\"true\",\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonContainerSize\":{\"first\":\"\",\"second\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valueButtonDisplay\":\"both\"}',1),
('MEDIUM','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"8\",\"padding-left\":\"\"},\"valueDividerSize\":{\"first\":\"\",\"second\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDividerTopSpacing\":\"\",\"valueTruncate\":\"false\",\"valueFont_multi\":[],\"valueDividerStatus\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueDividerAlign\":\"\",\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"15\",\"margin-left\":\"\"}}',1),
('MINIMAL','','product_grid','{\"valueExtraButtonDisplay1\":\"both\",\"valueRatingVisibility\":\"false\",\"valueStepper\":\"\",\"valueExtraVisibility1\":\"true\",\"valueExtraAlign_multi\":[],\"valueWishGroupListAlign\":\"right\",\"valueDescriptionBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat1BoxSize\":{\"first\":\"\",\"second\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDetailsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsStatus\":\"false\",\"valueCountdown\":\"\",\"valueCompareTooltipStatus\":\"true\",\"valueExtraButtonDisplay2\":\"both\",\"valueDescriptionBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraVisibility2\":\"true\",\"valueNameBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueListDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQuickviewDisplay\":\"icon\",\"valuePriceBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueLabelsVisibility\":\"false\",\"valueNameBoxPadding\":{\"padding\":\"\",\"padding-top\":\"7\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDescriptionBoxDisplay\":\"\",\"valueCompareMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueQuickviewTooltip\":\"\",\"valuePriceTaxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"left\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valueQuickviewIconHover\":\"\",\"valuePriceBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingPadding\":{\"padding\":\"4\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameAlign_multi\":[],\"valueStatsPadding\":{\"padding\":\"4\",\"padding-top\":\"\",\"padding-right\":\"8\",\"padding-bottom\":\"\",\"padding-left\":\"8\"},\"valueCartButton\":\"__VAR__LINK\",\"valueStat1BoxDisplay\":\"\",\"valueExtraButtonVisibility\":\"false\",\"valueRatingCountdown\":\"\",\"valueGridBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartStatus\":\"true\",\"valueExtraButtonButton\":\"\",\"valueButtonsBoxBackground_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}],\"valueRatingStyle\":\"\",\"valueExtraButtonTooltipStatus\":\"true\",\"valueNameWidth_multi\":[],\"valuePriceBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueCartTooltipStatus\":\"true\",\"valueStat2BoxDisplay\":\"\",\"valueExtraMargin1\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishlistMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"5\"},\"valueQuickviewAlign\":\"top\",\"valuePriceTaxStatus\":\"false\",\"valueStatsLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStatsBoxDisplay\":\"\",\"valueRatingBoxDisplay\":\"\",\"valueNameFont_multi\":[],\"valueExtraMargin2\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingAlignHover\":\"center\",\"valueExtraBoxPadding\":{\"padding\":\"4\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBoxListBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtraIcond2\":\"\",\"valueExtraAlign\":\"apart\",\"valueStatsLabel\":\"false\",\"valuePriceMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueCompareButton\":\"__VAR__LINK\",\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCompareStatus\":\"true\",\"valueImageBorderHover\":\"__VAR__ACCENT_3\",\"valueDescriptionPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBoxListBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraButtonIcon1\":{\"color\":\"__VAR__COLOR_9\"},\"valueButtonsBoxListMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsBoxDisplay\":\"\",\"valueStepperHeight\":\"36\",\"valuePriceAlign_multi\":[],\"valueImagePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"left\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueButtonsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCompareOffset\":{\"first\":\"\",\"second\":\"\"},\"valueExtraButtonIcon2\":{\"color\":\"__VAR__COLOR_6\"},\"valueWishlistButton\":\"__VAR__LINK\",\"valueWishlistStatus\":\"true\",\"valueButtonsBoxListFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSecondImageStatus\":\"false\",\"valueStatsLink\":\"\",\"valueNameBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtraPosition\":\"bottom\",\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsBoxListDisplay\":\"\",\"valueNameAlign\":\"start\",\"valueWishButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueDescriptionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIcon\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"2\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"2\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\",\"size\":\"18\"},\"type\":\"\",\"image\":\"\"},\"valuePriceStatus\":\"true\",\"valueNameMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtraButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\",\"size\":\"18\"},\"type\":\"\",\"image\":\"\"},\"valueButtonsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishGroupPosition_multi\":[],\"valueWishGroupCountdown\":\"\",\"valueStat2BoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameWidth\":\"full\",\"valueWishOffset\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewTooltipPosition\":\"top\",\"valueRatingBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat1BoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueExtraBorder\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDescriptionShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartDisplay_multi\":[],\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueStat2BoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtraBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat2BoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStat1\":\"brand\",\"valueWishlistDisplay\":\"icon\",\"valueRatingBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStepperStatus_multi\":[],\"valueStatsLabel2\":\"false\",\"valueStatsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingEmptyOpacity\":\"0.5\",\"valueWishlistTooltip\":\"\",\"valueCompareIcon\":{\"size\":\"14\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueStat2\":\"model\",\"valueNameBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueExtraBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueStat2BoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishlistIconHover\":\"\",\"valueExtraIconHover1\":\"\",\"valueStat1BoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStat1BoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceAlign\":\"start\",\"valueStatsHover\":\"\",\"valueStatsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWishButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStat1BoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDescriptionBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStepperMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceWidth\":\"auto\",\"valueNameStatus\":\"true\",\"valueExtraIconHover2\":\"\",\"valueCompareDisplay\":\"icon\",\"valueDescriptionBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCompareIconHover\":\"\",\"valueButtonsAlign_multi\":[],\"valuePriceBoxDisplay\":\"\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraIcon1h\":\"\",\"valueCompareTooltip\":\"\",\"valueDetailsList\":\"side\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishlistIcon\":{\"size\":\"15\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueButtonsBoxPadding_multi\":[],\"valueNameBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueWishGroupPosition\":\"cart\",\"valueButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraButton\":\"\",\"valueExtraButtonStyle1\":\"__VAR__LINK\",\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraButtonDisplay\":\"both\",\"valueCartDisplay\":\"icon\",\"valuePriceBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDescriptionBoxPadding\":{\"padding\":\"12\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valueStepperStatus\":\"false\",\"valueCompareOffsetBottom\":{\"first\":\"\",\"second\":\"\"},\"valueExtraButtonStyle2\":\"__VAR__LINK\",\"valueExtraButtonTooltip\":\"\",\"valueExtraPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishlistGroupPosition\":\"group\",\"valueExtraButtonIconHover\":\"\",\"valueStat1BoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCartTooltip\":\"\",\"valueCountdownVisibility\":\"false\",\"valueCartIconHover\":\"\",\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCountdownOffset\":\"\",\"valueStat2BoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBoxDisplay\":\"\",\"valueButtonsSpacing\":\"\",\"valueQuickviewVisibility\":\"true\",\"valueQuickviewButton\":\"__VAR__LIGHT\",\"valuePriceBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsPosition_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"top\"}],\"valueStatsBoxPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"8\",\"padding-bottom\":\"4\",\"padding-left\":\"8\"},\"valueRatingBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valuePriceBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewOffset\":{\"first\":\"\",\"second\":\"\"},\"valueListSpacing\":\"\",\"valueQuickviewTooltipStatus\":\"true\",\"valueButtonsAlign\":\"center\",\"valueWishGroupMargin\":{\"margin\":\"-10\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueStatsFont2\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNamePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueWishGroupHover\":\"false\",\"valueButtonsBoxPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishlistTooltipPosition\":\"top\",\"valueGrayscale\":\"\",\"valuePriceBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishOffsetBottom\":{\"first\":\"\",\"second\":\"\"},\"valueExtraBoxDisplay\":\"\",\"valueImageBorder\":{\"border-width\":\"5\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__ACCENT_2\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceNewFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBoxListBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishButtonsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsPosition\":\"top\",\"valueRatingAlign\":\"center\",\"valueRatingPosition\":\"hover\",\"valueWishButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDescriptionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsAlign\":\"apart\",\"valueStatsLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCompareTooltipPosition\":\"top\",\"valuePriceShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBoxListPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQuickviewShow_multi\":[],\"valueButtonsBoxListShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraIcon1\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueButtonsPosition\":\"hover\",\"valueButtonsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valuePricePadding\":{\"padding\":\"\",\"padding-top\":\"5\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDescriptionMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueExtraBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtraIcon2\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueNameBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxListSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueQuickviewIcon\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"eb54\",\"name\":\"eye2\"},\"type\":\"\",\"image\":\"\"},\"valueExtraButtonTooltipPosition\":\"top\",\"valueRatingBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueRatingOffsetHover\":{\"first\":\"\",\"second\":\"\"},\"valueNameBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCartTooltipPosition\":\"top\",\"valueExtraBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraButtonDisplay2_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"icon\"}],\"valueButtonsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat2BoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueStatsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"7\",\"margin-left\":\"\"},\"valueButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueButtonsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueStatsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionStatus\":\"false\",\"valueStat1BoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueCountdownShow\":\"always\",\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueNameBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePriceOldFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_14\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"line-through\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__EXTRA_SMALL\"},\"valueRatingBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewShow\":\"hover\",\"valueButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueNameOverflow\":\"true\",\"valueStat2BoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStat2BoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBorderHover\":\"\",\"valueExtraButtonMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStat1BoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWishlistTooltipStatus\":\"true\",\"valueRatingEmpty\":\"false\"}',1),
('LIGHT','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_17\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"none\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('DARK','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_2\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('SIDE_COLUMN','','side_products','{\"valueRatingVisibility\":\"true\",\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"8\",\"padding-left\":\"\"},\"valueDetailsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"1\",\"margin-left\":\"\"},\"valueNameBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQuickviewTooltip\":\"\",\"valuePriceTaxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valueQuickviewIconHover\":\"\",\"valuePriceBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"2\"},\"valueRatingStyle\":\"\",\"valuePriceBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePriceTaxStatus\":\"false\",\"valueRatingBoxDisplay\":\"\",\"valuePriceMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueImageBorderHover\":\"\",\"valueImagePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"8\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_15\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueSecondImageStatus\":\"false\",\"valueNameBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameAlign\":\"start\",\"valueRatingBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceStatus\":\"true\",\"valueNameMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueNameWidth\":\"auto\",\"valueQuickviewTooltipPosition\":\"top\",\"valueRatingBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRatingBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNameBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valuePriceAlign\":\"start\",\"valueRatingShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceWidth\":\"auto\",\"valueNameStatus\":\"true\",\"valuePriceBoxDisplay\":\"\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueNameBoxDisplay\":\"\",\"valueQuickviewVisibility\":\"true\",\"valueQuickviewButton\":\"__VAR__SMALL\",\"valuePriceBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRatingBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewOffset\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewTooltipStatus\":\"true\",\"valueNamePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueGrayscale\":\"\",\"valuePriceBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceNewFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingAlign\":\"start\",\"valuePriceShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePricePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRatingBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueQuickviewIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f06e\",\"name\":\"eye\"},\"type\":\"\",\"image\":\"\"},\"valueRatingBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueNameBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRatingMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"2\",\"margin-left\":\"\"},\"valueNameBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRatingBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePriceOldFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_14\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"line-through\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALLER\"},\"valueRatingBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewShow\":\"hover\",\"valueNameOverflow\":\"false\",\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\",\"valuePriceBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRatingEmpty\":\"true\"}',1),
('DEFAULT','DEFAULT','product_grid','{\"valueExtraButtonDisplay1\":\"both\",\"valueRatingVisibility\":\"true\",\"valueStepper\":\"__VAR__DEFAULT\",\"valueExtraVisibility1\":\"true\",\"valueExtraAlign_multi\":[],\"valueWishGroupListAlign\":\"right\",\"valueDescriptionBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat1BoxSize\":{\"first\":\"\",\"second\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCartPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDetailsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsStatus\":\"true\",\"valueCountdown\":\"\",\"valueCompareTooltipStatus\":\"true\",\"valueExtraButtonDisplay2\":\"both\",\"valueDescriptionBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraVisibility2\":\"true\",\"valueNameBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLayoutShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueListDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceFont_multi\":[],\"valueQuickviewDisplay\":\"icon\",\"valuePriceBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valuePriceBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueLabelsVisibility\":\"\",\"valueButtonsVisibility\":\"true\",\"valueNameBoxPadding\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"5\",\"padding-left\":\"\"},\"valueDescriptionBoxDisplay\":\"\",\"valueLabelsStatus\":\"always\",\"valueCompareMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueQuickviewTooltip\":\"\",\"valuePriceTaxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"12\"},\"valueExtraPosition_multi\":[],\"valueQuickviewIconHover\":\"\",\"valueNameBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewSize\":{\"first\":\"\",\"second\":\"\"},\"valuePriceBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingPadding\":{\"padding\":\"4\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsPadding\":{\"padding\":\"4\",\"padding-top\":\"\",\"padding-right\":\"8\",\"padding-bottom\":\"\",\"padding-left\":\"8\"},\"valueCartButton\":\"__VAR__LIGHT\",\"valueStat1BoxDisplay\":\"\",\"valueExtraButtonVisibility\":\"true\",\"valueRatingCountdown\":\"\",\"valueGridBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartStatus\":\"true\",\"valueExtraButtonButton\":\"\",\"valueRatingStyle\":\"\",\"valueExtraButtonTooltipStatus\":\"true\",\"valuePriceBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueCartTooltipStatus\":\"true\",\"valueStat2BoxDisplay\":\"\",\"valueExtraMargin1\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishlistMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueQuickviewAlign\":\"center\",\"valuePriceTaxStatus\":\"false\",\"valueStatsLinkFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStatsBoxDisplay\":\"\",\"valueNamePosition\":\"default\",\"valueRatingBoxDisplay\":\"\",\"valueNameFont_multi\":[],\"valueExtraMargin2\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingAlignHover\":\"center\",\"valueExtraBoxPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBoxListBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtraIcond2\":\"\",\"valueExtraAlign\":\"apart\",\"valueSecondImagePerspective\":\"1250\",\"valueStatsLabel\":\"false\",\"valuePriceMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"10\",\"margin-left\":\"\"},\"valueCompareButton\":\"__VAR__LIGHT\",\"valueImageOverlay\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valuePriceBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueCompareStatus\":\"true\",\"valueImageBorderHover\":\"\",\"valueDescriptionPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBoxListBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueExtraButtonIcon1\":{\"color\":\"__VAR__COLOR_9\"},\"valueSecondImageEffect\":\"fade\",\"valueQuickviewStockStatus\":\"\",\"valueButtonsBoxListMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsBoxDisplay\":\"\",\"valueStepperHeight\":\"37\",\"valueImagePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valueButtonsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCompareOffset\":{\"first\":\"\",\"second\":\"\"},\"valueStockStatFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraButtonIcon2\":{\"color\":\"__VAR__COLOR_6\"},\"valueWishlistButton\":\"__VAR__LIGHT\",\"valueWishlistStatus\":\"true\",\"valueButtonsBoxListFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSecondImageStatus\":\"true\",\"valueStatsLink\":\"\",\"valueNameBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtraPosition\":\"bottom\",\"valueImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueButtonsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsBoxListDisplay\":\"\",\"valueNameAlign\":\"center\",\"valueBorderRadius_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"}}],\"valueWishButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\"},\"valueDescriptionBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_17\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueRatingBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueLayoutBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueStatsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartIcon\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"2\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"2\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\",\"size\":\"18\"},\"type\":\"\",\"image\":\"\"},\"valuePriceStatus\":\"true\",\"valueNameMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtraButtonIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\",\"size\":\"18\"},\"type\":\"\",\"image\":\"\"},\"valueButtonsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueWishGroupPosition_multi\":[],\"valueWishGroupCountdown\":\"\",\"valueStat2BoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameWidth\":\"auto\",\"valueWishOffset\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewTooltipPosition\":\"top\",\"valueRatingBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueShadowHover\":\"__VAR__LARGE\",\"valueStat1BoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__COLOR_2\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valueExtraBorder\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueStatsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"__VAR__COLOR_3\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueDescriptionShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"icon\"}],\"valueDetailsShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsBoxListOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDescriptionBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueStat2BoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStepperBorder\":{\"width\":\"\",\"style\":\"\",\"color\":\"\"},\"valueExtraBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat2BoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueStat1\":\"brand\",\"valueWishlistDisplay\":\"icon\",\"valueRatingBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStepperStatus_multi\":[],\"valueStatsLabel2\":\"false\",\"valueStatsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingEmptyOpacity\":\"0.5\",\"valueWishlistTooltip\":\"\",\"valueCompareIcon\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueStat2\":\"stock\",\"valueNameBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueExtraBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueStat2BoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishlistIconHover\":\"\",\"valueExtraIconHover1\":\"\",\"valueStat1BoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueStat1BoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueImageOverlayHeight\":\"\",\"valuePriceAlign\":\"center\",\"valueExtraMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsHover\":\"\",\"valueStatsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWishButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStatsBoxPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"valueDescriptionBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueStat1BoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDescriptionBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStepperMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"-2\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceWidth\":\"auto\",\"valueNameStatus\":\"true\",\"valueExtraIconHover2\":\"\",\"valueButtonsBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueCompareDisplay\":\"icon\",\"valueDescriptionBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCompareIconHover\":\"\",\"valueButtonsAlign_multi\":[],\"valueCartWidth_multi\":[],\"valueQuickviewMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceBoxDisplay\":\"\",\"valueDetailsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueNameBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraIcon1h\":\"\",\"valueCartBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCompareTooltip\":\"\",\"valueDetailsList\":\"side\",\"valueBorderRadius\":{\"border-radius\":\"8\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueWishlistIcon\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueStatsBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueNameBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishGroupPosition\":\"cart\",\"valueButtonsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraButton\":\"\",\"valueExtraButtonStyle1\":\"__VAR__LINK\",\"valueNameFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraButtonDisplay\":\"both\",\"valueCartDisplay\":\"both\",\"valueStat2BoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePriceBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDescriptionBoxPadding\":{\"padding\":\"12\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valueStepperStatus\":\"false\",\"valueCompareBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueStepperRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCompareOffsetBottom\":{\"first\":\"\",\"second\":\"\"},\"valueExtraButtonStyle2\":\"__VAR__LINK\",\"valueExtraButtonTooltip\":\"\",\"valueExtraPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishlistGroupPosition\":\"group\",\"valueExtraButtonIconHover\":\"\",\"valueStat1BoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueStat1BoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishlistStockStatus\":\"\",\"valueCartTooltip\":\"\",\"valueCountdownVisibility\":\"false\",\"valueCartIconHover\":\"\",\"valueImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartSize\":{\"first\":\"\",\"second\":\"\"},\"valueButtonsBoxBackgroundHover\":{\"background-color\":\"__VAR__COLOR_17\"},\"valueCountdownOffset\":\"\",\"valueDescriptionBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueStat2BoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameBoxDisplay\":\"\",\"valueButtonsSpacing\":\"\",\"valueQuickviewVisibility\":\"true\",\"valueQuickviewButton\":\"__VAR__LIGHT\",\"valueLayoutBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valuePriceBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsPosition_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"bottom\"}],\"valueStatsBoxPadding\":{\"padding\":\"7\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRatingBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valuePriceBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewOffset\":{\"first\":\"\",\"second\":\"\"},\"valueListSpacing\":\"\",\"valueQuickviewTooltipStatus\":\"true\",\"valueCompareStockStatus\":\"\",\"valueButtonsAlign\":\"center\",\"valueCartWidth\":\"auto\",\"valueWishGroupMargin\":{\"margin\":\"-10\",\"margin-top\":\"10\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueWishButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueCompareSize\":{\"first\":\"\",\"second\":\"\"},\"valueStatsFont2\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueNamePadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtra2StockStatus\":\"\",\"valueWishGroupHover\":\"false\",\"valueExtra1StockStatus\":\"\",\"valueButtonsBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishlistTooltipPosition\":\"top\",\"valueWishBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueGrayscale\":\"\",\"valueImageOverlayHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valuePriceBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishOffsetBottom\":{\"first\":\"\",\"second\":\"\"},\"valueExtraBoxDisplay\":\"\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDetailsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"__VAR__COLOR_1\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valuePriceNewFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__COLOR_9\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBoxListBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueWishButtonsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueStatsPosition\":\"top\",\"valueRatingAlign\":\"center\",\"valueRatingPosition\":\"image\",\"valueWishButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartStockStatus\":\"\",\"valueDescriptionBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsAlign\":\"center\",\"valueStatsLinkFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"}}],\"valueImageMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueNameOverflow_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"true\"}],\"valueCompareTooltipPosition\":\"top\",\"valuePriceShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceOldPosition\":\"side\",\"valueImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueExtraBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":{\"color\":\"__VAR__ACCENT_3\"}},\"valueButtonsBoxListPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQuickviewShow_multi\":[],\"valueButtonsBoxListShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraIcon1\":{\"size\":\"\",\"color\":\"__VAR__COLOR_9\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueWishSize\":{\"first\":\"\",\"second\":\"\"},\"valueButtonsPosition\":\"hover\",\"valueButtonsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valuePricePadding\":{\"padding\":\"\",\"padding-top\":\"5\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDescriptionMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDescriptionFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueExtraBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtraIcon2\":{\"size\":\"\",\"color\":\"__VAR__COLOR_6\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueNameBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueButtonsBoxListSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"__VAR__COLOR_1\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueStatsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueQuickviewIcon\":{\"size\":\"16\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f06e\",\"name\":\"eye\"},\"type\":\"\",\"image\":\"\"},\"valueExtraButtonTooltipPosition\":\"top\",\"valueLayoutShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRatingBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueRatingOffsetHover\":{\"first\":\"\",\"second\":\"\"},\"valueNameBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCartTooltipPosition\":\"top\",\"valueExtraBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtraButtonDisplay2_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"icon\"}],\"valueButtonsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStat2BoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueStatsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"7\",\"margin-left\":\"\"},\"valueButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueButtonsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueStatsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueNameShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStatsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtraButtonVisibility_multi\":[],\"valueDescriptionStatus\":\"false\",\"valueStat1BoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCountdownShow\":\"always\",\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueNameBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueNameBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueDetailsBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueComparePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCartBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":{\"color\":\"\"}},\"valueRatingBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceBoxPadding\":{\"padding\":\"8\",\"padding-top\":\"5\",\"padding-right\":\"0\",\"padding-bottom\":\"\",\"padding-left\":\"0\"},\"valueNameBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePriceOldFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__GRAY\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"line-through\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueRatingBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueQuickviewShow\":\"hover\",\"valueButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueWishGroupAlign\":\"start\",\"valueNameOverflow\":\"false\",\"valueStat2BoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDescriptionBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDetailsBorderHover\":\"\",\"valueDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueQuickviewBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueStat2BoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBorderHover\":\"\",\"valueExtraButtonMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__ACCENT_3\"},\"valueExtraBoxPadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"valueStat1BoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueWishlistTooltipStatus\":\"true\",\"valueRatingEmpty\":\"false\",\"valueExtraBoxOffset\":{\"first\":\"\",\"second\":\"\"}}',1),
('PRODUCTS','','accordion','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"none\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"13\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBodyBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__TRANSPARENT\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBodyMargin\":{\"padding\":\"\",\"padding-top\":\"15\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDivider\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueOuterBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueIcon\":{\"size\":\"18\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"8\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"caret-right\",\"code\":\"f0da\"},\"type\":\"\",\"image\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueIconActive\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"caret-down\",\"code\":\"f0d7\"},\"type\":\"\",\"image\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBodyBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueSpacing\":\"-1\",\"valueIconHover\":\"\",\"valueBodyShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadiusActive\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadowActive\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_15\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBodyPadding\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"20\",\"padding-left\":\"\"},\"valueBodyBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1);
INSERT INTO `oc_journal3_style` VALUES
('DEFAULT','','product_page','{\"valueExtraButtonDisplay1\":\"both\",\"valueRatingVisibility\":\"true\",\"valueRatingBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraButtonIconHover2\":\"\",\"valueRightBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueProductInStockText\":{\"lang_1\":\"In Stock\"},\"valueExtraVisibility1\":\"true\",\"valueStatsBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueAdditionalImagesBorderHover\":\"__VAR__ACCENT-1\",\"valueCountdownTextBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueButtonsSortOrder\":\"3\",\"valueCountdownBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueOptionsFormStyle\":\"__VAR__Label on Top\",\"valueOptionsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePushImageBorderHover\":\"__VAR__COLOR_5\",\"valueCartPadding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"\",\"padding-left\":\"20\"},\"valueRightBoxStylesDisplay\":\"\",\"valueTaxBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCloudZoomPosition\":\"inner\",\"valueDetailsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountdown\":\"__VAR__DEFAULT\",\"valueTaxBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueProductLocationText\":{\"lang_1\":\"Location\"},\"valueCompareTooltipStatus\":\"true\",\"valueExtraButtonDisplay2\":\"icon\",\"valueCountdownTextBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueGallery\":\"__VAR__WHITE-BG\",\"valueExtraVisibility2\":\"true\",\"valueLeftBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueAdditionalImagesPadding\":\"\",\"valueAdditionalImagesCarouselStyle\":\"__VAR__VERTICAL_IMAGES\",\"valueButtonsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueExtraButton2\":\"__VAR__RED\",\"valueOptionsBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueDiscountFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__GRAY\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valuePriceUpdate\":\"false\",\"valueProductISBNText\":{\"lang_1\":\"ISBN\"},\"valuePushOptionsBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBrandNameLinkHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStockLabelVisibility\":\"true\",\"valuePushTooltipPosition\":\"top\",\"valueExtraWidth_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"auto\"}],\"valueSoldViewBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueExtraButtonIcon1_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"0\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}],\"valueProductEANText\":{\"lang_1\":\"EAN\"},\"valuePriceBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBlocksTopBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCountdownTextBoxStylesDisplay\":\"\",\"valueCompareMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"15\"},\"valueAdditionalImagesStatus\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\",\"customer_groups\":[\"1\"]},\"valueSplitRatio\":\"50\",\"valueRatingSortOrder\":\"100\",\"valueStatsSortOrder\":\"0\",\"valuePushImageBorderActive\":\"__VAR__COLOR_5\",\"valueExtraButtonIcon2_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"0\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}],\"valuePageMaxWidth\":\"\",\"valueCountdownMaxWidth\":\"\",\"valueOldPriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__GRAY\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"line-through\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__LARGE\"},\"valuePushOptionsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRewardsFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueRightBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueOptionsBoxStylesDisplay\":\"\",\"valueRatingBoxStylesDisplay\":\"\",\"valueProductWeightText\":{\"lang_1\":\"Weight\"},\"valuePriceBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueAdditionalImagesPad\":{\"padding\":\"-10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\",\"margin\":\"-10\"},\"valueRatingPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCartVisibility\":\"true\",\"valueLeftBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueViewsValueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSoldViewBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtraDisplay\":\"both\",\"valueCartButton\":\"__VAR__DEFAULT\",\"valueExtraButtonsAlign\":\"right\",\"valueRightBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueOptionsSortOrder\":\"2\",\"valueStatsBoxStylesDisplay\":\"\",\"valueLeftBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsBoxStylesBorder_multi\":[],\"valuePriceNewBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsBoxStylesDisplay\":\"\",\"valueBrandImageBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valuePriceOldBoxStylesDisplay\":\"\",\"valueCountdownBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartIcon_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"0\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"}}],\"valueDetailsBoxStylesBackground_multi\":[],\"valueCartTooltipStatus\":\"true\",\"valueOptionsTitleRecurringVisibility\":\"true\",\"valueExtraIconHover\":\"\",\"valueExtraMargin1\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"10\"},\"valueSoldViewBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valuePriceGroupBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueLeftBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStockBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDiscountVisibility\":\"true\",\"valueQtySelector\":\"__VAR__DEFAULT\",\"valueRewardsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueTaxBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueAdditionalImagesHeightAdjustment\":\"5\",\"valueWishlistMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtra1Visibility\":\"\",\"valueButtonsBoxStylesBackground_multi\":[],\"valuePriceNewBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueProductStockText\":{\"lang_1\":\"Stock\"},\"valuePushOptionsBorderActive\":\"__VAR__COLOR_5\",\"valueExtraMargin2\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"10\"},\"valueButtonsBoxStylesDisplay\":\"\",\"valueExtra2Visibility\":\"\",\"valueOldPriceVisibility\":\"true\",\"valueRewardsVisibility\":\"true\",\"valuePriceGroupBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRewardsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"5\",\"margin-right\":\"\",\"margin-bottom\":\"5\",\"margin-left\":\"\"},\"valueStockBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBlocksBottomBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueCompareVisibility\":\"true\",\"valueWishlistDisplay_multi\":[],\"valuePriceNewBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueExtraGroupWidth\":\"auto\",\"valueBrandImageBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMoreDetailsDisplay\":\"icon\",\"valueViewsLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCompareButton\":\"__VAR__LINK\",\"valueDetailsBoxStylesDisplay\":\"\",\"valueExtraHeight\":\"\",\"valueRewardsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueProductJANText\":{\"lang_1\":\"JAN\"},\"valueExtraButtonIcon1\":{\"size\":\"17\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valuePriceGroupBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueStockBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueMoreDetailsIconHover\":\"\",\"valueRewardsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishButtonsBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueImageCarouselStyle\":\"\",\"valueExtraMargin_multi\":[],\"valueBrandImageBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueAdditionalImagesItemsPerRow_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"4\"}],\"valuePriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__HEADINGS BOLD\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_MEDIUM\"},\"valueCompareIcon_multi\":[],\"valueStatsIcon\":{\"size\":\"10\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f054\",\"name\":\"chevron-right\",\"size\":\"10\"},\"type\":\"\",\"image\":\"\"},\"valueTitle\":\"\",\"valueDiscountsBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePushOptionsBackgroundActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraWidth\":\"full\",\"valuePriceBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueExtraButtonIcon2\":{\"size\":\"17\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valuePushOptionsFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueProductDimension\":\"true\",\"valueOutStockFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishlistButton\":\"__VAR__LINK\",\"valueWishButtonsPadding\":{\"padding\":\"\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueLeftBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCompareDisplay_multi\":[],\"valueTagsSort\":\"\",\"valueWishlistVisibility\":\"true\",\"valueDiscountsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueWishButtonsBG_multi\":[],\"valueImageBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCloudZoomStatus\":\"true\",\"valueBlocksBottomBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueWishlistIcon_multi\":[],\"valuePushOptionsShadowHover\":\"__VAR__LIGHT\",\"valueButtonsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueOptionsSelect\":\"none\",\"valueNewPriceFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_9\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTaxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__GRAY\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMoreDetailsWidth\":\"full\",\"valueCartIcon\":{\"size\":\"17\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueDetailsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceOldBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueNameMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueTabsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueRewardsBoxDisplay\":\"\",\"valueWishlistWidth_multi\":[],\"valueOptionsPushCheckbox\":\"true\",\"valueTitlePosition_multi\":[],\"valueProductUPC\":\"true\",\"valueViewsText\":{\"lang_1\":\"Product Views:\"},\"valueDetailsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"15\",\"margin-left\":\"\"},\"valueDiscountsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceVisibility\":\"true\",\"valueStatsPriceAlign\":\"side\",\"valueMoreDetailsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBrandImageBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDiscountsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueDetailsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueExtraWidth2\":\"full\",\"valueStatsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStockBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceGroupBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueNameFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAdditionalImagesGutter\":{\"margin\":\"-5\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueBlocksBottomBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueImageZoomBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueOptionsTitle\":\"__VAR__MEDIUM\",\"valueCartDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"icon\"}],\"valueRewardsBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueCountdownBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueProductModel\":\"true\",\"valueButtonsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCountdownTextBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsDisplay_multi\":[],\"valueAdditionalImagesShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceNewBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueQtyHeight\":\"47\",\"valueAdditionalImagesSpaceB\":\"\",\"valueOptionsBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishlistDisplay\":\"both\",\"valuePriceOldBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"10\"},\"valuePushImageShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTabsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueButtonsMaxWidth_multi\":[],\"valuePriceOldBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueTabsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCompareWidth_multi\":[],\"valueTaxVisibility\":\"true\",\"valueProductSKUText\":{\"lang_1\":\"SKU\"},\"valueBlocksBottomBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueProductMPN\":\"true\",\"valuePriceOldBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAdditionalImagesItemsPerRow\":\"6\",\"valueWishAlign\":\"left\",\"valueTabsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCompareIcon\":{\"size\":\"17\",\"color\":\"__VAR__COLOR_5\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCountdownText\":{\"lang_1\":\"Hurry, this offer ends in:\"},\"valueCountdownBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBlocksTopBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueRatingBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueWishlistIconHover\":\"\",\"valueLeftBoxStylesDisplay\":\"\",\"valueProductReward\":\"true\",\"valueStatsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraTooltipPosition\":\"top\",\"valueQtyMargin_multi\":[],\"valuePriceAlign\":\"left\",\"valueExtraMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePriceBoxStylesDisplay\":\"\",\"valueCountdownBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueRatingBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueAdditionalImagesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCountdownTextBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMoreDetailsButton\":\"__VAR__LARGE\",\"valueStatsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStats\":\"true\",\"valueCountdownTextBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueOptionsBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRightBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBoxStylesPadding_multi\":[],\"valueOptionsBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueSoldViewBoxStylesPadding\":{\"padding\":\"5\",\"padding-top\":\"\",\"padding-right\":\"10\",\"padding-bottom\":\"\",\"padding-left\":\"10\"},\"valueBlocksBottomSortOrder\":\"\",\"valueMoreDetailsVisibility\":\"true\",\"valueCountdownOrder\":\"-1\",\"valueNameVisibility\":\"false\",\"valueCompareDisplay\":\"both\",\"valuePushImageBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCompareIconHover\":\"\",\"valueCountdownTextBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCartWidth_multi\":[],\"valueProductManufacturer\":\"true\",\"valueOldPriceDisplay\":\"right\",\"valueTaxBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueSoldViewBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueOptionsBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueDetailsBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueRightBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBlocksTopBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueCartBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueInStockFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_9\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueWishlistIcon\":{\"size\":\"17\",\"color\":\"__VAR__COLOR_6\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valuePushOptionsSpacing\":\"8\",\"valueWishlistWidth\":\"auto\",\"valuePushImageShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBlocksTopBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueTitlePosition\":\"top\",\"valueAdditionalImagesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueRightBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueButtonsBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueAdditionalImagesCarousel\":\"false\",\"valueProductViews\":\"true\",\"valueImageBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-width\":\"2\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_3\"}}],\"valueMoreDetailsTooltipPosition\":\"top\",\"valueExtra1BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueRightBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueTaxBoxDisplay\":\"\",\"valueWishButtonsMargin_multi\":[],\"valuePriceOldBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueTabsBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSoldViewBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraButton\":\"__VAR__GREEN\",\"valueAdditionalImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraVisibility\":\"true\",\"valueExtra2BorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueOptionsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRightBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSoldViewBoxStylesMargin\":{\"margin\":\"-12\",\"margin-top\":\"12\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueExtraOrientation\":\"h\",\"valueCartDisplay\":\"both\",\"valuePushOptionsBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTaxBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceNewBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCountdownTextBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBrandImageDimensions\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"120\",\"height\":\"120\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"valueCompareBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueProductSold\":\"true\",\"valueSoldText\":{\"lang_1\":\"Products Sold:\"},\"valueBrandImageBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueOutStockIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueRatingBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueButtonsDisplay\":\"normal\",\"valueStatsBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueSoldViewBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBlocksTopSortOrder\":\"\",\"valueStatsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueTaxBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueCountdownVisibility\":\"true\",\"valuePriceGroupBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartIconHover\":\"\",\"valueStockBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueStatsValueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRatingBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueButtonsMaxWidth\":\"\",\"valueCompareWidth\":\"auto\",\"valueProductLocation\":\"false\",\"valueTitleOverride\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTagsPosition\":\"default\",\"valueProductManufacturerDisplay\":\"image\",\"valueCountdownTextBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueLeftBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueBlocksTopBoxStylesDisplay\":\"\",\"valueAdditionalImagesSpacing\":\"10\",\"valuePriceNewBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueSoldViewPosition\":\"bottom\",\"valuePushOptionsWidth\":\"\",\"valueQtyMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"10\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueOptionsBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePushImageSpacing\":\"5\",\"valueBrandNameVisibility\":\"true\",\"valuePriceNewBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueRatingStars\":\"\",\"valuePushOptionsShadow\":\"\",\"valueTabsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceOldBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePriceBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueGalleryStatus\":{\"status\":\"true\",\"device\":[\"phone\",\"tablet\",\"desktop\"],\"customer\":\"\",\"admin\":\"false\",\"customer_group_1\":\"true\",\"store_0\":\"true\",\"store_1\":\"true\"},\"valueProductEAN\":\"false\",\"valueSplitSpacing_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"0\"}],\"valuePriceGroupBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStockBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueProductTabsSortOrder\":\"\",\"valuePriceGroupBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueStockBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valuePriceNewBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"20\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueProductISBN\":\"true\",\"valueBrandImageBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valuePushOptionsSize\":{\"first\":\"30\",\"second\":\"30\"},\"valueBrandImageBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueOptionsPushRadio\":\"true\",\"valueCartWidth\":\"auto\",\"valueProductTabsStyle\":\"__VAR__DEFAULT\",\"valueWishButtonsBorder\":{\"border-width\":\"\",\"border-top-width\":\"1\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valuePriceBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valuePriceGroupBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueStockBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueButtonsBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountdownBoxStylesDisplay\":\"\",\"valueAdditionalImagesBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMoreDetailsIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e5c8\",\"name\":\"arrow_forward\"},\"type\":\"\",\"image\":\"\"},\"valueBlocksTopBoxStylesBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"}}],\"valueLeftBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueProductDimensionText\":{\"lang_1\":\"Dimensions\"},\"valueDetailsBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBrandImageBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueRightBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueStatsLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtra2StockVisibility\":\"\",\"valuePushImageShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"8\",\"spread\":\"\",\"color\":\"rgba(0,0,0,.7)\",\"inner\":\"true\",\"none\":\"false\"},\"valueRewardsBoxBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueAdditionalImagesBorder_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"__VAR__COLOR_3\"}}],\"valuePriceBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueQtySelectorVisibility\":\"true\",\"valueWishlistTooltipPosition\":\"top\",\"valueAdditionalImagesSpaceL\":\"\",\"valueLeftBoxStylesPadding_multi\":[],\"valueExtra1StockVisibility\":\"\",\"valueViewsIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_6\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"f06e\",\"name\":\"eye\"},\"type\":\"\",\"image\":\"\"},\"valueWishBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueSoldViewBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueLeftBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueDiscountsBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueProductWeight\":\"true\",\"valueExtraTooltipStatus\":\"true\",\"valueImageBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePushImageWidth\":\"\",\"valueRatingSeparator\":\"-\",\"valueBlocksBottomBoxStylesDisplay\":\"\",\"valueStatsPosition\":\"default\",\"valueRatingAlign\":\"left\",\"valueBlocksBottomBoxStylesBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueButtonsBoxStylesShadow_multi\":[],\"valueBlocksTopBoxStylesBackground_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__TRANSPARENT\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}],\"valueBlocksTopBoxStylesMargin_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"margin\":\"-12\",\"margin-top\":\"-20\",\"margin-right\":\"\",\"margin-bottom\":\"0\",\"margin-left\":\"\"}}],\"valueWishButtonsMargin\":{\"margin\":\"\",\"margin-top\":\"20\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueStatsAlign\":\"apart\",\"valueCartStockVisibility\":\"\",\"valueProductUPCText\":{\"lang_1\":\"UPC\"},\"valueWishButtonsWidth_multi\":[],\"valueExtra2ButtonDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":\"icon\"}],\"valuePriceNewBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueDiscountsBoxDisplay\":\"\",\"valueCartHeight\":\"\",\"valuePriceSortOrder\":\"0\",\"valueWishOrientation\":\"h\",\"valueExtra1ButtonDisplay_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE\",\"value\":\"icon\"}],\"valuePushTooltip\":\"\",\"valueCompareTooltipPosition\":\"top\",\"valueDiscountsBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueExtraIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueCountdownTitle\":\"__VAR__SIDE_COLUMN\",\"valueImageBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueProductModelText\":{\"lang_1\":\"Model\"},\"valueTagsMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueProductStock\":\"true\",\"valueDiscountsBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueMainBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_3\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBodyPadding_multi\":[],\"valueRewardsBoxShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMoreDetailsTooltipStatus\":\"true\",\"valueAdditionalPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueRewardsBoxSize\":{\"first\":\"\",\"second\":\"\"},\"valueRewardsBoxPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDiscountsBoxFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBlocksBottomBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__TRANSPARENT\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueCountdownBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePriceFontNew\":{\"color\":\"__VAR__COLOR_14\"},\"valueBrandImageBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueOptionsWidth\":\"\",\"valueCartMargin_multi\":[],\"valueAdditionalImagesPosition\":\"left\",\"valueInStockIcon\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueBlocksBottomBoxStylesMargin\":{\"margin\":\"-12\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueProductJAN\":\"true\",\"valueAccordionSortOrder\":\"\",\"valuePriceGroupBoxStylesOffset\":{\"first\":\"\",\"second\":\"\"},\"valueStockBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valuePushOptionsShadowActive\":\"__VAR__INNER\",\"valueBlocksBottomBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueAccordionStyle\":\"__VAR__DEFAULT\",\"valueProductRewardText\":{\"lang_1\":\"Reward Points\"},\"valueManufacturerImageSize\":{\"tablet_height\":\"\",\"phone_resize\":\"crop\",\"width\":\"100\",\"height\":\"100\",\"tablet_resize\":\"crop\",\"tablet_width\":\"\",\"resize\":\"fit\",\"phone_width\":\"\",\"phone_height\":\"\"},\"valueProductMPNText\":{\"lang_1\":\"MPN\"},\"valuePushOptionsFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSplitSpacing\":\"30\",\"valueDetailsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueButtonsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valuePushOptionsBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT-1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueWishlistPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueSoldValueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBlocksTabsSortOrder\":\"\",\"valueBlocksTopBoxStylesBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueCartTooltipPosition\":\"top\",\"valueCountdownBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueCountdownBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBrandNameLink\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueTagsAlign\":\"left\",\"valueSplitRatio_multi\":[{\"min\":\"\",\"max\":\"__VAR__TABLET\",\"value\":\"100\"}],\"valuePushImageBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_1\"},\"valueCountdownBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueImageCarouselVisibility\":\"false\",\"valueBrandImageBoxDisplay\":\"\",\"valueAdditionalImagesSpaceR\":\"\",\"valueAdditionalImagesBorder\":{\"border-width\":\"2\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_1\"},\"valuePriceOldBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueTabsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueWishButtonsAlign\":\"left\",\"valueLeftBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueDetailsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueStockBoxDisplay\":\"\",\"valuePriceGroupBoxStylesDisplay\":\"\",\"valueProductManufacturerText\":{\"lang_1\":\"Brand\"},\"valueCountdownTextFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBlocksTopBoxStylesPadding_multi\":[],\"valuePriceBoxStylesPadding\":{\"padding\":\"\",\"padding-top\":\"10\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valueTagsVisibility\":\"true\",\"valueDetailsBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueWishButtonsWidth\":\"full\",\"valueExtraDisplay_multi\":[],\"valueAdditionalImagesContainerBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueExtra2ButtonDisplay\":\"\",\"valueRatingBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueCustomStats\":\"false\",\"valueStatsMaxHeight\":\"\",\"valuePriceNewBoxStylesDisplay\":\"\",\"valueStatsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueDiscountsBoxOffset\":{\"first\":\"\",\"second\":\"\"},\"valueTaxBoxBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valuePushOptionsBorderHover\":\"__VAR__COLOR_5\",\"valueButtonsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueImageCarouselOffset\":{\"first\":\"\",\"second\":\"\"},\"valueComparePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBlocksTopBoxStylesBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBlocksTopBoxStylesMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueOptionsTitleVisibility\":\"false\",\"valuePushOptionsPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueWishlistMargin_multi\":[],\"valueSoldLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueOptionsBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueButtonsBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueAdditionalImagesSpaceT\":\"\",\"valuePriceOldBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTabsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBlocksTopBoxStylesFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueExtra2Padding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"\",\"padding-left\":\"20\"},\"valueBodyPadding\":\"\",\"valueExtra1ButtonDisplay\":\"\",\"valueSoldIcon\":{\"size\":\"\",\"color\":\"__VAR__COLOR_9\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"5\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"e263\",\"name\":\"monetization_on\"},\"type\":\"\",\"image\":\"\"},\"valueCountdownTextBoxStylesBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueExtraButtonIconHover1\":{\"size\":\"\",\"color\":\"\",\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueExtra1Padding\":{\"padding\":\"15\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"\",\"padding-left\":\"20\"},\"valueWishHeight\":\"\",\"valueCartMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueRatingBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueProductSKU\":\"true\",\"valuePushOptionsBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueStatsBoxStylesShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueExtra2Visibility_multi\":[],\"valueTaxBoxBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueWishlistTooltipStatus\":\"true\",\"valueRatingFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueSoldViewBoxStylesDisplay\":\"\",\"valuePriceOldBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueTabsBoxStylesSize\":{\"first\":\"\",\"second\":\"\"},\"valueTaxBoxMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('SINGLE','','info_block','{\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"700\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valueInfoBlockBorderHover\":\"__VAR__COLOR_7\",\"valueText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__SMALL\"},\"valueInfoBlockPadding\":\"\",\"valueCountBadge\":\"\",\"valueInfoBlockText1Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING\"},\"valueText1Visibility\":\"true\",\"valueInfoBlockPad\":{\"padding\":\"10\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockText2Font\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_13\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueText2Visibility\":\"true\",\"valueIconPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueIconBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueContentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueInfoBlockBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_8\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueLastBorderHover\":\"\",\"valueIconSize\":{\"first\":\"\",\"second\":\"\"},\"valueFirstBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueShadowHover\":\"__VAR__LIGHT\",\"valueInfoBlockBorderRadius\":{\"border-radius\":\"10\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueIconPosition_multi\":[],\"valueInfoBlockShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueInfoBlockShadowHover\":\"__VAR__MEDIUM\",\"valueBorderRadius\":{\"border-radius\":\"3\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueInfoBlockIconPosition\":\"side\",\"valueText1Spacing\":\"\",\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFirstBorderHover\":\"\",\"valueIconPosition\":\"side\",\"valueLastBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"0\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueInfoBlockBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__ACCENT_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueInfoBlockText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueIconDimensions\":\"\",\"valueCountBadgeVisibility\":\"false\",\"valueInfoBlockAlign\":\"left\",\"valueInfoBlockText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueIconBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueIconMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"10\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"valueText2FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueIconColor\":\"\",\"valueText1FontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueInfoBlockBorder\":{\"border-width\":\"1\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_2\"},\"valueIconAlign\":\"center\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"1\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_11\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderHover\":\"\"}',1),
('PAGE_TITLE_TOP','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"1\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"__VAR__COLOR_4\",\"text-align\":\"center\",\"text-transform\":\"uppercase\",\"text-decoration\":\"none\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_MEDIUM\"},\"valuePadding\":{\"padding\":\"30\",\"padding-top\":\"\",\"padding-right\":\"20\",\"padding-bottom\":\"\",\"padding-left\":\"20\"},\"valueDividerSize\":{\"first\":\"70\",\"second\":\"4\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueDividerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueDividerTopSpacing\":\"15\",\"valueTruncate\":\"false\",\"valueFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_MEDIUM\"}}],\"valuePadding_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"padding\":\"20\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"}}],\"valueDividerStatus\":\"true\",\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueDividerAlign\":\"center\",\"valueBackground\":{\"background-size\":\"cover\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"fixed\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"center bottom\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"__VAR__LIGHT_BLUE\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"no-repeat\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"catalog\\/journal3\\/misc\\/low-poly-60.jpg\"},\"valueMargin\":{\"margin\":\"0\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"}}',1),
('No Border','','mega_menu','{\"valueMegaMenuBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_1\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMegaMenuBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueMegaMenuShadow\":\"__VAR__LARGE\",\"valueMegaMenuPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueMegaMenuHeight\":\"500\",\"valueMegaMenuPadding_multi\":[]}',1),
('PAGE_TITLE','','title','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"1\",\"font-family\":\"__VAR__ACCENT\",\"color\":\"__VAR__COLOR_2\",\"text-align\":\"\",\"text-transform\":\"none\",\"text-decoration\":\"none\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_LARGE\"},\"valuePadding\":{\"padding\":\"0\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueTruncate\":\"false\",\"valueFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_MEDIUM\"}}],\"valuePadding_multi\":[],\"valueBorder\":{\"border-width\":\"0\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMargin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"15\",\"margin-left\":\"\"}}',1),
('TRANSPARENT_LIGHT','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_3\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":\"__VAR__NONE\",\"valueShadowHover\":\"__VAR__NONE\",\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":\"__VAR__NONE\",\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":\"__VAR__NONE\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_5\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"true\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"__VAR__COLOR_6\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"none\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('SLIDER','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"},\"valuePadding\":{\"padding\":\"20\",\"padding-top\":\"15\",\"padding-right\":\"\",\"padding-bottom\":\"16\",\"padding-left\":\"\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueShadowHover\":\"__VAR__LIGHT\",\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"\",\"second\":\"\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":\"__VAR__INNER\",\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__HEADING_MEDIUM\"}}],\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"3\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"solid\",\"border-color\":\"__VAR__COLOR_6\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('BLUE','','menu_label','{\"valueMenuLabelBorderRadius\":{\"border-radius\":\"2\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\",\"custom\":\"\"},\"valueMenuLabelShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueMenuLabelFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuLabelBackgroundHover\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMenuLabelBorderHover\":\"\",\"valueMenuLabelPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"4\",\"padding-bottom\":\"\",\"padding-left\":\"4\"},\"valueMenuLabelBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueMenuLabelBackground\":{\"background-size\":\"contain\",\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueMenuLabelFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"__VAR__BODY\",\"color\":\"__VAR__COLOR_1\",\"text-align\":\"\",\"text-transform\":\"none\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"400\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueMenuLabelOffset\":{\"first\":\"-10\",\"second\":\"12\"},\"valueMenuLabelShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"}}',1),
('SQUARE','','count_badge','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueShadowHover\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueBorderRadius\":{\"border-radius\":\"0\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontHover\":\"\",\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShowEmpty\":\"\",\"valueBorderHover\":\"\"}',1),
('RED_LARGE','','button','{\"valueFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT_2\"},\"valuePadding\":{\"padding\":\"12\",\"padding-top\":\"\",\"padding-right\":\"15\",\"padding-bottom\":\"13\",\"padding-left\":\"15\"},\"valueBGFocus\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueBorderActive\":\"\",\"valueFontActive\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBGHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_4\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowFocus\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueShadowHover\":{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"false\",\"none\":\"false\"},\"valueFontFocusColor\":\"\",\"valueBorderRadius\":{\"border-radius\":\"\",\"border-top-left-radius\":\"\",\"border-top-right-radius\":\"\",\"border-bottom-right-radius\":\"\",\"border-bottom-left-radius\":\"\",\"borderRadiusUnit\":\"px\"},\"valueShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueSize\":{\"first\":\"40\",\"second\":\"40\"},\"valueMaxSize\":{\"first\":\"\",\"second\":\"\"},\"valueBG\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_6\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueShadowActive\":{\"offsetX\":\"0\",\"offsetY\":\"0\",\"blur\":\"20\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.25)\",\"inner\":\"true\",\"none\":\"false\"},\"valueFontFocus\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorderFocus\":\"\",\"valueBGActive\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"__VAR__COLOR_5\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":\"\",\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":\"\",\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueFontActiveColor\":\"\",\"valueBorderHover\":\"\"}',1),
('Narrow Content Width','','page','{\"valueBodyBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueColumnRightBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueContainerPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBoxedLayout\":\"fullwidth\",\"valueColumnRightBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueColumnLeftPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueBoxedBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueColumnLeftTabletStatus\":\"true\",\"valueBoxedBodySpacing\":\"\",\"valueBoxedContainerShadow\":{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"false\"},\"valueContentPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valuePageTitleVisibility\":\"true\",\"valueBoxedHeaderPadding\":\"\",\"valueColumnRightTabletStatus\":\"true\",\"valueContentSidePadding\":\"\",\"valueContentBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContainerWidth\":\"1000\",\"valuePageTitleStyle\":\"\",\"valueColumnLeftBorder\":{\"border-width\":\"\",\"border-top-width\":\"\",\"border-right-width\":\"\",\"border-bottom-width\":\"\",\"border-left-width\":\"\",\"border-style\":\"\",\"border-color\":\"\"},\"valueColumnsWidth\":\"\",\"valueColumnRightPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueColumnLeftBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"},\"valueContentWidth\":\"\",\"valueContainerBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":\"\",\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\"}}',1),
('LINKS_MENU_RCXW4I','Footer Links','links_menu','{\"valuePadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"\",\"padding-left\":\"\"},\"valueScrollTouch\":\"true\",\"valueItemWidth\":\"auto\",\"valueCountBadge\":\"\",\"valueScrollColor\":{\"color\":\"\"},\"valueLinksPlusMobileCloseOffset\":{\"first\":\"\",\"second\":\"\"},\"valueItemDividerHover\":{\"color\":\"\"},\"valueLinksColumnDividerColor\":{\"color\":\"\"},\"valueLinksPlusButtonMobileStatus\":\"false\",\"valueTrackColor\":{\"color\":\"\"},\"valueItemFontHover\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueItemBackgroundHover\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueLinksColumnDividerWidth\":\"\",\"valueItemFont_multi\":[{\"min\":\"\",\"max\":\"__VAR__PHONE_LARGE\",\"value\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__MEDIUM\"}}],\"valueItemPadding\":{\"padding\":\"\",\"padding-top\":\"\",\"padding-right\":\"\",\"padding-bottom\":\"10\",\"padding-left\":\"\"},\"valueDirection\":\"vertical\",\"valueLinksPlusMobileOpen\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueItemBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"},\"valueTitleDivider\":\"\",\"valueItemFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"__VAR__ACCENT_3\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"__VAR__DEFAULT\"},\"valueAlign\":\"start\",\"valueLinksPlusMobileClose\":{\"size\":\"\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"code\":\"\",\"name\":\"\"},\"type\":\"\",\"image\":\"\"},\"valueLinksColumns\":\"initial\",\"valueItemDivider\":{\"width\":\"\",\"style\":\"\",\"color\":{\"color\":\"\"}},\"valueTitleFont\":{\"word-spacing\":\"\",\"line-height\":\"\",\"font-family\":\"\",\"color\":{\"color\":\"\"},\"text-align\":\"\",\"text-transform\":\"\",\"text-decoration\":\"\",\"font-style\":\"\",\"textShadowBlur\":\"\",\"font-weight\":\"\",\"textShadowColor\":{\"color\":\"\"},\"textShadowOffsetX\":\"\",\"textShadowOffsetY\":\"\",\"word-break\":\"\",\"letter-spacing\":\"\",\"font-size\":\"\"},\"valueLinksColumnDividerStyle\":\"solid\",\"valueCountBadgeVisibility\":\"false\",\"valueCountBadgeOffset\":{\"first\":\"\",\"second\":\"\"},\"valueLinksColumnGap\":\"\",\"valueModuleTitle\":\"\",\"valueLayout\":\"start\",\"valueItemIcon\":{\"size\":\"18\",\"color\":{\"color\":\"\"},\"offsetX\":\"\",\"offsetY\":\"\",\"flip\":\"\",\"margin\":{\"margin\":\"\",\"margin-top\":\"\",\"margin-right\":\"8\",\"margin-bottom\":\"\",\"margin-left\":\"\"},\"none\":\"false\",\"icon\":{\"name\":\"angle-right\",\"code\":\"f105\"},\"type\":\"\",\"image\":\"\"},\"valueScroll\":\"false\",\"valueTitleAlign\":\"\",\"valueItemIconHover\":{\"color\":\"\"},\"valueBackground\":{\"backgroundPositionX\":\"\",\"backgroundPositionY\":\"\",\"background-attachment\":\"\",\"background-color\":{\"color\":\"\"},\"background-origin\":\"\",\"background-position\":\"\",\"backgroundSizeW\":\"\",\"overlay\":\"\",\"gradient\":\"\",\"backgroundSizeUnit\":\"px\",\"none\":\"false\",\"backgroundSizeH\":\"\",\"background-repeat\":\"\",\"backgroundPositionUnit\":\"px\",\"background-image\":\"\",\"background-blend-mode\":\"\"}}',1);
/*!40000 ALTER TABLE `oc_journal3_style` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_journal3_variable`
--
DROP TABLE IF EXISTS `oc_journal3_variable`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_journal3_variable` (
`variable_name` varchar(64) NOT NULL,
`variable_label` varchar(64) NOT NULL,
`variable_type` varchar(64) NOT NULL,
`variable_value` text NOT NULL,
`serialized` int(1) NOT NULL,
PRIMARY KEY (`variable_name`,`variable_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_journal3_variable`
--
LOCK TABLES `oc_journal3_variable` WRITE;
/*!40000 ALTER TABLE `oc_journal3_variable` DISABLE KEYS */;
INSERT INTO `oc_journal3_variable` VALUES
('COLOR_2','','color','rgba(56, 68, 79, 1)',0),
('COLOR_1','','color','rgba(255, 255, 255, 1)',0),
('COLOR_5','','color','rgba(0, 138, 221, 1)',0),
('COLOR_6','','color','rgba(231, 40, 77, 1)',0),
('COLOR_7','','color','rgba(255, 214, 0, 1)',0),
('PHONE','','breakpoint','470',0),
('PHONE_LARGE','','breakpoint','760',0),
('TABLET','','breakpoint','1024',0),
('DESKTOP','','breakpoint','1500',0),
('NONE','','shadow','{\"offsetX\":\"\",\"offsetY\":\"\",\"blur\":\"\",\"spread\":\"\",\"color\":\"\",\"inner\":\"false\",\"none\":\"true\"}',1),
('ACCENT','','font','{\"type\":\"google\",\"subsets\":\"latin-ext\",\"font-family\":\"Poppins\",\"font-weight\":\"700\",\"font-style\":\"\"}',1),
('COLOR_3','','color','rgba(245, 245, 245, 1)',0),
('COLOR_4','','color','rgba(49, 56, 70, 1)',0),
('Banners Home Page','','value','20',0),
('MEDIUM','','font_size','16',0),
('TRANSPARENT','','color','rgba(0, 0, 0, 0)',0),
('OPACITY_LOW','','color','rgba(0, 0, 0, 0.15)',0),
('OPACITY_MEDIUM','','color','rgba(0, 0, 0, 0.3)',0),
('OPACITY-HIGH','','color','rgba(0, 0, 0, 0.75)',0),
('DEFAULT','','font_size','14',0),
('SMALL','','font_size','13',0),
('EXTRA_SMALL','','font_size','11',0),
('COLOR_12','','color','rgba(247, 249, 255, 1)',0),
('LIGHT','','gradient','background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);',0),
('Background Overlay','','gradient','background-image:linear-gradient(to right, rgba(0,0,0,.5) 0%, rgba(0,0,0,.5) 100%);',0),
('ORANGE','','gradient','background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);',0),
('COLOR_10','','color','rgba(250, 250, 250, 1)',0),
('HEADING_MEDIUM','','font_size','32',0),
('COLOR_11','','color','rgba(221, 221, 221, 1)',0),
('COLOR_9','','color','rgba(46, 175, 35, 1)',0),
('LARGE','','font_size','22',0),
('HEADING','','font_size','28',0),
('HEADING_LARGE','','font_size','40',0),
('INNER','','shadow','{\"offsetX\":\"0\",\"offsetY\":\"2\",\"blur\":\"8\",\"spread\":\"\",\"color\":\"__VAR__OPACITY_LOW\",\"inner\":\"true\",\"none\":\"false\"}',1),
('COLOR_8','','color','rgba(237, 242, 254, 1)',0),
('ACCENT-1','','color','rgba(187, 198, 221, 1)',0),
('HEADINGS BOLD','','font','{\"type\":\"google\",\"subsets\":\"latin-ext\",\"font-family\":\"Roboto\",\"font-weight\":\"700\",\"font-style\":\"\"}',1),
('LIGHT','','shadow','{\"offsetX\":\"0\",\"offsetY\":\"5\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.15)\",\"inner\":\"false\",\"none\":\"false\"}',1),
('HUGE','','font_size','60',0),
('BIG','','font_size','50',0),
('BODY','','font','{\"type\":\"system\",\"subsets\":\"latin-ext\",\"font-family\":\"Helvetica, Arial, sans-serif\",\"font-weight\":\"regular\",\"font-style\":\"normal\"}',1),
('MEDIUM','','shadow','{\"offsetX\":\"5\",\"offsetY\":\"10\",\"blur\":\"30\",\"spread\":\"-5\",\"color\":\"__VAR__OPACITY_MEDIUM\",\"inner\":\"false\",\"none\":\"false\"}',1),
('COLOR_15','','color','rgba(69, 82, 94, 1)',0),
('PHONE_SMALL','','breakpoint','370',0),
('COLOR_14','','color','rgba(243, 109, 55, 1)',0),
('MEDIUM_2','','font_size','18',0),
('GRAY','','color','rgba(89, 96, 119, 1)',0),
('General','','value','20',0),
('MAIL','','gradient','background: repeating-linear-gradient(140deg,#168CDA,#3498db 8px,#fafafa 8px,#fafafa 14px,#EB524E 14px,#ff5e37 21px,#fafafa 21px,#fafafa 30px) ; background-size: 100% 3px; background-repeat: no-repeat;',0),
('LARGE','','shadow','{\"offsetX\":\"5\",\"offsetY\":\"20\",\"blur\":\"40\",\"spread\":\"\",\"color\":\"rgba(0, 0, 0, 0.3)\",\"inner\":\"false\",\"none\":\"false\"}',1),
('LAPTOP','','breakpoint','1340',0),
('BLUE','','gradient','background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);',0),
('SMALLER','','font_size','12',0),
('ACCENT_2','','color','rgba(182, 187, 198, 1)',0),
('ACCENT_3','','color','rgba(223, 231, 247, 1)',0),
('TABS','','shadow','{\"offsetX\":\"0\",\"offsetY\":\"-5\",\"blur\":\"10\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.5)\",\"inner\":\"true\",\"none\":\"false\"}',1),
('UPWARD','','shadow','{\"offsetX\":\"0\",\"offsetY\":\"-5\",\"blur\":\"20\",\"spread\":\"-5\",\"color\":\"rgba(0, 0, 0, 0.2)\",\"inner\":\"false\",\"none\":\"false\"}',1),
('COLOR_16','','color','rgba(190, 242, 254, 1)',0),
('Product Grid Mobile','Product Grid Mobile','value','10',0),
('HEADINGS','','font','{\"type\":\"google\",\"subsets\":\"latin-ext\",\"font-family\":\"Roboto\",\"font-weight\":\"regular\",\"font-style\":\"\"}',1),
('SERIF','','font','{\"type\":\"system\",\"subsets\":\"latin-ext\",\"font-family\":\"Georgia, serif\",\"font-weight\":\"regular\",\"font-style\":\"\"}',1),
('OVERLAY','','gradient','background-image: linear-gradient( to top, rgba(0,0,0,.7) 0%, transparent 40% );',0),
('OVERLAY_2','','gradient','background-image: linear-gradient( to top, rgba(0,0,0,.7) 20%, transparent 100% );',0),
('DEFAULT_2','','font_size','15',0),
('OVERLAY_3','','gradient','background-image: linear-gradient( to top, rgba(0,0,0,1) 0%, transparent 60% );',0),
('COLOR_17','','color','rgba(53, 69, 100, 1)',0),
('LARGE_TABLET','','breakpoint','1140',0),
('SLIDER LAYERS','','font_size','70',0),
('Blog Posts','','value','20',0),
('Side Products','','value','10',0),
('Product Grid','','value','20',0);
/*!40000 ALTER TABLE `oc_journal3_variable` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_language`
--
DROP TABLE IF EXISTS `oc_language`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_language` (
`language_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`code` varchar(5) NOT NULL,
`locale` varchar(255) NOT NULL,
`image` varchar(64) NOT NULL,
`directory` varchar(32) NOT NULL,
`sort_order` int(3) NOT NULL DEFAULT 0,
`status` tinyint(1) NOT NULL,
PRIMARY KEY (`language_id`),
KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_language`
--
LOCK TABLES `oc_language` WRITE;
/*!40000 ALTER TABLE `oc_language` DISABLE KEYS */;
INSERT INTO `oc_language` VALUES
(1,'Türkçe','tr-tr','tr-TR,tr_TR.UTF-8,tr_TR,tr,tr-tr,turkish','tr.png','turkish',1,1);
/*!40000 ALTER TABLE `oc_language` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_layout`
--
DROP TABLE IF EXISTS `oc_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_layout` (
`layout_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`layout_id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_layout`
--
LOCK TABLES `oc_layout` WRITE;
/*!40000 ALTER TABLE `oc_layout` DISABLE KEYS */;
INSERT INTO `oc_layout` VALUES
(1,'Home'),
(2,'Product'),
(3,'Category'),
(4,'Default'),
(5,'Manufacturer'),
(6,'Account'),
(7,'Checkout'),
(8,'Contact'),
(9,'Sitemap'),
(10,'Affiliate'),
(11,'Information'),
(12,'Compare'),
(13,'Search'),
(14,'Wishlist'),
(15,'Blog'),
(16,'Blog Post'),
(17,'Catalog'),
(18,'Special'),
(19,'Success'),
(21,'FAQ'),
(22,'Your Layout Name');
/*!40000 ALTER TABLE `oc_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_layout_module`
--
DROP TABLE IF EXISTS `oc_layout_module`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_layout_module` (
`layout_module_id` int(11) NOT NULL AUTO_INCREMENT,
`layout_id` int(11) NOT NULL,
`code` varchar(64) NOT NULL,
`position` varchar(14) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`layout_module_id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_layout_module`
--
LOCK TABLES `oc_layout_module` WRITE;
/*!40000 ALTER TABLE `oc_layout_module` DISABLE KEYS */;
INSERT INTO `oc_layout_module` VALUES
(1,4,'0','content_top',0),
(2,4,'0','content_top',1),
(3,5,'0','column_left',2),
(4,10,'account','column_right',1),
(5,6,'account','column_right',1),
(6,1,'featured.2','content_top',3),
(7,1,'slideshow.1','content_top',2),
(8,3,'banner.4','column_left',2),
(9,3,'account','column_left',1),
(10,1,'carousel.3','content_top',4),
(11,1,'html.5','content_top',1),
(12,3,'html.6','content_top',1),
(13,2,'html.6','content_top',1);
/*!40000 ALTER TABLE `oc_layout_module` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_layout_route`
--
DROP TABLE IF EXISTS `oc_layout_route`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_layout_route` (
`layout_route_id` int(11) NOT NULL AUTO_INCREMENT,
`layout_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`route` varchar(64) NOT NULL,
PRIMARY KEY (`layout_route_id`)
) ENGINE=MyISAM AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_layout_route`
--
LOCK TABLES `oc_layout_route` WRITE;
/*!40000 ALTER TABLE `oc_layout_route` DISABLE KEYS */;
INSERT INTO `oc_layout_route` VALUES
(38,6,0,'account/%'),
(17,10,0,'affiliate/%'),
(44,3,0,'product/category'),
(54,1,0,'common/home'),
(20,2,0,'product/product'),
(24,11,0,'information/information'),
(23,7,0,'checkout/%'),
(31,8,0,'information/contact'),
(32,9,0,'information/sitemap'),
(34,4,0,''),
(58,5,0,'product/manufacturer%'),
(52,12,0,'product/compare'),
(53,13,0,'product/search'),
(55,14,0,'account/wishlist'),
(56,15,0,'journal3/blog'),
(57,16,0,'journal3/blog/post'),
(59,17,0,'product/catalog'),
(60,18,0,'product/special'),
(61,19,0,'checkout/success');
/*!40000 ALTER TABLE `oc_layout_route` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_length_class`
--
DROP TABLE IF EXISTS `oc_length_class`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_length_class` (
`length_class_id` int(11) NOT NULL AUTO_INCREMENT,
`value` decimal(15,8) NOT NULL,
PRIMARY KEY (`length_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_length_class`
--
LOCK TABLES `oc_length_class` WRITE;
/*!40000 ALTER TABLE `oc_length_class` DISABLE KEYS */;
INSERT INTO `oc_length_class` VALUES
(1,1.00000000),
(2,10.00000000),
(3,0.39370000);
/*!40000 ALTER TABLE `oc_length_class` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_length_class_description`
--
DROP TABLE IF EXISTS `oc_length_class_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_length_class_description` (
`length_class_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`title` varchar(32) NOT NULL,
`unit` varchar(4) NOT NULL,
PRIMARY KEY (`length_class_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_length_class_description`
--
LOCK TABLES `oc_length_class_description` WRITE;
/*!40000 ALTER TABLE `oc_length_class_description` DISABLE KEYS */;
INSERT INTO `oc_length_class_description` VALUES
(1,1,'Centimeter','cm'),
(2,1,'Millimeter','mm'),
(3,1,'Inch','in');
/*!40000 ALTER TABLE `oc_length_class_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_location`
--
DROP TABLE IF EXISTS `oc_location`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_location` (
`location_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`address` text NOT NULL,
`telephone` varchar(32) NOT NULL,
`fax` varchar(32) NOT NULL,
`geocode` varchar(32) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`open` text NOT NULL,
`comment` text NOT NULL,
PRIMARY KEY (`location_id`),
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_location`
--
LOCK TABLES `oc_location` WRITE;
/*!40000 ALTER TABLE `oc_location` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_location` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_manufacturer`
--
DROP TABLE IF EXISTS `oc_manufacturer`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_manufacturer` (
`manufacturer_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`manufacturer_id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_manufacturer`
--
LOCK TABLES `oc_manufacturer` WRITE;
/*!40000 ALTER TABLE `oc_manufacturer` DISABLE KEYS */;
INSERT INTO `oc_manufacturer` VALUES
(5,'HTC','catalog/journal3/brands/htc_logo.jpg',0),
(6,'Palm','catalog/journal3/brands/palm_logo.jpg',0),
(7,'Hewlett-Packard','catalog/journal3/brands/hp_logo.jpg',0),
(8,'Apple','catalog/journal3/brands/apple_logo.jpg',0),
(9,'Canon','catalog/journal3/brands/canon_logo.jpg',0),
(10,'Sony','catalog/journal3/brands/sony_logo.jpg',0),
(11,'SuperBrand','catalog/journal3/brands/superbrand.jpg',0),
(12,'Awesome Brand','catalog/journal3/brands/awesome.jpg',0),
(13,'Chic D\'or','catalog/journal3/brands/chic.jpg',0),
(14,'Hipster','catalog/journal3/brands/hipster.jpg',0),
(15,'Ericksson','catalog/journal3/brands/erikson.jpg',0),
(16,'NY Fashion','catalog/journal3/brands/fashion.jpg',0),
(17,'Fort Cane','catalog/journal3/brands/FC-fashion.jpg',0),
(18,'Melissa Johnson','catalog/journal3/brands/mellisa.jpg',0),
(19,'Olivia Smith','catalog/journal3/brands/olivia-fashion.jpg',0),
(20,'Sarah Bell','catalog/journal3/brands/sarah-beauty.jpg',0),
(21,'Sarah Bloom','catalog/journal3/brands/sarah-cosmetics.jpg',0),
(22,'Scandinavian Sunglasses','catalog/journal3/brands/sunglasses.png',0);
/*!40000 ALTER TABLE `oc_manufacturer` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_manufacturer_to_store`
--
DROP TABLE IF EXISTS `oc_manufacturer_to_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_manufacturer_to_store` (
`manufacturer_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
PRIMARY KEY (`manufacturer_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_manufacturer_to_store`
--
LOCK TABLES `oc_manufacturer_to_store` WRITE;
/*!40000 ALTER TABLE `oc_manufacturer_to_store` DISABLE KEYS */;
INSERT INTO `oc_manufacturer_to_store` VALUES
(5,0),
(6,0),
(7,0),
(8,0),
(9,0),
(10,0),
(11,0),
(12,0),
(13,0),
(14,0),
(15,0),
(16,0),
(17,0),
(18,0),
(19,0),
(20,0),
(21,0),
(22,0);
/*!40000 ALTER TABLE `oc_manufacturer_to_store` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_marketing`
--
DROP TABLE IF EXISTS `oc_marketing`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_marketing` (
`marketing_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`description` text NOT NULL,
`code` varchar(64) NOT NULL,
`clicks` int(5) NOT NULL DEFAULT 0,
`date_added` datetime NOT NULL,
PRIMARY KEY (`marketing_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_marketing`
--
LOCK TABLES `oc_marketing` WRITE;
/*!40000 ALTER TABLE `oc_marketing` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_marketing` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_modification`
--
DROP TABLE IF EXISTS `oc_modification`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_modification` (
`modification_id` int(11) NOT NULL AUTO_INCREMENT,
`extension_install_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
`code` varchar(64) NOT NULL,
`author` varchar(64) NOT NULL,
`version` varchar(32) NOT NULL,
`link` varchar(255) NOT NULL,
`xml` mediumtext NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`modification_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_modification`
--
LOCK TABLES `oc_modification` WRITE;
/*!40000 ALTER TABLE `oc_modification` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_modification` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_module`
--
DROP TABLE IF EXISTS `oc_module`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_module` (
`module_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`code` varchar(32) NOT NULL,
`setting` text NOT NULL,
PRIMARY KEY (`module_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_module`
--
LOCK TABLES `oc_module` WRITE;
/*!40000 ALTER TABLE `oc_module` DISABLE KEYS */;
INSERT INTO `oc_module` VALUES
(1,'Ana sayfa','slideshow','{\"name\":\"Ana Sayfa\",\"banner_id\":\"2\",\"width\":\"1140\",\"height\":\"380\",\"status\":\"1\"}'),
(2,'Ana sayfa','featured','{\"name\":\"Ana Sayfa\",\"product\":[\"12\",\"3\",\"17\",\"1\"],\"limit\":\"4\",\"width\":\"200\",\"height\":\"200\",\"status\":\"1\"}'),
(3,'Ana sayfa','carousel','{\"name\":\"Ana Sayfa\",\"banner_id\":\"3\",\"width\":\"130\",\"height\":\"100\",\"status\":\"1\"}'),
(4,'Kategoriler','banner','{\"name\":\"Kategoriler\",\"banner_id\":\"1\",\"width\":\"182\",\"height\":\"182\",\"status\":\"1\"}'),
(5,'Sponsorlarımız Anasayfa','html','{\"name\":\"Sponsorlar\\u0131m\\u0131z\",\"module_description\":{\"1\":{\"title\":\"\",\"description\":\"<script async src="https:\\/\\/adsenix.com\\/api\\/adsload.js"><\\/script>\\r\\n<div class="adsenix-preloader"><\\/div>\\r\\n<div class="adsenix-wrapper" data-adsenix-publisher="1" data-adsenix-group="1" data-adsenix-format="1"><\\/div>\\r\\n<div class="adsenix-wrapper" data-adsenix-publisher="1" data-adsenix-group="1" data-adsenix-format="4"><\\/div>\"}},\"status\":\"1\"}'),
(6,'Sponsorlarımız Ürün/Kategori','html','{\"name\":\"Sponsorlar\\u0131m\\u0131z \\u00dcr\\u00fcn\\/Kategori\",\"module_description\":{\"1\":{\"title\":\"\",\"description\":\"<script async src="https:\\/\\/adsenix.com\\/api\\/adsload.js"><\\/script>\\r\\n<div class="adsenix-preloader"><\\/div>\\r\\n<div class="adsenix-wrapper" data-adsenix-publisher="1" data-adsenix-group="1" data-adsenix-format="1"><\\/div>\"}},\"status\":\"1\"}');
/*!40000 ALTER TABLE `oc_module` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_option`
--
DROP TABLE IF EXISTS `oc_option`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_option` (
`option_id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(32) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`option_id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_option`
--
LOCK TABLES `oc_option` WRITE;
/*!40000 ALTER TABLE `oc_option` DISABLE KEYS */;
INSERT INTO `oc_option` VALUES
(1,'radio',2),
(2,'radio',3),
(4,'text',4),
(5,'select',1),
(6,'textarea',5),
(7,'file',6),
(8,'date',7),
(9,'time',8),
(10,'datetime',9),
(11,'checkbox',1),
(12,'date',1),
(13,'select',0);
/*!40000 ALTER TABLE `oc_option` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_option_description`
--
DROP TABLE IF EXISTS `oc_option_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_option_description` (
`option_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY (`option_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_option_description`
--
LOCK TABLES `oc_option_description` WRITE;
/*!40000 ALTER TABLE `oc_option_description` DISABLE KEYS */;
INSERT INTO `oc_option_description` VALUES
(4,1,'Text'),
(6,1,'Textarea'),
(7,1,'File'),
(9,1,'Time'),
(10,1,'Date & Time'),
(12,1,'Delivery Date'),
(1,1,'Radio'),
(8,1,'Date'),
(5,2,'Select list'),
(11,2,'Multiple choice'),
(8,2,'Date'),
(1,2,'Radio'),
(11,1,'Multiple choice'),
(12,2,'Delivery Date'),
(5,1,'Select list'),
(10,2,'Date & Time'),
(9,2,'Time'),
(7,2,'File'),
(13,1,'Another Select'),
(6,2,'Textarea'),
(2,1,'Single choice (with image)'),
(4,2,'Text'),
(13,2,'Another Select'),
(2,2,'Single choice (with image)'),
(4,3,'Text'),
(6,3,'Textarea'),
(7,3,'File'),
(9,3,'Time'),
(10,3,'Date & Time'),
(12,3,'Delivery Date'),
(1,3,'Radio'),
(8,3,'Date'),
(11,3,'Multiple choice'),
(5,3,'Select list'),
(13,3,'Another Select'),
(2,3,'Single choice (with image)');
/*!40000 ALTER TABLE `oc_option_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_option_value`
--
DROP TABLE IF EXISTS `oc_option_value`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_option_value` (
`option_value_id` int(11) NOT NULL AUTO_INCREMENT,
`option_id` int(11) NOT NULL,
`image` varchar(255) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`option_value_id`)
) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_option_value`
--
LOCK TABLES `oc_option_value` WRITE;
/*!40000 ALTER TABLE `oc_option_value` DISABLE KEYS */;
INSERT INTO `oc_option_value` VALUES
(43,1,'',3),
(42,5,'',4),
(41,5,'',3),
(40,5,'',2),
(39,5,'',1),
(44,2,'catalog/journal3/colors/4.png',3),
(61,11,'',6),
(31,1,'',2),
(32,1,'',1),
(60,11,'',5),
(48,11,'',4),
(24,2,'catalog/journal3/colors/10.png',2),
(23,2,'catalog/journal3/colors/1.png',1),
(57,2,'catalog/journal3/colors/14.png',0),
(58,2,'catalog/journal3/colors/13.png',0),
(54,2,'catalog/journal3/colors/12.png',0),
(47,11,'',3),
(55,2,'catalog/journal3/colors/11.png',0),
(56,2,'catalog/journal3/colors/3.png',0),
(50,2,'catalog/journal3/colors/6.png',0),
(52,2,'catalog/journal3/colors/5.png',0),
(46,11,'',2),
(59,11,'',1),
(49,2,'catalog/journal3/colors/2.png',0),
(53,2,'catalog/journal3/colors/9.png',0),
(62,13,'',0),
(63,13,'',0),
(64,13,'',0),
(51,2,'catalog/journal3/colors/8.png',0),
(45,2,'catalog/journal3/colors/7.png',4);
/*!40000 ALTER TABLE `oc_option_value` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_option_value_description`
--
DROP TABLE IF EXISTS `oc_option_value_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_option_value_description` (
`option_value_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`option_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY (`option_value_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_option_value_description`
--
LOCK TABLES `oc_option_value_description` WRITE;
/*!40000 ALTER TABLE `oc_option_value_description` DISABLE KEYS */;
INSERT INTO `oc_option_value_description` VALUES
(41,1,5,'Green'),
(62,2,13,'Option 1'),
(39,2,5,'Red'),
(43,1,1,'Large'),
(61,1,11,'XXL'),
(60,1,11,'XL'),
(31,1,1,'Medium'),
(40,2,5,'Blue'),
(32,1,1,'Small'),
(48,1,11,'L'),
(59,2,11,'XS'),
(23,1,2,'Turquoise'),
(46,2,11,'S'),
(57,1,2,'Dark Gray'),
(47,2,11,'M'),
(58,1,2,'Yellow'),
(49,2,2,'Silver'),
(54,1,2,'Burgundy'),
(52,2,2,'Gold'),
(50,2,2,'Light Blue'),
(56,2,2,'Orange'),
(55,1,2,'Light Green'),
(55,2,2,'Light Green'),
(56,1,2,'Orange'),
(50,1,2,'Light Blue'),
(54,2,2,'Burgundy'),
(52,1,2,'Gold'),
(58,2,2,'Yellow'),
(49,1,2,'Silver'),
(57,2,2,'Dark Gray'),
(47,1,11,'M'),
(23,2,2,'Turquoise'),
(46,1,11,'S'),
(48,2,11,'L'),
(59,1,11,'XS'),
(40,1,5,'Blue'),
(32,2,1,'Small'),
(39,1,5,'Red'),
(62,1,13,'Option 1'),
(63,1,13,'Option 2'),
(64,1,13,'Option 3'),
(42,1,5,'Yellow'),
(31,2,1,'Medium'),
(60,2,11,'XL'),
(53,1,2,'Dark Blue'),
(61,2,11,'XXL'),
(51,1,2,'Green'),
(24,1,2,'Violet'),
(43,2,1,'Large'),
(44,1,2,'Steel'),
(45,1,2,'Red'),
(41,2,5,'Green'),
(63,2,13,'Option 2'),
(64,2,13,'Option 3'),
(42,2,5,'Yellow'),
(53,2,2,'Dark Blue'),
(51,2,2,'Green'),
(24,2,2,'Violet'),
(44,2,2,'Steel'),
(45,2,2,'Red'),
(41,3,5,'Green'),
(43,3,1,'Large'),
(61,3,11,'XXL'),
(60,3,11,'XL'),
(31,3,1,'Medium'),
(32,3,1,'Small'),
(48,3,11,'L'),
(23,3,2,'Turquoise'),
(57,3,2,'Dark Gray'),
(58,3,2,'Yellow'),
(54,3,2,'Burgundy'),
(55,3,2,'Light Green'),
(56,3,2,'Orange'),
(50,3,2,'Light Blue'),
(52,3,2,'Gold'),
(49,3,2,'Silver'),
(47,3,11,'M'),
(46,3,11,'S'),
(59,3,11,'XS'),
(40,3,5,'Blue'),
(39,3,5,'Red'),
(62,3,13,'Option 1'),
(63,3,13,'Option 2'),
(64,3,13,'Option 3'),
(42,3,5,'Yellow'),
(53,3,2,'Dark Blue'),
(51,3,2,'Green'),
(24,3,2,'Violet'),
(44,3,2,'Steel'),
(45,3,2,'Red');
/*!40000 ALTER TABLE `oc_option_value_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order`
--
DROP TABLE IF EXISTS `oc_order`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order` (
`order_id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_no` int(11) NOT NULL DEFAULT 0,
`invoice_prefix` varchar(26) NOT NULL,
`store_id` int(11) NOT NULL DEFAULT 0,
`store_name` varchar(64) NOT NULL,
`store_url` varchar(255) NOT NULL,
`customer_id` int(11) NOT NULL DEFAULT 0,
`customer_group_id` int(11) NOT NULL DEFAULT 0,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`telephone` varchar(32) NOT NULL,
`fax` varchar(32) NOT NULL,
`custom_field` text NOT NULL,
`payment_firstname` varchar(32) NOT NULL,
`payment_lastname` varchar(32) NOT NULL,
`payment_company` varchar(60) NOT NULL,
`payment_address_1` varchar(128) NOT NULL,
`payment_address_2` varchar(128) NOT NULL,
`payment_city` varchar(128) NOT NULL,
`payment_postcode` varchar(10) NOT NULL,
`payment_country` varchar(128) NOT NULL,
`payment_country_id` int(11) NOT NULL,
`payment_zone` varchar(128) NOT NULL,
`payment_zone_id` int(11) NOT NULL,
`payment_address_format` text NOT NULL,
`payment_custom_field` text NOT NULL,
`payment_method` varchar(128) NOT NULL,
`payment_code` varchar(128) NOT NULL,
`shipping_firstname` varchar(32) NOT NULL,
`shipping_lastname` varchar(32) NOT NULL,
`shipping_company` varchar(40) NOT NULL,
`shipping_address_1` varchar(128) NOT NULL,
`shipping_address_2` varchar(128) NOT NULL,
`shipping_city` varchar(128) NOT NULL,
`shipping_postcode` varchar(10) NOT NULL,
`shipping_country` varchar(128) NOT NULL,
`shipping_country_id` int(11) NOT NULL,
`shipping_zone` varchar(128) NOT NULL,
`shipping_zone_id` int(11) NOT NULL,
`shipping_address_format` text NOT NULL,
`shipping_custom_field` text NOT NULL,
`shipping_method` varchar(128) NOT NULL,
`shipping_code` varchar(128) NOT NULL,
`comment` text NOT NULL,
`total` decimal(15,4) NOT NULL DEFAULT 0.0000,
`order_status_id` int(11) NOT NULL DEFAULT 0,
`affiliate_id` int(11) NOT NULL,
`commission` decimal(15,4) NOT NULL,
`marketing_id` int(11) NOT NULL,
`tracking` varchar(64) NOT NULL,
`language_id` int(11) NOT NULL,
`currency_id` int(11) NOT NULL,
`currency_code` varchar(3) NOT NULL,
`currency_value` decimal(15,8) NOT NULL DEFAULT 1.00000000,
`ip` varchar(40) NOT NULL,
`forwarded_ip` varchar(40) NOT NULL,
`user_agent` varchar(255) NOT NULL,
`accept_language` varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order`
--
LOCK TABLES `oc_order` WRITE;
/*!40000 ALTER TABLE `oc_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_order` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order_history`
--
DROP TABLE IF EXISTS `oc_order_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order_history` (
`order_history_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`order_status_id` int(11) NOT NULL,
`notify` tinyint(1) NOT NULL DEFAULT 0,
`comment` text NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`order_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order_history`
--
LOCK TABLES `oc_order_history` WRITE;
/*!40000 ALTER TABLE `oc_order_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_order_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order_option`
--
DROP TABLE IF EXISTS `oc_order_option`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order_option` (
`order_option_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`order_product_id` int(11) NOT NULL,
`product_option_id` int(11) NOT NULL,
`product_option_value_id` int(11) NOT NULL DEFAULT 0,
`name` varchar(255) NOT NULL,
`value` text NOT NULL,
`type` varchar(32) NOT NULL,
PRIMARY KEY (`order_option_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order_option`
--
LOCK TABLES `oc_order_option` WRITE;
/*!40000 ALTER TABLE `oc_order_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_order_option` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order_product`
--
DROP TABLE IF EXISTS `oc_order_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order_product` (
`order_product_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`model` varchar(64) NOT NULL,
`quantity` int(4) NOT NULL,
`price` decimal(15,4) NOT NULL DEFAULT 0.0000,
`total` decimal(15,4) NOT NULL DEFAULT 0.0000,
`tax` decimal(15,4) NOT NULL DEFAULT 0.0000,
`reward` int(8) NOT NULL,
PRIMARY KEY (`order_product_id`),
KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order_product`
--
LOCK TABLES `oc_order_product` WRITE;
/*!40000 ALTER TABLE `oc_order_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_order_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order_recurring`
--
DROP TABLE IF EXISTS `oc_order_recurring`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order_recurring` (
`order_recurring_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`reference` varchar(255) NOT NULL,
`product_id` int(11) NOT NULL,
`product_name` varchar(255) NOT NULL,
`product_quantity` int(11) NOT NULL,
`recurring_id` int(11) NOT NULL,
`recurring_name` varchar(255) NOT NULL,
`recurring_description` varchar(255) NOT NULL,
`recurring_frequency` varchar(25) NOT NULL,
`recurring_cycle` smallint(6) NOT NULL,
`recurring_duration` smallint(6) NOT NULL,
`recurring_price` decimal(10,4) NOT NULL,
`trial` tinyint(1) NOT NULL,
`trial_frequency` varchar(25) NOT NULL,
`trial_cycle` smallint(6) NOT NULL,
`trial_duration` smallint(6) NOT NULL,
`trial_price` decimal(10,4) NOT NULL,
`status` tinyint(4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`order_recurring_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order_recurring`
--
LOCK TABLES `oc_order_recurring` WRITE;
/*!40000 ALTER TABLE `oc_order_recurring` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_order_recurring` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order_recurring_transaction`
--
DROP TABLE IF EXISTS `oc_order_recurring_transaction`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order_recurring_transaction` (
`order_recurring_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
`order_recurring_id` int(11) NOT NULL,
`reference` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`amount` decimal(10,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`order_recurring_transaction_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order_recurring_transaction`
--
LOCK TABLES `oc_order_recurring_transaction` WRITE;
/*!40000 ALTER TABLE `oc_order_recurring_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_order_recurring_transaction` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order_shipment`
--
DROP TABLE IF EXISTS `oc_order_shipment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order_shipment` (
`order_shipment_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`date_added` datetime NOT NULL,
`shipping_courier_id` varchar(255) NOT NULL DEFAULT '',
`tracking_number` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`order_shipment_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order_shipment`
--
LOCK TABLES `oc_order_shipment` WRITE;
/*!40000 ALTER TABLE `oc_order_shipment` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_order_shipment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order_status`
--
DROP TABLE IF EXISTS `oc_order_status`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order_status` (
`order_status_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
PRIMARY KEY (`order_status_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order_status`
--
LOCK TABLES `oc_order_status` WRITE;
/*!40000 ALTER TABLE `oc_order_status` DISABLE KEYS */;
INSERT INTO `oc_order_status` VALUES
(1,1,'Onay Bekliyor'),
(2,1,'Hazırlanıyor'),
(3,1,'Kargoya Verildi'),
(5,1,'Tamamlandı'),
(7,1,'İptal Edildi'),
(8,1,'Reddedildi'),
(9,1,'İptal Geri Alındı'),
(10,1,'Başarısız'),
(11,1,'İade Edildi'),
(12,1,'Durduruldu'),
(13,1,'Ters İbraz'),
(14,1,'Süresi Doldu'),
(15,1,'Hazırlandı'),
(16,1,'Hükümsüz');
/*!40000 ALTER TABLE `oc_order_status` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order_total`
--
DROP TABLE IF EXISTS `oc_order_total`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order_total` (
`order_total_id` int(10) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`code` varchar(32) NOT NULL,
`title` varchar(255) NOT NULL,
`value` decimal(15,4) NOT NULL DEFAULT 0.0000,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`order_total_id`),
KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order_total`
--
LOCK TABLES `oc_order_total` WRITE;
/*!40000 ALTER TABLE `oc_order_total` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_order_total` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_order_voucher`
--
DROP TABLE IF EXISTS `oc_order_voucher`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_order_voucher` (
`order_voucher_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`voucher_id` int(11) NOT NULL,
`description` varchar(255) NOT NULL,
`code` varchar(10) NOT NULL,
`from_name` varchar(64) NOT NULL,
`from_email` varchar(96) NOT NULL,
`to_name` varchar(64) NOT NULL,
`to_email` varchar(96) NOT NULL,
`voucher_theme_id` int(11) NOT NULL,
`message` text NOT NULL,
`amount` decimal(15,4) NOT NULL,
PRIMARY KEY (`order_voucher_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_order_voucher`
--
LOCK TABLES `oc_order_voucher` WRITE;
/*!40000 ALTER TABLE `oc_order_voucher` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_order_voucher` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product`
--
DROP TABLE IF EXISTS `oc_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product` (
`product_id` int(11) NOT NULL AUTO_INCREMENT,
`model` varchar(64) NOT NULL,
`sku` varchar(64) NOT NULL,
`upc` varchar(12) NOT NULL,
`ean` varchar(14) NOT NULL,
`jan` varchar(13) NOT NULL,
`isbn` varchar(17) NOT NULL,
`mpn` varchar(64) NOT NULL,
`location` varchar(128) NOT NULL,
`quantity` int(4) NOT NULL DEFAULT 0,
`stock_status_id` int(11) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`manufacturer_id` int(11) NOT NULL,
`shipping` tinyint(1) NOT NULL DEFAULT 1,
`price` decimal(15,4) NOT NULL DEFAULT 0.0000,
`points` int(8) NOT NULL DEFAULT 0,
`tax_class_id` int(11) NOT NULL,
`date_available` date NOT NULL DEFAULT '0000-00-00',
`weight` decimal(15,8) NOT NULL DEFAULT 0.00000000,
`weight_class_id` int(11) NOT NULL DEFAULT 0,
`length` decimal(15,8) NOT NULL DEFAULT 0.00000000,
`width` decimal(15,8) NOT NULL DEFAULT 0.00000000,
`height` decimal(15,8) NOT NULL DEFAULT 0.00000000,
`length_class_id` int(11) NOT NULL DEFAULT 0,
`subtract` tinyint(1) NOT NULL DEFAULT 1,
`minimum` int(11) NOT NULL DEFAULT 1,
`sort_order` int(11) NOT NULL DEFAULT 0,
`status` tinyint(1) NOT NULL DEFAULT 0,
`viewed` int(5) NOT NULL DEFAULT 0,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=424 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product`
--
LOCK TABLES `oc_product` WRITE;
/*!40000 ALTER TABLE `oc_product` DISABLE KEYS */;
INSERT INTO `oc_product` VALUES
(28,'Product 1','','','','','','','',926,7,'catalog/demo/htc_touch_hd_1.jpg',5,1,100.0000,200,9,'2009-02-03',146.40000000,2,0.00000000,0.00000000,0.00000000,1,1,1,0,1,37200,'2009-02-03 16:06:50','2018-06-13 14:37:16'),
(30,'Product 3','','','','','','','',0,6,'catalog/demo/canon_eos_5d_1.jpg',9,1,100.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,37372,'2009-02-03 16:59:00','2018-06-13 13:27:39'),
(31,'Product 4','','','','','','','',995,6,'catalog/demo/nikon_d300_1.jpg',0,1,80.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,3,1,1,0,1,17851,'2009-02-03 17:00:10','2018-06-13 15:17:08'),
(32,'Product 5','','','','','','','',994,6,'catalog/demo/ipod_touch_1.jpg',8,1,100.0000,0,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,24538,'2009-02-03 17:07:26','2018-06-13 14:50:53'),
(33,'Product 6','','','','','','','',999,6,'catalog/demo/samsung_syncmaster_941bw.jpg',0,1,200.0000,0,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,31246,'2009-02-03 17:08:31','2018-07-26 17:39:17'),
(34,'Product 7','','','','','','','',996,6,'catalog/demo/ipod_shuffle_1.jpg',8,1,100.0000,0,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,26135,'2009-02-03 18:07:54','2018-06-13 14:49:48'),
(367,'Model 992','','','','','','','',93,5,'catalog/journal3/products/electronics/smart-tv-h6240-by-samsung.jpg',9,1,4009.0000,0,9,'2018-05-27',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,26467,'2018-05-10 00:08:18','2018-07-26 14:13:10'),
(36,'Product 9','','','','','','','',989,6,'catalog/demo/ipod_nano_1.jpg',8,0,100.0000,100,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,26109,'2009-02-03 18:09:19','2018-06-13 14:45:48'),
(40,'product 11','','','','','','','',957,5,'catalog/demo/iphone_1.jpg',8,1,101.0000,0,9,'2009-02-03',10.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,44992,'2009-02-03 21:07:12','2018-06-13 14:38:50'),
(41,'Product 14','','','','','','','',0,5,'catalog/demo/imac_1.jpg',8,1,100.0000,0,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,30883,'2009-02-03 21:07:26','2018-06-13 14:38:28'),
(43,'Product 16','','','','','','','',927,5,'catalog/demo/macbook_1.jpg',8,0,500.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,41233,'2009-02-03 21:07:49','2018-06-13 14:58:42'),
(44,'Product 17','','','','','','','',992,5,'catalog/demo/macbook_air_1.jpg',8,1,1000.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,43749,'2009-02-03 21:08:00','2018-06-13 14:59:49'),
(45,'Product 18','','','','','','','',994,5,'catalog/demo/macbook_pro_1.jpg',8,1,2000.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,30875,'2009-02-03 21:08:17','2018-06-13 15:00:12'),
(368,'Model 980','','','','','','','',99,5,'catalog/journal3/products/electronics/sony-bravia.jpg',15,1,6009.0000,0,9,'2018-05-27',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,25647,'2018-05-05 09:01:29','2018-07-26 17:40:48'),
(47,'Product 21','','','','','','','',1000,5,'catalog/demo/hp_1.jpg',7,1,100.0000,400,9,'2009-02-03',1.00000000,1,0.00000000,0.00000000,0.00000000,1,0,1,0,1,37175,'2009-02-03 21:08:40','2018-06-13 14:37:04'),
(48,'product 20','test 1','','','','','','test 2',989,5,'catalog/demo/ipod_classic_1.jpg',8,1,100.0000,0,9,'2009-02-08',1.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,39404,'2009-02-08 17:21:51','2018-06-13 14:47:04'),
(49,'SAM1','','','','','','','',0,8,'catalog/demo/samsung_tab_1.jpg',7,1,199.9900,0,9,'2011-04-25',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,21282,'2011-04-26 08:57:34','2018-07-26 17:37:57'),
(364,'Model 996','','','','','','','',98,5,'catalog/journal3/products/electronics/curved-oled-tv-55ec9300-by-lg.jpg',15,1,4789.0000,0,9,'2018-05-27',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,0,1,1,25421,'2018-05-25 20:42:32','2018-07-26 17:36:57'),
(365,'Model 995','','','','','','','',0,8,'catalog/journal3/products/electronics/ks9500-curved-4k-suhd-tv-by-samsung.jpg',15,1,0.0000,0,9,'2018-05-27',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,37744,'2018-05-22 04:28:13','2018-06-13 15:45:13'),
(366,'Model 994','','','','','','','',0,8,'catalog/journal3/products/electronics/leica-m9-digital-camera-by-leica.jpg',15,1,2189.0000,100,9,'2018-05-27',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,30151,'2018-05-02 08:13:29','2020-06-12 21:28:25'),
(274,'Model 79','','','','','','','',87,5,'catalog/journal3/products/beauty/2.jpg',19,1,460.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,40985,'2018-05-04 03:42:45','2018-07-06 10:53:44'),
(275,'Model 754','','','','','','','',99,7,'catalog/journal3/products/beauty/additional/5.jpg',20,1,248.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,39645,'2018-05-12 17:53:21','2018-07-06 11:01:25'),
(276,'Model 920','','','','','','','',97,8,'catalog/journal3/products/beauty/7.jpg',19,1,299.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,31721,'2018-05-20 06:18:28','2018-07-06 11:00:49'),
(277,'Model 634','','','','','','','',58,6,'catalog/journal3/products/beauty/9.jpg',19,1,570.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,36822,'2018-05-02 01:52:20','2018-07-06 10:53:06'),
(278,'Model 48','','','','','','','',99,7,'catalog/journal3/products/beauty/13.jpg',18,1,810.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,36359,'2018-05-08 14:26:15','2018-07-06 10:58:40'),
(279,'Model 87','','','','','','','',91,7,'catalog/journal3/products/beauty/14.jpg',20,1,165.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,33491,'2018-05-05 18:34:14','2018-07-06 10:54:14'),
(280,'Model 999','sku_test','','','','','','Test',45,5,'catalog/journal3/products/beauty/17.jpg',20,1,680.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,39296,'2018-05-02 01:32:29','2021-02-21 09:21:54'),
(281,'Model 90','','','','','','','',99,8,'catalog/journal3/products/beauty/19.jpg',13,1,349.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,32679,'2018-05-21 23:59:43','2018-07-06 11:02:08'),
(282,'Model 91','','','','','','','',57,7,'catalog/journal3/products/beauty/22.jpg',18,1,760.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,40276,'2018-05-12 19:21:06','2018-07-06 10:49:18'),
(283,'Model 92','','','','','','','',96,6,'catalog/journal3/products/beauty/24.jpg',19,1,309.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,38264,'2018-05-27 00:46:24','2018-07-06 10:56:53'),
(284,'Model 93','','','','','','','',92,7,'catalog/journal3/products/beauty/25.jpg',18,1,519.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,31286,'2018-05-05 17:48:41','2018-07-06 11:05:10'),
(285,'Model 94','','','','','','','',97,7,'catalog/journal3/products/beauty/26.jpg',13,1,321.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,32695,'2018-05-06 14:44:13','2018-07-06 11:03:14'),
(286,'Model 67','','','','','','','',96,8,'catalog/journal3/products/beauty/27.jpg',20,1,652.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,26079,'2018-05-14 20:15:03','2018-07-06 11:04:37'),
(287,'Model 65','','','','','','','',91,7,'catalog/journal3/products/beauty/28.jpg',18,1,209.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,32752,'2018-05-23 09:02:38','2018-07-06 11:04:26'),
(288,'Model 109','','','','','','','',97,7,'catalog/journal3/products/beauty/29.jpg',19,1,499.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,26704,'2018-05-11 08:28:03','2018-06-13 15:19:53'),
(289,'Model 99','','','','','','','',0,6,'catalog/journal3/products/beauty/33.jpg',13,1,419.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,40410,'2018-05-15 15:12:19','2018-07-06 10:55:39'),
(290,'Model 100','','','','','','','',98,5,'catalog/journal3/products/beauty/basket2.jpg',21,1,960.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,22372,'2018-05-13 02:37:26','2018-07-06 11:02:44'),
(291,'Model 101','','','','','','','',98,7,'catalog/journal3/products/beauty/basket4.jpg',18,1,156.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,20371,'2018-05-17 15:30:14','2018-08-06 15:47:56'),
(292,'Model 103','','','','','','','',97,5,'catalog/journal3/products/beauty/basket3.jpg',20,1,809.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,22253,'2018-05-17 21:38:53','2018-07-26 17:43:15'),
(293,'Model 106','','','','','','','',98,6,'catalog/journal3/products/beauty/basket.jpg',7,1,360.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,24749,'2018-05-05 13:43:45','2018-07-06 10:59:30'),
(294,'Model 209','','','','','','','',0,8,'catalog/journal3/products/beauty/eyelasher.jpg',21,1,101.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,31910,'2018-05-03 03:42:06','2018-07-06 10:56:14'),
(295,'Model 104','','','','','','','',98,7,'catalog/journal3/products/beauty/brush-case2.jpg',20,1,0.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,29506,'2018-05-28 01:19:16','2018-07-06 11:03:34'),
(296,'Model 205','','','','','','','',95,5,'catalog/journal3/products/beauty/brush.jpg',21,1,579.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28421,'2018-05-09 19:30:00','2018-07-06 11:05:30'),
(297,'Model 902','','','','','','','',90,6,'catalog/journal3/products/beauty/brush2.jpg',18,1,307.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,36675,'2018-05-23 21:32:16','2018-07-06 10:55:03'),
(298,'Model 58','','','','','','','',99,5,'catalog/journal3/products/beauty/powder2.jpg',21,1,190.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,31501,'2018-05-29 01:11:19','2018-07-06 11:00:18'),
(299,'Model 48','','','','','','','',0,6,'catalog/journal3/products/fashion/f1.jpg',12,1,399.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,37160,'2018-08-12 13:19:47','2018-09-04 17:12:46'),
(300,'Model 30','','','','','','','',9,7,'catalog/journal3/products/fashion/additional/8549539065_78e985be0c_o.jpg',13,1,589.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,56360,'2018-08-11 15:05:00','2018-09-05 08:41:27'),
(301,'Model 59','','','','','','','',51,5,'catalog/journal3/products/fashion/b1.jpg',11,1,689.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,40606,'2018-05-14 11:25:39','2018-09-04 23:08:57'),
(303,'Model 55','','','','','','','',50,6,'catalog/journal3/products/fashion/r2.jpg',16,1,369.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,38336,'2018-08-10 01:09:22','2018-09-05 08:33:19'),
(304,'Model 56','','','','','','','',43,6,'catalog/journal3/products/fashion/j1.jpg',16,1,392.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,47924,'2018-08-09 18:07:02','2018-09-05 08:14:59'),
(305,'Model 99','','','','','','','',67,7,'catalog/journal3/products/fashion/additional/8337480771_2358b04366_o.jpg',16,1,535.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,36977,'2018-08-08 15:07:04','2018-09-05 08:39:21'),
(306,'Model 40','','','','','','','',91,5,'catalog/journal3/products/fashion/m1.jpg',15,1,355.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,48750,'2018-08-06 21:14:17','2018-09-05 08:25:32'),
(307,'Model 66','','','','','','','',0,5,'catalog/journal3/products/fashion/k1.jpg',13,1,829.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28604,'2018-05-07 12:50:14','2018-09-05 08:20:15'),
(308,'Model 90','','','','','','','',94,7,'catalog/journal3/products/fashion/n1.jpg',11,1,319.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,25015,'2018-05-16 00:28:20','2018-09-04 17:13:40'),
(309,'Model 91','','','','','','','',94,8,'catalog/journal3/products/fashion/s2.jpg',12,1,902.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,55471,'2018-05-26 11:50:56','2018-09-05 08:35:56'),
(310,'Model 76','','','','','','','',0,8,'catalog/journal3/products/fashion/d1.jpg',17,1,209.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,37636,'2018-05-23 09:49:42','2018-09-04 23:11:39'),
(311,'Model 63','','','','','','','',95,8,'catalog/journal3/products/fashion/i1.jpg',13,1,659.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,25583,'2018-05-06 13:35:43','2018-09-05 08:11:01'),
(312,'Model 85','','','','','','','',98,6,'catalog/journal3/products/fashion/g1.jpg',11,1,209.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,38000,'2018-05-21 14:29:27','2018-09-04 23:08:18'),
(313,'Model 84','','','','','','','',86,5,'catalog/journal3/products/fashion/p1.jpg',13,1,498.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,41858,'2018-05-27 07:40:10','2018-09-05 08:29:11'),
(314,'Model 64','','','','','','','',90,6,'catalog/journal3/products/fashion/c1.jpg',16,1,456.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,36960,'2018-05-10 18:52:28','2018-09-04 23:10:20'),
(316,'Model 23','','','','','','','',97,5,'catalog/journal3/products/fashion/additional/adult-airport-bags-837129.jpg',12,1,329.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,24187,'2018-05-01 12:11:51','2018-09-04 17:14:47'),
(317,'Model 84','','','','','','','',91,8,'catalog/journal3/products/fashion/a1.jpg',17,1,299.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,41513,'2018-05-03 14:53:42','2018-09-25 09:46:59'),
(318,'Model 93','','','','','','','',95,5,'catalog/journal3/products/fashion/bags/bag.jpg',12,1,509.0000,0,9,'2018-05-14',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,38837,'2018-05-12 13:52:56','2018-07-06 11:22:50'),
(319,'Model 94','','','','','','','',98,6,'catalog/journal3/products/fashion/bags/handbag.jpg',15,1,425.0000,0,9,'2018-05-14',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,34053,'2018-05-21 00:43:37','2018-06-13 15:16:08'),
(320,'Model 56','','','','','','','',96,8,'catalog/journal3/products/fashion/bags/phone-case2.jpg',11,1,289.0000,0,9,'2018-05-14',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,34618,'2018-05-06 09:59:16','2018-07-06 11:21:51'),
(321,'Model 49','','','','','','','',95,5,'catalog/journal3/products/fashion/bags/purse.jpg',13,1,619.0000,0,9,'2018-05-14',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,33988,'2018-05-27 23:45:29','2018-06-13 14:52:28'),
(322,'Model 76','','','','','','','',95,8,'catalog/journal3/products/fashion/bags/purse2.jpg',12,1,638.0000,0,9,'2018-05-15',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,39221,'2018-05-29 16:49:38','2018-07-06 11:26:08'),
(323,'Model 50','','','','','','','',99,6,'catalog/journal3/products/footwear/14.png',17,1,499.0000,0,9,'2018-05-19',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,25316,'2018-05-03 12:51:44','2018-06-13 15:26:33'),
(324,'Moel 59','','','','','','','',84,5,'catalog/journal3/products/footwear/15.png',17,1,309.0000,0,9,'2018-05-19',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,35640,'2018-05-17 13:49:48','2018-07-06 11:12:02'),
(325,'Model 101','','','','','','','',99,5,'catalog/journal3/products/footwear/1.png',17,1,539.0000,0,9,'2018-05-19',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,27539,'2018-05-16 06:33:47','2018-06-13 14:56:04'),
(326,'Model 102','','','','','','','',97,8,'catalog/journal3/products/footwear/10.png',16,1,375.0000,0,9,'2018-05-19',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,21252,'2018-05-27 15:19:33','2018-06-13 14:18:10'),
(327,'Model 103','','','','','','','',0,6,'catalog/journal3/products/footwear/11.png',14,1,329.0000,0,9,'2018-05-19',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,27096,'2018-05-28 08:56:24','2018-06-13 15:24:30'),
(328,'Model 104','','','','','','','',99,5,'catalog/journal3/products/footwear/12.png',17,1,649.0000,0,9,'2018-05-19',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,26729,'2018-05-27 22:43:21','2018-06-13 15:04:34'),
(329,'Model 106','','','','','','','',99,5,'catalog/journal3/products/footwear/13.png',11,1,762.0000,0,9,'2018-05-19',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,18149,'2018-05-23 14:47:36','2018-08-06 15:50:39'),
(330,'Model 108','','','','','','','',96,8,'catalog/journal3/products/footwear/16.png',17,1,489.0000,0,9,'2018-05-19',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,21870,'2018-05-03 05:47:54','2018-08-06 15:50:16'),
(331,'Model 201','','','','','','','',99,5,'catalog/journal3/products/footwear/2.png',17,1,590.0000,0,9,'2018-05-20',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28088,'2018-05-04 08:36:44','2018-06-13 14:16:09'),
(332,'Model 202','','','','','','','',99,6,'catalog/journal3/products/footwear/3.png',16,1,579.0000,0,9,'2018-05-20',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,19565,'2018-05-11 01:39:59','2018-06-13 15:03:51'),
(333,'Model 203','','','','','','','',99,5,'catalog/journal3/products/footwear/4.png',12,1,718.0000,0,9,'2018-05-20',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,24143,'2018-05-11 06:29:42','2018-07-13 13:45:21'),
(334,'Model 204','','','','','','','',95,8,'catalog/journal3/products/footwear/5.png',14,1,469.0000,0,9,'2018-05-20',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,36733,'2018-05-22 03:28:32','2018-07-06 11:12:56'),
(335,'Model 205','','','','','','','',98,5,'catalog/journal3/products/footwear/6.png',11,1,599.0000,0,9,'2018-05-20',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,22401,'2018-05-15 21:53:38','2018-07-26 14:11:18'),
(336,'Model 206','','','','','','','',99,8,'catalog/journal3/products/footwear/7.png',16,1,619.0000,0,9,'2018-05-20',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,29674,'2018-05-12 03:02:33','2018-07-13 14:14:20'),
(337,'Model 207','','','','','','','',99,6,'catalog/journal3/products/footwear/8.png',16,1,327.0000,0,9,'2018-05-20',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,25219,'2018-05-11 21:31:52','2018-07-06 11:17:36'),
(338,'Model 208','','','','','','','',96,5,'catalog/journal3/products/footwear/9.png',16,1,0.0000,0,9,'2018-05-20',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,27816,'2018-05-22 02:31:40','2018-07-06 11:12:31'),
(339,'Model 209','','','','','','','',99,5,'catalog/journal3/products/footwear/NordWood-4301.jpg',7,1,579.0000,0,9,'2018-05-21',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,27045,'2018-05-13 20:02:46','2018-06-13 14:21:47'),
(340,'Model 301','','','','','','','',98,6,'catalog/journal3/products/footwear/flip-flops.jpg',14,1,119.0000,0,9,'2018-05-21',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28623,'2018-05-01 20:38:52','2018-06-13 15:04:11'),
(341,'Model 202','','','','','','','',99,8,'catalog/journal3/products/footwear/sandals.jpg',14,1,815.0000,0,9,'2018-05-21',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,27142,'2018-05-26 19:06:02','2018-06-13 15:44:26'),
(342,'Model 206','','','','','','','',0,6,'catalog/journal3/products/footwear/shoe.jpg',16,1,425.0000,0,9,'2018-05-21',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,69014,'2018-05-07 09:33:33','2021-03-01 15:58:21'),
(343,'Model 208','','','','','','','',72,5,'catalog/journal3/products/footwear/shoes.jpg',17,1,540.0000,0,9,'2018-05-21',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,26422,'2018-05-15 14:29:40','2018-06-13 15:43:35'),
(344,'Model 302','','','','','','','',78,8,'catalog/journal3/products/footwear/shoes2.jpg',17,1,306.0000,0,9,'2018-05-22',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,37430,'2018-05-24 19:47:41','2018-07-06 11:32:37'),
(345,'Model 304','','','','','','','',98,6,'catalog/journal3/products/footwear/shoes4.jpg',12,1,699.0000,0,9,'2018-05-22',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28086,'2018-05-16 07:29:24','2018-06-13 15:41:45'),
(346,'Model 305','','','','','','','',10,5,'catalog/journal3/products/footwear/shoes5.jpg',12,1,129.0000,0,9,'2018-05-22',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,32033,'2018-05-06 02:04:00','2018-07-13 14:38:55'),
(347,'Model 306','','','','','','','',98,7,'catalog/journal3/products/footwear/shoes6.jpg',16,1,419.0000,0,9,'2018-05-22',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,32162,'2018-05-10 11:51:46','2018-07-06 11:16:58'),
(348,'Model 309','','','','','','','',99,5,'catalog/journal3/products/footwear/slippers.jpg',16,1,625.0000,0,9,'2018-05-22',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28458,'2018-05-03 05:06:54','2018-06-13 15:22:33'),
(349,'Model 401','','','','','','','',97,5,'catalog/journal3/products/fashion/bags/straw-bag.jpg',12,1,589.0000,0,9,'2018-05-22',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,34835,'2018-05-13 13:59:11','2018-08-06 15:47:10'),
(350,'Mode 402','','','','','','','',78,6,'catalog/journal3/products/fashion/e1.jpg',11,1,410.0000,0,9,'2018-05-23',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,31893,'2018-05-27 06:35:13','2018-09-04 17:11:12'),
(351,'Model 402','','','','','','','',88,8,'catalog/journal3/products/fashion/h1.jpg',15,1,509.0000,0,9,'2018-05-23',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,31608,'2018-05-04 14:58:32','2018-09-04 17:12:57'),
(352,'Model 403','','','','','','','',98,8,'catalog/journal3/products/fashion/bags/tote2.jpg',13,1,639.0000,0,9,'2018-05-23',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,29652,'2018-05-30 07:07:02','2018-07-06 11:26:33'),
(353,'Model 408','','','','','','','',99,5,'catalog/journal3/products/fashion/bags/wallet.jpg',17,1,389.0000,0,9,'2018-05-24',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28155,'2018-05-16 14:39:37','2018-06-13 15:39:46'),
(354,'Model 50','','','','','','','',99,6,'catalog/journal3/products/fashion/bags/wallet2.jpg',16,1,199.0000,0,9,'2018-05-24',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,36353,'2018-05-21 03:56:57','2018-07-13 13:40:42'),
(355,'Model 501','','','','','','','',99,5,'catalog/journal3/products/fashion/accessories/case2.jpg',17,1,309.0000,0,9,'2018-05-25',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28543,'2018-05-24 23:45:55','2018-06-13 15:18:56'),
(356,'Model 502','','','','','','','',95,6,'catalog/journal3/products/fashion/accessories/phone-case.jpg',13,1,479.0000,0,9,'2018-05-25',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,38743,'2018-05-30 10:58:46','2018-07-13 14:06:22'),
(357,'Model 503','','','','','','','',83,8,'catalog/journal3/products/fashion/accessories/umbrella.jpg',13,1,99.0000,0,9,'2018-05-25',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,39994,'2018-05-16 07:36:03','2018-09-04 22:52:57'),
(359,'Model 509','','','','','','','',83,5,'catalog/journal3/products/electronics/beolab-19-by-bang-olufsen.jpg',15,1,2099.0000,0,9,'2018-05-25',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,25771,'2018-05-16 02:31:43','2018-07-06 11:33:17'),
(360,'Model 519','','','','','','','Europe',990,8,'catalog/journal3/products/electronics/beoplay-h6-headphones-by-bang-olufsen.jpg',15,1,3299.0000,0,9,'2018-05-25',0.00000000,1,0.00000000,0.00000000,0.00000000,1,0,1,-10,1,89711,'2018-05-21 21:26:43','2022-01-18 16:25:09'),
(361,'Model 999','','','','','','','',71,6,'catalog/journal3/products/electronics/bluetooth-gramophone-by-gramovox.jpg',15,1,1899.0000,0,9,'2018-05-27',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,26738,'2018-05-30 03:38:25','2018-07-06 11:30:29'),
(362,'Model 998','','','','','','','',99,5,'catalog/journal3/products/electronics/camera.jpg',9,1,675.0000,0,9,'2018-05-27',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,20293,'2018-05-24 01:51:56','2018-06-13 15:22:09'),
(363,'Model 997','','','','','','','',91,8,'catalog/journal3/products/electronics/camera2.jpg',9,1,4099.0000,0,9,'2018-05-27',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,22829,'2018-05-28 22:24:24','2020-10-30 16:14:32'),
(256,'Model 340','','','','','','','',98,5,'catalog/journal3/products/backpacks/8.jpg',13,1,534.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,39869,'2018-05-11 10:26:14','2018-06-13 15:45:21'),
(257,'Model 341','','','','','','','',85,5,'catalog/journal3/products/misc/bag-yellow-2472101_1920.jpg',16,1,387.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,46387,'2018-05-29 08:57:59','2018-07-06 11:25:19'),
(259,'Model 343','','','','','','','',81,5,'catalog/journal3/products/backpacks/5.jpg',17,1,870.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,46472,'2018-05-21 13:31:14','2018-07-06 11:20:26'),
(260,'Model 344','','','','','','','',93,5,'catalog/journal3/products/backpacks/9.jpg',14,1,870.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,25767,'2018-05-18 16:42:12','2018-06-13 14:28:52'),
(261,'Model 345','','','','','','','',99,5,'catalog/journal3/products/misc/chair-1019923_1920.jpg',14,1,799.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,25078,'2018-05-27 18:57:21','2018-06-13 15:24:45'),
(262,'Model 350','','','','','','','',94,5,'catalog/journal3/products/misc/lazy-chiar.jpg',10,1,979.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,23427,'2018-05-21 20:40:07','2018-06-13 14:53:55'),
(263,'Model 347','','','','','','','',96,5,'catalog/journal3/products/misc/winter-boots-795706_1920.jpg',14,1,235.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,34411,'2018-05-24 22:28:35','2018-07-06 11:31:37'),
(264,'Model 343','','','','','','','',89,5,'catalog/journal3/products/perfume/perfume3.jpg',13,1,7450.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,47785,'2018-05-28 02:22:35','2018-07-26 14:11:40'),
(266,'Model 351','','','','','','','',92,5,'catalog/journal3/products/misc/black-boots.jpg',16,1,540.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,41692,'2018-05-04 16:27:09','2018-07-06 11:11:21'),
(267,'Model 351','','','','','','','',86,5,'catalog/journal3/products/misc/hiking-shoes-3054634_1920.jpg',14,1,353.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,33041,'2018-05-28 03:08:01','2018-07-06 11:14:32'),
(268,'Model 354','','','','','','','',59,5,'catalog/journal3/products/misc/fashion-footwear-high-heels-40377.jpg',7,1,559.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,48505,'2018-05-05 14:18:38','2018-07-06 11:15:04'),
(269,'Model 355','','','','','','','',0,6,'catalog/journal3/products/footwear/boot-2558324_1920.jpg',14,1,779.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,44329,'2018-05-02 14:09:06','2018-07-06 11:18:18'),
(270,'Model 356','','','','','','','',91,5,'catalog/journal3/products/misc/pexels-photo.jpg',7,1,559.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,31899,'2018-05-25 03:49:39','2018-06-13 15:16:15'),
(271,'Model 357','','','','','','','',16,5,'catalog/journal3/products/sunglasses/glasses3.jpg',22,1,397.0000,100,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,75564,'2018-05-27 00:40:58','2018-07-31 16:36:03'),
(272,'Model 358','','','','','','','',0,5,'catalog/journal3/products/misc/pexels-photo-236900.jpeg',10,1,3010.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,53840,'2018-05-28 15:55:54','2018-06-13 15:24:37'),
(273,'Model 358','','','','','','','',865,5,'catalog/journal3/products/misc/pexels-photo-280250.jpeg',11,1,209.1500,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,56220,'2018-05-01 05:36:36','2018-06-13 15:41:55'),
(369,'Model 981','','','','','','','',93,8,'catalog/journal3/products/electronics/w8-led-tv-by-sony.jpg',8,1,4099.0000,0,9,'2018-05-29',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,25952,'2018-05-09 04:15:20','2018-07-06 11:37:45'),
(370,'Model 982','','','','','','','',96,5,'catalog/journal3/products/electronics/apple-black.png',8,1,2189.0000,0,9,'2018-05-29',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28702,'2018-05-11 04:26:51','2018-07-06 11:27:59'),
(371,'Model 970','','','','','','','',98,6,'catalog/journal3/products/backpacks/1.jpg',12,1,610.0000,0,9,'2018-05-29',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,34598,'2018-05-27 09:28:16','2018-07-13 13:42:52'),
(372,'Model 972','','','','','','','',98,8,'catalog/journal3/products/backpacks/10.jpg',11,1,470.0000,0,9,'2018-05-30',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,33115,'2018-05-12 10:00:48','2018-08-06 15:47:35'),
(373,'Model 961','','','','','','','',98,7,'catalog/journal3/products/backpacks/2.jpg',12,1,508.0000,0,9,'2018-05-30',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,38707,'2018-05-08 21:39:11','2018-07-06 11:23:37'),
(374,'Model 960','','','','','','','',98,5,'catalog/journal3/products/backpacks/3.jpg',16,1,799.0000,0,9,'2018-05-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,34715,'2018-05-06 06:13:34','2018-06-13 14:54:47'),
(376,'Model 930','JKF40','8934FG','E9008','J590932','IS7898','MP4939','London',98,8,'catalog/journal3/products/fashion/l1.jpg',17,1,199.0000,400,9,'2018-06-01',0.30000000,1,40.00000000,30.00000000,20.00000000,1,1,1,1,1,33810,'2018-05-03 14:10:17','2018-09-05 08:22:43'),
(42,'Product 15','','','','','','','',924,5,'catalog/demo/apple_cinema_30.jpg',8,1,100.0000,400,9,'2009-02-04',12.50000000,1,1.00000000,2.00000000,3.00000000,1,1,2,0,1,45266,'2009-02-03 21:07:37','2024-03-21 10:45:44'),
(377,'20134','','','','','','','',95,5,'catalog/journal3/products/sports/1.jpg',20,1,680.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,17543,'2018-10-13 13:21:36','2018-10-13 14:01:26'),
(378,'Model 601','','','','','','','',74,5,'catalog/journal3/products/electronics/apple-white-2.png',8,1,1199.0000,0,9,'2018-05-25',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,30758,'2018-10-13 13:21:36','2018-10-13 13:49:26'),
(379,'90976','','','','','','','',99,8,'catalog/journal3/products/sports/3.jpg',17,1,209.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,28140,'2018-10-13 13:21:36','2018-10-13 13:50:00'),
(380,'90991','','','','','','','',99,7,'catalog/journal3/products/sports/4.jpg',17,1,760.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,15319,'2018-10-13 13:21:36','2018-10-13 14:04:33'),
(381,'89851','','','','','','','',99,5,'catalog/journal3/products/sports/5.jpg',16,1,540.0000,0,9,'2014-03-31',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,15609,'2018-10-13 13:21:36','2018-10-13 14:03:47'),
(382,'23430','','','','','','','',99,7,'catalog/journal3/products/sports/6.jpg',13,1,589.0000,0,9,'2018-05-13',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,18697,'2018-10-13 13:21:36','2018-10-13 14:02:21'),
(383,'50189','','','','','','','',98,5,'catalog/journal3/products/sports/2.jpg',8,1,1199.0000,0,9,'2018-05-25',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,24553,'2018-10-13 13:56:14','2018-10-13 13:58:27'),
(391,'Model 3890','','','','','','','',999,5,'catalog/journal3/products/home/decor/5.png',19,1,80.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,4,1,16630,'2018-10-26 13:33:25','2018-10-26 13:53:57'),
(392,'Model 2890','','','','','','','',997,5,'catalog/journal3/products/home/decor/3.png',18,1,280.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,4,1,17429,'2018-10-26 13:48:11','2018-10-26 14:55:46'),
(393,'Model 3891','','','','','','','',0,5,'catalog/journal3/products/home/decor/4.png',19,1,80.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,4,1,16267,'2018-10-26 13:48:18','2018-10-26 13:54:26'),
(394,'Model 3890','','','','','','','',999,5,'catalog/journal3/products/home/decor/2.png',11,1,4900.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,4,1,15004,'2018-10-26 13:48:21','2018-10-26 13:54:58'),
(396,'Model 3891','','','','','','','',999,5,'catalog/journal3/products/home/decor/1.png',11,1,6280.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,4,1,15229,'2018-10-26 13:52:06','2018-10-26 13:55:22'),
(397,'Model 3890','','','','','','','',999,5,'catalog/journal3/products/home/tables/1.png',11,1,300.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,2,1,15977,'2018-10-26 13:56:50','2018-10-26 14:00:00'),
(398,'Model 3890','','','','','','','',0,5,'catalog/journal3/products/home/tables/2.png',19,1,240.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,2,1,15670,'2018-10-26 14:00:26','2018-10-26 14:04:36'),
(399,'Model 3890','','','','','','','',999,5,'catalog/journal3/products/home/tables/3.png',17,1,3100.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,2,1,15323,'2018-10-26 14:00:28','2018-10-26 14:04:56'),
(400,'Model 3990','','','','','','','',999,5,'catalog/journal3/products/home/tables/5.png',10,1,1300.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,2,1,14906,'2018-10-26 14:00:31','2018-10-26 14:00:31'),
(401,'Model 3290','','','','','','','',999,5,'catalog/journal3/products/home/tables/4.png',11,1,130.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,2,1,14558,'2018-10-26 14:00:33','2018-10-26 14:05:08'),
(402,'Model 3890','','','','','','','',998,5,'catalog/journal3/products/home/lamps/2.png',14,1,300.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,3,1,17770,'2018-10-26 14:05:37','2018-10-26 14:07:51'),
(403,'Model 890','','','','','','','',999,5,'catalog/journal3/products/home/lamps/3.png',12,1,240.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,3,1,17919,'2018-10-26 14:07:57','2018-10-26 14:17:46'),
(404,'Model 390','','','','','','','',0,5,'catalog/journal3/products/home/lamps/5.png',12,1,450.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,3,1,17830,'2018-10-26 14:07:59','2018-10-26 14:18:04'),
(405,'Model 2190','','','','','','','',999,5,'catalog/journal3/products/home/lamps/4.png',12,1,2100.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,3,1,19763,'2018-10-26 14:08:02','2018-10-26 14:08:02'),
(406,'Model 0390','','','','','','','',999,5,'catalog/journal3/products/home/lamps/6.png',12,1,200.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,3,1,18652,'2018-10-26 14:08:04','2018-10-26 14:16:22'),
(407,'Model 0990','','','','','','','',997,5,'catalog/journal3/products/home/lamps/7.png',17,1,100.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,3,1,17039,'2018-10-26 14:08:36','2018-10-26 14:17:05'),
(409,'Model 390X','','','','','','','',998,5,'catalog/journal3/products/home/sofa/1.png',21,1,5450.0000,0,9,'2018-05-19',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,17618,'2018-10-26 14:19:16','2018-10-26 14:24:18'),
(410,'Model 390X','','','','','','','',999,5,'catalog/journal3/products/home/sofa/2.png',21,1,2950.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,15571,'2018-10-26 14:24:54','2018-10-26 14:24:54'),
(411,'Model 390X','','','','','','','',0,5,'catalog/journal3/products/home/sofa/3.png',21,1,950.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,16670,'2018-10-26 14:25:05','2018-10-26 14:25:05'),
(412,'Model 390C','','','','','','','',999,6,'catalog/journal3/products/home/sofa/additional/10.png',21,1,250.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,16107,'2018-10-26 14:25:08','2018-10-27 18:12:38'),
(413,'Model 390X','','','','','','','',997,5,'catalog/journal3/products/home/sofa/6.png',21,1,450.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,17497,'2018-10-26 14:25:08','2018-10-27 18:12:21'),
(414,'Model 390X','','','','','','','',999,5,'catalog/journal3/products/home/sofa/7.png',21,1,9450.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,21458,'2018-10-26 14:25:12','2018-10-26 14:33:18'),
(415,'Model 390X','','','','','','','',999,5,'catalog/journal3/products/home/sofa/additional/8.png',21,1,1850.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,16237,'2018-10-26 14:25:12','2018-10-26 14:25:12'),
(418,'Model 289','','','','','','','',-10,5,'catalog/journal3/products/home/armchair/5.png',21,1,3680.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,21055,'2018-10-26 18:04:24','2019-03-15 17:56:22'),
(417,'Model 390X','','','','','','','',999,5,'catalog/journal3/products/home/sofa/additional/9.png',21,1,557.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,14697,'2018-10-26 14:28:32','2018-10-27 18:12:51'),
(419,'Model 1899','','','','','','','',980,5,'catalog/journal3/products/home/armchair/7.png',19,1,3680.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,21624,'2018-10-26 18:04:24','2018-10-26 18:04:24'),
(420,'Model 889','','','','','','','',989,5,'catalog/journal3/products/home/armchair/1.png',20,1,680.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,26394,'2018-10-26 18:04:24','2018-10-27 18:11:36'),
(421,'Model 989','','','','','','','',986,5,'catalog/journal3/products/home/armchair/additional/qq.png',15,1,3680.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,24218,'2018-10-26 18:04:24','2018-10-27 18:11:57'),
(422,'Model 339','','','','','','','',991,5,'catalog/journal3/products/home/armchair/4.png',17,1,1680.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,21630,'2018-10-26 18:04:24','2018-10-26 18:04:24'),
(423,'Model 189','','','','','','','',998,5,'catalog/journal3/products/home/armchair/9.png',21,1,3680.0000,0,9,'2018-05-12',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,22307,'2018-10-26 18:04:24','2018-10-26 18:04:24');
/*!40000 ALTER TABLE `oc_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_attribute`
--
DROP TABLE IF EXISTS `oc_product_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_attribute` (
`product_id` int(11) NOT NULL,
`attribute_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`text` text NOT NULL,
PRIMARY KEY (`product_id`,`attribute_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_attribute`
--
LOCK TABLES `oc_product_attribute` WRITE;
/*!40000 ALTER TABLE `oc_product_attribute` DISABLE KEYS */;
INSERT INTO `oc_product_attribute` VALUES
(45,2,1,'6'),
(44,4,1,'8 GB'),
(32,2,1,'2'),
(308,15,1,'cotton'),
(321,12,1,'party'),
(281,24,1,'lavender'),
(290,24,1,'lavender'),
(357,13,1,'beachwear'),
(349,12,1,'formal'),
(287,13,1,'party'),
(286,13,1,'party'),
(284,13,1,'party'),
(284,24,1,'butter'),
(332,13,1,'sport'),
(340,13,1,'beachwear'),
(328,13,1,'training'),
(319,13,1,'casual'),
(372,13,1,'travel'),
(272,13,1,'Formal'),
(272,26,1,'Sample 2'),
(272,27,1,'Example 3'),
(313,13,1,'daytime'),
(353,15,1,'leather'),
(345,13,1,'daytime'),
(345,15,1,'patent leather'),
(305,15,1,'rayon'),
(341,15,1,'suede leather'),
(291,24,1,'butter'),
(365,2,1,'6'),
(354,12,1,'daytime'),
(371,15,1,'canvas'),
(333,12,1,'sport'),
(316,15,1,'bio cotton'),
(356,15,1,'leather'),
(270,13,1,'Daytime'),
(270,26,1,'Sample 3'),
(270,27,1,'Example 1'),
(31,1,1,'processor'),
(346,15,1,'patent leather'),
(335,12,1,'sport'),
(256,26,1,'Sample 2'),
(260,13,1,'Hike'),
(260,26,1,'Sample 3'),
(260,27,1,'Example 3'),
(359,1,1,'loud music'),
(369,3,1,'processor'),
(276,24,1,'honey'),
(307,15,1,'rayon'),
(262,13,1,'Daytime'),
(262,15,1,'Non Leather'),
(262,26,1,'Sample 2'),
(262,27,1,'Example 2'),
(413,32,2,'Living'),
(374,15,1,'canvas'),
(325,13,1,'sport'),
(285,24,1,'butter'),
(306,15,1,'100% cotton'),
(267,12,1,'hiking'),
(412,32,2,'Living'),
(45,5,1,'16 GB'),
(43,4,1,'8gb'),
(295,24,1,'pony hair'),
(264,13,1,'Formal'),
(264,26,1,'Sample 3'),
(264,27,1,'Example 1'),
(289,13,1,'Fresh'),
(294,13,1,'party'),
(283,24,1,'butter'),
(326,13,1,'sport'),
(361,2,1,'processor'),
(339,15,1,'suede leather'),
(278,13,1,'night'),
(322,15,1,'leather'),
(322,13,1,'party'),
(293,24,1,'pony hair'),
(304,15,1,'cotton'),
(298,13,1,'party'),
(256,13,1,'Daytime'),
(304,13,1,'riding'),
(261,15,1,'Leather'),
(261,26,1,'Sample 3'),
(261,27,1,'Example 3'),
(303,15,1,'viscose'),
(323,13,1,'sport'),
(367,2,1,'4'),
(364,2,1,'6'),
(49,4,1,'16 GB'),
(33,1,1,'processor'),
(368,2,1,'4'),
(292,24,1,'brush'),
(309,12,1,'party'),
(309,15,1,'bio cotton'),
(351,15,1,'canvas'),
(376,13,1,'Casual'),
(352,15,1,'faux leather'),
(44,2,1,'4'),
(43,2,1,'1'),
(28,2,1,'4'),
(275,24,1,'cream'),
(275,25,1,'warm'),
(41,2,1,'6'),
(40,3,1,'processor'),
(273,27,1,'Example 2'),
(273,13,1,'Party'),
(273,26,1,'Sample 1'),
(300,15,1,'cotton'),
(271,27,1,'Example 3'),
(271,26,1,'Sample 3'),
(271,13,1,'Party'),
(355,15,1,'leather'),
(296,15,1,'pony hair'),
(288,13,1,'night'),
(362,4,1,'8 Gb'),
(348,15,1,'leather'),
(330,13,1,'daytime'),
(327,13,1,'sport'),
(336,13,1,'trainers'),
(411,32,2,'Living'),
(256,27,1,'Example 1'),
(329,13,1,'trainers'),
(343,12,1,'party'),
(267,13,1,'Formal'),
(266,27,1,'Example 3'),
(266,26,1,'Sample 1'),
(266,13,1,'Party'),
(311,15,1,'cotton'),
(310,15,1,'cashmere'),
(268,13,1,'Daytime'),
(268,26,1,'Sample 1'),
(268,27,1,'Example 3'),
(344,12,1,'casual'),
(344,15,1,'leather'),
(30,2,1,'processor'),
(259,13,1,'Formal'),
(259,26,1,'Sample 2'),
(259,27,1,'Example 2'),
(411,15,2,'Microfiber'),
(269,27,1,'Example 1'),
(269,26,1,'Sample 2'),
(269,13,1,'Daytime'),
(331,13,1,'sport'),
(257,13,1,'Party'),
(257,26,1,'Sample 1'),
(257,27,1,'Example 2'),
(317,15,1,'Bamboo'),
(301,15,1,'cotton'),
(282,24,1,'bio butter'),
(314,15,1,'100% cotton'),
(350,15,1,'leather'),
(312,15,1,'cotton'),
(324,12,1,'sport'),
(370,2,1,'processor'),
(277,24,1,'milk'),
(274,24,1,'oil'),
(279,24,1,'bio oil'),
(299,15,1,'cotton'),
(338,13,1,'sport'),
(338,15,1,'leather'),
(334,12,1,'sport'),
(297,24,1,'pony hair'),
(320,12,1,'night'),
(318,15,1,'leather'),
(347,15,1,'patent leather'),
(337,13,1,'sport'),
(373,15,1,'canvas'),
(263,27,1,'Example 2'),
(263,26,1,'Sample 1'),
(263,15,1,'Leather'),
(263,13,1,'Hike'),
(47,2,1,'4'),
(47,4,1,'16GB'),
(48,1,1,'7 processors'),
(36,2,1,'5'),
(34,1,1,'processor'),
(306,13,1,'casual'),
(349,15,1,'leather'),
(376,24,1,'Cotton'),
(410,32,2,'Living'),
(410,15,2,'Microfiber'),
(394,15,1,'Stone'),
(409,15,2,'Microfiber'),
(299,14,1,'short'),
(313,15,1,'cotton'),
(409,32,2,'Living'),
(393,32,1,'Living'),
(393,15,1,'Porcelain'),
(392,15,1,'Steel'),
(406,15,2,'Carbon Fiber'),
(392,32,1,'Entry'),
(342,13,2,'party'),
(391,32,1,'Living'),
(407,15,2,'Carbon Fiber'),
(391,15,1,'Porcelain'),
(407,32,2,'Kitchen'),
(406,32,2,'Entry'),
(405,32,2,'Living'),
(405,15,2,'Wood'),
(404,15,2,'Steel'),
(383,2,1,'20'),
(404,32,2,'Living'),
(383,12,1,'Sport'),
(403,15,2,'Wood'),
(383,13,1,'Chic'),
(403,32,2,'Living'),
(383,24,1,'Aluminium'),
(402,15,2,'Wood'),
(378,24,1,'Aluminium'),
(366,2,2,'4'),
(378,13,1,'Chic'),
(382,15,1,'cotton'),
(381,27,1,'Example 3'),
(402,32,2,'Living'),
(401,15,2,'Wood'),
(380,24,1,'bio butter'),
(42,4,2,'30GB'),
(377,15,1,'Nanoparticles'),
(401,32,2,'Entry'),
(400,32,2,'Dining'),
(381,13,1,'Party'),
(400,15,2,'Wood'),
(381,26,1,'Sample 1'),
(399,15,2,'Steel'),
(379,15,1,'cashmere'),
(399,32,2,'Dining'),
(378,2,1,'20'),
(398,32,2,'Living'),
(378,12,1,'Sport'),
(398,15,2,'Wood'),
(397,32,2,'Dining'),
(397,15,2,'Wood'),
(396,15,2,'Marble'),
(42,24,1,'Aluminium'),
(360,3,1,'processor'),
(42,13,1,'Sleek'),
(396,32,2,'Living'),
(394,32,2,'Living'),
(363,3,2,'processor'),
(280,25,2,'Warm'),
(42,3,2,'100mhz'),
(42,13,2,'Sleek'),
(360,3,2,'processor'),
(42,3,1,'100mhz'),
(42,24,2,'Aluminium'),
(378,12,2,'Sport'),
(378,2,2,'20'),
(379,15,2,'cashmere'),
(381,26,2,'Sample 1'),
(381,13,2,'Party'),
(377,15,2,'Nanoparticles'),
(380,24,2,'bio butter'),
(381,27,2,'Example 3'),
(382,15,2,'cotton'),
(378,13,2,'Chic'),
(378,24,2,'Aluminium'),
(383,24,2,'Aluminium'),
(383,13,2,'Chic'),
(383,12,2,'Sport'),
(383,2,2,'20'),
(391,15,2,'Porcelain'),
(391,32,2,'Living'),
(392,32,2,'Entry'),
(392,15,2,'Steel'),
(393,15,2,'Porcelain'),
(393,32,2,'Living'),
(313,15,2,'cotton'),
(299,14,2,'short'),
(394,15,2,'Stone'),
(376,24,2,'Cotton'),
(349,15,2,'leather'),
(306,13,2,'casual'),
(34,1,2,'processor'),
(36,2,2,'5'),
(48,1,2,'7 processors'),
(47,4,2,'16GB'),
(47,2,2,'4'),
(263,13,2,'Hike'),
(263,15,2,'Leather'),
(263,26,2,'Sample 1'),
(263,27,2,'Example 2'),
(373,15,2,'canvas'),
(337,13,2,'sport'),
(347,15,2,'patent leather'),
(318,15,2,'leather'),
(320,12,2,'night'),
(297,24,2,'pony hair'),
(334,12,2,'sport'),
(338,15,2,'leather'),
(338,13,2,'sport'),
(299,15,2,'cotton'),
(279,24,2,'bio oil'),
(274,24,2,'oil'),
(277,24,2,'milk'),
(370,2,2,'processor'),
(324,12,2,'sport'),
(312,15,2,'cotton'),
(350,15,2,'leather'),
(314,15,2,'100% cotton'),
(282,24,2,'bio butter'),
(301,15,2,'cotton'),
(317,15,2,'Bamboo'),
(280,25,1,'Warm'),
(257,27,2,'Example 2'),
(257,26,2,'Sample 1'),
(257,13,2,'Party'),
(331,13,2,'sport'),
(269,13,2,'Daytime'),
(269,26,2,'Sample 2'),
(269,27,2,'Example 1'),
(363,3,1,'processor'),
(259,27,2,'Example 2'),
(259,26,2,'Sample 2'),
(259,13,2,'Formal'),
(30,2,2,'processor'),
(344,15,2,'leather'),
(344,12,2,'casual'),
(268,27,2,'Example 3'),
(268,26,2,'Sample 1'),
(268,13,2,'Daytime'),
(310,15,2,'cashmere'),
(311,15,2,'cotton'),
(266,13,2,'Party'),
(266,26,2,'Sample 1'),
(266,27,2,'Example 3'),
(267,13,2,'Formal'),
(343,12,2,'party'),
(329,13,2,'trainers'),
(256,27,2,'Example 1'),
(336,13,2,'trainers'),
(327,13,2,'sport'),
(330,13,2,'daytime'),
(348,15,2,'leather'),
(362,4,2,'8 Gb'),
(288,13,2,'night'),
(296,15,2,'pony hair'),
(355,15,2,'leather'),
(271,13,2,'Party'),
(271,26,2,'Sample 3'),
(271,27,2,'Example 3'),
(300,15,2,'cotton'),
(273,26,2,'Sample 1'),
(273,13,2,'Party'),
(273,27,2,'Example 2'),
(40,3,2,'processor'),
(41,2,2,'6'),
(275,25,2,'warm'),
(275,24,2,'cream'),
(28,2,2,'4'),
(43,2,2,'1'),
(44,2,2,'4'),
(352,15,2,'faux leather'),
(376,13,2,'Casual'),
(351,15,2,'canvas'),
(309,15,2,'bio cotton'),
(309,12,2,'party'),
(292,24,2,'brush'),
(368,2,2,'4'),
(33,1,2,'processor'),
(49,4,2,'16 GB'),
(364,2,2,'6'),
(367,2,2,'4'),
(323,13,2,'sport'),
(303,15,2,'viscose'),
(261,27,2,'Example 3'),
(261,26,2,'Sample 3'),
(261,15,2,'Leather'),
(304,13,2,'riding'),
(394,32,1,'Living'),
(396,32,1,'Living'),
(396,15,1,'Marble'),
(256,13,2,'Daytime'),
(298,13,2,'party'),
(304,15,2,'cotton'),
(293,24,2,'pony hair'),
(322,13,2,'party'),
(322,15,2,'leather'),
(397,15,1,'Wood'),
(278,13,2,'night'),
(339,15,2,'suede leather'),
(397,32,1,'Dining'),
(361,2,2,'processor'),
(398,15,1,'Wood'),
(326,13,2,'sport'),
(283,24,2,'butter'),
(398,32,1,'Living'),
(294,13,2,'party'),
(399,32,1,'Dining'),
(289,13,2,'Fresh'),
(264,27,2,'Example 1'),
(399,15,1,'Steel'),
(400,15,1,'Wood'),
(264,26,2,'Sample 3'),
(264,13,2,'Formal'),
(400,32,1,'Dining'),
(295,24,2,'pony hair'),
(43,4,2,'8gb'),
(401,32,1,'Entry'),
(45,5,2,'16 GB'),
(42,4,1,'30GB'),
(401,15,1,'Wood'),
(267,12,2,'hiking'),
(306,15,2,'100% cotton'),
(285,24,2,'butter'),
(325,13,2,'sport'),
(402,32,1,'Living'),
(374,15,2,'canvas'),
(366,2,1,'4'),
(402,15,1,'Wood'),
(262,27,2,'Example 2'),
(403,32,1,'Living'),
(262,26,2,'Sample 2'),
(403,15,1,'Wood'),
(262,15,2,'Non Leather'),
(404,32,1,'Living'),
(262,13,2,'Daytime'),
(307,15,2,'rayon'),
(404,15,1,'Steel'),
(405,15,1,'Wood'),
(276,24,2,'honey'),
(369,3,2,'processor'),
(405,32,1,'Living'),
(359,1,2,'loud music'),
(260,27,2,'Example 3'),
(406,32,1,'Entry'),
(260,26,2,'Sample 3'),
(407,32,1,'Kitchen'),
(260,13,2,'Hike'),
(407,15,1,'Carbon Fiber'),
(256,26,2,'Sample 2'),
(335,12,2,'sport'),
(342,13,1,'party'),
(406,15,1,'Carbon Fiber'),
(346,15,2,'patent leather'),
(409,32,1,'Living'),
(31,1,2,'processor'),
(270,27,2,'Example 1'),
(409,15,1,'Microfiber'),
(270,26,2,'Sample 3'),
(410,15,1,'Microfiber'),
(270,13,2,'Daytime'),
(356,15,2,'leather'),
(410,32,1,'Living'),
(411,15,1,'Microfiber'),
(316,15,2,'bio cotton'),
(333,12,2,'sport'),
(411,32,1,'Living'),
(371,15,2,'canvas'),
(412,32,1,'Living'),
(354,12,2,'daytime'),
(413,32,1,'Living'),
(365,2,2,'6'),
(291,24,2,'butter'),
(413,15,1,'Microfiber'),
(414,32,1,'Living'),
(341,15,2,'suede leather'),
(305,15,2,'rayon'),
(414,15,1,'Polyester'),
(415,15,1,'Microfiber'),
(415,32,1,'Living'),
(345,15,2,'patent leather'),
(345,13,2,'daytime'),
(353,15,2,'leather'),
(417,15,1,'Linen'),
(313,13,2,'daytime'),
(417,32,1,'Bedroom'),
(412,15,1,'Microfiber'),
(272,27,2,'Example 3'),
(418,28,1,'Microfiber'),
(418,32,1,'Bedroom'),
(272,26,2,'Sample 2'),
(419,28,1,'Faux Leather'),
(272,13,2,'Formal'),
(372,13,2,'travel'),
(419,32,1,'TV'),
(319,13,2,'casual'),
(420,32,1,'Living'),
(328,13,2,'training'),
(420,28,1,'Microfiber'),
(421,28,1,'Leather'),
(340,13,2,'beachwear'),
(421,32,1,'Dining'),
(422,28,1,'Microfiber'),
(332,13,2,'sport'),
(284,24,2,'butter'),
(422,32,1,'Bedroom'),
(284,13,2,'party'),
(286,13,2,'party'),
(423,28,1,'Faux Velvet'),
(287,13,2,'party'),
(423,32,1,'Entry'),
(349,12,2,'formal'),
(357,13,2,'beachwear'),
(290,24,2,'lavender'),
(281,24,2,'lavender'),
(321,12,2,'party'),
(308,15,2,'cotton'),
(32,2,2,'2'),
(44,4,2,'8 GB'),
(45,2,2,'6'),
(413,15,2,'Microfiber'),
(414,32,2,'Living'),
(414,15,2,'Polyester'),
(415,15,2,'Microfiber'),
(415,32,2,'Living'),
(417,15,2,'Linen'),
(417,32,2,'Bedroom'),
(412,15,2,'Microfiber'),
(418,28,2,'Microfiber'),
(418,32,2,'Bedroom'),
(419,28,2,'Faux Leather'),
(419,32,2,'TV'),
(420,32,2,'Living'),
(420,28,2,'Microfiber'),
(421,28,2,'Leather'),
(421,32,2,'Dining'),
(422,28,2,'Microfiber'),
(422,32,2,'Bedroom'),
(423,28,2,'Faux Velvet'),
(423,32,2,'Entry'),
(45,2,3,'6'),
(44,4,3,'8 GB'),
(32,2,3,'2'),
(308,15,3,'cotton'),
(321,12,3,'party'),
(281,24,3,'lavender'),
(290,24,3,'lavender'),
(357,13,3,'beachwear'),
(349,12,3,'formal'),
(287,13,3,'party'),
(286,13,3,'party'),
(284,13,3,'party'),
(284,24,3,'butter'),
(332,13,3,'sport'),
(340,13,3,'beachwear'),
(328,13,3,'training'),
(319,13,3,'casual'),
(372,13,3,'travel'),
(272,13,3,'Formal'),
(272,26,3,'Sample 2'),
(272,27,3,'Example 3'),
(313,13,3,'daytime'),
(353,15,3,'leather'),
(345,13,3,'daytime'),
(345,15,3,'patent leather'),
(305,15,3,'rayon'),
(341,15,3,'suede leather'),
(291,24,3,'butter'),
(365,2,3,'6'),
(354,12,3,'daytime'),
(371,15,3,'canvas'),
(333,12,3,'sport'),
(316,15,3,'bio cotton'),
(356,15,3,'leather'),
(270,13,3,'Daytime'),
(270,26,3,'Sample 3'),
(270,27,3,'Example 1'),
(31,1,3,'processor'),
(346,15,3,'patent leather'),
(335,12,3,'sport'),
(256,26,3,'Sample 2'),
(260,13,3,'Hike'),
(260,26,3,'Sample 3'),
(260,27,3,'Example 3'),
(359,1,3,'loud music'),
(369,3,3,'processor'),
(276,24,3,'honey'),
(307,15,3,'rayon'),
(262,13,3,'Daytime'),
(262,15,3,'Non Leather'),
(262,26,3,'Sample 2'),
(262,27,3,'Example 2'),
(374,15,3,'canvas'),
(325,13,3,'sport'),
(285,24,3,'butter'),
(306,15,3,'100% cotton'),
(267,12,3,'hiking'),
(45,5,3,'16 GB'),
(43,4,3,'8gb'),
(295,24,3,'pony hair'),
(264,13,3,'Formal'),
(264,26,3,'Sample 3'),
(264,27,3,'Example 1'),
(289,13,3,'Fresh'),
(294,13,3,'party'),
(283,24,3,'butter'),
(326,13,3,'sport'),
(361,2,3,'processor'),
(339,15,3,'suede leather'),
(278,13,3,'night'),
(322,15,3,'leather'),
(322,13,3,'party'),
(293,24,3,'pony hair'),
(304,15,3,'cotton'),
(298,13,3,'party'),
(256,13,3,'Daytime'),
(304,13,3,'riding'),
(261,15,3,'Leather'),
(261,26,3,'Sample 3'),
(261,27,3,'Example 3'),
(303,15,3,'viscose'),
(323,13,3,'sport'),
(367,2,3,'4'),
(364,2,3,'6'),
(49,4,3,'16 GB'),
(33,1,3,'processor'),
(368,2,3,'4'),
(292,24,3,'brush'),
(309,12,3,'party'),
(309,15,3,'bio cotton'),
(351,15,3,'canvas'),
(376,13,3,'Casual'),
(352,15,3,'faux leather'),
(44,2,3,'4'),
(43,2,3,'1'),
(28,2,3,'4'),
(275,24,3,'cream'),
(275,25,3,'warm'),
(41,2,3,'6'),
(40,3,3,'processor'),
(273,27,3,'Example 2'),
(273,13,3,'Party'),
(273,26,3,'Sample 1'),
(300,15,3,'cotton'),
(271,27,3,'Example 3'),
(271,26,3,'Sample 3'),
(271,13,3,'Party'),
(355,15,3,'leather'),
(296,15,3,'pony hair'),
(288,13,3,'night'),
(362,4,3,'8 Gb'),
(348,15,3,'leather'),
(330,13,3,'daytime'),
(327,13,3,'sport'),
(336,13,3,'trainers'),
(256,27,3,'Example 1'),
(329,13,3,'trainers'),
(343,12,3,'party'),
(267,13,3,'Formal'),
(266,27,3,'Example 3'),
(266,26,3,'Sample 1'),
(266,13,3,'Party'),
(311,15,3,'cotton'),
(310,15,3,'cashmere'),
(268,13,3,'Daytime'),
(268,26,3,'Sample 1'),
(268,27,3,'Example 3'),
(344,12,3,'casual'),
(344,15,3,'leather'),
(30,2,3,'processor'),
(259,13,3,'Formal'),
(259,26,3,'Sample 2'),
(259,27,3,'Example 2'),
(269,27,3,'Example 1'),
(269,26,3,'Sample 2'),
(269,13,3,'Daytime'),
(331,13,3,'sport'),
(257,13,3,'Party'),
(257,26,3,'Sample 1'),
(257,27,3,'Example 2'),
(317,15,3,'Bamboo'),
(301,15,3,'cotton'),
(282,24,3,'bio butter'),
(314,15,3,'100% cotton'),
(350,15,3,'leather'),
(312,15,3,'cotton'),
(324,12,3,'sport'),
(370,2,3,'processor'),
(277,24,3,'milk'),
(274,24,3,'oil'),
(279,24,3,'bio oil'),
(299,15,3,'cotton'),
(338,13,3,'sport'),
(338,15,3,'leather'),
(334,12,3,'sport'),
(297,24,3,'pony hair'),
(320,12,3,'night'),
(318,15,3,'leather'),
(347,15,3,'patent leather'),
(337,13,3,'sport'),
(373,15,3,'canvas'),
(263,27,3,'Example 2'),
(263,26,3,'Sample 1'),
(263,15,3,'Leather'),
(263,13,3,'Hike'),
(47,2,3,'4'),
(47,4,3,'16GB'),
(48,1,3,'7 processors'),
(36,2,3,'5'),
(34,1,3,'processor'),
(306,13,3,'casual'),
(349,15,3,'leather'),
(376,24,3,'Cotton'),
(394,15,3,'Stone'),
(299,14,3,'short'),
(313,15,3,'cotton'),
(393,32,3,'Living'),
(393,15,3,'Porcelain'),
(392,15,3,'Steel'),
(392,32,3,'Entry'),
(391,32,3,'Living'),
(391,15,3,'Porcelain'),
(383,2,3,'20'),
(383,12,3,'Sport'),
(383,13,3,'Chic'),
(383,24,3,'Aluminium'),
(378,24,3,'Aluminium'),
(378,13,3,'Chic'),
(382,15,3,'cotton'),
(381,27,3,'Example 3'),
(380,24,3,'bio butter'),
(377,15,3,'Nanoparticles'),
(381,13,3,'Party'),
(381,26,3,'Sample 1'),
(379,15,3,'cashmere'),
(378,2,3,'20'),
(378,12,3,'Sport'),
(42,24,3,'Aluminium'),
(360,3,3,'processor'),
(42,13,3,'Sleek'),
(42,3,3,'100mhz'),
(280,25,3,'Warm'),
(363,3,3,'processor'),
(394,32,3,'Living'),
(396,32,3,'Living'),
(396,15,3,'Marble'),
(397,15,3,'Wood'),
(397,32,3,'Dining'),
(398,15,3,'Wood'),
(398,32,3,'Living'),
(399,32,3,'Dining'),
(399,15,3,'Steel'),
(400,15,3,'Wood'),
(400,32,3,'Dining'),
(401,32,3,'Entry'),
(42,4,3,'30GB'),
(401,15,3,'Wood'),
(402,32,3,'Living'),
(366,2,3,'4'),
(402,15,3,'Wood'),
(403,32,3,'Living'),
(403,15,3,'Wood'),
(404,32,3,'Living'),
(404,15,3,'Steel'),
(405,15,3,'Wood'),
(405,32,3,'Living'),
(406,32,3,'Entry'),
(407,32,3,'Kitchen'),
(407,15,3,'Carbon Fiber'),
(342,13,3,'party'),
(406,15,3,'Carbon Fiber'),
(409,32,3,'Living'),
(409,15,3,'Microfiber'),
(410,15,3,'Microfiber'),
(410,32,3,'Living'),
(411,15,3,'Microfiber'),
(411,32,3,'Living'),
(412,32,3,'Living'),
(413,32,3,'Living'),
(413,15,3,'Microfiber'),
(414,32,3,'Living'),
(414,15,3,'Polyester'),
(415,15,3,'Microfiber'),
(415,32,3,'Living'),
(417,15,3,'Linen'),
(417,32,3,'Bedroom'),
(412,15,3,'Microfiber'),
(418,28,3,'Microfiber'),
(418,32,3,'Bedroom'),
(419,28,3,'Faux Leather'),
(419,32,3,'TV'),
(420,32,3,'Living'),
(420,28,3,'Microfiber'),
(421,28,3,'Leather'),
(421,32,3,'Dining'),
(422,28,3,'Microfiber'),
(422,32,3,'Bedroom'),
(423,28,3,'Faux Velvet'),
(423,32,3,'Entry');
/*!40000 ALTER TABLE `oc_product_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_description`
--
DROP TABLE IF EXISTS `oc_product_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_description` (
`product_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`description` text NOT NULL,
`tag` text NOT NULL,
`meta_title` varchar(255) NOT NULL,
`meta_description` varchar(255) NOT NULL,
`meta_keyword` varchar(255) NOT NULL,
PRIMARY KEY (`product_id`,`language_id`),
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_description`
--
LOCK TABLES `oc_product_description` WRITE;
/*!40000 ALTER TABLE `oc_product_description` DISABLE KEYS */;
INSERT INTO `oc_product_description` VALUES
(30,1,'Canon EOS 5D','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Canon EOS 5D','',''),
(314,1,'Super Strech Jeans','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Super Strech Jeans','',''),
(316,1,'Vintage T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, casual, cool','Vintage T-Shirt','',''),
(317,1,'Jackson Hat','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','daily, cool, body, sport','Jackson Hat','',''),
(318,1,'City Handbag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, business, cool','City Handbag','',''),
(319,1,'Mini Handbag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Mini Handbag','',''),
(320,1,'Change Purse','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, leather, casual','Change Purse','',''),
(321,1,'Large Wallet','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Large Wallet','',''),
(322,1,'Geometrical Purse','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, leather, occasion','Geometrical Purse','',''),
(323,1,'Running Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Running Shoes','',''),
(324,1,'Blue Y56','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Blue Y56','',''),
(325,1,'Lightweight Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Lightweight Shoes','',''),
(326,1,'Fashion Breathable Sneakers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Fashion Breathable Sneakers','',''),
(327,1,'Red Airmax','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Red Airmax','',''),
(328,1,'Micro Fuel RN','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Micro Fuel RN','',''),
(329,1,'Star V9 Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Star V9 Shoes','',''),
(330,1,'Rainbow Trainers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Rainbow Sneakers','',''),
(331,1,'Dragon T40','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Dragon T40','',''),
(332,1,'Men\'s Gazelle Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Men\'s Gazelle Shoes','',''),
(333,1,'Victoria Men\'s Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Victoria Men\'s Shoes','',''),
(334,1,'Breathable Running Sneakers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily ','Breathable Running Sneakers','',''),
(335,1,'Yellow Performance Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Yellow Performance Shoes','',''),
(336,1,'White Gel-Galaxy Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, casual, cool','White Gel-Galaxy Shoes','',''),
(337,1,'Classic Leather Trainers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Classic Leather Trainers','',''),
(338,1,'Boston M509','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, sport, daily','Boston M509','',''),
(339,1,'Free Spirit Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Free Spirit Shoes','',''),
(340,1,'Men\'s Slim Flip Flop','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Men\'s Slim Flip Flop','',''),
(341,1,'Suede Leather Sandals','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Suede Leather Sandals','',''),
(414,2,'Green Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, polyester, modern','Green Sofa','',''),
(343,1,'Stiletto High Heel Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Stiletto High Heel Shoes','',''),
(344,1,'Brown Leather Casual Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, daily, cool','Brown Leather Casual Shoes','',''),
(345,1,'Soft Pink Patent Leather Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Soft Pink Patent Leather Shoes','',''),
(346,1,'Women\'s Comfortable Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','flat, leather, business','Women\'s Comfortable Shoes','',''),
(347,1,'Claire Flat Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, flat','Claire Flat Shoes','',''),
(348,1,'Premium Leather Slippers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Premium Leather Slippers','',''),
(349,1,'Women Straw Summer Bag ','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, daily','Women Straw Summer bag','',''),
(352,1,'Large Fashion Tote Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, casual, daily','Large Fashion Tote Bag','',''),
(353,1,'Slim Card Holder','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Slim Card Holder','',''),
(354,1,'Ultimate Leather Wallet','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, business, cool, casual','Ultimate Leather Wallet','',''),
(355,1,'Plus Leather Phone Case','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Plus Leather Phone Case','',''),
(356,1,'Wallet Phone Case','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual, leather','Wallet Phone Case','',''),
(357,1,'Windproof Umbrella','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','daily, cool, casual','Windproof Umbrella','',''),
(359,1,'Home Bluetooth Speaker','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool','Home Bluetooth Speaker','',''),
(361,1,'Flame Wireless Portable Speaker','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, sport','Flame Wireless Portable Speaker','',''),
(362,1,'Power Shot Digital Camera','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Power Shot Digital Camera','',''),
(413,2,'Chesterfield Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Chesterfield Sofa','',''),
(364,1,'Samsung Curved 32" LED TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, business, daily','Samsung Curved 32"LED TV','',''),
(33,1,'Samsung SyncMaster 941BW','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, business, daily','Samsung SyncMaster 941BW','',''),
(350,1,'Black Leather Tote Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, casual, daily','Black Leather Tote Bag','',''),
(269,1,'Cool Boots','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual','Cool Boots','',''),
(270,1,'Navy Sneakers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Navy Sneakers','',''),
(272,1,'Red Formal Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Red Formal Watch','',''),
(257,1,'Crossbody Yellow Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, leather','Crossbody Yellow Bag','',''),
(259,1,'Business Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual','Business Bag','',''),
(266,1,'Black High Heels','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','heels, occasion','Black High Heels','',''),
(267,1,'Brown Suede Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, daily','Brown Suede Shoes','',''),
(268,1,'Brown High Heels','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','occasion, heels, cool','Brown High Heels','',''),
(28,1,'HTC Touch HD','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','HTC Touch HD','',''),
(47,1,'HP LP3065','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','HP LP3065','',''),
(41,1,'iMac','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iMac','',''),
(274,1,'Body Oil','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty, daily','Body Oil','',''),
(275,1,'Hydrating Face Cream','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, daily, beauty ','Hydrating Face Cream','',''),
(276,1,'Honey Hand Soap','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, shampoo, body','Honey Hand Soap','',''),
(277,1,'Body Milk','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty, daily','Body Milk','',''),
(278,1,'Fresh Ginger Perfume','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, body, daily ','Fresh Ginger Perfume','',''),
(279,1,'Body Scrub','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, daily, beauty','Body Scrub','',''),
(281,1,'Lavender Deodorant','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, body, daily','Lavender Deodorant','',''),
(282,1,'Bio Butter','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty','Bio Butter','',''),
(283,1,'Facial Treatment Essence','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, body, daily','Facial Treatment Essence','',''),
(284,1,'Matte Lipstick','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, fresh','Matte Lipstick','',''),
(285,1,'Liquid Lipstick','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, fresh, daily','Liquid Lipstick','',''),
(286,1,'Mascara Voluminous','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty, fresh ','Mascara Voluminous','',''),
(287,1,'Mascara Curved Brush','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty, fresh','Mascara Curved Brush','',''),
(288,1,'Powder Face Mask','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Powder Face Mask','',''),
(290,1,'Lavender Spa Gift','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, fresh','Lavender Spa Gift','',''),
(291,1,'Thai Spa Butter','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Thai Spa Butter','',''),
(292,1,'Scrub Gift Set','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty, fresh','Scrub Gift Set','',''),
(293,1,'Head Massage Accessories','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, beauty, brush','Head Massage Accessories','',''),
(294,1,'Eyelash Curler','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, brush','Eyelash Curler','',''),
(295,1,'Makeup Brush Set','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty','Makeup Brush Set','',''),
(296,1,'Powder Brush','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty','Powder Brush','',''),
(297,1,'Bronzer Brush','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, brush','Bronzer Brush','',''),
(298,1,'Highlight Powder','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, brush, fresh','Highlight Powder','',''),
(299,1,'Bodycorn Dress','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','occasion, cool, business','Bodycorn Dress','',''),
(300,1,'Black Lace Dress','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual','Black Lace Dress','',''),
(301,1,'Cashmere Pullover','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Cashmere Pullover','',''),
(303,1,'Jacob Turtleneck Sweater','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Jacob Turtleneck Sweater','',''),
(304,1,'Black Vintage T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, daily, casual, business','Black Vintage T-Shirt','',''),
(305,1,'Elegant Silk Pants','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Elegant Silk Pants','',''),
(306,1,'Oversized Women\'s Hoodie','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Oversized Women\'s Hoodie','',''),
(307,1,'Nick Graphic Tee','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, casual, cool','Nick Graphic Tee','',''),
(308,1,'Journal T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, daily, sport','Journal T-Shirt','',''),
(309,1,'Satin Bodysuit','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Satin Bodysuit','',''),
(310,1,'Applique T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Applique T-Shirt','',''),
(311,1,'V-Neck Sweater','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, sport, daily ','V-Neck Sweater','',''),
(312,1,'Ophelia Loose Blouse','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Ophelia loose Blouse','',''),
(313,1,'Outrageous V-Neck Jumpsuit','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Outrageous V-Neck Jumpsuit','',''),
(273,1,'Sport Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Sport Watch','',''),
(256,1,'Tricolor Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Tricolor Bag','',''),
(260,1,'Hiking Brown Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Hiking Brown Bag','',''),
(261,1,'Red Small Chair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Red Small Chair','',''),
(262,1,'Lazy Chair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Lazy Chair','',''),
(263,1,'Hiking Boots','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Hiking Boots','',''),
(264,1,'Sample Cherry Perfume','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, daily, beauty, body','Sample Cherry Perfume','',''),
(289,1,'Eau de Parfum','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, daily, beauty','Eau de Parfum','',''),
(48,1,'iPod Classic','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Classic','',''),
(40,1,'iPhone','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPhone','',''),
(44,1,'MacBook Air','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','MacBook Air','',''),
(45,1,'MacBook Pro','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','MacBook Pro','',''),
(36,1,'iPod Nano','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Nano','',''),
(32,1,'iPod Touch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Touch','',''),
(34,1,'iPod Shuffle','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Shuffle','',''),
(43,1,'MacBook','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','MacBook','',''),
(31,1,'Nikon D300','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Nikon D300','',''),
(49,1,'Samsung Galaxy Tab 10.1','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Samsung Galaxy Tab 10.1','',''),
(365,1,'Toshiba 5009 Smart TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Toshiba 5009 Smart TV','',''),
(412,2,'Orange Loveseat','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Orange Loveseat','',''),
(367,1,'Samsung 309 Smart TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, business, daily','Samsung 309 Smart TV','',''),
(368,1,'Samsung Ultra HD 4009 Smart TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Samsung Ultra HD 4009 Smart TV','',''),
(369,1,'Home Office 55 Inch TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool','Home Office 55 Inch TV','',''),
(370,1,'Bluetooth Smart Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport','Bluetooth Smart Watch','',''),
(371,1,'Vera Laptop Backpack','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport','Vera Laptop Backpack','',''),
(372,1,'Waterproof Travel Backpack','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Waterproof Travel Backpack','',''),
(373,1,'Computer Bag Casual Bookbag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, business','Computer Bag School Bookbag','',''),
(374,1,'Lightweight Packable Hiking Backpack','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Lightweight Packable Hiking Backpack','',''),
(376,1,'Office Jacket','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport , daily','Office Jacket','',''),
(351,1,'Canvas Tote Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport','Canvas Tote Bag','',''),
(271,1,'Oversized Sunglasses For Long Summer Days','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Oversized Sunglasses For Summer Long Days','',''),
(396,2,'Classic Fireplace','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fireplace, decor, stone','Classic Fireplace','',''),
(397,2,'Wooden Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, round','Wooden Table','',''),
(398,2,'Coffee Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, coffee','Coffee Table','',''),
(363,2,'DSLR 390 Nikon','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool','DSLR 390 Nikon','',''),
(399,2,'Modern Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, steel','Modern Table','',''),
(400,2,'Corner Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, corner','Corner Table','',''),
(401,2,'Simple Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, simple','Simple Table','',''),
(402,2,'Modern Wooden Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Modern Wooden Lamp','',''),
(403,2,'Red Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Red Lamp','',''),
(404,2,'Stage Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Stage Lamp','',''),
(405,2,'Hanging Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Hanging Lamp','',''),
(406,2,'Ceiling Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Ceiling Lamp','',''),
(342,2,'Women\'s Maria Pump','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','heels, occasion, leather, business','Women\'s Maria Pump','',''),
(407,2,'Modern Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Modern Lamp','',''),
(409,2,'Gray Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Gray Sofa','',''),
(410,2,'Yellow Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Yellow Sofa','',''),
(411,2,'Moden Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Modern Sofa','',''),
(394,2,'Stone Fireplace','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fireplace, decor, stone','Stone Fireplace','',''),
(393,2,'Porcelain Flame','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','porcelain, flame, decor','Porcelain Flame','',''),
(392,2,'Chrome Statue','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','statue, decor, chrome','Chrome Statue','',''),
(391,2,'Flame Decor','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','porcelain, flame, decor','Flame Decor','',''),
(383,2,'Gym Headphones','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Gym Headphones','',''),
(382,2,'Sports Top','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual','Sports Top','',''),
(381,2,'Sample Product with a longer name','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','heels, occasion','Sample Product with a longer name','',''),
(380,2,'Sports Outfit','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty','Sports Outfit','',''),
(379,2,'Workout Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Workout Shoes','',''),
(378,2,'Apple Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Apple Watch','',''),
(377,2,'Gym Wear','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, beauty','Gym Wear','',''),
(366,2,'Leica Digital Camera','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Leica Digital Camera','',''),
(42,2,'Apple Cinema 30"','<p>\r\n The 30-inch Apple Cinema HD Display delivers an amazing 2560 x 1600 pixel resolution. Designed specifically for the creative professional, this display provides more space for easier access to all the tools and palettes needed to edit, format and composite your work. Combine this display with a Mac Pro, MacBook Pro, or PowerMac G5 and there\'s no limit to what you can achieve. </p><p><br>\r\n The Cinema HD features an active-matrix liquid crystal display that produces flicker-free images that deliver twice the brightness, twice the sharpness and twice the contrast ratio of a typical CRT display. Unlike other flat panels, it\'s designed with a pure digital interface to deliver distortion-free images that never need adjusting. With over 4 million digital pixels, the display is uniquely suited for scientific and technical applications such as visualizing molecular structures or analyzing geological data. </p><p><br>\r\n Offering accurate, brilliant color performance, the Cinema HD delivers up to 16.7 million colors across a wide gamut allowing you to see subtle nuances between colors from soft pastels to rich jewel tones. A wide viewing angle ensures uniform color from edge to edge. Apple\'s ColorSync technology allows you to create custom profiles to maintain consistent color onscreen and in print. The result: You can confidently use this display in all your color-critical applications. </p><p><br>\r\n Housed in a new aluminum design, the display has a very thin bezel that enhances visual accuracy. Each display features two FireWire 400 ports and two USB 2.0 ports, making attachment of desktop peripherals, such as iSight, iPod, digital and still cameras, hard drives, printers and scanners, even more accessible and convenient. Taking advantage of the much thinner and lighter footprint of an LCD, the new displays support the VESA (Video Electronics Standards Association) mounting interface standard. Customers with the optional Cinema Display VESA Mount Adapter kit gain the flexibility to mount their display in locations most appropriate for their work environment. </p><p><br>\r\n The Cinema HD features a single cable design with elegant breakout for the USB 2.0, FireWire 400 and a pure digital connection using the industry standard Digital Video Interface (DVI) interface. The DVI connection allows for a direct pure-digital connection.<br>\r\n </p>\r\n<h3>\r\n Features:</h3>\r\n<p>\r\n Unrivaled display performance</p>\r\n<ul>\r\n <li>\r\n 30-inch (viewable) active-matrix liquid crystal display provides breathtaking image quality and vivid, richly saturated color.</li>\r\n <li>\r\n Support for 2560-by-1600 pixel resolution for display of high definition still and video imagery.</li>\r\n <li>\r\n Wide-format design for simultaneous display of two full pages of text and graphics.</li>\r\n <li>\r\n Industry standard DVI connector for direct attachment to Mac- and Windows-based desktops and notebooks</li>\r\n <li>\r\n Incredibly wide (170 degree) horizontal and vertical viewing angle for maximum visibility and color performance.</li>\r\n <li>\r\n Lightning-fast pixel response for full-motion digital video playback.</li>\r\n <li>\r\n Support for 16.7 million saturated colors, for use in all graphics-intensive applications.</li>\r\n</ul>\r\n<p>\r\n Simple setup and operation</p>\r\n<ul>\r\n <li>\r\n Single cable with elegant breakout for connection to DVI, USB and FireWire ports</li>\r\n <li>\r\n Built-in two-port USB 2.0 hub for easy connection of desktop peripheral devices.</li>\r\n <li>\r\n Two FireWire 400 ports to support iSight and other desktop peripherals</li>\r\n</ul>\r\n<p>\r\n Sleek, elegant design</p>\r\n<ul>\r\n <li>\r\n Huge virtual workspace, very small footprint.</li>\r\n <li>\r\n Narrow Bezel design to minimize visual impact of using dual displays</li>\r\n <li>\r\n Unique hinge design for effortless adjustment</li>\r\n <li>\r\n Support for VESA mounting solutions (Apple Cinema Display VESA Mount Adapter sold separately)</li>\r\n</ul>\r\n<h3>\r\n Technical specifications</h3>\r\n<p>\r\n <b>Screen size (diagonal viewable image size)</b></p>\r\n<ul>\r\n <li>\r\n Apple Cinema HD Display: 30 inches (29.7-inch viewable)</li>\r\n</ul>\r\n<p>\r\n <b>Screen type</b></p>\r\n<ul>\r\n <li>\r\n Thin film transistor (TFT) active-matrix liquid crystal display (AMLCD)</li>\r\n</ul>\r\n<p>\r\n <b>Resolutions</b></p>\r\n<ul>\r\n <li>\r\n 2560 x 1600 pixels (optimum resolution)</li>\r\n <li>\r\n 2048 x 1280</li>\r\n <li>\r\n 1920 x 1200</li>\r\n <li>\r\n 1280 x 800</li>\r\n <li>\r\n 1024 x 640</li>\r\n</ul>\r\n<p>\r\n <b>Display colors (maximum)</b></p>\r\n<ul>\r\n <li>\r\n 16.7 million</li>\r\n</ul>\r\n<p>\r\n <b>Viewing angle (typical)</b></p>\r\n<ul>\r\n <li>\r\n 170° horizontal; 170° vertical</li>\r\n</ul>\r\n<p>\r\n <b>Brightness (typical)</b></p>\r\n<ul>\r\n <li>\r\n 30-inch Cinema HD Display: 400 cd/m2</li>\r\n</ul>\r\n<p>\r\n <b>Contrast ratio (typical)</b></p>\r\n<ul>\r\n <li>\r\n 700:1</li>\r\n</ul>\r\n<p>\r\n <b>Response time (typical)</b></p>\r\n<ul>\r\n <li>\r\n 16 ms</li>\r\n</ul>\r\n<p>\r\n <b>Pixel pitch</b></p>\r\n<ul>\r\n <li>\r\n 30-inch Cinema HD Display: 0.250 mm</li>\r\n</ul>\r\n<p>\r\n <b>Screen treatment</b></p>\r\n<ul>\r\n <li>\r\n Antiglare hardcoat</li>\r\n</ul>\r\n<p>\r\n <b>User controls (hardware and software)</b></p>\r\n<ul>\r\n <li>\r\n Display Power,</li>\r\n <li>\r\n System sleep, wake</li>\r\n <li>\r\n Brightness</li>\r\n <li>\r\n Monitor tilt</li>\r\n</ul>\r\n<p>\r\n <b>Connectors and cables</b><br>\r\n Cable</p>\r\n<ul>\r\n <li>\r\n DVI (Digital Visual Interface)</li>\r\n <li>\r\n FireWire 400</li>\r\n <li>\r\n USB 2.0</li>\r\n <li>\r\n DC power (24 V)</li>\r\n</ul>\r\n<p>\r\n Connectors</p>\r\n<ul>\r\n <li>\r\n Two-port, self-powered USB 2.0 hub</li>\r\n <li>\r\n Two FireWire 400 ports</li>\r\n <li>\r\n Kensington security port</li>\r\n</ul>\r\n<p>\r\n <b>VESA mount adapter</b><br>\r\n Requires optional Cinema Display VESA Mount Adapter (M9649G/A)</p>\r\n<ul>\r\n <li>\r\n Compatible with VESA FDMI (MIS-D, 100, C) compliant mounting solutions</li>\r\n</ul>\r\n<p>\r\n <b>Electrical requirements</b></p>\r\n<ul>\r\n <li>\r\n Input voltage: 100-240 VAC 50-60Hz</li>\r\n <li>\r\n Maximum power when operating: 150W</li>\r\n <li>\r\n Energy saver mode: 3W or less</li>\r\n</ul>\r\n<p>\r\n <b>Environmental requirements</b></p>\r\n<ul>\r\n <li>\r\n Operating temperature: 50° to 95° F (10° to 35° C)</li>\r\n <li>\r\n Storage temperature: -40° to 116° F (-40° to 47° C)</li>\r\n <li>\r\n Operating humidity: 20% to 80% noncondensing</li>\r\n <li>\r\n Maximum operating altitude: 10,000 feet</li>\r\n</ul>\r\n<p>\r\n <b>Agency approvals</b></p>\r\n<ul>\r\n <li>\r\n FCC Part 15 Class B</li>\r\n <li>\r\n EN55022 Class B</li>\r\n <li>\r\n EN55024</li>\r\n <li>\r\n VCCI Class B</li>\r\n <li>\r\n AS/NZS 3548 Class B</li>\r\n <li>\r\n CNS 13438 Class B</li>\r\n <li>\r\n ICES-003 Class B</li>\r\n <li>\r\n ISO 13406 part 2</li>\r\n <li>\r\n MPR II</li>\r\n <li>\r\n IEC 60950</li>\r\n <li>\r\n UL 60950</li>\r\n <li>\r\n CSA 60950</li>\r\n <li>\r\n EN60950</li>\r\n <li>\r\n ENERGY STAR</li>\r\n <li>\r\n TCO \'03</li>\r\n</ul>\r\n<p>\r\n <b>Size and weight</b><br>\r\n 30-inch Apple Cinema HD Display</p>\r\n<ul>\r\n <li>\r\n Height: 21.3 inches (54.3 cm)</li>\r\n <li>\r\n Width: 27.2 inches (68.8 cm)</li>\r\n <li>\r\n Depth: 8.46 inches (21.5 cm)</li>\r\n <li>\r\n Weight: 27.5 pounds (12.5 kg)</li>\r\n</ul>\r\n<p>\r\n <b>System Requirements</b></p>\r\n<ul>\r\n <li>\r\n Mac Pro, all graphic options</li>\r\n <li>\r\n MacBook Pro</li>\r\n <li>\r\n Power Mac G5 (PCI-X) with ATI Radeon 9650 or better or NVIDIA GeForce 6800 GT DDL or better</li>\r\n <li>\r\n Power Mac G5 (PCI Express), all graphics options</li>\r\n <li>\r\n PowerBook G4 with dual-link DVI support</li>\r\n <li>\r\n Windows PC and graphics card that supports DVI ports with dual-link digital bandwidth and VESA DDC standard for plug-and-play setup</li>\r\n</ul>\r\n','','Apple Cinema 30','',''),
(360,2,'Headphones','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport','Headphones','',''),
(280,2,'Anti-Dandruff Shampoo','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, beauty','Anti-Dandruff Shampoo','',''),
(271,2,'Oversized Sunglasses For Long Summer Days','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Oversized Sunglasses For Summer Long Days','',''),
(351,2,'Canvas Tote Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport','Canvas Tote Bag','',''),
(376,2,'Office Jacket','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport , daily','Office Jacket','',''),
(280,1,'Anti-Dandruff Shampoo','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, beauty','Anti-Dandruff Shampoo','',''),
(374,2,'Lightweight Packable Hiking Backpack','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Lightweight Packable Hiking Backpack','',''),
(373,2,'Computer Bag Casual Bookbag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, business','Computer Bag School Bookbag','',''),
(360,1,'Headphones','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport','Headphones','',''),
(42,1,'Apple Cinema 30"','<p>\r\n The 30-inch Apple Cinema HD Display delivers an amazing 2560 x 1600 pixel resolution. Designed specifically for the creative professional, this display provides more space for easier access to all the tools and palettes needed to edit, format and composite your work. Combine this display with a Mac Pro, MacBook Pro, or PowerMac G5 and there\'s no limit to what you can achieve. </p><p><br>\r\n The Cinema HD features an active-matrix liquid crystal display that produces flicker-free images that deliver twice the brightness, twice the sharpness and twice the contrast ratio of a typical CRT display. Unlike other flat panels, it\'s designed with a pure digital interface to deliver distortion-free images that never need adjusting. With over 4 million digital pixels, the display is uniquely suited for scientific and technical applications such as visualizing molecular structures or analyzing geological data. </p><p><br>\r\n Offering accurate, brilliant color performance, the Cinema HD delivers up to 16.7 million colors across a wide gamut allowing you to see subtle nuances between colors from soft pastels to rich jewel tones. A wide viewing angle ensures uniform color from edge to edge. Apple\'s ColorSync technology allows you to create custom profiles to maintain consistent color onscreen and in print. The result: You can confidently use this display in all your color-critical applications. </p><p><br>\r\n Housed in a new aluminum design, the display has a very thin bezel that enhances visual accuracy. Each display features two FireWire 400 ports and two USB 2.0 ports, making attachment of desktop peripherals, such as iSight, iPod, digital and still cameras, hard drives, printers and scanners, even more accessible and convenient. Taking advantage of the much thinner and lighter footprint of an LCD, the new displays support the VESA (Video Electronics Standards Association) mounting interface standard. Customers with the optional Cinema Display VESA Mount Adapter kit gain the flexibility to mount their display in locations most appropriate for their work environment. </p><p><br>\r\n The Cinema HD features a single cable design with elegant breakout for the USB 2.0, FireWire 400 and a pure digital connection using the industry standard Digital Video Interface (DVI) interface. The DVI connection allows for a direct pure-digital connection.<br>\r\n </p>\r\n<h3>\r\n Features:</h3>\r\n<p>\r\n Unrivaled display performance</p>\r\n<ul>\r\n <li>\r\n 30-inch (viewable) active-matrix liquid crystal display provides breathtaking image quality and vivid, richly saturated color.</li>\r\n <li>\r\n Support for 2560-by-1600 pixel resolution for display of high definition still and video imagery.</li>\r\n <li>\r\n Wide-format design for simultaneous display of two full pages of text and graphics.</li>\r\n <li>\r\n Industry standard DVI connector for direct attachment to Mac- and Windows-based desktops and notebooks</li>\r\n <li>\r\n Incredibly wide (170 degree) horizontal and vertical viewing angle for maximum visibility and color performance.</li>\r\n <li>\r\n Lightning-fast pixel response for full-motion digital video playback.</li>\r\n <li>\r\n Support for 16.7 million saturated colors, for use in all graphics-intensive applications.</li>\r\n</ul>\r\n<p>\r\n Simple setup and operation</p>\r\n<ul>\r\n <li>\r\n Single cable with elegant breakout for connection to DVI, USB and FireWire ports</li>\r\n <li>\r\n Built-in two-port USB 2.0 hub for easy connection of desktop peripheral devices.</li>\r\n <li>\r\n Two FireWire 400 ports to support iSight and other desktop peripherals</li>\r\n</ul>\r\n<p>\r\n Sleek, elegant design</p>\r\n<ul>\r\n <li>\r\n Huge virtual workspace, very small footprint.</li>\r\n <li>\r\n Narrow Bezel design to minimize visual impact of using dual displays</li>\r\n <li>\r\n Unique hinge design for effortless adjustment</li>\r\n <li>\r\n Support for VESA mounting solutions (Apple Cinema Display VESA Mount Adapter sold separately)</li>\r\n</ul>\r\n<h3>\r\n Technical specifications</h3>\r\n<p>\r\n <b>Screen size (diagonal viewable image size)</b></p>\r\n<ul>\r\n <li>\r\n Apple Cinema HD Display: 30 inches (29.7-inch viewable)</li>\r\n</ul>\r\n<p>\r\n <b>Screen type</b></p>\r\n<ul>\r\n <li>\r\n Thin film transistor (TFT) active-matrix liquid crystal display (AMLCD)</li>\r\n</ul>\r\n<p>\r\n <b>Resolutions</b></p>\r\n<ul>\r\n <li>\r\n 2560 x 1600 pixels (optimum resolution)</li>\r\n <li>\r\n 2048 x 1280</li>\r\n <li>\r\n 1920 x 1200</li>\r\n <li>\r\n 1280 x 800</li>\r\n <li>\r\n 1024 x 640</li>\r\n</ul>\r\n<p>\r\n <b>Display colors (maximum)</b></p>\r\n<ul>\r\n <li>\r\n 16.7 million</li>\r\n</ul>\r\n<p>\r\n <b>Viewing angle (typical)</b></p>\r\n<ul>\r\n <li>\r\n 170° horizontal; 170° vertical</li>\r\n</ul>\r\n<p>\r\n <b>Brightness (typical)</b></p>\r\n<ul>\r\n <li>\r\n 30-inch Cinema HD Display: 400 cd/m2</li>\r\n</ul>\r\n<p>\r\n <b>Contrast ratio (typical)</b></p>\r\n<ul>\r\n <li>\r\n 700:1</li>\r\n</ul>\r\n<p>\r\n <b>Response time (typical)</b></p>\r\n<ul>\r\n <li>\r\n 16 ms</li>\r\n</ul>\r\n<p>\r\n <b>Pixel pitch</b></p>\r\n<ul>\r\n <li>\r\n 30-inch Cinema HD Display: 0.250 mm</li>\r\n</ul>\r\n<p>\r\n <b>Screen treatment</b></p>\r\n<ul>\r\n <li>\r\n Antiglare hardcoat</li>\r\n</ul>\r\n<p>\r\n <b>User controls (hardware and software)</b></p>\r\n<ul>\r\n <li>\r\n Display Power,</li>\r\n <li>\r\n System sleep, wake</li>\r\n <li>\r\n Brightness</li>\r\n <li>\r\n Monitor tilt</li>\r\n</ul>\r\n<p>\r\n <b>Connectors and cables</b><br>\r\n Cable</p>\r\n<ul>\r\n <li>\r\n DVI (Digital Visual Interface)</li>\r\n <li>\r\n FireWire 400</li>\r\n <li>\r\n USB 2.0</li>\r\n <li>\r\n DC power (24 V)</li>\r\n</ul>\r\n<p>\r\n Connectors</p>\r\n<ul>\r\n <li>\r\n Two-port, self-powered USB 2.0 hub</li>\r\n <li>\r\n Two FireWire 400 ports</li>\r\n <li>\r\n Kensington security port</li>\r\n</ul>\r\n<p>\r\n <b>VESA mount adapter</b><br>\r\n Requires optional Cinema Display VESA Mount Adapter (M9649G/A)</p>\r\n<ul>\r\n <li>\r\n Compatible with VESA FDMI (MIS-D, 100, C) compliant mounting solutions</li>\r\n</ul>\r\n<p>\r\n <b>Electrical requirements</b></p>\r\n<ul>\r\n <li>\r\n Input voltage: 100-240 VAC 50-60Hz</li>\r\n <li>\r\n Maximum power when operating: 150W</li>\r\n <li>\r\n Energy saver mode: 3W or less</li>\r\n</ul>\r\n<p>\r\n <b>Environmental requirements</b></p>\r\n<ul>\r\n <li>\r\n Operating temperature: 50° to 95° F (10° to 35° C)</li>\r\n <li>\r\n Storage temperature: -40° to 116° F (-40° to 47° C)</li>\r\n <li>\r\n Operating humidity: 20% to 80% noncondensing</li>\r\n <li>\r\n Maximum operating altitude: 10,000 feet</li>\r\n</ul>\r\n<p>\r\n <b>Agency approvals</b></p>\r\n<ul>\r\n <li>\r\n FCC Part 15 Class B</li>\r\n <li>\r\n EN55022 Class B</li>\r\n <li>\r\n EN55024</li>\r\n <li>\r\n VCCI Class B</li>\r\n <li>\r\n AS/NZS 3548 Class B</li>\r\n <li>\r\n CNS 13438 Class B</li>\r\n <li>\r\n ICES-003 Class B</li>\r\n <li>\r\n ISO 13406 part 2</li>\r\n <li>\r\n MPR II</li>\r\n <li>\r\n IEC 60950</li>\r\n <li>\r\n UL 60950</li>\r\n <li>\r\n CSA 60950</li>\r\n <li>\r\n EN60950</li>\r\n <li>\r\n ENERGY STAR</li>\r\n <li>\r\n TCO \'03</li>\r\n</ul>\r\n<p>\r\n <b>Size and weight</b><br>\r\n 30-inch Apple Cinema HD Display</p>\r\n<ul>\r\n <li>\r\n Height: 21.3 inches (54.3 cm)</li>\r\n <li>\r\n Width: 27.2 inches (68.8 cm)</li>\r\n <li>\r\n Depth: 8.46 inches (21.5 cm)</li>\r\n <li>\r\n Weight: 27.5 pounds (12.5 kg)</li>\r\n</ul>\r\n<p>\r\n <b>System Requirements</b></p>\r\n<ul>\r\n <li>\r\n Mac Pro, all graphic options</li>\r\n <li>\r\n MacBook Pro</li>\r\n <li>\r\n Power Mac G5 (PCI-X) with ATI Radeon 9650 or better or NVIDIA GeForce 6800 GT DDL or better</li>\r\n <li>\r\n Power Mac G5 (PCI Express), all graphics options</li>\r\n <li>\r\n PowerBook G4 with dual-link DVI support</li>\r\n <li>\r\n Windows PC and graphics card that supports DVI ports with dual-link digital bandwidth and VESA DDC standard for plug-and-play setup</li>\r\n</ul>\r\n','','Apple Cinema 30','',''),
(372,2,'Waterproof Travel Backpack','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Waterproof Travel Backpack','',''),
(371,2,'Vera Laptop Backpack','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport','Vera Laptop Backpack','',''),
(370,2,'Bluetooth Smart Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport','Bluetooth Smart Watch','',''),
(369,2,'Home Office 55 Inch TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool','Home Office 55 Inch TV','',''),
(368,2,'Samsung Ultra HD 4009 Smart TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Samsung Ultra HD 4009 Smart TV','',''),
(367,2,'Samsung 309 Smart TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, business, daily','Samsung 309 Smart TV','',''),
(365,2,'Toshiba 5009 Smart TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Toshiba 5009 Smart TV','',''),
(49,2,'Samsung Galaxy Tab 10.1','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Samsung Galaxy Tab 10.1','',''),
(31,2,'Nikon D300','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Nikon D300','',''),
(43,2,'MacBook','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','MacBook','',''),
(366,1,'Leica Digital Camera','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Leica Digital Camera','',''),
(34,2,'iPod Shuffle','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Shuffle','',''),
(36,2,'iPod Nano','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Nano','',''),
(32,2,'iPod Touch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Touch','',''),
(45,2,'MacBook Pro','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','MacBook Pro','',''),
(44,2,'MacBook Air','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','MacBook Air','',''),
(40,2,'iPhone','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPhone','',''),
(48,2,'iPod Classic','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Classic','',''),
(289,2,'Eau de Parfum','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, daily, beauty','Eau de Parfum','',''),
(264,2,'Sample Cherry Perfume','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, daily, beauty, body','Sample Cherry Perfume','',''),
(263,2,'Hiking Boots','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Hiking Boots','',''),
(262,2,'Lazy Chair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Lazy Chair','',''),
(261,2,'Red Small Chair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Red Small Chair','',''),
(260,2,'Hiking Brown Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Hiking Brown Bag','',''),
(256,2,'Tricolor Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Tricolor Bag','',''),
(273,2,'Sport Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Sport Watch','',''),
(313,2,'Outrageous V-Neck Jumpsuit','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Outrageous V-Neck Jumpsuit','',''),
(312,2,'Ophelia Loose Blouse','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Ophelia loose Blouse','',''),
(311,2,'V-Neck Sweater','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, sport, daily ','V-Neck Sweater','',''),
(310,2,'Applique T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Applique T-Shirt','',''),
(309,2,'Satin Bodysuit','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Satin Bodysuit','',''),
(308,2,'Journal T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, daily, sport','Journal T-Shirt','',''),
(307,2,'Nick Graphic Tee','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, casual, cool','Nick Graphic Tee','',''),
(306,2,'Oversized Women\'s Hoodie','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Oversized Women\'s Hoodie','',''),
(305,2,'Elegant Silk Pants','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Elegant Silk Pants','',''),
(304,2,'Black Vintage T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, daily, casual, business','Black Vintage T-Shirt','',''),
(303,2,'Jacob Turtleneck Sweater','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Jacob Turtleneck Sweater','',''),
(301,2,'Cashmere Pullover','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Cashmere Pullover','',''),
(300,2,'Black Lace Dress','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual','Black Lace Dress','',''),
(299,2,'Bodycorn Dress','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','occasion, cool, business','Bodycorn Dress','',''),
(298,2,'Highlight Powder','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, brush, fresh','Highlight Powder','',''),
(297,2,'Bronzer Brush','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, brush','Bronzer Brush','',''),
(296,2,'Powder Brush','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty','Powder Brush','',''),
(295,2,'Makeup Brush Set','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty','Makeup Brush Set','',''),
(294,2,'Eyelash Curler','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, brush','Eyelash Curler','',''),
(293,2,'Head Massage Accessories','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, beauty, brush','Head Massage Accessories','',''),
(292,2,'Scrub Gift Set','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty, fresh','Scrub Gift Set','',''),
(291,2,'Thai Spa Butter','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Thai Spa Butter','',''),
(290,2,'Lavender Spa Gift','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, fresh','Lavender Spa Gift','',''),
(288,2,'Powder Face Mask','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Powder Face Mask','',''),
(287,2,'Mascara Curved Brush','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty, fresh','Mascara Curved Brush','',''),
(286,2,'Mascara Voluminous','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty, fresh ','Mascara Voluminous','',''),
(285,2,'Liquid Lipstick','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, fresh, daily','Liquid Lipstick','',''),
(284,2,'Matte Lipstick','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, fresh','Matte Lipstick','',''),
(377,1,'Gym Wear','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, beauty','Gym Wear','',''),
(283,2,'Facial Treatment Essence','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, body, daily','Facial Treatment Essence','',''),
(282,2,'Bio Butter','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty','Bio Butter','',''),
(281,2,'Lavender Deodorant','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, body, daily','Lavender Deodorant','',''),
(378,1,'Apple Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Apple Watch','',''),
(279,2,'Body Scrub','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, daily, beauty','Body Scrub','',''),
(278,2,'Fresh Ginger Perfume','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, body, daily ','Fresh Ginger Perfume','',''),
(379,1,'Workout Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Workout Shoes','',''),
(277,2,'Body Milk','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty, daily','Body Milk','',''),
(380,1,'Sports Outfit','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty','Sports Outfit','',''),
(276,2,'Honey Hand Soap','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, shampoo, body','Honey Hand Soap','',''),
(381,1,'Sample Product with a longer name','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','heels, occasion','Sample Product with a longer name','',''),
(275,2,'Hydrating Face Cream','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, daily, beauty ','Hydrating Face Cream','',''),
(274,2,'Body Oil','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty, daily','Body Oil','',''),
(382,1,'Sports Top','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual','Sports Top','',''),
(41,2,'iMac','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iMac','',''),
(47,2,'HP LP3065','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','HP LP3065','',''),
(28,2,'HTC Touch HD','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','HTC Touch HD','',''),
(383,1,'Gym Headphones','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Gym Headphones','',''),
(268,2,'Brown High Heels','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','occasion, heels, cool','Brown High Heels','',''),
(391,1,'Flame Decor','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','porcelain, flame, decor','Flame Decor','',''),
(267,2,'Brown Suede Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, daily','Brown Suede Shoes','',''),
(266,2,'Black High Heels','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','heels, occasion','Black High Heels','',''),
(259,2,'Business Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual','Business Bag','',''),
(392,1,'Chrome Statue','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','statue, decor, chrome','Chrome Statue','',''),
(393,1,'Porcelain Flame','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','porcelain, flame, decor','Porcelain Flame','',''),
(257,2,'Crossbody Yellow Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, leather','Crossbody Yellow Bag','',''),
(272,2,'Red Formal Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Red Formal Watch','',''),
(394,1,'Stone Fireplace','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fireplace, decor, stone','Stone Fireplace','',''),
(270,2,'Navy Sneakers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Navy Sneakers','',''),
(269,2,'Cool Boots','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual','Cool Boots','',''),
(350,2,'Black Leather Tote Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, casual, daily','Black Leather Tote Bag','',''),
(396,1,'Classic Fireplace','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fireplace, decor, stone','Classic Fireplace','',''),
(33,2,'Samsung SyncMaster 941BW','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, business, daily','Samsung SyncMaster 941BW','',''),
(397,1,'Wooden Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, round','Wooden Table','',''),
(364,2,'Samsung Curved 32" LED TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, business, daily','Samsung Curved 32"LED TV','',''),
(362,2,'Power Shot Digital Camera','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Power Shot Digital Camera','',''),
(398,1,'Coffee Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, coffee','Coffee Table','',''),
(363,1,'DSLR 390 Nikon','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool','DSLR 390 Nikon','',''),
(361,2,'Flame Wireless Portable Speaker','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, sport','Flame Wireless Portable Speaker','',''),
(359,2,'Home Bluetooth Speaker','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool','Home Bluetooth Speaker','',''),
(357,2,'Windproof Umbrella','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','daily, cool, casual','Windproof Umbrella','',''),
(399,1,'Modern Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, steel','Modern Table','',''),
(400,1,'Corner Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, corner','Corner Table','',''),
(356,2,'Wallet Phone Case','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual, leather','Wallet Phone Case','',''),
(355,2,'Plus Leather Phone Case','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Plus Leather Phone Case','',''),
(354,2,'Ultimate Leather Wallet','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, business, cool, casual','Ultimate Leather Wallet','',''),
(401,1,'Simple Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, simple','Simple Table','',''),
(353,2,'Slim Card Holder','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Slim Card Holder','',''),
(352,2,'Large Fashion Tote Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, casual, daily','Large Fashion Tote Bag','',''),
(402,1,'Modern Wooden Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Modern Wooden Lamp','',''),
(349,2,'Women Straw Summer Bag ','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, daily','Women Straw Summer bag','',''),
(348,2,'Premium Leather Slippers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Premium Leather Slippers','',''),
(403,1,'Red Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Red Lamp','',''),
(347,2,'Claire Flat Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, flat','Claire Flat Shoes','',''),
(404,1,'Stage Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Stage Lamp','',''),
(405,1,'Hanging Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Hanging Lamp','',''),
(346,2,'Women\'s Comfortable Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','flat, leather, business','Women\'s Comfortable Shoes','',''),
(345,2,'Soft Pink Patent Leather Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Soft Pink Patent Leather Shoes','',''),
(406,1,'Ceiling Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Ceiling Lamp','',''),
(344,2,'Brown Leather Casual Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, daily, cool','Brown Leather Casual Shoes','',''),
(343,2,'Stiletto High Heel Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Stiletto High Heel Shoes','',''),
(342,1,'Women\'s Maria Pump','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','heels, occasion, leather, business','Women\'s Maria Pump','',''),
(407,1,'Modern Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Modern Lamp','',''),
(341,2,'Suede Leather Sandals','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Suede Leather Sandals','',''),
(340,2,'Men\'s Slim Flip Flop','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Men\'s Slim Flip Flop','',''),
(409,1,'Gray Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Gray Sofa','',''),
(410,1,'Yellow Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Yellow Sofa','',''),
(339,2,'Free Spirit Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Free Spirit Shoes','',''),
(338,2,'Boston M509','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, sport, daily','Boston M509','',''),
(411,1,'Moden Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Modern Sofa','',''),
(337,2,'Classic Leather Trainers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Classic Leather Trainers','',''),
(336,2,'White Gel-Galaxy Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, casual, cool','White Gel-Galaxy Shoes','',''),
(412,1,'Orange Loveseat','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Orange Loveseat','',''),
(335,2,'Yellow Performance Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Yellow Performance Shoes','',''),
(334,2,'Breathable Running Sneakers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily ','Breathable Running Sneakers','',''),
(333,2,'Victoria Men\'s Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Victoria Men\'s Shoes','',''),
(332,2,'Men\'s Gazelle Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Men\'s Gazelle Shoes','',''),
(413,1,'Chesterfield Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Chesterfield Sofa','',''),
(331,2,'Dragon T40','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Dragon T40','',''),
(330,2,'Rainbow Trainers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Rainbow Sneakers','',''),
(414,1,'Green Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, polyester, modern','Green Sofa','',''),
(415,1,'Sample Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Sample Sofa','',''),
(329,2,'Star V9 Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Star V9 Shoes','',''),
(328,2,'Micro Fuel RN','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Micro Fuel RN','',''),
(327,2,'Red Airmax','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Red Airmax','',''),
(418,1,'Classic Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','classic, chair, modern','Classic Armchair','',''),
(417,1,'Sleeper Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, linen, modern','Sleeper Sofa','',''),
(326,2,'Fashion Breathable Sneakers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Fashion Breathable Sneakers','',''),
(325,2,'Lightweight Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Lightweight Shoes','',''),
(324,2,'Blue Y56','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Blue Y56','',''),
(419,1,'Comfortable Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, modern','Comfortable Armchair','',''),
(323,2,'Running Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Running Shoes','',''),
(322,2,'Geometrical Purse','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, leather, occasion','Geometrical Purse','',''),
(321,2,'Large Wallet','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Large Wallet','',''),
(320,2,'Change Purse','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, leather, casual','Change Purse','',''),
(420,1,'Gray Armchair ','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','gray, armchair, lazy, comfortable','Gray Armchair ','',''),
(421,1,'Lazy Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, modern, light','Lazy Armchair','',''),
(319,2,'Mini Handbag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Mini Handbag','',''),
(318,2,'City Handbag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, business, cool','City Handbag','',''),
(422,1,'Modern Chair ','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, modern','Modern Chair ','',''),
(317,2,'Jackson Hat','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','daily, cool, body, sport','Jackson Hat','',''),
(316,2,'Vintage T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, casual, cool','Vintage T-Shirt','',''),
(423,1,'Yellow Modern Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, yellow, modern','Yellow Modern Armchair','',''),
(314,2,'Super Strech Jeans','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Super Strech Jeans','',''),
(30,2,'Canon EOS 5D','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Canon EOS 5D','',''),
(415,2,'Sample Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Sample Sofa','',''),
(418,2,'Classic Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','classic, chair, modern','Classic Armchair','',''),
(417,2,'Sleeper Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, linen, modern','Sleeper Sofa','',''),
(419,2,'Comfortable Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, modern','Comfortable Armchair','',''),
(420,2,'Gray Armchair ','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','gray, armchair, lazy, comfortable','Gray Armchair ','',''),
(421,2,'Lazy Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, modern, light','Lazy Armchair','',''),
(422,2,'Modern Chair ','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, modern','Modern Chair ','',''),
(423,2,'Yellow Modern Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, yellow, modern','Yellow Modern Armchair','',''),
(30,3,'Canon EOS 5D','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Canon EOS 5D','',''),
(314,3,'Super Strech Jeans','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Super Strech Jeans','',''),
(316,3,'Vintage T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, casual, cool','Vintage T-Shirt','',''),
(317,3,'Jackson Hat','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','daily, cool, body, sport','Jackson Hat','',''),
(318,3,'City Handbag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, business, cool','City Handbag','',''),
(319,3,'Mini Handbag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Mini Handbag','',''),
(320,3,'Change Purse','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, leather, casual','Change Purse','',''),
(321,3,'Large Wallet','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Large Wallet','',''),
(322,3,'Geometrical Purse','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, leather, occasion','Geometrical Purse','',''),
(323,3,'Running Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Running Shoes','',''),
(324,3,'Blue Y56','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Blue Y56','',''),
(325,3,'Lightweight Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Lightweight Shoes','',''),
(326,3,'Fashion Breathable Sneakers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Fashion Breathable Sneakers','',''),
(327,3,'Red Airmax','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Red Airmax','',''),
(328,3,'Micro Fuel RN','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Micro Fuel RN','',''),
(329,3,'Star V9 Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Star V9 Shoes','',''),
(330,3,'Rainbow Trainers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Rainbow Sneakers','',''),
(331,3,'Dragon T40','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Dragon T40','',''),
(332,3,'Men\'s Gazelle Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Men\'s Gazelle Shoes','',''),
(333,3,'Victoria Men\'s Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Victoria Men\'s Shoes','',''),
(334,3,'Breathable Running Sneakers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily ','Breathable Running Sneakers','',''),
(335,3,'Yellow Performance Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Yellow Performance Shoes','',''),
(336,3,'White Gel-Galaxy Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, casual, cool','White Gel-Galaxy Shoes','',''),
(337,3,'Classic Leather Trainers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, cool, daily','Classic Leather Trainers','',''),
(338,3,'Boston M509','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, sport, daily','Boston M509','',''),
(339,3,'Free Spirit Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Free Spirit Shoes','',''),
(340,3,'Men\'s Slim Flip Flop','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Men\'s Slim Flip Flop','',''),
(341,3,'Suede Leather Sandals','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Suede Leather Sandals','',''),
(343,3,'Stiletto High Heel Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Stiletto High Heel Shoes','',''),
(344,3,'Brown Leather Casual Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, daily, cool','Brown Leather Casual Shoes','',''),
(345,3,'Soft Pink Patent Leather Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Soft Pink Patent Leather Shoes','',''),
(346,3,'Women\'s Comfortable Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','flat, leather, business','Women\'s Comfortable Shoes','',''),
(347,3,'Claire Flat Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, flat','Claire Flat Shoes','',''),
(348,3,'Premium Leather Slippers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Premium Leather Slippers','',''),
(349,3,'Women Straw Summer Bag ','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, daily','Women Straw Summer bag','',''),
(352,3,'Large Fashion Tote Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, casual, daily','Large Fashion Tote Bag','',''),
(353,3,'Slim Card Holder','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Slim Card Holder','',''),
(354,3,'Ultimate Leather Wallet','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, business, cool, casual','Ultimate Leather Wallet','',''),
(355,3,'Plus Leather Phone Case','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Plus Leather Phone Case','',''),
(356,3,'Wallet Phone Case','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual, leather','Wallet Phone Case','',''),
(357,3,'Windproof Umbrella','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','daily, cool, casual','Windproof Umbrella','',''),
(359,3,'Home Bluetooth Speaker','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool','Home Bluetooth Speaker','',''),
(361,3,'Flame Wireless Portable Speaker','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, sport','Flame Wireless Portable Speaker','',''),
(362,3,'Power Shot Digital Camera','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Power Shot Digital Camera','',''),
(364,3,'Samsung Curved 32" LED TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, business, daily','Samsung Curved 32"LED TV','',''),
(33,3,'Samsung SyncMaster 941BW','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, business, daily','Samsung SyncMaster 941BW','',''),
(350,3,'Black Leather Tote Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','leather, casual, daily','Black Leather Tote Bag','',''),
(269,3,'Cool Boots','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual','Cool Boots','',''),
(270,3,'Navy Sneakers','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Navy Sneakers','',''),
(272,3,'Red Formal Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Red Formal Watch','',''),
(257,3,'Crossbody Yellow Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, leather','Crossbody Yellow Bag','',''),
(259,3,'Business Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual','Business Bag','',''),
(266,3,'Black High Heels','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','heels, occasion','Black High Heels','',''),
(267,3,'Brown Suede Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, daily','Brown Suede Shoes','',''),
(268,3,'Brown High Heels','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','occasion, heels, cool','Brown High Heels','',''),
(28,3,'HTC Touch HD','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','HTC Touch HD','',''),
(47,3,'HP LP3065','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','HP LP3065','',''),
(41,3,'iMac','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iMac','',''),
(274,3,'Body Oil','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty, daily','Body Oil','',''),
(275,3,'Hydrating Face Cream','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, daily, beauty ','Hydrating Face Cream','',''),
(276,3,'Honey Hand Soap','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, shampoo, body','Honey Hand Soap','',''),
(277,3,'Body Milk','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty, daily','Body Milk','',''),
(278,3,'Fresh Ginger Perfume','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, body, daily ','Fresh Ginger Perfume','',''),
(279,3,'Body Scrub','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, daily, beauty','Body Scrub','',''),
(281,3,'Lavender Deodorant','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, body, daily','Lavender Deodorant','',''),
(282,3,'Bio Butter','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty','Bio Butter','',''),
(283,3,'Facial Treatment Essence','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, body, daily','Facial Treatment Essence','',''),
(284,3,'Matte Lipstick','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, fresh','Matte Lipstick','',''),
(285,3,'Liquid Lipstick','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, fresh, daily','Liquid Lipstick','',''),
(286,3,'Mascara Voluminous','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty, fresh ','Mascara Voluminous','',''),
(287,3,'Mascara Curved Brush','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty, fresh','Mascara Curved Brush','',''),
(288,3,'Powder Face Mask','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Powder Face Mask','',''),
(290,3,'Lavender Spa Gift','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, fresh','Lavender Spa Gift','',''),
(291,3,'Thai Spa Butter','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Thai Spa Butter','',''),
(292,3,'Scrub Gift Set','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty, fresh','Scrub Gift Set','',''),
(293,3,'Head Massage Accessories','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, beauty, brush','Head Massage Accessories','',''),
(294,3,'Eyelash Curler','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, brush','Eyelash Curler','',''),
(295,3,'Makeup Brush Set','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty','Makeup Brush Set','',''),
(296,3,'Powder Brush','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','brush, beauty','Powder Brush','',''),
(297,3,'Bronzer Brush','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, brush','Bronzer Brush','',''),
(298,3,'Highlight Powder','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','beauty, brush, fresh','Highlight Powder','',''),
(299,3,'Bodycorn Dress','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','occasion, cool, business','Bodycorn Dress','',''),
(300,3,'Black Lace Dress','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual','Black Lace Dress','',''),
(301,3,'Cashmere Pullover','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Cashmere Pullover','',''),
(303,3,'Jacob Turtleneck Sweater','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Jacob Turtleneck Sweater','',''),
(304,3,'Black Vintage T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, daily, casual, business','Black Vintage T-Shirt','',''),
(305,3,'Elegant Silk Pants','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Elegant Silk Pants','',''),
(306,3,'Oversized Women\'s Hoodie','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Oversized Women\'s Hoodie','',''),
(307,3,'Nick Graphic Tee','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport, casual, cool','Nick Graphic Tee','',''),
(308,3,'Journal T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, daily, sport','Journal T-Shirt','',''),
(309,3,'Satin Bodysuit','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Satin Bodysuit','',''),
(310,3,'Applique T-Shirt','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Applique T-Shirt','',''),
(311,3,'V-Neck Sweater','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, sport, daily ','V-Neck Sweater','',''),
(312,3,'Ophelia Loose Blouse','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Ophelia loose Blouse','',''),
(313,3,'Outrageous V-Neck Jumpsuit','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Outrageous V-Neck Jumpsuit','',''),
(273,3,'Sport Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Sport Watch','',''),
(256,3,'Tricolor Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Tricolor Bag','',''),
(260,3,'Hiking Brown Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Hiking Brown Bag','',''),
(261,3,'Red Small Chair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Red Small Chair','',''),
(262,3,'Lazy Chair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Lazy Chair','',''),
(263,3,'Hiking Boots','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Hiking Boots','',''),
(264,3,'Sample Cherry Perfume','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, daily, beauty, body','Sample Cherry Perfume','',''),
(289,3,'Eau de Parfum','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fresh, daily, beauty','Eau de Parfum','',''),
(48,3,'iPod Classic','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Classic','',''),
(40,3,'iPhone','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPhone','',''),
(44,3,'MacBook Air','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','MacBook Air','',''),
(45,3,'MacBook Pro','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','MacBook Pro','',''),
(36,3,'iPod Nano','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Nano','',''),
(32,3,'iPod Touch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Touch','',''),
(34,3,'iPod Shuffle','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','iPod Shuffle','',''),
(43,3,'MacBook','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','MacBook','',''),
(31,3,'Nikon D300','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Nikon D300','',''),
(49,3,'Samsung Galaxy Tab 10.1','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Samsung Galaxy Tab 10.1','',''),
(365,3,'Toshiba 5009 Smart TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Toshiba 5009 Smart TV','',''),
(367,3,'Samsung 309 Smart TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, business, daily','Samsung 309 Smart TV','',''),
(368,3,'Samsung Ultra HD 4009 Smart TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Samsung Ultra HD 4009 Smart TV','',''),
(369,3,'Home Office 55 Inch TV','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool','Home Office 55 Inch TV','',''),
(370,3,'Bluetooth Smart Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport','Bluetooth Smart Watch','',''),
(371,3,'Vera Laptop Backpack','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport','Vera Laptop Backpack','',''),
(372,3,'Waterproof Travel Backpack','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Waterproof Travel Backpack','',''),
(373,3,'Computer Bag Casual Bookbag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','casual, cool, business','Computer Bag School Bookbag','',''),
(374,3,'Lightweight Packable Hiking Backpack','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Lightweight Packable Hiking Backpack','',''),
(376,3,'Office Jacket','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport , daily','Office Jacket','',''),
(351,3,'Canvas Tote Bag','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport','Canvas Tote Bag','',''),
(271,3,'Oversized Sunglasses For Long Summer Days','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Oversized Sunglasses For Summer Long Days','',''),
(280,3,'Anti-Dandruff Shampoo','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, beauty','Anti-Dandruff Shampoo','',''),
(360,3,'Headphones','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sport','Headphones','',''),
(42,3,'Apple Cinema 30"','<p>\r\n The 30-inch Apple Cinema HD Display delivers an amazing 2560 x 1600 pixel resolution. Designed specifically for the creative professional, this display provides more space for easier access to all the tools and palettes needed to edit, format and composite your work. Combine this display with a Mac Pro, MacBook Pro, or PowerMac G5 and there\'s no limit to what you can achieve. </p><p><br>\r\n The Cinema HD features an active-matrix liquid crystal display that produces flicker-free images that deliver twice the brightness, twice the sharpness and twice the contrast ratio of a typical CRT display. Unlike other flat panels, it\'s designed with a pure digital interface to deliver distortion-free images that never need adjusting. With over 4 million digital pixels, the display is uniquely suited for scientific and technical applications such as visualizing molecular structures or analyzing geological data. </p><p><br>\r\n Offering accurate, brilliant color performance, the Cinema HD delivers up to 16.7 million colors across a wide gamut allowing you to see subtle nuances between colors from soft pastels to rich jewel tones. A wide viewing angle ensures uniform color from edge to edge. Apple\'s ColorSync technology allows you to create custom profiles to maintain consistent color onscreen and in print. The result: You can confidently use this display in all your color-critical applications. </p><p><br>\r\n Housed in a new aluminum design, the display has a very thin bezel that enhances visual accuracy. Each display features two FireWire 400 ports and two USB 2.0 ports, making attachment of desktop peripherals, such as iSight, iPod, digital and still cameras, hard drives, printers and scanners, even more accessible and convenient. Taking advantage of the much thinner and lighter footprint of an LCD, the new displays support the VESA (Video Electronics Standards Association) mounting interface standard. Customers with the optional Cinema Display VESA Mount Adapter kit gain the flexibility to mount their display in locations most appropriate for their work environment. </p><p><br>\r\n The Cinema HD features a single cable design with elegant breakout for the USB 2.0, FireWire 400 and a pure digital connection using the industry standard Digital Video Interface (DVI) interface. The DVI connection allows for a direct pure-digital connection.<br>\r\n </p>\r\n<h3>\r\n Features:</h3>\r\n<p>\r\n Unrivaled display performance</p>\r\n<ul>\r\n <li>\r\n 30-inch (viewable) active-matrix liquid crystal display provides breathtaking image quality and vivid, richly saturated color.</li>\r\n <li>\r\n Support for 2560-by-1600 pixel resolution for display of high definition still and video imagery.</li>\r\n <li>\r\n Wide-format design for simultaneous display of two full pages of text and graphics.</li>\r\n <li>\r\n Industry standard DVI connector for direct attachment to Mac- and Windows-based desktops and notebooks</li>\r\n <li>\r\n Incredibly wide (170 degree) horizontal and vertical viewing angle for maximum visibility and color performance.</li>\r\n <li>\r\n Lightning-fast pixel response for full-motion digital video playback.</li>\r\n <li>\r\n Support for 16.7 million saturated colors, for use in all graphics-intensive applications.</li>\r\n</ul>\r\n<p>\r\n Simple setup and operation</p>\r\n<ul>\r\n <li>\r\n Single cable with elegant breakout for connection to DVI, USB and FireWire ports</li>\r\n <li>\r\n Built-in two-port USB 2.0 hub for easy connection of desktop peripheral devices.</li>\r\n <li>\r\n Two FireWire 400 ports to support iSight and other desktop peripherals</li>\r\n</ul>\r\n<p>\r\n Sleek, elegant design</p>\r\n<ul>\r\n <li>\r\n Huge virtual workspace, very small footprint.</li>\r\n <li>\r\n Narrow Bezel design to minimize visual impact of using dual displays</li>\r\n <li>\r\n Unique hinge design for effortless adjustment</li>\r\n <li>\r\n Support for VESA mounting solutions (Apple Cinema Display VESA Mount Adapter sold separately)</li>\r\n</ul>\r\n<h3>\r\n Technical specifications</h3>\r\n<p>\r\n <b>Screen size (diagonal viewable image size)</b></p>\r\n<ul>\r\n <li>\r\n Apple Cinema HD Display: 30 inches (29.7-inch viewable)</li>\r\n</ul>\r\n<p>\r\n <b>Screen type</b></p>\r\n<ul>\r\n <li>\r\n Thin film transistor (TFT) active-matrix liquid crystal display (AMLCD)</li>\r\n</ul>\r\n<p>\r\n <b>Resolutions</b></p>\r\n<ul>\r\n <li>\r\n 2560 x 1600 pixels (optimum resolution)</li>\r\n <li>\r\n 2048 x 1280</li>\r\n <li>\r\n 1920 x 1200</li>\r\n <li>\r\n 1280 x 800</li>\r\n <li>\r\n 1024 x 640</li>\r\n</ul>\r\n<p>\r\n <b>Display colors (maximum)</b></p>\r\n<ul>\r\n <li>\r\n 16.7 million</li>\r\n</ul>\r\n<p>\r\n <b>Viewing angle (typical)</b></p>\r\n<ul>\r\n <li>\r\n 170° horizontal; 170° vertical</li>\r\n</ul>\r\n<p>\r\n <b>Brightness (typical)</b></p>\r\n<ul>\r\n <li>\r\n 30-inch Cinema HD Display: 400 cd/m2</li>\r\n</ul>\r\n<p>\r\n <b>Contrast ratio (typical)</b></p>\r\n<ul>\r\n <li>\r\n 700:1</li>\r\n</ul>\r\n<p>\r\n <b>Response time (typical)</b></p>\r\n<ul>\r\n <li>\r\n 16 ms</li>\r\n</ul>\r\n<p>\r\n <b>Pixel pitch</b></p>\r\n<ul>\r\n <li>\r\n 30-inch Cinema HD Display: 0.250 mm</li>\r\n</ul>\r\n<p>\r\n <b>Screen treatment</b></p>\r\n<ul>\r\n <li>\r\n Antiglare hardcoat</li>\r\n</ul>\r\n<p>\r\n <b>User controls (hardware and software)</b></p>\r\n<ul>\r\n <li>\r\n Display Power,</li>\r\n <li>\r\n System sleep, wake</li>\r\n <li>\r\n Brightness</li>\r\n <li>\r\n Monitor tilt</li>\r\n</ul>\r\n<p>\r\n <b>Connectors and cables</b><br>\r\n Cable</p>\r\n<ul>\r\n <li>\r\n DVI (Digital Visual Interface)</li>\r\n <li>\r\n FireWire 400</li>\r\n <li>\r\n USB 2.0</li>\r\n <li>\r\n DC power (24 V)</li>\r\n</ul>\r\n<p>\r\n Connectors</p>\r\n<ul>\r\n <li>\r\n Two-port, self-powered USB 2.0 hub</li>\r\n <li>\r\n Two FireWire 400 ports</li>\r\n <li>\r\n Kensington security port</li>\r\n</ul>\r\n<p>\r\n <b>VESA mount adapter</b><br>\r\n Requires optional Cinema Display VESA Mount Adapter (M9649G/A)</p>\r\n<ul>\r\n <li>\r\n Compatible with VESA FDMI (MIS-D, 100, C) compliant mounting solutions</li>\r\n</ul>\r\n<p>\r\n <b>Electrical requirements</b></p>\r\n<ul>\r\n <li>\r\n Input voltage: 100-240 VAC 50-60Hz</li>\r\n <li>\r\n Maximum power when operating: 150W</li>\r\n <li>\r\n Energy saver mode: 3W or less</li>\r\n</ul>\r\n<p>\r\n <b>Environmental requirements</b></p>\r\n<ul>\r\n <li>\r\n Operating temperature: 50° to 95° F (10° to 35° C)</li>\r\n <li>\r\n Storage temperature: -40° to 116° F (-40° to 47° C)</li>\r\n <li>\r\n Operating humidity: 20% to 80% noncondensing</li>\r\n <li>\r\n Maximum operating altitude: 10,000 feet</li>\r\n</ul>\r\n<p>\r\n <b>Agency approvals</b></p>\r\n<ul>\r\n <li>\r\n FCC Part 15 Class B</li>\r\n <li>\r\n EN55022 Class B</li>\r\n <li>\r\n EN55024</li>\r\n <li>\r\n VCCI Class B</li>\r\n <li>\r\n AS/NZS 3548 Class B</li>\r\n <li>\r\n CNS 13438 Class B</li>\r\n <li>\r\n ICES-003 Class B</li>\r\n <li>\r\n ISO 13406 part 2</li>\r\n <li>\r\n MPR II</li>\r\n <li>\r\n IEC 60950</li>\r\n <li>\r\n UL 60950</li>\r\n <li>\r\n CSA 60950</li>\r\n <li>\r\n EN60950</li>\r\n <li>\r\n ENERGY STAR</li>\r\n <li>\r\n TCO \'03</li>\r\n</ul>\r\n<p>\r\n <b>Size and weight</b><br>\r\n 30-inch Apple Cinema HD Display</p>\r\n<ul>\r\n <li>\r\n Height: 21.3 inches (54.3 cm)</li>\r\n <li>\r\n Width: 27.2 inches (68.8 cm)</li>\r\n <li>\r\n Depth: 8.46 inches (21.5 cm)</li>\r\n <li>\r\n Weight: 27.5 pounds (12.5 kg)</li>\r\n</ul>\r\n<p>\r\n <b>System Requirements</b></p>\r\n<ul>\r\n <li>\r\n Mac Pro, all graphic options</li>\r\n <li>\r\n MacBook Pro</li>\r\n <li>\r\n Power Mac G5 (PCI-X) with ATI Radeon 9650 or better or NVIDIA GeForce 6800 GT DDL or better</li>\r\n <li>\r\n Power Mac G5 (PCI Express), all graphics options</li>\r\n <li>\r\n PowerBook G4 with dual-link DVI support</li>\r\n <li>\r\n Windows PC and graphics card that supports DVI ports with dual-link digital bandwidth and VESA DDC standard for plug-and-play setup</li>\r\n</ul>\r\n','','Apple Cinema 30','',''),
(366,3,'Leica Digital Camera','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','','Leica Digital Camera','',''),
(377,3,'Gym Wear','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','shampoo, beauty','Gym Wear','',''),
(378,3,'Apple Watch','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Apple Watch','',''),
(379,3,'Workout Shoes','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual ','Workout Shoes','',''),
(380,3,'Sports Outfit','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','body, beauty','Sports Outfit','',''),
(381,3,'Sample Product with a longer name','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','heels, occasion','Sample Product with a longer name','',''),
(382,3,'Sports Top','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool, casual','Sports Top','',''),
(383,3,'Gym Headphones','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','cool, casual, sport ','Gym Headphones','',''),
(391,3,'Flame Decor','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','porcelain, flame, decor','Flame Decor','',''),
(392,3,'Chrome Statue','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','statue, decor, chrome','Chrome Statue','',''),
(393,3,'Porcelain Flame','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','porcelain, flame, decor','Porcelain Flame','',''),
(394,3,'Stone Fireplace','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fireplace, decor, stone','Stone Fireplace','',''),
(396,3,'Classic Fireplace','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','fireplace, decor, stone','Classic Fireplace','',''),
(397,3,'Wooden Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, round','Wooden Table','',''),
(398,3,'Coffee Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, coffee','Coffee Table','',''),
(363,3,'DSLR 390 Nikon','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','business, cool','DSLR 390 Nikon','',''),
(399,3,'Modern Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, steel','Modern Table','',''),
(400,3,'Corner Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, corner','Corner Table','',''),
(401,3,'Simple Table','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, table, simple','Simple Table','',''),
(402,3,'Modern Wooden Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Modern Wooden Lamp','',''),
(403,3,'Red Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Red Lamp','',''),
(404,3,'Stage Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Stage Lamp','',''),
(405,3,'Hanging Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Hanging Lamp','',''),
(406,3,'Ceiling Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Ceiling Lamp','',''),
(342,3,'Women\'s Maria Pump','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','heels, occasion, leather, business','Women\'s Maria Pump','',''),
(407,3,'Modern Lamp','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','wood, lamp, modern','Modern Lamp','',''),
(409,3,'Gray Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Gray Sofa','',''),
(410,3,'Yellow Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Yellow Sofa','',''),
(411,3,'Moden Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Modern Sofa','',''),
(412,3,'Orange Loveseat','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Orange Loveseat','',''),
(413,3,'Chesterfield Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Chesterfield Sofa','',''),
(414,3,'Green Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, polyester, modern','Green Sofa','',''),
(415,3,'Sample Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, microfiber, modern','Sample Sofa','',''),
(418,3,'Classic Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','classic, chair, modern','Classic Armchair','',''),
(417,3,'Sleeper Sofa','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','sofa, linen, modern','Sleeper Sofa','',''),
(419,3,'Comfortable Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, modern','Comfortable Armchair','',''),
(420,3,'Gray Armchair ','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','gray, armchair, lazy, comfortable','Gray Armchair ','',''),
(421,3,'Lazy Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, modern, light','Lazy Armchair','',''),
(422,3,'Modern Chair ','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, modern','Modern Chair ','',''),
(423,3,'Yellow Modern Armchair','<p>Product description, along with any other tab can be displayed as tabs, accordion or all-visible blocks in grid format or one under the other.&nbsp; You can mix and match tabs and blocks in any order and any position. Each tab can also be set up as a link and point to other pages or open popup modules. Optional "Show More" collapsible block content is also available as an option for large and tall descriptions or custom content.</p>','chair, yellow, modern','Yellow Modern Armchair','','');
/*!40000 ALTER TABLE `oc_product_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_discount`
--
DROP TABLE IF EXISTS `oc_product_discount`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_discount` (
`product_discount_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
`quantity` int(4) NOT NULL DEFAULT 0,
`priority` int(5) NOT NULL DEFAULT 1,
`price` decimal(15,4) NOT NULL DEFAULT 0.0000,
`date_start` date NOT NULL DEFAULT '0000-00-00',
`date_end` date NOT NULL DEFAULT '0000-00-00',
PRIMARY KEY (`product_discount_id`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=557 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_discount`
--
LOCK TABLES `oc_product_discount` WRITE;
/*!40000 ALTER TABLE `oc_product_discount` DISABLE KEYS */;
INSERT INTO `oc_product_discount` VALUES
(507,274,1,50,50,200.0000,'0000-00-00','0000-00-00'),
(510,278,1,39,10,399.0000,'0000-00-00','2021-03-09'),
(509,289,1,20,20,99.0000,'0000-00-00','2020-12-26'),
(508,297,1,30,30,99.0000,'0000-00-00','2023-05-07'),
(541,306,1,40,40,139.0000,'0000-00-00','2021-01-02'),
(539,311,1,20,20,200.0000,'0000-00-00','2021-01-09'),
(505,327,1,30,30,201.0000,'0000-00-00','2028-10-17'),
(521,330,1,30,30,209.0000,'0000-00-00','2024-06-12'),
(511,338,1,30,30,309.0000,'0000-00-00','2021-01-09'),
(503,348,1,30,20,299.0000,'0000-00-00','2025-07-10'),
(518,367,1,0,30,2199.0000,'0000-00-00','2028-10-24'),
(556,42,1,30,1,66.0000,'0000-00-00','0000-00-00'),
(555,42,1,20,1,77.0000,'0000-00-00','0000-00-00'),
(554,42,1,10,1,88.0000,'0000-00-00','0000-00-00'),
(540,376,1,50,50,150.0000,'0000-00-00','0000-00-00');
/*!40000 ALTER TABLE `oc_product_discount` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_filter`
--
DROP TABLE IF EXISTS `oc_product_filter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_filter` (
`product_id` int(11) NOT NULL,
`filter_id` int(11) NOT NULL,
PRIMARY KEY (`product_id`,`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_filter`
--
LOCK TABLES `oc_product_filter` WRITE;
/*!40000 ALTER TABLE `oc_product_filter` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_product_filter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_image`
--
DROP TABLE IF EXISTS `oc_product_image`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_image` (
`product_image_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`sort_order` int(3) NOT NULL DEFAULT 0,
PRIMARY KEY (`product_image_id`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=12677 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_image`
--
LOCK TABLES `oc_product_image` WRITE;
/*!40000 ALTER TABLE `oc_product_image` DISABLE KEYS */;
INSERT INTO `oc_product_image` VALUES
(10364,40,'catalog/demo/iphone_4.jpg',0),
(10374,36,'catalog/demo/ipod_nano_3.jpg',0),
(10373,36,'catalog/demo/ipod_nano_2.jpg',0),
(10381,34,'catalog/demo/ipod_shuffle_3.jpg',0),
(10380,34,'catalog/demo/ipod_shuffle_2.jpg',0),
(10393,32,'catalog/demo/ipod_touch_7.jpg',0),
(10392,32,'catalog/demo/ipod_touch_6.jpg',0),
(10391,32,'catalog/demo/ipod_touch_5.jpg',0),
(10478,43,'catalog/demo/macbook_3.jpg',0),
(10477,43,'catalog/demo/macbook_2.jpg',0),
(10481,44,'catalog/demo/macbook_air_3.jpg',0),
(10480,44,'catalog/demo/macbook_air_2.jpg',0),
(10484,45,'catalog/demo/macbook_pro_4.jpg',0),
(10483,45,'catalog/demo/macbook_pro_3.jpg',0),
(10557,31,'catalog/demo/nikon_d300_5.jpg',0),
(10556,31,'catalog/demo/nikon_d300_4.jpg',0),
(10935,293,'catalog/journal3/products/beauty/additional/set2.jpg',0),
(11017,296,'catalog/journal3/products/beauty/additional/brush-case.jpg',0),
(10377,48,'catalog/demo/ipod_classic_2.jpg',0),
(10376,48,'catalog/demo/ipod_classic_3.jpg',0),
(10363,40,'catalog/demo/iphone_3.jpg',0),
(10362,40,'catalog/demo/iphone_5.jpg',0),
(10361,40,'catalog/demo/iphone_2.jpg',0),
(10360,40,'catalog/demo/iphone_6.jpg',0),
(10375,48,'catalog/demo/ipod_classic_4.jpg',0),
(10372,36,'catalog/demo/ipod_nano_4.jpg',0),
(10371,36,'catalog/demo/ipod_nano_5.jpg',0),
(10379,34,'catalog/demo/ipod_shuffle_4.jpg',0),
(10378,34,'catalog/demo/ipod_shuffle_5.jpg',0),
(10390,32,'catalog/demo/ipod_touch_2.jpg',0),
(10389,32,'catalog/demo/ipod_touch_3.jpg',0),
(10388,32,'catalog/demo/ipod_touch_4.jpg',0),
(10476,43,'catalog/demo/macbook_4.jpg',0),
(10475,43,'catalog/demo/macbook_5.jpg',0),
(10479,44,'catalog/demo/macbook_air_4.jpg',0),
(10482,45,'catalog/demo/macbook_pro_2.jpg',0),
(10555,31,'catalog/demo/nikon_d300_2.jpg',0),
(10554,31,'catalog/demo/nikon_d300_3.jpg',0),
(10970,290,'catalog/journal3/products/beauty/additional/brush-case.jpg',0),
(11428,49,'catalog/demo/samsung_tab_7.jpg',0),
(11427,49,'catalog/demo/samsung_tab_6.jpg',0),
(11426,49,'catalog/demo/samsung_tab_5.jpg',0),
(11425,49,'catalog/demo/samsung_tab_4.jpg',0),
(11424,49,'catalog/demo/samsung_tab_3.jpg',0),
(11423,49,'catalog/demo/samsung_tab_2.jpg',0),
(10963,281,'catalog/journal3/products/beauty/additional/20.jpg',0),
(10892,277,'catalog/journal3/products/beauty/additional/20.jpg',0),
(10952,276,'catalog/journal3/products/beauty/additional/18.jpg',0),
(10951,276,'catalog/journal3/products/beauty/additional/3.jpg',0),
(10891,277,'catalog/journal3/products/beauty/additional/34.jpg',0),
(10875,282,'catalog/journal3/products/beauty/additional/6.jpg',0),
(10874,282,'catalog/journal3/products/beauty/additional/23.jpg',0),
(11797,357,'',0),
(10939,293,'catalog/journal3/products/beauty/additional/basket5.jpg',0),
(11010,284,'catalog/journal3/products/beauty/additional/6.jpg',0),
(11822,301,'catalog/journal3/products/fashion/additional/te4.jpg',0),
(10977,285,'catalog/journal3/products/beauty/additional/powder.jpg',0),
(10264,339,'catalog/journal3/products/footwear/shoes2.jpg',0),
(11001,287,'catalog/journal3/products/beauty/additional/muller.jpg',0),
(10596,362,'catalog/journal3/products/electronics/additional/apple-gold.png',0),
(10586,288,'catalog/journal3/products/beauty/additional/brush-case.jpg',0),
(12611,280,'catalog/journal3/products/beauty/2.jpg',0),
(10873,282,'catalog/journal3/products/beauty/additional/harc+prosop.jpg',0),
(10902,279,'catalog/journal3/products/beauty/additional/11.jpg',0),
(10262,339,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(10976,285,'catalog/journal3/products/beauty/additional/harc+prosop.jpg',0),
(10637,323,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(10636,323,'catalog/journal3/products/footwear/additional/airmax_7.jpg',0),
(10916,289,'catalog/journal3/products/beauty/4.jpg',0),
(10940,293,'catalog/journal3/products/beauty/additional/harc+prosop.jpg',0),
(10890,277,'catalog/journal3/products/beauty/additional/1.jpg',0),
(10950,276,'catalog/journal3/products/beauty/additional/11.jpg',0),
(10957,275,'catalog/journal3/products/beauty/4.jpg',0),
(10956,275,'catalog/journal3/products/beauty/additional/1.jpg',0),
(10949,276,'catalog/journal3/products/beauty/additional/8.jpg',0),
(10948,276,'catalog/journal3/products/beauty/additional/31.jpg',0),
(10581,288,'catalog/journal3/products/beauty/additional/powder3.jpg',0),
(10871,282,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(10929,283,'catalog/journal3/products/beauty/33.jpg',0),
(10915,289,'catalog/journal3/products/beauty/additional/31.jpg',0),
(10914,289,'catalog/journal3/products/beauty/additional/18.jpg',0),
(10585,288,'catalog/journal3/products/beauty/additional/powder.jpg',0),
(11438,292,'catalog/journal3/products/beauty/additional/set2.jpg',0),
(10969,290,'catalog/journal3/products/beauty/additional/harc+prosop.jpg',0),
(11437,292,'catalog/journal3/products/beauty/additional/31.jpg',0),
(11434,292,'catalog/journal3/products/beauty/additional/basket5.jpg',0),
(10960,281,'catalog/journal3/products/beauty/additional/5.jpg',0),
(10900,279,'catalog/journal3/products/beauty/additional/15.jpg',0),
(10975,285,'catalog/journal3/products/beauty/additional/6.jpg',0),
(10901,279,'catalog/journal3/products/beauty/additional/8.jpg',0),
(10898,279,'catalog/journal3/products/beauty/additional/10.jpg',0),
(11027,324,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(11088,259,'catalog/journal3/products/backpacks/6.jpg',0),
(11021,266,'catalog/journal3/products/footwear/NordWood-4301.jpg',0),
(11055,267,'catalog/journal3/products/footwear/shoes2.jpg',0),
(10552,270,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10899,279,'catalog/journal3/products/beauty/additional/34.jpg',0),
(11087,259,'catalog/journal3/products/backpacks/8.jpg',0),
(10141,30,'catalog/demo/canon_eos_5d_3.jpg',0),
(10350,47,'catalog/demo/hp_2.jpg',0),
(10352,28,'catalog/demo/htc_touch_hd_3.jpg',0),
(10359,41,'catalog/demo/imac_3.jpg',0),
(10140,30,'catalog/demo/canon_eos_5d_2.jpg',0),
(10349,47,'catalog/demo/hp_3.jpg',0),
(10351,28,'catalog/demo/htc_touch_hd_2.jpg',0),
(10358,41,'catalog/demo/imac_2.jpg',0),
(10955,275,'catalog/journal3/products/beauty/additional/20.jpg',0),
(10954,275,'catalog/journal3/products/beauty/additional/34.jpg',0),
(10953,275,'catalog/journal3/products/beauty/additional/10.jpg',0),
(10934,278,'catalog/journal3/products/beauty/additional/12.jpg',0),
(10933,278,'catalog/journal3/products/beauty/additional/11.jpg',0),
(10897,274,'catalog/journal3/products/beauty/additional/8.jpg',0),
(10896,274,'catalog/journal3/products/beauty/additional/18.jpg',0),
(10895,274,'catalog/journal3/products/beauty/additional/3.jpg',0),
(10894,274,'catalog/journal3/products/beauty/additional/15.jpg',0),
(11005,286,'catalog/journal3/products/beauty/28.jpg',0),
(11006,286,'catalog/journal3/products/beauty/additional/muller.jpg',0),
(11502,291,'catalog/journal3/products/beauty/additional/30.jpg',0),
(10973,285,'catalog/journal3/products/beauty/additional/bag.jpg',0),
(10910,289,'catalog/journal3/products/beauty/additional/3.jpg',0),
(10911,289,'catalog/journal3/products/beauty/additional/powder3.jpg',0),
(10974,285,'catalog/journal3/products/beauty/additional/brush-case.jpg',0),
(10971,285,'catalog/journal3/products/beauty/additional/sponge.jpg',0),
(10967,290,'catalog/journal3/products/beauty/additional/basket5.jpg',0),
(11501,291,'catalog/journal3/products/beauty/additional/salt.jpg',0),
(10972,285,'catalog/journal3/products/beauty/additional/34.jpg',0),
(10872,282,'catalog/journal3/products/beauty/additional/15.jpg',0),
(10923,294,'catalog/journal3/products/beauty/additional/basket5.jpg',0),
(10938,293,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(11826,301,'catalog/journal3/products/fashion/additional/hat.jpg',0),
(11824,301,'catalog/journal3/products/fashion/additional/glasses-case.jpg',0),
(11825,301,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11894,300,'catalog/journal3/products/fashion/additional/tee3.jpg',0),
(11895,300,'catalog/journal3/products/fashion/additional/te.jpg',0),
(10903,297,'catalog/journal3/products/beauty/additional/brush-case.jpg',0),
(10932,278,'catalog/journal3/products/beauty/additional/8.jpg',0),
(10931,278,'catalog/journal3/products/beauty/additional/31.jpg',0),
(11875,313,'catalog/journal3/products/fashion/c2.jpg',0),
(11892,300,'catalog/journal3/products/fashion/additional/8337480771_2358b04366_o.jpg',-3),
(11721,299,'catalog/journal3/products/fashion/f2.jpg',-2),
(10946,298,'catalog/journal3/products/beauty/25.jpg',0),
(11436,292,'catalog/journal3/products/beauty/additional/sponge.jpg',0),
(11435,292,'catalog/journal3/products/beauty/additional/12.jpg',0),
(10947,298,'catalog/journal3/products/beauty/28.jpg',0),
(10944,298,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(10945,298,'catalog/journal3/products/beauty/additional/sponge.jpg',0),
(10941,298,'catalog/journal3/products/beauty/additional/powder3.jpg',0),
(10922,294,'catalog/journal3/products/beauty/additional/bag.jpg',0),
(10966,290,'catalog/journal3/products/beauty/additional/sponge.jpg',0),
(10964,290,'catalog/journal3/products/beauty/additional/set.jpg',0),
(11004,286,'catalog/journal3/products/beauty/additional/15.jpg',0),
(11002,286,'catalog/journal3/products/beauty/additional/8.jpg',0),
(10904,297,'catalog/journal3/products/beauty/set5.jpg',0),
(10905,297,'catalog/journal3/products/beauty/set4.jpg',0),
(10920,294,'catalog/journal3/products/beauty/additional/powder3.jpg',0),
(10980,295,'catalog/journal3/products/beauty/brush.jpg',0),
(10582,288,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(10583,288,'catalog/journal3/products/beauty/additional/sponge.jpg',0),
(10616,327,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10996,287,'catalog/journal3/products/beauty/brush.jpg',0),
(10997,287,'catalog/journal3/products/beauty/additional/brush-case.jpg',0),
(10908,297,'catalog/journal3/products/beauty/additional/sponge.jpg',0),
(10907,297,'catalog/journal3/products/beauty/brush-case2.jpg',0),
(11754,308,'catalog/journal3/products/fashion/i2.jpg',0),
(11720,299,'catalog/journal3/products/fashion/additional/hat.jpg',0),
(11433,292,'catalog/journal3/products/beauty/additional/1.jpg',0),
(10913,289,'catalog/journal3/products/beauty/13.jpg',0),
(11823,301,'catalog/journal3/products/fashion/additional/te.jpg',0),
(11862,376,'catalog/journal3/products/fashion/e1.jpg',5),
(10889,277,'catalog/journal3/products/beauty/additional/10.jpg',0),
(10930,278,'catalog/journal3/products/beauty/additional/23.jpg',0),
(10981,295,'catalog/journal3/products/beauty/additional/brush-case.jpg',0),
(10263,339,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(10961,281,'catalog/journal3/products/beauty/additional/34.jpg',0),
(11011,284,'catalog/journal3/products/beauty/29.jpg',0),
(10962,281,'catalog/journal3/products/beauty/additional/5.jpg',0),
(10958,281,'catalog/journal3/products/beauty/4.jpg',0),
(11709,350,'catalog/journal3/products/fashion/additional/te4.jpg',0),
(10984,295,'catalog/journal3/products/beauty/additional/harc+prosop.jpg',0),
(10919,294,'catalog/journal3/products/beauty/additional/brush-case.jpg',0),
(11500,291,'catalog/journal3/products/beauty/additional/basket5.jpg',0),
(11000,287,'catalog/journal3/products/beauty/additional/soap-bag.jpg',0),
(11007,284,'catalog/journal3/products/beauty/additional/1.jpg',0),
(10771,256,'catalog/journal3/products/backpacks/6.jpg',0),
(10772,256,'catalog/journal3/products/backpacks/5.jpg',0),
(11058,268,'catalog/journal3/products/footwear/boot-2558324_1920.jpg',0),
(11059,268,'catalog/journal3/products/footwear/shoes4.jpg',0),
(10318,260,'catalog/journal3/products/backpacks/8.jpg',0),
(10317,260,'catalog/journal3/products/backpacks/4.jpg',0),
(10622,261,'catalog/journal3/products/misc/lazy-chiar.jpg',0),
(10435,262,'catalog/journal3/products/home/outdoor.jpeg',0),
(10433,262,'catalog/journal3/products/home/acceso.jpeg',0),
(11151,263,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(11410,264,'catalog/journal3/products/beauty/additional/31.jpg',0),
(11409,264,'catalog/journal3/products/perfume/perfume.jpg',0),
(11118,257,'catalog/journal3/products/fashion/bags/tote2.jpg',0),
(11020,266,'catalog/journal3/products/footwear/shoe.jpg',0),
(11461,271,'catalog/journal3/products/sunglasses/glasses2.jpg',0),
(11459,271,'catalog/journal3/products/sunglasses/glasses-case.jpg',0),
(10724,273,'catalog/journal3/products/electronics/additional/apple-rose.png',0),
(11117,257,'catalog/journal3/products/fashion/bags/straw-bag.jpg',0),
(10619,272,'catalog/journal3/products/electronics/apple-white-2.png',0),
(11462,271,'catalog/journal3/products/sunglasses/glasses1.jpg',0),
(10928,283,'catalog/journal3/products/beauty/additional/15.jpg',0),
(11116,257,'catalog/journal3/products/fashion/bags/tote3.jpg',0),
(11076,269,'catalog/journal3/products/footwear/additional/9.jpg',0),
(11119,257,'catalog/journal3/products/fashion/bags/bag.jpg',0),
(10870,282,'catalog/journal3/products/beauty/additional/basket5.jpg',0),
(10773,256,'catalog/journal3/products/backpacks/7.jpg',0),
(10888,277,'catalog/journal3/products/beauty/additional/5.jpg',0),
(10906,297,'catalog/journal3/products/beauty/brush.jpg',0),
(11152,263,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11015,296,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(10921,294,'catalog/journal3/products/beauty/additional/soap-bag.jpg',0),
(10965,290,'catalog/journal3/products/beauty/additional/set2.jpg',0),
(11009,284,'catalog/journal3/products/beauty/additional/harc+prosop.jpg',0),
(10725,273,'catalog/journal3/products/electronics/bluetooth-gramophone-by-gramovox.jpg',0),
(10959,281,'catalog/journal3/products/beauty/additional/30.jpg',0),
(11880,303,'catalog/journal3/products/fashion/additional/te4.jpg',0),
(11881,303,'catalog/journal3/products/fashion/k1.jpg',0),
(11848,304,'catalog/journal3/products/fashion/additional/tee6.jpg',0),
(11849,304,'catalog/journal3/products/fashion/additional/te4.jpg',0),
(11889,305,'catalog/journal3/products/fashion/additional/red-back.jpg',0),
(11890,305,'catalog/journal3/products/fashion/additional/te2.jpg',0),
(11869,306,'catalog/journal3/products/fashion/additional/8534776332_9e64eb5f14_o.jpg',0),
(11868,306,'catalog/journal3/products/fashion/additional/tee4.jpg',0),
(11856,307,'catalog/journal3/products/fashion/additional/8549539065_78e985be0c_o.jpg',0),
(11855,307,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11854,307,'catalog/journal3/products/fashion/additional/te5.jpg',0),
(11886,309,'catalog/journal3/products/fashion/additional/red-back.jpg',0),
(11752,308,'catalog/journal3/products/fashion/n2.jpg',-2),
(11887,309,'catalog/journal3/products/fashion/f1.jpg',0),
(11885,309,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11883,309,'catalog/journal3/products/fashion/additional/tee3.jpg',0),
(11840,310,'catalog/journal3/products/fashion/additional/tee4.jpg',0),
(11841,310,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11837,310,'catalog/journal3/products/fashion/d2.jpg',-4),
(11751,308,'catalog/journal3/products/fashion/additional/red-back.jpg',0),
(11406,264,'catalog/journal3/products/beauty/additional/23.jpg',0),
(11820,312,'catalog/journal3/products/fashion/additional/te.jpg',0),
(11819,312,'catalog/journal3/products/fashion/additional/blonde-woman-holding-a-plant-9.jpg',0),
(11873,313,'catalog/journal3/products/fashion/c1.jpg',0),
(11874,313,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11710,350,'catalog/journal3/products/fashion/e2.jpg',-4),
(11831,314,'catalog/journal3/products/fashion/c2.jpg',-3),
(11832,314,'catalog/journal3/products/fashion/additional/te5.jpg',0),
(11833,314,'catalog/journal3/products/fashion/additional/te.jpg',0),
(11798,357,'catalog/journal3/products/fashion/additional/te6.jpg',0),
(11891,305,'catalog/journal3/products/fashion/additional/tee4.jpg',0),
(11787,316,'catalog/journal3/products/fashion/additional/adult-automobile-automotive-839011.jpg',-3),
(11785,316,'catalog/journal3/products/fashion/additional/te6.jpg',0),
(11786,316,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11879,303,'catalog/journal3/products/fashion/a1.jpg',0),
(11878,303,'catalog/journal3/products/fashion/j1.jpg',0),
(11845,311,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(10943,298,'catalog/journal3/products/beauty/additional/powder.jpg',0),
(10252,326,'catalog/journal3/products/footwear/additional/8.jpg',0),
(11905,317,'catalog/journal3/products/fashion/a2.jpg',0),
(11109,318,'catalog/journal3/products/fashion/additional/te.jpg',0),
(11108,318,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11107,318,'catalog/journal3/products/fashion/additional/hat.jpg',0),
(11106,318,'catalog/journal3/products/fashion/bags/wallet2.jpg',0),
(11105,318,'catalog/journal3/products/fashion/bags/tote2.jpg',0),
(11104,318,'catalog/journal3/products/fashion/additional/red-back.jpg',0),
(10549,319,'catalog/journal3/products/fashion/bags/wallet2.jpg',0),
(10548,319,'catalog/journal3/products/fashion/bags/wallet.jpg',0),
(10547,319,'catalog/journal3/products/fashion/bags/bag.jpg',0),
(10546,319,'catalog/journal3/products/fashion/bags/tote.jpg',0),
(10545,319,'catalog/journal3/products/fashion/bags/tote3.jpg',0),
(11101,320,'catalog/journal3/products/fashion/bags/purse2.jpg',0),
(11102,320,'catalog/journal3/products/fashion/bags/tote2.jpg',0),
(11100,320,'catalog/journal3/products/fashion/additional/te.jpg',0),
(11099,320,'catalog/journal3/products/fashion/additional/hat.jpg',0),
(11098,320,'catalog/journal3/products/fashion/additional/te2.jpg',0),
(11097,320,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11096,320,'catalog/journal3/products/fashion/bags/handbag.jpg',0),
(10418,321,'catalog/journal3/products/fashion/bags/straw-bag.jpg',0),
(10416,321,'catalog/journal3/products/fashion/bags/wallet2.jpg',0),
(10417,321,'catalog/journal3/products/fashion/bags/handbag.jpg',0),
(10415,321,'catalog/journal3/products/fashion/bags/bag.jpg',0),
(10414,321,'catalog/journal3/products/fashion/bags/tote2.jpg',0),
(11124,322,'catalog/journal3/products/fashion/accessories/case2.jpg',0),
(11123,322,'catalog/journal3/products/fashion/bags/tote3.jpg',0),
(11122,322,'catalog/journal3/products/fashion/bags/tote.jpg',0),
(11121,322,'catalog/journal3/products/fashion/bags/tote2.jpg',0),
(11120,322,'catalog/journal3/products/fashion/bags/purse.jpg',0),
(10631,323,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(10634,323,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10633,323,'catalog/journal3/products/footwear/additional/8.jpg',0),
(10632,323,'catalog/journal3/products/footwear/1.png',0),
(11026,324,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11024,324,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(11025,324,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(11022,324,'catalog/journal3/products/footwear/additional/9.jpg',0),
(11023,324,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10460,325,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(10459,325,'catalog/journal3/products/footwear/additional/airmax_1.jpg',0),
(10458,325,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10454,325,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(10455,325,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10456,325,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10251,326,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(10611,327,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(10250,326,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10248,326,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10249,326,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10615,327,'catalog/journal3/products/footwear/additional/airmax_7.jpg',0),
(10614,327,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(10613,327,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10612,327,'catalog/journal3/products/footwear/additional/8.jpg',0),
(10526,328,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(10527,328,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10525,328,'catalog/journal3/products/footwear/additional/9.jpg',0),
(10524,328,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(11526,329,'catalog/journal3/products/footwear/additional/airmax_7.jpg',0),
(11525,329,'catalog/journal3/products/footwear/additional/8.jpg',0),
(11524,329,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(11523,329,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(11519,330,'catalog/journal3/products/footwear/additional/airmax_7.jpg',0),
(11518,330,'catalog/journal3/products/footwear/13.png',0),
(11517,330,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11516,330,'catalog/journal3/products/footwear/additional/9.jpg',0),
(11515,330,'catalog/journal3/products/footwear/10.png',0),
(10523,328,'catalog/journal3/products/footwear/additional/8.jpg',0),
(10522,328,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10223,331,'catalog/journal3/products/footwear/additional/8.jpg',0),
(10218,331,'catalog/journal3/products/footwear/additional/airmax_7.jpg',0),
(10219,331,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10220,331,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10221,331,'catalog/journal3/products/footwear/9.png',0),
(10514,332,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10528,328,'catalog/journal3/products/footwear/1.png',0),
(10513,332,'catalog/journal3/products/footwear/additional/9.jpg',0),
(10510,332,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(10511,332,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(10512,332,'catalog/journal3/products/footwear/11.png',0),
(11308,333,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(11307,333,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(11306,333,'catalog/journal3/products/footwear/additional/9.jpg',0),
(11305,333,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(11304,333,'catalog/journal3/products/footwear/additional/8.jpg',0),
(10509,332,'catalog/journal3/products/footwear/8.png',0),
(10508,332,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(11052,267,'catalog/journal3/products/footwear/additional/9.jpg',0),
(11040,334,'catalog/journal3/products/footwear/10.png',0),
(11039,334,'catalog/journal3/products/footwear/16.png',0),
(11038,334,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11036,334,'catalog/journal3/products/footwear/additional/airmax_7.jpg',0),
(11037,334,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(11405,335,'catalog/journal3/products/footwear/additional/airmax_1.jpg',0),
(11404,335,'catalog/journal3/products/footwear/additional/8.jpg',0),
(11403,335,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(11402,335,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11401,335,'catalog/journal3/products/footwear/additional/airmax_7.jpg',0),
(11341,336,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(11339,336,'catalog/journal3/products/footwear/additional/8.jpg',0),
(11340,336,'catalog/journal3/products/footwear/2.png',0),
(11338,336,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11337,336,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(11336,336,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(11073,337,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(11071,337,'catalog/journal3/products/footwear/additional/8.jpg',0),
(11072,337,'catalog/journal3/products/footwear/9.png',0),
(11070,337,'catalog/journal3/products/footwear/11.png',0),
(11067,337,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(11068,337,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11034,338,'catalog/journal3/products/footwear/12.png',0),
(11033,338,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(11032,338,'catalog/journal3/products/footwear/8.png',0),
(11031,338,'catalog/journal3/products/footwear/13.png',0),
(11029,338,'catalog/journal3/products/footwear/additional/airmax_1.jpg',0),
(10261,339,'catalog/journal3/products/footwear/13.png',0),
(10260,339,'catalog/journal3/products/footwear/additional/8.jpg',0),
(10259,339,'catalog/journal3/products/footwear/11.png',0),
(10521,340,'catalog/journal3/products/footwear/NordWood-4301.jpg',0),
(10520,340,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(10519,340,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(10518,340,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10517,340,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(10759,341,'catalog/journal3/products/footwear/NordWood-4301.jpg',0),
(10758,341,'catalog/journal3/products/footwear/shoes.jpg',0),
(10755,341,'catalog/journal3/products/footwear/additional/8.jpg',0),
(10756,341,'catalog/journal3/products/footwear/slippers.jpg',0),
(10757,341,'catalog/journal3/products/footwear/additional/airmax_1.jpg',0),
(10754,341,'catalog/journal3/products/footwear/flip-flops.jpg',0),
(12666,342,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(12665,342,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(12664,342,'catalog/journal3/products/footwear/shoes.jpg',0),
(12663,342,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10746,343,'catalog/journal3/products/footwear/shoes4.jpg',0),
(10745,343,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10744,343,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10743,343,'catalog/journal3/products/footwear/11.png',0),
(10742,343,'catalog/journal3/products/footwear/NordWood-4301.jpg',0),
(10741,343,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(11159,344,'catalog/journal3/products/footwear/14.png',0),
(11158,344,'catalog/journal3/products/footwear/additional/airmax_1.jpg',0),
(11157,344,'catalog/journal3/products/footwear/additional/9.jpg',0),
(11156,344,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(11155,344,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11154,344,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10721,345,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10720,345,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10719,345,'catalog/journal3/products/footwear/additional/8.jpg',0),
(10718,345,'catalog/journal3/products/footwear/13.png',0),
(10717,345,'catalog/journal3/products/footwear/sandals.jpg',0),
(10716,345,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(11384,346,'catalog/journal3/products/footwear/shoes4.jpg',0),
(11383,346,'catalog/journal3/products/footwear/additional/airmax_1.jpg',0),
(11382,346,'catalog/journal3/products/footwear/NordWood-4301.jpg',0),
(11381,346,'catalog/journal3/products/footwear/11.png',0),
(11380,346,'catalog/journal3/products/footwear/additional/8.jpg',0),
(11379,346,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11064,347,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(11077,269,'catalog/journal3/products/footwear/shoes2.jpg',0),
(11065,347,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(11066,347,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(11062,347,'catalog/journal3/products/footwear/additional/9.jpg',0),
(10603,348,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(10602,348,'catalog/journal3/products/footwear/flip-flops.jpg',0),
(10601,348,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(10600,348,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10599,348,'catalog/journal3/products/footwear/additional/airmax_7.jpg',0),
(10598,348,'catalog/journal3/products/footwear/13.png',0),
(11489,349,'catalog/journal3/products/fashion/bags/phone-case2.jpg',0),
(11488,349,'catalog/journal3/products/fashion/bags/handbag.jpg',0),
(11487,349,'catalog/journal3/products/fashion/bags/bag.jpg',0),
(11486,349,'catalog/journal3/products/fashion/bags/tote.jpg',0),
(11485,349,'catalog/journal3/products/fashion/bags/tote2.jpg',0),
(11707,350,'catalog/journal3/products/fashion/additional/te6.jpg',0),
(11708,350,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11706,350,'catalog/journal3/products/fashion/additional/te.jpg',0),
(11705,350,'catalog/journal3/products/fashion/additional/Untitled-1.jpg',0),
(11719,299,'catalog/journal3/products/fashion/additional/red-back.jpg',0),
(11850,304,'catalog/journal3/products/fashion/additional/tee3.jpg',0),
(11839,310,'catalog/journal3/products/fashion/b1.jpg',0),
(11125,352,'catalog/journal3/products/fashion/bags/tote.jpg',0),
(11126,352,'catalog/journal3/products/fashion/bags/purse2.jpg',0),
(11127,352,'catalog/journal3/products/fashion/bags/phone-case2.jpg',0),
(11128,352,'catalog/journal3/products/fashion/bags/bag.jpg',0),
(11129,352,'catalog/journal3/products/fashion/bags/tote3.jpg',0),
(11130,352,'catalog/journal3/products/fashion/bags/handbag.jpg',0),
(10740,343,'catalog/journal3/products/footwear/shoe.jpg',0),
(10705,353,'catalog/journal3/products/fashion/accessories/case2.jpg',0),
(10706,353,'catalog/journal3/products/fashion/accessories/phone-case.jpg',0),
(10707,353,'catalog/journal3/products/fashion/bags/purse2.jpg',0),
(10704,353,'catalog/journal3/products/fashion/bags/handbag.jpg',0),
(10702,353,'catalog/journal3/products/fashion/bags/wallet2.jpg',0),
(10703,353,'catalog/journal3/products/fashion/bags/bag.jpg',0),
(11289,354,'catalog/journal3/products/fashion/bags/wallet.jpg',0),
(11286,354,'catalog/journal3/products/fashion/bags/tote2.jpg',0),
(11288,354,'catalog/journal3/products/fashion/bags/phone-case2.jpg',0),
(11287,354,'catalog/journal3/products/fashion/accessories/case2.jpg',0),
(10574,355,'catalog/journal3/products/fashion/bags/tote.jpg',0),
(10573,355,'catalog/journal3/products/fashion/accessories/phone-case.jpg',0),
(10572,355,'catalog/journal3/products/fashion/bags/wallet.jpg',0),
(10570,355,'catalog/journal3/products/fashion/bags/straw-bag.jpg',0),
(10571,355,'catalog/journal3/products/fashion/bags/handbag.jpg',0),
(11328,356,'catalog/journal3/products/fashion/bags/wallet2.jpg',0),
(11327,356,'catalog/journal3/products/fashion/bags/tote3.jpg',0),
(11324,356,'catalog/journal3/products/fashion/bags/purse2.jpg',0),
(11325,356,'catalog/journal3/products/fashion/bags/wallet.jpg',0),
(11326,356,'catalog/journal3/products/fashion/bags/straw-bag.jpg',0),
(11796,357,'catalog/journal3/products/fashion/bags/wallet2.jpg',0),
(11795,357,'catalog/journal3/products/fashion/additional/hat.jpg',0),
(11793,357,'',0),
(11794,357,'catalog/journal3/products/fashion/additional/red-back.jpg',0),
(11522,329,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11727,351,'catalog/journal3/products/fashion/h2.jpg',-1),
(11726,351,'',0),
(11725,351,'',0),
(11724,351,'',0),
(11164,359,'catalog/journal3/products/electronics/bluetooth-gramophone-by-gramovox.jpg',0),
(11162,359,'catalog/journal3/products/electronics/additional/apple-gold.png',0),
(11163,359,'catalog/journal3/products/electronics/additional/apple-rose.png',0),
(11160,359,'catalog/journal3/products/electronics/apple-white-2.png',0),
(11161,359,'catalog/journal3/products/electronics/additional/apple-white.png',0),
(10968,290,'catalog/journal3/products/beauty/additional/muller.jpg',0),
(10927,283,'catalog/journal3/products/beauty/additional/8.jpg',0),
(12670,360,'catalog/journal3/products/electronics/camera.jpg',0),
(12671,360,'catalog/journal3/products/electronics/additional/apple-rose.png',0),
(11148,361,'catalog/journal3/products/electronics/additional/apple-rose.png',0),
(11016,296,'catalog/journal3/products/beauty/set6.jpg',0),
(11146,361,'catalog/journal3/products/electronics/additional/apple-gold.png',0),
(10983,295,'catalog/journal3/products/beauty/27.jpg',0),
(11147,361,'catalog/journal3/products/electronics/apple-black.png',0),
(11145,361,'catalog/journal3/products/electronics/beoplay-h6-headphones-by-bang-olufsen.jpg',0),
(11144,361,'catalog/journal3/products/electronics/beolab-19-by-bang-olufsen.jpg',0),
(10595,362,'catalog/journal3/products/electronics/camera2.jpg',0),
(10982,295,'catalog/journal3/products/beauty/additional/sponge.jpg',0),
(10594,362,'catalog/journal3/products/electronics/additional/apple-rose.png',0),
(10593,362,'catalog/journal3/products/electronics/beoplay-h6-headphones-by-bang-olufsen.jpg',0),
(10592,362,'catalog/journal3/products/electronics/curved-oled-tv-55ec9300-by-lg.jpg',0),
(12610,280,'catalog/journal3/products/beauty/additional/15.jpg',0),
(12609,280,'catalog/journal3/products/beauty/additional/8.jpg',0),
(10924,283,'catalog/journal3/products/beauty/additional/34.jpg',0),
(10926,283,'catalog/journal3/products/beauty/7.jpg',0),
(11422,364,'catalog/journal3/products/electronics/w8-led-tv-by-sony.jpg',0),
(11421,364,'catalog/journal3/products/electronics/smart-tv-h6240-by-samsung.jpg',0),
(11420,364,'catalog/journal3/products/electronics/ks9500-curved-4k-suhd-tv-by-samsung.jpg',0),
(11419,364,'catalog/journal3/products/electronics/sony-bravia.jpg',0),
(11842,311,'catalog/journal3/products/fashion/i2.jpg',-1),
(10769,365,'catalog/journal3/products/electronics/curved-oled-tv-55ec9300-by-lg.jpg',0),
(10768,365,'catalog/journal3/products/electronics/smart-tv-h6240-by-samsung.jpg',0),
(10766,365,'catalog/journal3/products/electronics/w8-led-tv-by-sony.jpg',0),
(10767,365,'catalog/journal3/products/electronics/sony-bravia.jpg',0),
(11012,296,'catalog/journal3/products/beauty/set4.jpg',0),
(11013,296,'catalog/journal3/products/beauty/brush-case2.jpg',0),
(12605,366,'catalog/journal3/products/electronics/camera.jpg',0),
(12604,366,'catalog/journal3/products/electronics/additional/apple-rose.png',0),
(12603,366,'catalog/journal3/products/electronics/apple-black.png',0),
(10979,295,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(10978,295,'catalog/journal3/products/beauty/26.jpg',0),
(11439,292,'catalog/journal3/products/beauty/additional/set.jpg',0),
(11413,367,'catalog/journal3/products/electronics/curved-oled-tv-55ec9300-by-lg.jpg',0),
(11414,367,'catalog/journal3/products/electronics/ks9500-curved-4k-suhd-tv-by-samsung.jpg',0),
(11411,367,'catalog/journal3/products/electronics/w8-led-tv-by-sony.jpg',0),
(11412,367,'catalog/journal3/products/electronics/sony-bravia.jpg',0),
(10925,283,'catalog/journal3/products/beauty/additional/3.jpg',0),
(11432,368,'catalog/journal3/products/electronics/curved-oled-tv-55ec9300-by-lg.jpg',0),
(11431,368,'catalog/journal3/products/electronics/ks9500-curved-4k-suhd-tv-by-samsung.jpg',0),
(11429,368,'catalog/journal3/products/electronics/w8-led-tv-by-sony.jpg',0),
(11430,368,'catalog/journal3/products/electronics/smart-tv-h6240-by-samsung.jpg',0),
(11169,369,'catalog/journal3/products/electronics/smart-tv-h6240-by-samsung.jpg',0),
(11844,311,'catalog/journal3/products/fashion/additional/adult-automobile-automotive-839011.jpg',0),
(11718,299,'catalog/journal3/products/fashion/additional/te.jpg',0),
(11168,369,'catalog/journal3/products/electronics/w8-led-tv-by-sony.jpg',0),
(11165,369,'catalog/journal3/products/electronics/sony-bravia.jpg',0),
(11166,369,'catalog/journal3/products/electronics/ks9500-curved-4k-suhd-tv-by-samsung.jpg',0),
(11167,369,'catalog/journal3/products/electronics/curved-oled-tv-55ec9300-by-lg.jpg',0),
(11140,370,'catalog/journal3/products/electronics/bluetooth-gramophone-by-gramovox.jpg',0),
(11139,370,'catalog/journal3/products/electronics/additional/apple-gold.png',0),
(11137,370,'catalog/journal3/products/electronics/additional/apple-rose.png',0),
(11138,370,'catalog/journal3/products/electronics/additional/apple-green.png',0),
(11136,370,'catalog/journal3/products/electronics/apple-white-2.png',0),
(11296,371,'catalog/journal3/products/backpacks/2.jpg',0),
(11295,371,'catalog/journal3/products/backpacks/4.jpg',0),
(11294,371,'catalog/journal3/products/backpacks/9.jpg',0),
(11293,371,'catalog/journal3/products/backpacks/3.jpg',0),
(11292,371,'catalog/journal3/products/backpacks/10.jpg',0),
(11291,371,'catalog/journal3/products/backpacks/8.jpg',0),
(11290,371,'catalog/journal3/products/backpacks/5.jpg',0),
(10543,319,'catalog/journal3/products/fashion/bags/phone-case2.jpg',0),
(11497,372,'catalog/journal3/products/backpacks/2.jpg',0),
(11496,372,'catalog/journal3/products/backpacks/9.jpg',0),
(11495,372,'catalog/journal3/products/backpacks/8.jpg',0),
(11494,372,'catalog/journal3/products/backpacks/4.jpg',0),
(11493,372,'catalog/journal3/products/backpacks/6.jpg',0),
(11492,372,'catalog/journal3/products/backpacks/7.jpg',0),
(11491,372,'catalog/journal3/products/backpacks/1.jpg',0),
(11303,333,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11115,373,'catalog/journal3/products/backpacks/1.jpg',0),
(11114,373,'catalog/journal3/products/backpacks/10.jpg',0),
(11113,373,'catalog/journal3/products/backpacks/9.jpg',0),
(11112,373,'catalog/journal3/products/backpacks/8.jpg',0),
(11111,373,'catalog/journal3/products/backpacks/5.jpg',0),
(11110,373,'catalog/journal3/products/backpacks/4.jpg',0),
(10446,374,'catalog/journal3/products/backpacks/8.jpg',0),
(10445,374,'catalog/journal3/products/backpacks/6.jpg',0),
(10444,374,'catalog/journal3/products/backpacks/5.jpg',0),
(10443,374,'catalog/journal3/products/backpacks/4.jpg',0),
(10442,374,'catalog/journal3/products/backpacks/2.jpg',0),
(10441,374,'catalog/journal3/products/backpacks/10.jpg',0),
(10440,374,'catalog/journal3/products/backpacks/1.jpg',0),
(10912,289,'catalog/journal3/products/beauty/additional/23.jpg',0),
(11069,337,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(11460,271,'catalog/journal3/products/sunglasses/glasses.jpg',0),
(11008,284,'catalog/journal3/products/beauty/additional/31.jpg',0),
(11872,313,'catalog/journal3/products/fashion/g1.jpg',0),
(11861,376,'catalog/journal3/products/fashion/c2.jpg',4),
(11860,376,'catalog/journal3/products/fashion/b1.jpg',3),
(10869,282,'catalog/journal3/products/beauty/additional/set2.jpg',0),
(10937,293,'catalog/journal3/products/beauty/additional/sponge.jpg',0),
(10999,287,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(11499,291,'catalog/journal3/products/beauty/additional/set.jpg',0),
(10584,288,'catalog/journal3/products/beauty/additional/soap-bag.jpg',0),
(10936,293,'catalog/journal3/products/beauty/additional/muller.jpg',0),
(11003,286,'catalog/journal3/products/beauty/additional/powder.jpg',0),
(10918,294,'catalog/journal3/products/beauty/28.jpg',0),
(11717,299,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(10998,287,'catalog/journal3/products/beauty/additional/15.jpg',0),
(11867,306,'catalog/journal3/products/fashion/additional/tee3.jpg',0),
(11877,303,'catalog/journal3/products/fashion/additional/tee4.jpg',0),
(11846,304,'catalog/journal3/products/fashion/j2.jpg',-2),
(11866,306,'catalog/journal3/products/fashion/additional/hat.jpg',0),
(11853,307,'catalog/journal3/products/fashion/additional/tee3.jpg',0),
(11750,308,'catalog/journal3/products/fashion/additional/te2.jpg',0),
(11749,308,'catalog/journal3/products/fashion/additional/adult-airport-bags-837129.jpg',0),
(11884,309,'catalog/journal3/products/fashion/o2.jpg',0),
(11284,354,'catalog/journal3/products/fashion/bags/handbag.jpg',0),
(11847,304,'catalog/journal3/products/fashion/additional/te2.jpg',0),
(11838,310,'catalog/journal3/products/fashion/additional/Untitled-1.jpg',0),
(11816,312,'catalog/journal3/products/fashion/b2.jpg',0),
(11836,314,'catalog/journal3/products/fashion/additional/te4.jpg',0),
(11835,314,'catalog/journal3/products/fashion/additional/adult-airport-bags-837129.jpg',0),
(11843,311,'catalog/journal3/products/fashion/additional/adult-airport-bags-837129.jpg',0),
(10942,298,'catalog/journal3/products/beauty/additional/brush-case.jpg',0),
(11014,296,'catalog/journal3/products/beauty/brush2.jpg',0),
(12675,42,'catalog/demo/compaq_presario.jpg',0),
(12674,42,'catalog/demo/canon_logo.jpg',0),
(12673,42,'catalog/demo/hp_1.jpg',0),
(10413,321,'catalog/journal3/products/fashion/bags/purse2.jpg',0),
(10544,319,'catalog/journal3/products/fashion/bags/tote2.jpg',0),
(11871,313,'catalog/journal3/products/fashion/p2.jpg',0),
(11870,313,'catalog/journal3/products/fashion/f1.jpg',-2),
(10569,355,'catalog/journal3/products/fashion/bags/wallet2.jpg',0),
(10701,353,'catalog/journal3/products/fashion/bags/straw-bag.jpg',0),
(11888,305,'catalog/journal3/products/fashion/additional/8536633275_c894e8cee5_o.jpg',-2),
(10222,331,'catalog/journal3/products/footwear/additional/airmax_5.jpg',0),
(10217,331,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(10516,340,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10515,340,'catalog/journal3/products/footwear/13.png',0),
(11514,330,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(11904,317,'catalog/journal3/products/fashion/additional/glasses.jpg',0),
(11882,309,'catalog/journal3/products/fashion/s1.jpg',-3),
(11323,356,'catalog/journal3/products/fashion/additional/hat.jpg',0),
(10624,261,'catalog/journal3/products/home/patio.jpeg',0),
(11859,376,'catalog/journal3/products/fashion/additional/red-back.jpg',2),
(11030,338,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11028,338,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10247,326,'catalog/journal3/products/footwear/additional/9.jpg',0),
(11153,344,'catalog/journal3/products/footwear/13.png',0),
(10457,325,'catalog/journal3/products/footwear/additional/9.jpg',0),
(10597,348,'catalog/journal3/products/footwear/9.png',0),
(10635,323,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10715,345,'catalog/journal3/products/footwear/flip-flops.jpg',0),
(11378,346,'catalog/journal3/products/footwear/flip-flops.jpg',0),
(11399,335,'catalog/journal3/products/footwear/7.png',0),
(11063,347,'catalog/journal3/products/footwear/shoes5.jpg',0),
(11061,347,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(10258,339,'catalog/journal3/products/footwear/additional/airmax_2.jpg',0),
(11075,269,'catalog/journal3/products/footwear/1.png',0),
(11074,269,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(10723,273,'catalog/journal3/products/electronics/apple-black.png',0),
(10722,273,'catalog/journal3/products/electronics/additional/apple-gold.png',0),
(10620,272,'catalog/journal3/products/electronics/bluetooth-gramophone-by-gramovox.jpg',0),
(10618,272,'catalog/journal3/products/electronics/additional/apple-gold.png',0),
(10617,272,'catalog/journal3/products/electronics/apple-black.png',-1),
(10553,270,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(10551,270,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(10550,270,'catalog/journal3/products/footwear/additional/airmax_7.jpg',0),
(11150,263,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(11149,263,'catalog/journal3/products/footwear/additional/8.jpg',0),
(10316,260,'catalog/journal3/products/backpacks/5.jpg',0),
(10315,260,'catalog/journal3/products/backpacks/7.jpg',0),
(11054,267,'catalog/journal3/products/footwear/additional/airmax_6.jpg',0),
(11053,267,'catalog/journal3/products/footwear/boot-2558324_1920.jpg',0),
(11408,264,'catalog/journal3/products/perfume/perfume2.jpg',0),
(11407,264,'catalog/journal3/products/beauty/13.jpg',0),
(10434,262,'catalog/journal3/products/home/living.jpeg',0),
(10432,262,'catalog/journal3/products/home/cottage-lake-water-nature-161029.jpeg',0),
(11019,266,'catalog/journal3/products/footwear/shoes6.jpg',0),
(11018,266,'catalog/journal3/products/footwear/shoes.jpg',0),
(10770,256,'catalog/journal3/products/backpacks/4.jpg',0),
(11086,259,'catalog/journal3/products/backpacks/9.jpg',0),
(11085,259,'catalog/journal3/products/backpacks/7.jpg',0),
(11057,268,'catalog/journal3/products/footwear/shoe.jpg',0),
(10623,261,'catalog/journal3/products/home/outdoor.jpeg',0),
(10621,261,'catalog/journal3/products/home/cottage-lake-water-nature-161029.jpeg',0),
(11722,351,'',0),
(11723,351,'',0),
(11103,318,'catalog/journal3/products/fashion/bags/wallet.jpg',0),
(11498,291,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(11521,329,'catalog/journal3/products/footwear/10.png',0),
(10753,341,'catalog/journal3/products/footwear/11.png',0),
(11400,335,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(11893,300,'catalog/journal3/products/fashion/additional/te4.jpg',0),
(11322,356,'catalog/journal3/products/fashion/accessories/case2.jpg',0),
(11135,370,'catalog/journal3/products/electronics/camera.jpg',0),
(10893,277,'catalog/journal3/products/beauty/4.jpg',0),
(11035,334,'catalog/journal3/products/footwear/additional/9.jpg',0),
(11060,347,'catalog/journal3/products/footwear/flip-flops.jpg',0),
(10917,294,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(11285,354,'catalog/journal3/products/fashion/bags/purse2.jpg',0),
(12669,360,'catalog/journal3/products/electronics/beolab-19-by-bang-olufsen.jpg',0),
(10909,297,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(11056,268,'catalog/journal3/products/footwear/slippers.jpg',0),
(11865,306,'catalog/journal3/products/fashion/additional/te4.jpg',0),
(11490,349,'catalog/journal3/products/fashion/bags/purse2.jpg',0),
(11503,291,'catalog/journal3/products/beauty/additional/set2.jpg',0),
(11858,376,'catalog/journal3/products/fashion/additional/blonde-woman-holding-a-plant-9.jpg',1),
(11520,330,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(11527,329,'catalog/journal3/products/footwear/additional/airmax.jpg',0),
(12668,360,'catalog/journal3/products/electronics/additional/apple-gold.png',0),
(12662,342,'catalog/journal3/products/footwear/additional/airmax_4.jpg',0),
(11902,317,'catalog/journal3/products/fashion/b2.jpg',-1),
(11821,301,'catalog/journal3/products/fashion/b2.jpg',-2),
(11818,312,'catalog/journal3/products/fashion/additional/glasses3.jpg',0),
(11834,314,'catalog/journal3/products/fashion/additional/andrew-neel-227873-unsplash.jpg',0),
(11903,317,'catalog/journal3/products/fashion/additional/blonde-woman-holding-a-plant-9.jpg',0),
(11817,312,'catalog/journal3/products/fashion/additional/8325113024_f2f3e5e9a7_o.jpg',0),
(11815,312,'catalog/journal3/products/fashion/g2.jpg',-1),
(11851,307,'catalog/journal3/products/fashion/k2.jpg',-20),
(11852,307,'catalog/journal3/products/fashion/c2.jpg',0),
(11753,308,'catalog/journal3/products/fashion/additional/tee4.jpg',0),
(11748,308,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11857,376,'catalog/journal3/products/fashion/l2.jpg',0),
(11863,306,'catalog/journal3/products/fashion/m2.jpg',-2),
(11864,306,'catalog/journal3/products/fashion/c1.jpg',0),
(11876,303,'catalog/journal3/products/fashion/r1.jpg',-3),
(11788,316,'catalog/journal3/products/fashion/additional/hat.jpg',0),
(11784,316,'catalog/journal3/products/fashion/additional/te.jpg',0),
(12009,377,'catalog/journal3/products/beauty/24.jpg',0),
(12008,377,'catalog/journal3/products/beauty/additional/23.jpg',0),
(12007,377,'catalog/journal3/products/beauty/additional/8.jpg',0),
(12006,377,'catalog/journal3/products/beauty/additional/15.jpg',0),
(12004,377,'catalog/journal3/products/beauty/2.jpg',0),
(12005,377,'catalog/journal3/products/sports/1b.jpg',-1),
(11968,378,'catalog/journal3/products/electronics/beolab-19-by-bang-olufsen.jpg',0),
(11967,378,'catalog/journal3/products/electronics/smart-tv-h6240-by-samsung.jpg',0),
(11966,378,'catalog/journal3/products/electronics/leica-m9-digital-camera-by-leica.jpg',0),
(11991,379,'catalog/journal3/products/fashion/additional/Untitled-1.jpg',0),
(11989,379,'catalog/journal3/products/fashion/additional/tee5.jpg',0),
(11990,379,'catalog/journal3/products/fashion/additional/tee4.jpg',0),
(11988,379,'catalog/journal3/products/fashion/b1.jpg',0),
(12020,380,'catalog/journal3/products/beauty/additional/15.jpg',0),
(12021,380,'catalog/journal3/products/sports/4b.jpg',-1),
(12022,380,'catalog/journal3/products/beauty/additional/basket5.jpg',0),
(12023,380,'catalog/journal3/products/beauty/additional/set2.jpg',0),
(12461,392,'catalog/journal3/products/home/decor/4.png',0),
(12018,380,'catalog/journal3/products/beauty/additional/set3.jpg',0),
(12019,380,'catalog/journal3/products/beauty/additional/harc+prosop.jpg',0),
(12016,381,'catalog/journal3/products/sports/6b.jpg',0),
(12015,381,'catalog/journal3/products/sports/6.jpg',0),
(12014,381,'catalog/journal3/products/sports/3.jpg',0),
(12013,382,'catalog/journal3/products/fashion/additional/tee3.jpg',0),
(12012,382,'catalog/journal3/products/fashion/additional/te.jpg',0),
(12011,382,'catalog/journal3/products/fashion/additional/te4.jpg',0),
(12010,382,'catalog/journal3/products/sports/6b.jpg',-3),
(11987,379,'catalog/journal3/products/sports/3b.jpg',-4),
(11969,378,'catalog/journal3/products/electronics/sony-bravia.jpg',0),
(12017,380,'catalog/journal3/products/beauty/additional/23.jpg',0),
(12003,383,'catalog/journal3/products/electronics/sony-bravia.jpg',0),
(12002,383,'catalog/journal3/products/electronics/beolab-19-by-bang-olufsen.jpg',0),
(12001,383,'catalog/journal3/products/electronics/smart-tv-h6240-by-samsung.jpg',0),
(12000,383,'catalog/journal3/products/sports/2b.jpg',-1),
(12565,418,'catalog/journal3/products/home/armchair/additional/6.png',0),
(12517,420,'catalog/journal3/products/home/armchair/10.png',0),
(12529,421,'catalog/journal3/products/home/armchair/10.png',0),
(12536,413,'catalog/journal3/products/home/sofa/7.png',0),
(12218,391,'catalog/journal3/products/home/decor/5.png',0),
(12217,391,'catalog/journal3/products/home/decor/4.png',-1),
(12216,391,'catalog/journal3/products/home/decor/2.png',0),
(12215,391,'catalog/journal3/products/home/decor/1.png',0),
(12214,391,'catalog/journal3/products/home/decor/3b.png',0),
(12460,392,'catalog/journal3/products/home/decor/2.png',0),
(12459,392,'catalog/journal3/products/home/decor/1.png',0),
(12458,392,'catalog/journal3/products/home/decor/3b.png',-1),
(12228,393,'catalog/journal3/products/home/decor/5.png',-1),
(12227,393,'catalog/journal3/products/home/decor/4.png',0),
(12226,393,'catalog/journal3/products/home/decor/2.png',0),
(12225,393,'catalog/journal3/products/home/decor/1.png',0),
(12238,394,'catalog/journal3/products/home/decor/5.png',0),
(12237,394,'catalog/journal3/products/home/decor/4.png',0),
(12236,394,'catalog/journal3/products/home/decor/2.png',0),
(12235,394,'catalog/journal3/products/home/decor/1.png',-1),
(12247,396,'catalog/journal3/products/home/decor/3b.png',0),
(12248,396,'catalog/journal3/products/home/decor/5.png',0),
(12245,396,'catalog/journal3/products/home/decor/2.png',-1),
(12246,396,'catalog/journal3/products/home/decor/1.png',0),
(12244,396,'catalog/journal3/products/home/decor/4.png',0),
(12224,393,'catalog/journal3/products/home/decor/3b.png',0),
(12234,394,'catalog/journal3/products/home/decor/3b.png',0),
(12261,397,'catalog/journal3/products/home/tables/5.png',0),
(12260,397,'catalog/journal3/products/home/tables/4.png',0),
(12259,397,'catalog/journal3/products/home/tables/2.png',-1),
(12262,397,'catalog/journal3/products/home/tables/2.png',0),
(12263,397,'catalog/journal3/products/home/tables/3.png',0),
(12293,398,'catalog/journal3/products/home/tables/3.png',0),
(12292,398,'catalog/journal3/products/home/tables/2.png',0),
(12291,398,'catalog/journal3/products/home/tables/4.png',0),
(12290,398,'catalog/journal3/products/home/tables/5.png',-1),
(12297,399,'catalog/journal3/products/home/tables/2.png',0),
(12296,399,'catalog/journal3/products/home/tables/4.png',0),
(12295,399,'catalog/journal3/products/home/tables/5.png',0),
(12294,399,'catalog/journal3/products/home/tables/2.png',-1),
(12274,400,'catalog/journal3/products/home/tables/2.png',-1),
(12275,400,'catalog/journal3/products/home/tables/5.png',0),
(12276,400,'catalog/journal3/products/home/tables/4.png',0),
(12277,400,'catalog/journal3/products/home/tables/2.png',0),
(12278,400,'catalog/journal3/products/home/tables/3.png',0),
(12302,401,'catalog/journal3/products/home/tables/2.png',0),
(12301,401,'catalog/journal3/products/home/tables/4.png',0),
(12300,401,'catalog/journal3/products/home/tables/5.png',0),
(12299,401,'catalog/journal3/products/home/tables/2.png',-1),
(12289,398,'catalog/journal3/products/home/tables/2.png',0),
(12298,399,'catalog/journal3/products/home/tables/3.png',0),
(12303,401,'catalog/journal3/products/home/tables/3.png',0),
(12313,402,'catalog/journal3/products/home/lamps/7.png',0),
(12312,402,'catalog/journal3/products/home/lamps/6.png',0),
(12311,402,'catalog/journal3/products/home/lamps/3.png',-1),
(12310,402,'catalog/journal3/products/home/lamps/5.png',0),
(12309,402,'catalog/journal3/products/home/lamps/4.png',0),
(12363,403,'catalog/journal3/products/home/lamps/4.png',0),
(12362,403,'catalog/journal3/products/home/lamps/5.png',0),
(12361,403,'catalog/journal3/products/home/lamps/6.png',0),
(12360,403,'catalog/journal3/products/home/lamps/7.png',0),
(12359,403,'catalog/journal3/products/home/lamps/3.png',0),
(12368,404,'catalog/journal3/products/home/lamps/5.png',0),
(12367,404,'catalog/journal3/products/home/lamps/6.png',0),
(12366,404,'catalog/journal3/products/home/lamps/7.png',0),
(12365,404,'catalog/journal3/products/home/lamps/3.png',-1),
(12324,405,'catalog/journal3/products/home/lamps/3.png',-1),
(12325,405,'catalog/journal3/products/home/lamps/7.png',0),
(12326,405,'catalog/journal3/products/home/lamps/6.png',0),
(12327,405,'catalog/journal3/products/home/lamps/5.png',0),
(12328,405,'catalog/journal3/products/home/lamps/4.png',0),
(12353,406,'catalog/journal3/products/home/lamps/4.png',0),
(12352,406,'catalog/journal3/products/home/lamps/5.png',0),
(12350,406,'catalog/journal3/products/home/lamps/7.png',-1),
(12351,406,'catalog/journal3/products/home/lamps/6.png',0),
(12358,407,'catalog/journal3/products/home/lamps/4.png',0),
(12357,407,'catalog/journal3/products/home/lamps/5.png',0),
(12356,407,'catalog/journal3/products/home/lamps/6.png',-1),
(12354,407,'catalog/journal3/products/home/lamps/3.png',0),
(12355,407,'catalog/journal3/products/home/lamps/7.png',0),
(12364,403,'catalog/journal3/products/home/lamps/2.png',-1),
(12349,406,'catalog/journal3/products/home/lamps/3.png',0),
(12369,404,'catalog/journal3/products/home/lamps/4.png',0),
(12377,409,'catalog/journal3/products/home/sofa/additional/12.png',0),
(12376,409,'catalog/journal3/products/home/sofa/additional/10.png',0),
(12375,409,'catalog/journal3/products/home/sofa/additional/11.png',-1),
(12378,409,'catalog/journal3/products/home/sofa/additional/5.png',0),
(12379,409,'catalog/journal3/products/home/sofa/additional/9.png',0),
(12380,409,'catalog/journal3/products/home/sofa/6.png',0),
(12381,409,'catalog/journal3/products/home/sofa/7.png',0),
(12382,410,'catalog/journal3/products/home/sofa/additional/11.png',-1),
(12383,410,'catalog/journal3/products/home/sofa/additional/12.png',0),
(12384,410,'catalog/journal3/products/home/sofa/additional/10.png',0),
(12385,410,'catalog/journal3/products/home/sofa/additional/5.png',0),
(12386,410,'catalog/journal3/products/home/sofa/additional/9.png',0),
(12387,410,'catalog/journal3/products/home/sofa/6.png',0),
(12388,410,'catalog/journal3/products/home/sofa/7.png',0),
(12389,411,'catalog/journal3/products/home/sofa/additional/11.png',-1),
(12390,411,'catalog/journal3/products/home/sofa/additional/12.png',0),
(12391,411,'catalog/journal3/products/home/sofa/additional/10.png',0),
(12392,411,'catalog/journal3/products/home/sofa/additional/5.png',0),
(12393,411,'catalog/journal3/products/home/sofa/additional/9.png',0),
(12394,411,'catalog/journal3/products/home/sofa/6.png',0),
(12395,411,'catalog/journal3/products/home/sofa/7.png',0),
(12543,412,'catalog/journal3/products/home/sofa/additional/5.png',0),
(12542,412,'catalog/journal3/products/home/sofa/additional/9.png',0),
(12541,412,'catalog/journal3/products/home/sofa/additional/11.png',0),
(12539,412,'catalog/journal3/products/home/sofa/7.png',0),
(12540,412,'catalog/journal3/products/home/sofa/additional/12.png',0),
(12535,413,'catalog/journal3/products/home/sofa/6.png',0),
(12534,413,'catalog/journal3/products/home/sofa/additional/9.png',0),
(12533,413,'catalog/journal3/products/home/sofa/additional/5.png',0),
(12532,413,'catalog/journal3/products/home/sofa/additional/10.png',0),
(12531,413,'catalog/journal3/products/home/sofa/additional/12.png',0),
(12530,413,'catalog/journal3/products/home/sofa/additional/11.png',-1),
(12456,414,'catalog/journal3/products/home/sofa/6.png',0),
(12455,414,'catalog/journal3/products/home/sofa/additional/9.png',0),
(12454,414,'catalog/journal3/products/home/sofa/additional/5.png',0),
(12453,414,'catalog/journal3/products/home/sofa/additional/10.png',0),
(12452,414,'catalog/journal3/products/home/sofa/additional/12.png',0),
(12451,414,'catalog/journal3/products/home/sofa/additional/11.png',-1),
(12417,415,'catalog/journal3/products/home/sofa/additional/11.png',-1),
(12418,415,'catalog/journal3/products/home/sofa/additional/12.png',0),
(12419,415,'catalog/journal3/products/home/sofa/additional/10.png',0),
(12420,415,'catalog/journal3/products/home/sofa/additional/5.png',0),
(12421,415,'catalog/journal3/products/home/sofa/additional/9.png',0),
(12422,415,'catalog/journal3/products/home/sofa/6.png',0),
(12423,415,'catalog/journal3/products/home/sofa/7.png',0),
(12564,418,'catalog/journal3/products/home/armchair/additional/2.png',0),
(12563,418,'catalog/journal3/products/home/armchair/additional/8.png',0),
(12462,392,'catalog/journal3/products/home/decor/5.png',0),
(12457,414,'catalog/journal3/products/home/sofa/7.png',0),
(12537,412,'catalog/journal3/products/home/sofa/4.png',-1),
(12538,412,'catalog/journal3/products/home/sofa/6.png',0),
(12549,417,'catalog/journal3/products/home/sofa/additional/12.png',0),
(12548,417,'catalog/journal3/products/home/sofa/additional/10.png',0),
(12547,417,'catalog/journal3/products/home/sofa/additional/9.png',0),
(12546,417,'catalog/journal3/products/home/sofa/6.png',0),
(12545,417,'catalog/journal3/products/home/sofa/7.png',0),
(12544,417,'catalog/journal3/products/home/sofa/additional/11.png',-1),
(12562,418,'catalog/journal3/products/home/armchair/additional/3.png',0),
(12561,418,'catalog/journal3/products/home/armchair/10.png',0),
(12560,418,'catalog/journal3/products/home/armchair/additional/qq.png',-1),
(12476,419,'catalog/journal3/products/home/armchair/additional/qq.png',-1),
(12477,419,'catalog/journal3/products/home/armchair/additional/8.png',0),
(12478,419,'catalog/journal3/products/home/armchair/additional/3.png',0),
(12479,419,'catalog/journal3/products/home/armchair/additional/2.png',0),
(12480,419,'catalog/journal3/products/home/armchair/additional/6.png',0),
(12481,419,'catalog/journal3/products/home/armchair/10.png',0),
(12516,420,'catalog/journal3/products/home/armchair/additional/2.png',0),
(12515,420,'catalog/journal3/products/home/armchair/additional/6.png',0),
(12514,420,'catalog/journal3/products/home/armchair/additional/3.png',0),
(12513,420,'catalog/journal3/products/home/armchair/additional/8.png',0),
(12512,420,'catalog/journal3/products/home/armchair/additional/qq.png',-1),
(12528,421,'catalog/journal3/products/home/armchair/additional/8.png',0),
(12527,421,'catalog/journal3/products/home/armchair/additional/3.png',0),
(12526,421,'catalog/journal3/products/home/armchair/additional/2.png',0),
(12524,421,'catalog/journal3/products/home/armchair/additional/qq.png',0),
(12525,421,'catalog/journal3/products/home/armchair/additional/6.png',0),
(12494,422,'catalog/journal3/products/home/armchair/additional/8.png',-1),
(12495,422,'catalog/journal3/products/home/armchair/10.png',0),
(12496,422,'catalog/journal3/products/home/armchair/additional/qq.png',0),
(12497,422,'catalog/journal3/products/home/armchair/additional/6.png',0),
(12498,422,'catalog/journal3/products/home/armchair/additional/2.png',0),
(12499,422,'catalog/journal3/products/home/armchair/additional/3.png',0),
(12500,423,'catalog/journal3/products/home/armchair/additional/8.png',-1),
(12501,423,'catalog/journal3/products/home/armchair/additional/qq.png',0),
(12502,423,'catalog/journal3/products/home/armchair/10.png',0),
(12503,423,'catalog/journal3/products/home/armchair/additional/6.png',0),
(12504,423,'catalog/journal3/products/home/armchair/additional/2.png',0),
(12505,423,'catalog/journal3/products/home/armchair/additional/3.png',0),
(12667,360,'catalog/journal3/products/electronics/additional/apple-white.png',0),
(12672,42,'catalog/demo/canon_eos_5d_1.jpg',0),
(12608,280,'catalog/journal3/products/beauty/additional/23.jpg',0),
(12607,280,'catalog/journal3/products/beauty/24.jpg',0),
(12606,366,'catalog/journal3/products/electronics/camera2.jpg',0),
(12612,280,'catalog/journal3/products/beauty/14.jpg',0),
(12660,342,'catalog/journal3/products/footwear/additional/airmax_10.jpg',0),
(12661,342,'catalog/journal3/products/footwear/additional/8.jpg',0),
(12676,42,'catalog/demo/canon_eos_5d_2.jpg',0);
/*!40000 ALTER TABLE `oc_product_image` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_option`
--
DROP TABLE IF EXISTS `oc_product_option`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_option` (
`product_option_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`option_id` int(11) NOT NULL,
`value` text NOT NULL,
`required` tinyint(1) NOT NULL,
PRIMARY KEY (`product_option_id`)
) ENGINE=MyISAM AUTO_INCREMENT=765 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_option`
--
LOCK TABLES `oc_product_option` WRITE;
/*!40000 ALTER TABLE `oc_product_option` DISABLE KEYS */;
INSERT INTO `oc_product_option` VALUES
(225,47,12,'2011-04-22',1),
(546,30,7,'',1),
(580,281,2,'',1),
(695,392,2,'',0),
(693,391,2,'',0),
(582,290,2,'',1),
(692,391,11,'',1),
(572,293,2,'',1),
(570,278,2,'',1),
(566,294,2,'',1),
(603,277,11,'',1),
(557,282,2,'',1),
(552,376,2,'',1),
(553,376,11,'',1),
(563,297,2,'',1),
(556,280,2,'',0),
(654,367,2,'',1),
(652,335,2,'',1),
(653,335,11,'',1),
(618,317,11,'',1),
(605,279,11,'',1),
(561,279,2,'',1),
(598,292,2,'',1),
(592,284,2,'',1),
(578,275,2,'',1),
(568,283,2,'',1),
(586,295,2,'',1),
(564,289,2,'',1),
(677,383,2,'',1),
(641,336,11,'',1),
(640,336,2,'',1),
(631,371,11,'',1),
(630,371,2,'',1),
(590,286,2,'',1),
(678,383,11,'',1),
(622,317,2,'',0),
(588,287,2,'',1),
(676,379,2,'',0),
(675,382,11,'',0),
(614,318,2,'',1),
(674,382,2,'',1),
(600,291,2,'',1),
(628,354,2,'',1),
(629,354,11,'',1),
(220,42,10,'2011-02-20 22:25',1),
(606,276,11,'',1),
(576,276,2,'',1),
(672,381,2,'',0),
(574,298,2,'',1),
(646,360,2,'',1),
(647,349,2,'',1),
(648,346,2,'',1),
(649,346,11,'',1),
(764,342,5,'',1),
(673,381,11,'',0),
(612,320,2,'',1),
(594,296,2,'',1),
(671,380,2,'',0),
(221,42,9,'22:25',1),
(219,42,8,'2011-02-20',1),
(656,364,2,'',1),
(626,312,2,'',1),
(635,316,11,'',1),
(632,333,2,'',1),
(633,333,11,'',1),
(634,316,2,'',1),
(661,33,12,'2021-01-10',1),
(659,49,12,'2021-01-10',1),
(664,309,2,'',1),
(665,309,11,'',1),
(662,368,2,'',1),
(658,49,2,'',1),
(642,300,2,'',1),
(616,373,2,'',1),
(669,378,2,'',1),
(643,300,11,'',1),
(660,33,2,'',1),
(670,378,11,'',1),
(667,377,2,'',1),
(596,288,2,'',1),
(621,301,11,'',1),
(620,301,2,'',1),
(611,351,11,'',1),
(644,357,2,'',1),
(604,274,11,'',1),
(549,274,2,'',1),
(638,372,2,'',1),
(623,314,2,'',1),
(624,314,11,'',1),
(637,356,11,'',1),
(636,356,2,'',1),
(639,372,11,'',1),
(627,312,11,'',1),
(559,277,2,'',1),
(602,280,11,'',1),
(509,256,2,'',0),
(510,256,11,'',0),
(512,257,11,'',0),
(511,257,2,'',0),
(609,350,11,'',1),
(607,350,2,'',1),
(515,259,2,'',0),
(516,259,11,'',0),
(518,260,2,'',0),
(517,260,11,'',0),
(520,261,11,'',0),
(519,261,2,'',0),
(522,262,2,'',0),
(521,262,11,'',0),
(523,263,11,'',0),
(524,263,2,'',0),
(526,264,2,'',0),
(525,264,11,'',0),
(610,351,2,'',1),
(530,266,2,'',0),
(529,266,11,'',0),
(532,267,2,'',0),
(531,267,11,'',0),
(534,268,2,'',0),
(533,268,11,'',0),
(535,269,11,'',0),
(536,269,2,'',0),
(537,270,11,'',0),
(538,270,2,'',0),
(540,271,2,'',0),
(539,271,11,'',0),
(541,272,11,'',0),
(542,272,2,'',0),
(543,273,2,'',0),
(544,273,11,'',0),
(584,285,2,'',1),
(226,30,5,'',1),
(668,377,11,'',0),
(666,306,2,'',0),
(222,42,7,'',0),
(209,42,6,'',1),
(694,392,11,'',1),
(697,393,2,'',0),
(696,393,11,'',1),
(699,394,2,'',0),
(698,394,11,'',1),
(702,396,11,'',1),
(703,396,2,'',0),
(705,397,11,'',1),
(704,397,2,'',0),
(707,398,2,'',0),
(706,398,11,'',1),
(709,399,2,'',0),
(708,399,11,'',1),
(710,400,11,'',1),
(711,400,2,'',0),
(713,401,2,'',0),
(712,401,11,'',1),
(715,402,2,'',0),
(714,402,11,'',1),
(717,403,11,'',1),
(716,403,2,'',0),
(719,404,11,'',1),
(718,404,2,'',0),
(720,405,2,'',0),
(721,405,11,'',1),
(723,406,11,'',1),
(722,406,2,'',0),
(725,407,11,'',1),
(724,407,2,'',0),
(729,409,2,'',0),
(728,409,11,'',1),
(730,410,2,'',0),
(731,410,11,'',1),
(732,411,2,'',0),
(733,411,11,'',1),
(735,412,11,'',1),
(734,412,2,'',0),
(737,413,11,'',1),
(736,413,2,'',0),
(739,414,11,'',1),
(738,414,2,'',0),
(740,415,2,'',0),
(741,415,11,'',1),
(747,418,11,'',1),
(746,418,2,'',0),
(744,417,2,'',0),
(745,417,11,'',1),
(748,419,11,'',1),
(749,419,2,'',0),
(751,420,2,'',0),
(750,420,11,'',1),
(753,421,2,'',0),
(752,421,11,'',1),
(754,422,11,'',1),
(755,422,2,'',0),
(756,423,11,'',1),
(757,423,2,'',0),
(208,42,4,'test',1),
(223,42,2,'',1),
(218,42,1,'',1),
(217,42,5,'',1),
(759,42,13,'',1),
(650,342,2,'',1),
(763,342,11,'',1);
/*!40000 ALTER TABLE `oc_product_option` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_option_value`
--
DROP TABLE IF EXISTS `oc_product_option_value`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_option_value` (
`product_option_value_id` int(11) NOT NULL AUTO_INCREMENT,
`product_option_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`option_id` int(11) NOT NULL,
`option_value_id` int(11) NOT NULL,
`quantity` int(3) NOT NULL,
`subtract` tinyint(1) NOT NULL,
`price` decimal(15,4) NOT NULL,
`price_prefix` varchar(1) NOT NULL,
`points` int(8) NOT NULL,
`points_prefix` varchar(1) NOT NULL,
`weight` decimal(15,8) NOT NULL,
`weight_prefix` varchar(1) NOT NULL,
PRIMARY KEY (`product_option_value_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1818 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_option_value`
--
LOCK TABLES `oc_product_option_value` WRITE;
/*!40000 ALTER TABLE `oc_product_option_value` DISABLE KEYS */;
INSERT INTO `oc_product_option_value` VALUES
(1492,654,367,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(15,226,30,5,39,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(16,226,30,5,40,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1508,664,309,2,23,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1506,664,309,2,50,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1507,664,309,2,57,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1513,665,309,11,60,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1512,665,309,11,48,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1511,665,309,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1510,665,309,11,46,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1509,665,309,11,59,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1505,662,368,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1504,662,368,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1503,662,368,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1502,660,33,2,44,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1501,660,33,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1500,660,33,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1499,658,49,2,44,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1498,658,49,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1497,658,49,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1496,656,364,2,44,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1494,656,364,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1495,656,364,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1493,654,367,2,49,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1173,523,263,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1448,640,336,2,50,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1449,640,336,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1450,640,336,2,44,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1442,638,372,2,51,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1443,638,372,2,50,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1444,638,372,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1447,639,372,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1438,636,356,2,53,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1437,636,356,2,57,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1436,636,356,2,54,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1439,637,356,11,47,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1440,637,356,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1441,637,356,11,60,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1491,654,367,2,57,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1359,603,277,11,48,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1358,603,277,11,47,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1357,603,277,11,46,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1295,557,282,2,44,92,1,0.0000,'+',0,'+',0.00000000,'+'),
(1294,557,282,2,49,97,1,0.0000,'+',0,'+',0.00000000,'+'),
(1270,549,274,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1457,642,300,2,56,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1456,642,300,2,52,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1455,642,300,2,58,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1462,643,300,11,60,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1420,630,371,2,23,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1419,630,371,2,58,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1415,628,354,2,54,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1416,628,354,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1418,629,354,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(8,223,42,2,23,38,1,0.0000,'+',0,'+',10.00000000,'+'),
(7,218,42,1,43,286,1,30.0000,'+',3,'+',30.00000000,'+'),
(6,218,42,1,31,132,1,20.0000,'+',2,'-',20.00000000,'+'),
(1490,653,335,11,61,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1489,653,335,11,60,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1321,576,276,2,56,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1451,641,336,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1452,641,336,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1453,641,336,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1454,641,336,11,60,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1461,643,300,11,48,21,1,0.0000,'+',0,'+',0.00000000,'+'),
(1460,643,300,11,47,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1459,643,300,11,46,12,1,0.0000,'+',0,'+',0.00000000,'+'),
(1323,578,275,2,58,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1322,578,275,2,52,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1367,605,279,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1319,576,276,2,58,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1320,576,276,2,52,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1600,693,391,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1311,568,283,2,57,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1310,568,283,2,53,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1313,570,278,2,44,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1312,570,278,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1314,572,293,2,52,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1315,572,293,2,58,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1318,574,298,2,44,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1316,574,298,2,50,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1317,574,298,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1371,606,276,11,48,49,1,0.0000,'+',0,'+',0.00000000,'+'),
(1293,557,282,2,58,66,1,0.0000,'+',0,'+',0.00000000,'+'),
(1292,556,280,2,44,89,1,0.0000,'+',0,'+',0.00000000,'+'),
(1290,556,280,2,57,76,1,0.0000,'+',0,'+',0.00000000,'+'),
(1291,556,280,2,58,81,1,0.0000,'+',0,'+',0.00000000,'+'),
(1309,566,294,2,50,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1308,566,294,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1307,566,294,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1305,564,289,2,49,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1306,564,289,2,58,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1304,563,297,2,57,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1303,563,297,2,54,23,1,0.0000,'+',0,'+',0.00000000,'+'),
(1435,635,316,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1403,623,314,2,44,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1402,623,314,2,53,24,1,0.0000,'+',0,'+',0.00000000,'+'),
(1401,623,314,2,57,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1392,618,317,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1391,618,317,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1446,639,372,11,47,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1445,639,372,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1422,631,371,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1421,630,371,2,51,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1277,552,376,2,57,99,1,50.0000,'+',200,'+',20.00000000,'+'),
(1282,553,376,11,61,500,1,50.0000,'+',400,'+',0.00000000,'+'),
(1281,553,376,11,60,500,1,40.0000,'+',300,'+',0.00000000,'+'),
(1280,553,376,11,48,500,1,30.0000,'+',200,'+',0.00000000,'+'),
(1486,653,335,11,46,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1487,653,335,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1488,653,335,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1366,605,279,11,47,14,1,0.0000,'+',0,'+',0.00000000,'+'),
(1300,561,279,2,53,95,1,0.0000,'+',0,'+',0.00000000,'+'),
(1355,602,280,11,48,22,1,0.0000,'+',0,'+',0.00000000,'+'),
(1356,603,277,11,59,23,1,0.0000,'+',0,'+',0.00000000,'+'),
(1298,559,277,2,50,95,1,0.0000,'+',0,'+',0.00000000,'+'),
(1297,559,277,2,54,96,1,0.0000,'+',0,'+',0.00000000,'+'),
(1296,559,277,2,52,65,1,0.0000,'+',0,'+',0.00000000,'+'),
(1271,549,274,2,50,90,1,0.0000,'+',0,'+',0.00000000,'+'),
(1269,549,274,2,54,96,1,0.0000,'+',0,'+',0.00000000,'+'),
(1363,604,274,11,60,49,1,0.0000,'+',0,'+',0.00000000,'+'),
(1362,604,274,11,48,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1365,605,279,11,46,14,1,0.0000,'+',0,'+',0.00000000,'+'),
(1364,605,279,11,59,56,1,0.0000,'+',0,'+',0.00000000,'+'),
(1299,561,279,2,54,95,1,0.0000,'+',0,'+',0.00000000,'+'),
(1169,522,262,2,54,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1168,522,262,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1817,764,342,5,42,500,1,0.0000,'+',0,'+',0.00000000,'+'),
(1816,764,342,5,39,500,1,0.0000,'+',0,'+',0.00000000,'+'),
(1463,644,357,2,45,25,1,0.0000,'+',0,'+',0.00000000,'+'),
(1465,644,357,2,57,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1464,644,357,2,54,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1467,646,360,2,52,15,1,0.0000,'+',0,'+',0.00000000,'+'),
(1469,647,349,2,45,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1468,647,349,2,54,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1474,649,346,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1475,649,346,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1476,649,346,11,60,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1815,764,342,5,41,500,1,0.0000,'+',0,'+',0.00000000,'+'),
(1814,764,342,5,40,500,1,0.0000,'+',0,'+',0.00000000,'+'),
(1477,650,342,2,45,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1478,650,342,2,54,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1485,652,335,2,55,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1350,598,292,2,58,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1348,598,292,2,56,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1349,598,292,2,52,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1352,600,291,2,44,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1351,600,291,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1407,624,314,11,60,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1406,624,314,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1405,624,314,11,47,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1404,624,314,11,46,24,1,0.0000,'+',0,'+',0.00000000,'+'),
(1434,635,316,11,47,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1433,635,316,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1432,635,316,11,59,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1431,634,316,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1430,634,316,2,57,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1425,632,333,2,50,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1426,632,333,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1427,633,333,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1428,633,333,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1429,633,333,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1346,596,288,2,56,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1347,596,288,2,58,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1345,596,288,2,52,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1337,590,286,2,53,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1340,592,284,2,54,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1341,592,284,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1342,592,284,2,53,25,1,0.0000,'+',0,'+',0.00000000,'+'),
(1344,594,296,2,53,27,1,0.0000,'+',0,'+',0.00000000,'+'),
(1343,594,296,2,57,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1424,631,371,11,61,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1423,631,371,11,60,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1410,626,312,2,44,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1408,626,312,2,53,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1409,626,312,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1414,627,312,11,60,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1413,627,312,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1412,627,312,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1411,627,312,11,46,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1228,535,269,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1338,590,286,2,52,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1324,580,281,2,56,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1325,580,281,2,50,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1326,582,290,2,24,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1327,582,290,2,23,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1328,582,290,2,50,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1330,584,285,2,45,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1329,584,285,2,54,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1331,584,285,2,56,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1339,590,286,2,57,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1333,586,295,2,57,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1332,586,295,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1336,588,287,2,53,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1335,588,287,2,52,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1334,588,287,2,57,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(5,218,42,1,32,58,1,10.0000,'+',1,'+',10.00000000,'+'),
(1417,629,354,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1110,509,256,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1458,643,300,11,59,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1108,509,256,2,50,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1114,510,256,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1116,510,256,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1109,509,256,2,58,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1397,621,301,11,60,22,1,0.0000,'+',0,'+',0.00000000,'+'),
(1396,621,301,11,48,11,1,0.0000,'+',0,'+',0.00000000,'+'),
(1390,618,317,11,46,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1112,510,256,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1111,510,256,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1388,616,373,2,57,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1387,616,373,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1386,616,373,2,50,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1385,614,318,2,54,27,1,0.0000,'+',0,'+',0.00000000,'+'),
(1384,614,318,2,56,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1375,609,350,11,47,21,1,0.0000,'+',0,'+',0.00000000,'+'),
(1221,534,268,2,52,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1374,609,350,11,46,18,1,0.0000,'+',0,'+',0.00000000,'+'),
(1372,607,350,2,53,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1373,607,350,2,57,19,1,0.0000,'+',0,'+',0.00000000,'+'),
(1382,612,320,2,45,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1151,518,260,2,44,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1150,518,260,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1149,518,260,2,52,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1143,517,260,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1147,517,260,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1146,517,260,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1145,517,260,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1156,520,261,11,61,10,1,0.0000,'+',0,'+',0.00000000,'+'),
(1160,520,261,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1157,520,261,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1158,520,261,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1159,520,261,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1155,520,261,11,59,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1152,519,261,2,45,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1153,519,261,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1154,519,261,2,56,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1167,522,262,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1164,521,262,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1166,521,262,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1162,521,262,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1163,521,262,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1161,521,262,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1165,521,262,11,59,19,1,0.0000,'+',0,'+',0.00000000,'+'),
(1175,523,263,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1172,523,263,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1171,523,263,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1170,523,263,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1174,523,263,11,59,18,1,0.0000,'+',0,'+',0.00000000,'+'),
(1178,524,263,2,44,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1177,524,263,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1389,618,317,11,59,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1399,622,317,2,44,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1400,622,317,2,23,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1398,622,317,2,50,27,1,0.0000,'+',0,'+',0.00000000,'+'),
(1185,526,264,2,24,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1186,526,264,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1187,526,264,2,52,38,1,0.0000,'+',0,'+',0.00000000,'+'),
(1183,525,264,11,61,10,1,0.0000,'+',0,'+',0.00000000,'+'),
(1179,525,264,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1182,525,264,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1184,525,264,11,59,18,1,0.0000,'+',0,'+',0.00000000,'+'),
(1181,525,264,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1180,525,264,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1205,530,266,2,49,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1203,530,266,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1204,530,266,2,52,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1201,529,266,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1197,529,266,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1212,532,267,2,45,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1214,532,267,2,51,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1213,532,267,2,49,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1210,531,267,11,61,10,1,0.0000,'+',0,'+',0.00000000,'+'),
(1206,531,267,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1209,531,267,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1208,531,267,11,47,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1207,531,267,11,46,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1211,531,267,11,59,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1222,534,268,2,56,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1223,534,268,2,58,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1219,533,268,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1215,533,268,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1218,533,268,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1217,533,268,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1216,533,268,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1224,535,269,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1227,535,269,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1226,535,269,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1225,535,269,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1229,535,269,11,59,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1230,536,269,2,53,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1231,536,269,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1232,536,269,2,49,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1237,537,270,11,61,10,1,0.0000,'+',0,'+',0.00000000,'+'),
(1233,537,270,11,60,19,1,0.0000,'+',0,'+',0.00000000,'+'),
(1236,537,270,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1235,537,270,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1234,537,270,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1238,537,270,11,59,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1241,538,270,2,45,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1239,538,270,2,50,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1240,538,270,2,49,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1471,648,346,2,45,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1473,649,346,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1472,648,346,2,24,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1470,648,346,2,54,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1354,602,280,11,47,17,1,0.0000,'+',0,'+',0.00000000,'+'),
(1353,602,280,11,46,4,1,0.0000,'+',0,'+',0.00000000,'+'),
(1255,541,272,11,61,9,1,0.0000,'+',0,'+',0.00000000,'+'),
(1251,541,272,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1254,541,272,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1257,542,272,2,52,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1259,542,272,2,58,35,1,0.0000,'+',0,'+',0.00000000,'+'),
(1256,541,272,11,59,16,1,0.0000,'+',0,'+',0.00000000,'+'),
(1252,541,272,11,46,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1253,541,272,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1262,543,273,2,57,16,1,0.0000,'+',0,'+',0.00000000,'+'),
(1258,542,272,2,57,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1381,612,320,2,51,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1383,612,320,2,54,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1380,611,351,11,48,24,1,0.0000,'+',0,'+',0.00000000,'+'),
(1379,611,351,11,47,24,1,0.0000,'+',0,'+',0.00000000,'+'),
(1378,610,351,2,44,27,1,0.0000,'+',0,'+',0.00000000,'+'),
(1377,610,351,2,49,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1376,610,351,2,50,23,1,0.0000,'+',0,'+',0.00000000,'+'),
(1370,606,276,11,47,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1369,606,276,11,46,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1125,512,257,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1123,512,257,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1120,512,257,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1121,512,257,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1122,512,257,11,46,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1124,512,257,11,59,18,1,0.0000,'+',0,'+',0.00000000,'+'),
(1117,511,257,2,58,34,1,0.0000,'+',0,'+',0.00000000,'+'),
(1119,511,257,2,52,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1260,543,273,2,53,38,1,0.0000,'+',0,'+',0.00000000,'+'),
(1261,543,273,2,50,3,1,0.0000,'+',0,'+',0.00000000,'+'),
(1264,544,273,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1200,529,266,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1199,529,266,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1198,529,266,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1202,529,266,11,59,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1220,533,268,11,59,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1368,606,276,11,59,19,1,0.0000,'+',0,'+',0.00000000,'+'),
(1395,621,301,11,47,2,1,0.0000,'+',0,'+',0.00000000,'+'),
(1394,620,301,2,44,5,1,0.0000,'+',0,'+',0.00000000,'+'),
(1393,620,301,2,57,7,1,0.0000,'+',0,'+',0.00000000,'+'),
(1483,652,335,2,58,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1484,652,335,2,23,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1135,515,259,2,44,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1142,515,259,2,53,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1134,515,259,2,57,37,1,0.0000,'+',0,'+',0.00000000,'+'),
(1140,516,259,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1141,516,259,11,59,18,1,0.0000,'+',0,'+',0.00000000,'+'),
(1138,516,259,11,46,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1137,516,259,11,47,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1136,516,259,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1139,516,259,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1176,524,263,2,57,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1144,517,260,11,46,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1148,517,260,11,59,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1361,604,274,11,47,25,1,0.0000,'+',0,'+',0.00000000,'+'),
(1360,604,274,11,46,24,1,0.0000,'+',0,'+',0.00000000,'+'),
(1250,540,271,2,54,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1248,540,271,2,52,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1249,540,271,2,53,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1246,539,271,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1244,539,271,11,60,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1242,539,271,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1243,539,271,11,60,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1245,539,271,11,60,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1268,544,273,11,60,13,1,0.0000,'+',0,'+',0.00000000,'+'),
(1265,544,273,11,48,25,1,0.0000,'+',0,'+',0.00000000,'+'),
(1266,544,273,11,47,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1113,510,256,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1115,510,256,11,59,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1247,539,271,11,59,15,1,0.0000,'+',0,'+',0.00000000,'+'),
(1267,544,273,11,46,22,1,0.0000,'+',0,'+',0.00000000,'+'),
(1263,544,273,11,59,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1514,666,306,2,54,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1279,553,376,11,46,499,1,20.0000,'-',100,'+',0.00000000,'+'),
(2,217,42,5,42,198,1,2.0000,'+',0,'+',2.00000000,'+'),
(1,217,42,5,41,100,0,1.0000,'+',0,'+',1.00000000,'+'),
(1278,552,376,2,54,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1517,667,377,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1516,667,377,2,58,96,1,0.0000,'+',0,'+',0.00000000,'+'),
(1515,667,377,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1520,668,377,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1519,668,377,11,47,37,1,0.0000,'+',0,'+',0.00000000,'+'),
(1518,668,377,11,46,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1523,669,378,2,52,0,0,0.0000,'+',0,'+',0.00000000,'+'),
(1522,669,378,2,58,0,0,0.0000,'+',0,'+',0.00000000,'+'),
(1521,669,378,2,49,0,0,0.0000,'+',0,'+',0.00000000,'+'),
(1527,670,378,11,60,30,0,100.0000,'+',100,'+',0.00000000,'+'),
(1526,670,378,11,48,99,0,0.0000,'+',0,'+',0.00000000,'+'),
(1525,670,378,11,46,50,0,0.0000,'+',0,'+',0.00000000,'+'),
(1530,671,380,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1529,671,380,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1528,671,380,2,49,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1532,672,381,2,57,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1533,672,381,2,52,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1531,672,381,2,49,40,1,0.0000,'+',0,'+',0.00000000,'+'),
(1539,673,381,11,61,0,1,0.0000,'+',0,'+',0.00000000,'+'),
(1538,673,381,11,60,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1537,673,381,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1535,673,381,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1536,673,381,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1547,675,382,11,60,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1546,675,382,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1545,675,382,11,47,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1544,675,382,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1543,675,382,11,59,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1540,674,382,2,56,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1541,674,382,2,52,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1542,674,382,2,58,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1552,677,383,2,49,0,0,0.0000,'+',0,'+',0.00000000,'+'),
(1548,676,379,2,45,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1534,673,381,11,59,20,1,0.0000,'+',0,'+',0.00000000,'+'),
(1524,669,378,2,50,0,0,0.0000,'+',0,'+',0.00000000,'+'),
(1551,677,383,2,50,0,0,0.0000,'+',0,'+',0.00000000,'+'),
(1550,677,383,2,58,0,0,0.0000,'+',0,'+',0.00000000,'+'),
(1549,677,383,2,52,0,0,0.0000,'+',0,'+',0.00000000,'+'),
(1555,678,383,11,60,30,0,100.0000,'+',100,'+',0.00000000,'+'),
(1554,678,383,11,48,99,0,0.0000,'+',0,'+',0.00000000,'+'),
(1553,678,383,11,46,50,0,0.0000,'+',0,'+',0.00000000,'+'),
(1598,693,391,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1599,693,391,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1597,692,391,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1596,692,391,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1595,692,391,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1606,695,392,2,44,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1605,695,392,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1604,695,392,2,57,97,1,0.0000,'+',0,'+',0.00000000,'+'),
(1603,694,392,11,48,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1602,694,392,11,47,38,1,0.0000,'+',0,'+',0.00000000,'+'),
(1601,694,392,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1612,697,393,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1611,697,393,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1610,697,393,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1609,696,393,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1608,696,393,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1607,696,393,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1618,699,394,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1617,699,394,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1616,699,394,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1615,698,394,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1614,698,394,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1613,698,394,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1627,702,396,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1626,702,396,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1625,702,396,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1630,703,396,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1628,703,396,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1629,703,396,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1636,705,397,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1635,705,397,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1634,705,397,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1633,704,397,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1632,704,397,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1631,704,397,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1642,707,398,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1641,707,398,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1640,707,398,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1639,706,398,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1638,706,398,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1637,706,398,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1648,709,399,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1647,709,399,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1646,709,399,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1645,708,399,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1644,708,399,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1643,708,399,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1649,710,400,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1650,710,400,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1651,710,400,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1652,711,400,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1653,711,400,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1654,711,400,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1660,713,401,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1659,713,401,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1658,713,401,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1657,712,401,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1656,712,401,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1655,712,401,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1666,715,402,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1665,715,402,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1664,715,402,2,57,97,1,0.0000,'+',0,'+',0.00000000,'+'),
(1663,714,402,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1662,714,402,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1661,714,402,11,46,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1672,717,403,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1671,717,403,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1670,717,403,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1669,716,403,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1668,716,403,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1667,716,403,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1678,719,404,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1677,719,404,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1676,719,404,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1675,718,404,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1674,718,404,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1673,718,404,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1679,720,405,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1680,720,405,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1681,720,405,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1682,721,405,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1683,721,405,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1684,721,405,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1690,723,406,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1689,723,406,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1688,723,406,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1687,722,406,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1686,722,406,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1685,722,406,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1708,729,409,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1696,725,407,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1695,725,407,11,47,37,1,0.0000,'+',0,'+',0.00000000,'+'),
(1694,725,407,11,46,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1693,724,407,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1691,724,407,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1692,724,407,2,57,96,1,0.0000,'+',0,'+',0.00000000,'+'),
(1706,729,409,2,57,97,1,0.0000,'+',0,'+',0.00000000,'+'),
(1707,729,409,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1705,728,409,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1704,728,409,11,47,38,1,0.0000,'+',0,'+',0.00000000,'+'),
(1703,728,409,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1709,730,410,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1710,730,410,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1711,730,410,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1712,731,410,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1713,731,410,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1714,731,410,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1715,732,411,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1716,732,411,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1717,732,411,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1718,733,411,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1719,733,411,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1720,733,411,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1726,735,412,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1725,735,412,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1724,735,412,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1723,734,412,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1722,734,412,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1721,734,412,2,56,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1732,737,413,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1731,737,413,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1730,737,413,11,46,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1729,736,413,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1728,736,413,2,24,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1727,736,413,2,49,97,1,0.0000,'+',0,'+',0.00000000,'+'),
(1738,739,414,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1737,739,414,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1736,739,414,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1735,738,414,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1734,738,414,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1733,738,414,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1739,740,415,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1740,740,415,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1741,740,415,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1742,741,415,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1743,741,415,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1744,741,415,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1762,747,418,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1761,747,418,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1760,747,418,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1759,746,418,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1758,746,418,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1757,746,418,2,49,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1753,744,417,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1751,744,417,2,55,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1752,744,417,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1756,745,417,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1755,745,417,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1754,745,417,11,46,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1763,748,419,11,46,17,1,0.0000,'+',0,'+',0.00000000,'+'),
(1764,748,419,11,47,34,1,0.0000,'+',0,'+',0.00000000,'+'),
(1765,748,419,11,48,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1766,749,419,2,57,94,1,0.0000,'+',0,'+',0.00000000,'+'),
(1767,749,419,2,58,87,1,0.0000,'+',0,'+',0.00000000,'+'),
(1768,749,419,2,44,97,1,0.0000,'+',0,'+',0.00000000,'+'),
(1774,751,420,2,44,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1773,751,420,2,57,97,1,0.0000,'+',0,'+',0.00000000,'+'),
(1772,751,420,2,23,93,1,0.0000,'+',0,'+',0.00000000,'+'),
(1771,750,420,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1770,750,420,11,47,36,1,0.0000,'+',0,'+',0.00000000,'+'),
(1769,750,420,11,46,23,1,0.0000,'+',0,'+',0.00000000,'+'),
(1780,753,421,2,56,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1779,753,421,2,24,90,1,0.0000,'+',0,'+',0.00000000,'+'),
(1778,753,421,2,58,95,1,0.0000,'+',0,'+',0.00000000,'+'),
(1777,752,421,11,48,28,1,0.0000,'+',0,'+',0.00000000,'+'),
(1776,752,421,11,47,32,1,0.0000,'+',0,'+',0.00000000,'+'),
(1775,752,421,11,46,26,1,0.0000,'+',0,'+',0.00000000,'+'),
(1781,754,422,11,46,23,1,0.0000,'+',0,'+',0.00000000,'+'),
(1782,754,422,11,47,38,1,0.0000,'+',0,'+',0.00000000,'+'),
(1783,754,422,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1784,755,422,2,58,95,1,0.0000,'+',0,'+',0.00000000,'+'),
(1785,755,422,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1786,755,422,2,44,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1787,756,423,11,46,29,1,0.0000,'+',0,'+',0.00000000,'+'),
(1788,756,423,11,47,39,1,0.0000,'+',0,'+',0.00000000,'+'),
(1789,756,423,11,48,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1790,757,423,2,58,99,1,0.0000,'+',0,'+',0.00000000,'+'),
(1791,757,423,2,57,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(1792,757,423,2,44,98,1,0.0000,'+',0,'+',0.00000000,'+'),
(3,217,42,5,40,300,0,3.0000,'+',0,'+',3.00000000,'+'),
(4,217,42,5,39,52,1,4.0000,'+',0,'+',4.00000000,'+'),
(1797,759,42,13,64,60,1,0.0000,'+',0,'+',0.00000000,'+'),
(1795,759,42,13,62,76,1,0.0000,'+',0,'+',0.00000000,'+'),
(1796,759,42,13,63,70,1,0.0000,'+',0,'+',0.00000000,'+'),
(1466,646,360,2,58,23,1,0.0000,'+',0,'+',0.00000000,'+'),
(1479,650,342,2,58,30,1,0.0000,'+',0,'+',0.00000000,'+'),
(1813,763,342,11,60,500,1,0.0000,'+',0,'+',0.00000000,'+'),
(1812,763,342,11,48,500,1,0.0000,'+',0,'+',0.00000000,'+'),
(1811,763,342,11,47,500,1,0.0000,'+',0,'+',0.00000000,'+'),
(1810,763,342,11,46,500,1,0.0000,'+',0,'+',0.00000000,'+'),
(1809,763,342,11,59,500,1,0.0000,'+',0,'+',0.00000000,'+'),
(9,223,42,2,24,172,1,20.0000,'+',0,'+',20.00000000,'+'),
(10,223,42,2,44,2680,1,30.0000,'+',0,'+',30.00000000,'+'),
(11,223,42,2,45,3980,1,40.0000,'+',0,'+',40.00000000,'+');
/*!40000 ALTER TABLE `oc_product_option_value` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_recurring`
--
DROP TABLE IF EXISTS `oc_product_recurring`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_recurring` (
`product_id` int(11) NOT NULL,
`recurring_id` int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
PRIMARY KEY (`product_id`,`recurring_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_recurring`
--
LOCK TABLES `oc_product_recurring` WRITE;
/*!40000 ALTER TABLE `oc_product_recurring` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_product_recurring` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_related`
--
DROP TABLE IF EXISTS `oc_product_related`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_related` (
`product_id` int(11) NOT NULL,
`related_id` int(11) NOT NULL,
PRIMARY KEY (`product_id`,`related_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_related`
--
LOCK TABLES `oc_product_related` WRITE;
/*!40000 ALTER TABLE `oc_product_related` DISABLE KEYS */;
INSERT INTO `oc_product_related` VALUES
(30,363),
(31,363),
(32,49),
(34,49),
(40,42),
(40,49),
(41,42),
(42,40),
(42,41),
(48,49),
(49,32),
(49,34),
(49,40),
(49,48),
(49,378),
(49,383),
(256,259),
(256,260),
(257,259),
(257,260),
(257,264),
(257,269),
(259,256),
(259,257),
(259,260),
(259,262),
(259,263),
(259,266),
(259,267),
(259,268),
(259,269),
(259,270),
(259,272),
(259,381),
(260,256),
(260,257),
(260,259),
(260,266),
(260,267),
(260,268),
(260,381),
(261,262),
(261,263),
(261,266),
(261,271),
(261,273),
(261,381),
(262,259),
(262,261),
(262,266),
(262,267),
(262,381),
(263,259),
(263,261),
(264,257),
(264,266),
(264,267),
(264,268),
(264,269),
(264,270),
(264,271),
(264,272),
(264,273),
(264,381),
(266,259),
(266,260),
(266,261),
(266,262),
(266,264),
(266,267),
(266,268),
(266,269),
(266,270),
(267,259),
(267,260),
(267,262),
(267,264),
(267,266),
(267,268),
(267,269),
(267,270),
(267,271),
(267,272),
(267,273),
(267,381),
(268,259),
(268,260),
(268,264),
(268,266),
(268,267),
(268,271),
(268,272),
(268,273),
(268,381),
(269,257),
(269,259),
(269,264),
(269,266),
(269,267),
(269,270),
(269,271),
(269,272),
(269,273),
(269,381),
(270,259),
(270,264),
(270,266),
(270,267),
(270,269),
(270,271),
(270,272),
(270,273),
(270,381),
(271,261),
(271,264),
(271,267),
(271,268),
(271,269),
(271,270),
(272,259),
(272,264),
(272,267),
(272,268),
(272,269),
(272,270),
(272,378),
(272,383),
(273,261),
(273,264),
(273,267),
(273,268),
(273,269),
(273,270),
(274,277),
(274,280),
(274,289),
(274,293),
(274,377),
(274,391),
(274,392),
(274,393),
(274,394),
(274,396),
(274,397),
(274,398),
(274,399),
(274,400),
(274,401),
(274,402),
(274,403),
(274,404),
(274,405),
(274,406),
(274,407),
(274,409),
(274,410),
(274,411),
(274,412),
(274,413),
(274,414),
(274,415),
(274,417),
(274,418),
(274,419),
(274,420),
(274,421),
(274,422),
(274,423),
(275,277),
(275,281),
(275,283),
(275,289),
(276,277),
(276,278),
(276,279),
(276,280),
(276,377),
(276,391),
(276,392),
(276,393),
(276,394),
(276,396),
(276,397),
(276,398),
(276,399),
(276,400),
(276,401),
(276,402),
(276,403),
(276,404),
(276,405),
(276,406),
(276,407),
(276,409),
(276,410),
(276,411),
(276,412),
(276,413),
(276,414),
(276,415),
(276,417),
(276,418),
(276,419),
(276,420),
(276,421),
(276,422),
(276,423),
(277,274),
(277,275),
(277,276),
(277,278),
(277,279),
(277,280),
(277,281),
(277,377),
(277,391),
(277,392),
(277,393),
(277,394),
(277,396),
(277,397),
(277,398),
(277,399),
(277,400),
(277,401),
(277,402),
(277,403),
(277,404),
(277,405),
(277,406),
(277,407),
(277,409),
(277,410),
(277,411),
(277,412),
(277,413),
(277,414),
(277,415),
(277,417),
(277,418),
(277,419),
(277,420),
(277,421),
(277,422),
(277,423),
(278,276),
(278,277),
(278,289),
(279,276),
(279,277),
(279,280),
(279,282),
(279,290),
(279,377),
(279,380),
(279,391),
(279,392),
(279,393),
(279,394),
(279,396),
(279,397),
(279,398),
(279,399),
(279,400),
(279,401),
(279,402),
(279,403),
(279,404),
(279,405),
(279,406),
(279,407),
(279,409),
(279,410),
(279,411),
(279,412),
(279,413),
(279,414),
(279,415),
(279,417),
(279,418),
(279,419),
(279,420),
(279,421),
(279,422),
(279,423),
(280,274),
(280,276),
(280,277),
(280,279),
(280,282),
(280,380),
(281,275),
(281,277),
(281,290),
(281,291),
(282,279),
(282,280),
(282,293),
(282,377),
(282,391),
(282,392),
(282,393),
(282,394),
(282,396),
(282,397),
(282,398),
(282,399),
(282,400),
(282,401),
(282,402),
(282,403),
(282,404),
(282,405),
(282,406),
(282,407),
(282,409),
(282,410),
(282,411),
(282,412),
(282,413),
(282,414),
(282,415),
(282,417),
(282,418),
(282,419),
(282,420),
(282,421),
(282,422),
(282,423),
(283,275),
(283,288),
(283,292),
(283,295),
(284,285),
(284,286),
(284,287),
(285,284),
(285,286),
(285,287),
(285,288),
(285,294),
(285,295),
(286,284),
(286,285),
(286,287),
(286,294),
(287,284),
(287,285),
(287,286),
(287,288),
(288,283),
(288,285),
(288,287),
(288,294),
(288,296),
(288,297),
(288,298),
(289,274),
(289,275),
(289,278),
(290,279),
(290,281),
(290,292),
(290,293),
(291,281),
(291,292),
(291,293),
(292,283),
(292,290),
(292,291),
(292,293),
(293,274),
(293,282),
(293,290),
(293,291),
(293,292),
(293,380),
(294,285),
(294,286),
(294,288),
(294,298),
(295,283),
(295,285),
(295,296),
(295,297),
(295,298),
(296,288),
(296,295),
(296,297),
(297,288),
(297,295),
(297,296),
(297,298),
(298,288),
(298,294),
(298,295),
(298,297),
(299,303),
(299,304),
(299,305),
(299,306),
(300,303),
(300,305),
(300,306),
(303,299),
(303,300),
(303,304),
(303,316),
(303,382),
(304,299),
(304,303),
(304,306),
(305,299),
(305,300),
(305,382),
(306,299),
(306,300),
(306,304),
(306,382),
(308,312),
(308,316),
(308,317),
(308,376),
(309,310),
(309,314),
(309,379),
(310,309),
(310,311),
(310,313),
(310,376),
(311,310),
(311,312),
(311,314),
(311,379),
(312,308),
(312,311),
(312,313),
(312,314),
(313,310),
(313,312),
(313,314),
(313,317),
(313,379),
(314,309),
(314,311),
(314,312),
(314,313),
(316,303),
(316,308),
(316,376),
(317,308),
(317,313),
(317,376),
(318,321),
(318,349),
(318,350),
(318,352),
(319,320),
(319,321),
(319,352),
(319,353),
(319,354),
(319,355),
(320,319),
(320,354),
(320,355),
(320,356),
(321,318),
(321,319),
(321,322),
(321,353),
(321,354),
(321,355),
(322,321),
(322,350),
(322,351),
(323,325),
(323,328),
(323,329),
(323,336),
(324,326),
(324,329),
(324,332),
(324,333),
(324,337),
(324,338),
(325,323),
(325,329),
(325,331),
(325,332),
(325,338),
(326,324),
(326,330),
(326,333),
(326,336),
(326,337),
(327,328),
(327,329),
(327,330),
(327,331),
(327,335),
(328,323),
(328,327),
(328,330),
(328,331),
(328,338),
(329,323),
(329,324),
(329,325),
(329,327),
(329,333),
(330,326),
(330,327),
(330,328),
(330,334),
(330,337),
(331,325),
(331,327),
(331,328),
(331,334),
(331,335),
(331,338),
(332,324),
(332,325),
(332,337),
(333,324),
(333,326),
(333,329),
(333,334),
(334,330),
(334,331),
(334,333),
(334,335),
(334,336),
(335,327),
(335,331),
(335,334),
(335,336),
(336,323),
(336,326),
(336,334),
(336,335),
(337,324),
(337,326),
(337,330),
(337,332),
(338,324),
(338,325),
(338,328),
(338,331),
(339,344),
(340,348),
(341,345),
(341,347),
(341,348),
(342,343),
(343,342),
(343,345),
(344,339),
(345,341),
(345,343),
(345,346),
(345,347),
(345,348),
(346,345),
(346,347),
(346,348),
(347,341),
(347,345),
(347,346),
(348,340),
(348,341),
(348,345),
(348,346),
(349,318),
(349,351),
(349,352),
(350,318),
(350,322),
(350,351),
(350,352),
(351,322),
(351,349),
(351,350),
(351,352),
(351,356),
(352,318),
(352,319),
(352,349),
(352,350),
(352,351),
(353,319),
(353,321),
(354,319),
(354,320),
(354,321),
(354,355),
(354,356),
(355,319),
(355,320),
(355,321),
(355,354),
(356,320),
(356,351),
(356,354),
(359,360),
(359,361),
(360,359),
(360,361),
(361,359),
(361,360),
(362,363),
(363,30),
(363,31),
(363,362),
(363,366),
(364,365),
(364,367),
(364,368),
(364,369),
(365,364),
(365,367),
(365,369),
(366,363),
(367,364),
(367,365),
(367,368),
(367,369),
(368,364),
(368,367),
(368,369),
(369,364),
(369,365),
(369,367),
(369,368),
(370,378),
(370,383),
(371,372),
(371,373),
(371,374),
(372,371),
(372,373),
(372,374),
(373,371),
(373,372),
(373,374),
(374,371),
(374,372),
(374,373),
(376,308),
(376,310),
(376,316),
(376,317),
(376,379),
(377,274),
(377,276),
(377,277),
(377,279),
(377,282),
(377,380),
(378,49),
(378,272),
(378,370),
(379,309),
(379,311),
(379,313),
(379,376),
(380,279),
(380,280),
(380,293),
(380,377),
(380,391),
(380,392),
(380,393),
(380,394),
(380,396),
(380,397),
(380,398),
(380,399),
(380,400),
(380,401),
(380,402),
(380,403),
(380,404),
(380,405),
(380,406),
(380,407),
(380,409),
(380,410),
(380,411),
(380,412),
(380,413),
(380,414),
(380,415),
(380,417),
(380,418),
(380,419),
(380,420),
(380,421),
(380,422),
(380,423),
(381,259),
(381,260),
(381,261),
(381,262),
(381,264),
(381,267),
(381,268),
(381,269),
(381,270),
(382,303),
(382,305),
(382,306),
(383,49),
(383,272),
(383,370),
(391,274),
(391,276),
(391,277),
(391,279),
(391,282),
(391,380),
(392,274),
(392,276),
(392,277),
(392,279),
(392,282),
(392,380),
(393,274),
(393,276),
(393,277),
(393,279),
(393,282),
(393,380),
(394,274),
(394,276),
(394,277),
(394,279),
(394,282),
(394,380),
(396,274),
(396,276),
(396,277),
(396,279),
(396,282),
(396,380),
(397,274),
(397,276),
(397,277),
(397,279),
(397,282),
(397,380),
(398,274),
(398,276),
(398,277),
(398,279),
(398,282),
(398,380),
(399,274),
(399,276),
(399,277),
(399,279),
(399,282),
(399,380),
(400,274),
(400,276),
(400,277),
(400,279),
(400,282),
(400,380),
(401,274),
(401,276),
(401,277),
(401,279),
(401,282),
(401,380),
(402,274),
(402,276),
(402,277),
(402,279),
(402,282),
(402,380),
(403,274),
(403,276),
(403,277),
(403,279),
(403,282),
(403,380),
(404,274),
(404,276),
(404,277),
(404,279),
(404,282),
(404,380),
(405,274),
(405,276),
(405,277),
(405,279),
(405,282),
(405,380),
(406,274),
(406,276),
(406,277),
(406,279),
(406,282),
(406,380),
(407,274),
(407,276),
(407,277),
(407,279),
(407,282),
(407,380),
(409,274),
(409,276),
(409,277),
(409,279),
(409,282),
(409,380),
(410,274),
(410,276),
(410,277),
(410,279),
(410,282),
(410,380),
(411,274),
(411,276),
(411,277),
(411,279),
(411,282),
(411,380),
(412,274),
(412,276),
(412,277),
(412,279),
(412,282),
(412,380),
(413,274),
(413,276),
(413,277),
(413,279),
(413,282),
(413,380),
(414,274),
(414,276),
(414,277),
(414,279),
(414,282),
(414,380),
(415,274),
(415,276),
(415,277),
(415,279),
(415,282),
(415,380),
(417,274),
(417,276),
(417,277),
(417,279),
(417,282),
(417,380),
(418,274),
(418,276),
(418,277),
(418,279),
(418,282),
(418,380),
(419,274),
(419,276),
(419,277),
(419,279),
(419,282),
(419,380),
(420,274),
(420,276),
(420,277),
(420,279),
(420,282),
(420,380),
(421,274),
(421,276),
(421,277),
(421,279),
(421,282),
(421,380),
(422,274),
(422,276),
(422,277),
(422,279),
(422,282),
(422,380),
(423,274),
(423,276),
(423,277),
(423,279),
(423,282),
(423,380);
/*!40000 ALTER TABLE `oc_product_related` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_reward`
--
DROP TABLE IF EXISTS `oc_product_reward`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_reward` (
`product_reward_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL DEFAULT 0,
`customer_group_id` int(11) NOT NULL DEFAULT 0,
`points` int(8) NOT NULL DEFAULT 0,
PRIMARY KEY (`product_reward_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1491 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_reward`
--
LOCK TABLES `oc_product_reward` WRITE;
/*!40000 ALTER TABLE `oc_product_reward` DISABLE KEYS */;
INSERT INTO `oc_product_reward` VALUES
(1474,47,1,300),
(1475,28,1,400),
(1476,43,1,600),
(1471,30,1,200),
(1477,44,1,700),
(1478,45,1,800),
(1481,49,1,1000),
(1490,42,1,100);
/*!40000 ALTER TABLE `oc_product_reward` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_special`
--
DROP TABLE IF EXISTS `oc_product_special`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_special` (
`product_special_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
`priority` int(5) NOT NULL DEFAULT 1,
`price` decimal(15,4) NOT NULL DEFAULT 0.0000,
`date_start` date NOT NULL DEFAULT '0000-00-00',
`date_end` date NOT NULL DEFAULT '0000-00-00',
PRIMARY KEY (`product_special_id`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=967 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_special`
--
LOCK TABLES `oc_product_special` WRITE;
/*!40000 ALTER TABLE `oc_product_special` DISABLE KEYS */;
INSERT INTO `oc_product_special` VALUES
(831,30,1,2,90.0000,'0000-00-00','2018-05-05'),
(900,330,1,20,209.0000,'0000-00-00','2024-06-12'),
(859,272,1,50,20.0000,'2017-01-09','2018-05-05'),
(916,351,1,20,219.0000,'0000-00-00','2021-01-10'),
(926,313,1,20,89.0000,'0000-00-00','2024-06-12'),
(881,359,1,30,1599.0000,'0000-00-00','2022-04-02'),
(892,356,1,30,199.0000,'0000-00-00','2023-05-02'),
(847,325,1,30,209.0000,'0000-00-00','2020-12-04'),
(890,354,1,30,159.0000,'0000-00-00','2038-12-28'),
(856,362,1,30,299.0000,'0000-00-00','2024-06-12'),
(965,360,1,30,999.0000,'0000-00-00','0000-00-00'),
(879,322,1,40,359.0000,'0000-00-00','2021-01-10'),
(893,367,1,20,2199.0000,'0000-00-00','2029-11-30'),
(923,311,1,20,200.0000,'0000-00-00','2021-01-10'),
(894,368,1,30,5199.0000,'0000-00-00','2023-05-02'),
(868,274,1,50,100.0000,'0000-00-00','2026-08-08'),
(924,307,1,10,399.0000,'0000-00-00','2024-06-13'),
(877,334,1,30,219.0000,'0000-00-00','2021-01-10'),
(871,294,1,20,29.0000,'0000-00-00','2020-12-31'),
(845,374,1,20,399.0000,'0000-00-00','2024-06-12'),
(850,340,1,30,99.0000,'0000-00-00','2021-01-10'),
(876,338,1,30,309.0000,'0000-00-00','2021-01-10'),
(928,317,1,20,99.0000,'0000-00-00','2021-01-10'),
(872,283,1,29,89.0000,'0000-00-00','2024-06-12'),
(936,377,1,30,99.0000,'0000-00-00','2021-01-31'),
(966,42,1,1,90.0000,'0000-00-00','0000-00-00'),
(873,278,1,40,389.0000,'0000-00-00','2022-04-07'),
(963,280,1,30,99.0000,'0000-00-00','2021-01-31'),
(925,306,1,30,139.0000,'0000-00-00','2021-01-03'),
(853,319,1,30,199.0000,'0000-00-00','2022-01-09'),
(857,348,1,30,299.0000,'0000-00-00','2024-11-29'),
(870,289,1,99,200.0000,'0000-00-00','0000-00-00'),
(844,262,1,20,119.0000,'0000-00-00','2014-10-23'),
(880,263,1,20,119.0000,'0000-00-00','2014-11-19'),
(864,273,1,20,109.0000,'0000-00-00','2018-05-05'),
(869,297,1,30,99.0000,'0000-00-00','2021-01-10'),
(875,287,1,80,59.0000,'0000-00-00','2023-05-09'),
(950,405,1,500,500.0000,'0000-00-00','0000-00-00'),
(935,383,1,99,99.0000,'0000-00-00','0000-00-00'),
(951,414,1,500,1000.0000,'0000-00-00','0000-00-00'),
(953,420,1,30,99.0000,'0000-00-00','2021-01-31');
/*!40000 ALTER TABLE `oc_product_special` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_to_category`
--
DROP TABLE IF EXISTS `oc_product_to_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_to_category` (
`product_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
PRIMARY KEY (`product_id`,`category_id`),
KEY `category_id` (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_to_category`
--
LOCK TABLES `oc_product_to_category` WRITE;
/*!40000 ALTER TABLE `oc_product_to_category` DISABLE KEYS */;
INSERT INTO `oc_product_to_category` VALUES
(28,20),
(28,24),
(30,20),
(30,33),
(31,33),
(32,34),
(33,20),
(33,28),
(34,34),
(36,34),
(40,20),
(40,24),
(41,27),
(42,20),
(42,28),
(42,220),
(43,18),
(43,20),
(44,18),
(44,20),
(45,18),
(47,18),
(47,20),
(48,20),
(48,34),
(49,69),
(256,107),
(256,165),
(257,107),
(257,121),
(259,107),
(259,165),
(260,35),
(261,35),
(262,35),
(263,111),
(263,214),
(264,109),
(264,164),
(266,111),
(266,132),
(267,35),
(268,111),
(268,132),
(269,111),
(269,214),
(270,35),
(271,35),
(271,105),
(271,153),
(272,35),
(272,69),
(273,35),
(273,69),
(274,109),
(274,164),
(275,109),
(275,164),
(275,216),
(276,109),
(276,164),
(277,109),
(277,164),
(278,109),
(278,164),
(279,109),
(279,164),
(280,109),
(280,164),
(281,109),
(281,164),
(282,109),
(282,164),
(283,109),
(283,216),
(284,109),
(284,123),
(285,109),
(285,123),
(286,109),
(286,124),
(287,109),
(287,124),
(288,109),
(288,216),
(289,109),
(289,164),
(290,109),
(290,122),
(291,109),
(291,122),
(292,109),
(292,122),
(293,109),
(293,122),
(294,109),
(294,125),
(295,109),
(295,125),
(296,109),
(296,125),
(297,109),
(297,125),
(298,109),
(298,216),
(299,59),
(300,59),
(300,60),
(301,59),
(301,105),
(303,59),
(303,108),
(304,59),
(304,112),
(305,59),
(305,113),
(306,59),
(306,108),
(306,112),
(307,59),
(308,59),
(309,59),
(309,60),
(309,108),
(309,130),
(310,59),
(311,59),
(312,59),
(312,112),
(313,59),
(313,60),
(314,59),
(314,113),
(316,59),
(317,59),
(317,112),
(318,107),
(318,118),
(319,107),
(319,120),
(320,107),
(320,121),
(321,107),
(321,120),
(322,107),
(322,120),
(323,111),
(323,134),
(324,111),
(324,134),
(325,111),
(325,134),
(326,111),
(326,131),
(327,111),
(327,134),
(328,111),
(328,134),
(329,111),
(329,131),
(330,111),
(330,131),
(331,111),
(331,134),
(332,111),
(332,131),
(333,111),
(333,131),
(334,111),
(334,134),
(335,111),
(335,131),
(336,111),
(336,134),
(337,111),
(337,131),
(338,111),
(338,131),
(339,111),
(339,133),
(340,111),
(340,215),
(341,111),
(341,133),
(342,111),
(342,132),
(343,111),
(343,132),
(344,111),
(344,133),
(344,214),
(345,111),
(345,133),
(346,111),
(346,133),
(347,111),
(347,133),
(348,111),
(348,215),
(349,107),
(349,118),
(350,107),
(350,119),
(351,107),
(351,119),
(352,107),
(352,119),
(353,107),
(353,121),
(354,107),
(354,121),
(355,107),
(355,121),
(356,107),
(356,121),
(357,59),
(357,105),
(359,69),
(360,25),
(360,69),
(361,69),
(362,69),
(363,69),
(364,69),
(365,69),
(366,69),
(367,69),
(368,69),
(369,69),
(370,69),
(371,107),
(371,165),
(372,107),
(372,165),
(373,107),
(373,165),
(374,107),
(374,165),
(376,59),
(376,108),
(376,112),
(377,221),
(378,69),
(379,134),
(379,221),
(380,221),
(381,221),
(382,221),
(383,221),
(391,175),
(391,222),
(392,175),
(392,222),
(393,175),
(393,222),
(394,175),
(394,222),
(396,175),
(396,222),
(397,175),
(397,180),
(398,175),
(398,180),
(399,175),
(399,180),
(400,175),
(400,180),
(401,175),
(401,180),
(402,175),
(402,176),
(403,175),
(403,176),
(404,175),
(404,176),
(405,175),
(405,176),
(406,175),
(406,176),
(407,175),
(407,176),
(409,175),
(409,189),
(410,175),
(410,189),
(411,175),
(411,189),
(412,175),
(412,189),
(413,175),
(413,189),
(414,175),
(414,189),
(415,175),
(415,189),
(417,175),
(417,189),
(418,175),
(418,213),
(419,175),
(419,213),
(420,175),
(420,213),
(421,175),
(421,213),
(422,175),
(422,213),
(423,175),
(423,213);
/*!40000 ALTER TABLE `oc_product_to_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_to_download`
--
DROP TABLE IF EXISTS `oc_product_to_download`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_to_download` (
`product_id` int(11) NOT NULL,
`download_id` int(11) NOT NULL,
PRIMARY KEY (`product_id`,`download_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_to_download`
--
LOCK TABLES `oc_product_to_download` WRITE;
/*!40000 ALTER TABLE `oc_product_to_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_product_to_download` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_to_layout`
--
DROP TABLE IF EXISTS `oc_product_to_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_to_layout` (
`product_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`layout_id` int(11) NOT NULL,
PRIMARY KEY (`product_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_to_layout`
--
LOCK TABLES `oc_product_to_layout` WRITE;
/*!40000 ALTER TABLE `oc_product_to_layout` DISABLE KEYS */;
INSERT INTO `oc_product_to_layout` VALUES
(311,0,0),
(309,0,0),
(307,0,0),
(304,0,0),
(303,0,0),
(301,0,0),
(299,0,0),
(297,0,0),
(294,0,0),
(293,0,0),
(291,0,0),
(289,0,0),
(43,0,0),
(287,0,0),
(284,0,0),
(283,0,0),
(281,0,0),
(259,0,0),
(279,0,0),
(30,0,0),
(31,0,0),
(273,0,0),
(310,0,0),
(308,0,0),
(306,0,0),
(305,0,0),
(377,0,0),
(300,0,0),
(266,0,0),
(298,0,0),
(296,0,0),
(295,0,0),
(292,0,0),
(290,0,0),
(288,0,0),
(268,0,0),
(286,0,0),
(285,0,0),
(282,0,0),
(280,0,0),
(278,0,0),
(34,0,0),
(33,0,0),
(269,0,0),
(257,0,0),
(263,0,0),
(260,0,0),
(36,0,0),
(47,0,0),
(48,0,0),
(28,0,0),
(40,0,0),
(41,0,0),
(262,0,0),
(276,0,0),
(277,0,0),
(275,0,0),
(274,0,0),
(45,0,0),
(44,0,0),
(271,0,0),
(272,0,0),
(32,0,0),
(261,0,0),
(270,0,0),
(267,0,0),
(42,0,0),
(376,0,0),
(374,0,0),
(264,0,0),
(373,0,0),
(372,0,0),
(371,0,0),
(370,0,0),
(369,0,0),
(368,0,0),
(367,0,0),
(366,0,0),
(364,0,0),
(363,0,0),
(362,0,0),
(361,0,0),
(360,0,0),
(359,0,0),
(357,0,0),
(356,0,0),
(355,0,0),
(353,0,0),
(354,0,0),
(352,0,0),
(351,0,0),
(349,0,0),
(348,0,0),
(347,0,0),
(346,0,0),
(344,0,0),
(345,0,0),
(343,0,0),
(342,0,0),
(350,0,0),
(256,0,0),
(341,0,0),
(340,0,0),
(339,0,0),
(338,0,0),
(337,0,0),
(336,0,0),
(335,0,0),
(334,0,0),
(333,0,0),
(332,0,0),
(331,0,0),
(330,0,0),
(328,0,0),
(329,0,0),
(327,0,0),
(326,0,0),
(325,0,0),
(324,0,0),
(323,0,0),
(322,0,0),
(321,0,0),
(320,0,0),
(318,0,0),
(319,0,0),
(317,0,0),
(316,0,0),
(378,0,0),
(314,0,0),
(313,0,0),
(312,0,0),
(365,0,0),
(49,0,0),
(379,0,0),
(380,0,0),
(381,0,0),
(382,0,0),
(383,0,0),
(391,0,0),
(392,0,0),
(393,0,0),
(394,0,0),
(396,0,0),
(397,0,0),
(398,0,0),
(399,0,0),
(400,0,0),
(401,0,0),
(402,0,0),
(403,0,0),
(404,0,0),
(405,0,0),
(406,0,0),
(407,0,0),
(409,0,0),
(410,0,0),
(411,0,0),
(412,0,0),
(413,0,0),
(414,0,0),
(415,0,0),
(418,0,0),
(417,0,0),
(419,0,0),
(420,0,0),
(421,0,0),
(422,0,0),
(423,0,0);
/*!40000 ALTER TABLE `oc_product_to_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_product_to_store`
--
DROP TABLE IF EXISTS `oc_product_to_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_product_to_store` (
`product_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`product_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_product_to_store`
--
LOCK TABLES `oc_product_to_store` WRITE;
/*!40000 ALTER TABLE `oc_product_to_store` DISABLE KEYS */;
INSERT INTO `oc_product_to_store` VALUES
(28,0),
(30,0),
(31,0),
(32,0),
(33,0),
(34,0),
(36,0),
(40,0),
(41,0),
(42,0),
(43,0),
(44,0),
(45,0),
(47,0),
(48,0),
(49,0),
(256,0),
(257,0),
(259,0),
(260,0),
(261,0),
(262,0),
(263,0),
(264,0),
(266,0),
(267,0),
(268,0),
(269,0),
(270,0),
(271,0),
(272,0),
(273,0),
(274,0),
(275,0),
(276,0),
(277,0),
(278,0),
(279,0),
(280,0),
(281,0),
(282,0),
(283,0),
(284,0),
(285,0),
(286,0),
(287,0),
(288,0),
(289,0),
(290,0),
(291,0),
(292,0),
(293,0),
(294,0),
(295,0),
(296,0),
(297,0),
(298,0),
(299,0),
(300,0),
(301,0),
(303,0),
(304,0),
(305,0),
(306,0),
(307,0),
(308,0),
(309,0),
(310,0),
(311,0),
(312,0),
(313,0),
(314,0),
(316,0),
(317,0),
(318,0),
(319,0),
(320,0),
(321,0),
(322,0),
(323,0),
(324,0),
(325,0),
(326,0),
(327,0),
(328,0),
(329,0),
(330,0),
(331,0),
(332,0),
(333,0),
(334,0),
(335,0),
(336,0),
(337,0),
(338,0),
(339,0),
(340,0),
(341,0),
(342,0),
(343,0),
(344,0),
(345,0),
(346,0),
(347,0),
(348,0),
(349,0),
(350,0),
(351,0),
(352,0),
(353,0),
(354,0),
(355,0),
(356,0),
(357,0),
(359,0),
(360,0),
(361,0),
(362,0),
(363,0),
(364,0),
(365,0),
(366,0),
(367,0),
(368,0),
(369,0),
(370,0),
(371,0),
(372,0),
(373,0),
(374,0),
(376,0),
(377,0),
(378,0),
(379,0),
(380,0),
(381,0),
(382,0),
(383,0),
(391,0),
(392,0),
(393,0),
(394,0),
(396,0),
(397,0),
(398,0),
(399,0),
(400,0),
(401,0),
(402,0),
(403,0),
(404,0),
(405,0),
(406,0),
(407,0),
(409,0),
(410,0),
(411,0),
(412,0),
(413,0),
(414,0),
(415,0),
(417,0),
(418,0),
(419,0),
(420,0),
(421,0),
(422,0),
(423,0);
/*!40000 ALTER TABLE `oc_product_to_store` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_recurring`
--
DROP TABLE IF EXISTS `oc_recurring`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_recurring` (
`recurring_id` int(11) NOT NULL AUTO_INCREMENT,
`price` decimal(10,4) NOT NULL,
`frequency` enum('day','week','semi_month','month','year') NOT NULL,
`duration` int(10) unsigned NOT NULL,
`cycle` int(10) unsigned NOT NULL,
`trial_status` tinyint(4) NOT NULL,
`trial_price` decimal(10,4) NOT NULL,
`trial_frequency` enum('day','week','semi_month','month','year') NOT NULL,
`trial_duration` int(10) unsigned NOT NULL,
`trial_cycle` int(10) unsigned NOT NULL,
`status` tinyint(4) NOT NULL,
`sort_order` int(11) NOT NULL,
PRIMARY KEY (`recurring_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_recurring`
--
LOCK TABLES `oc_recurring` WRITE;
/*!40000 ALTER TABLE `oc_recurring` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_recurring` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_recurring_description`
--
DROP TABLE IF EXISTS `oc_recurring_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_recurring_description` (
`recurring_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`recurring_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_recurring_description`
--
LOCK TABLES `oc_recurring_description` WRITE;
/*!40000 ALTER TABLE `oc_recurring_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_recurring_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_return`
--
DROP TABLE IF EXISTS `oc_return`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_return` (
`return_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`customer_id` int(11) NOT NULL,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`telephone` varchar(32) NOT NULL,
`product` varchar(255) NOT NULL,
`model` varchar(64) NOT NULL,
`quantity` int(4) NOT NULL,
`opened` tinyint(1) NOT NULL,
`return_reason_id` int(11) NOT NULL,
`return_action_id` int(11) NOT NULL,
`return_status_id` int(11) NOT NULL,
`comment` text DEFAULT NULL,
`date_ordered` date NOT NULL DEFAULT '0000-00-00',
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`return_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_return`
--
LOCK TABLES `oc_return` WRITE;
/*!40000 ALTER TABLE `oc_return` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_return` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_return_action`
--
DROP TABLE IF EXISTS `oc_return_action`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_return_action` (
`return_action_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT 0,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`return_action_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_return_action`
--
LOCK TABLES `oc_return_action` WRITE;
/*!40000 ALTER TABLE `oc_return_action` DISABLE KEYS */;
INSERT INTO `oc_return_action` VALUES
(1,1,'İade Edildi'),
(2,1,'Kredi Geri Alındı'),
(3,1,'Değişime Gönderildi');
/*!40000 ALTER TABLE `oc_return_action` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_return_history`
--
DROP TABLE IF EXISTS `oc_return_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_return_history` (
`return_history_id` int(11) NOT NULL AUTO_INCREMENT,
`return_id` int(11) NOT NULL,
`return_status_id` int(11) NOT NULL,
`notify` tinyint(1) NOT NULL,
`comment` text NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`return_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_return_history`
--
LOCK TABLES `oc_return_history` WRITE;
/*!40000 ALTER TABLE `oc_return_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_return_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_return_reason`
--
DROP TABLE IF EXISTS `oc_return_reason`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_return_reason` (
`return_reason_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT 0,
`name` varchar(128) NOT NULL,
PRIMARY KEY (`return_reason_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_return_reason`
--
LOCK TABLES `oc_return_reason` WRITE;
/*!40000 ALTER TABLE `oc_return_reason` DISABLE KEYS */;
INSERT INTO `oc_return_reason` VALUES
(1,1,'Hasar Görmüş'),
(2,1,'Yanlış Ürün Gönderildi'),
(3,1,'Hatalı Sipariş'),
(4,1,'Arızalı, lütfen detayları belirtin'),
(5,1,'Diğer, lütfen detayları belirtin');
/*!40000 ALTER TABLE `oc_return_reason` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_return_status`
--
DROP TABLE IF EXISTS `oc_return_status`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_return_status` (
`return_status_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT 0,
`name` varchar(32) NOT NULL,
PRIMARY KEY (`return_status_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_return_status`
--
LOCK TABLES `oc_return_status` WRITE;
/*!40000 ALTER TABLE `oc_return_status` DISABLE KEYS */;
INSERT INTO `oc_return_status` VALUES
(1,1,'Beklemede'),
(3,1,'Tamamlandı'),
(2,1,'Ürünler Bekleniyor');
/*!40000 ALTER TABLE `oc_return_status` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_review`
--
DROP TABLE IF EXISTS `oc_review`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_review` (
`review_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`customer_id` int(11) NOT NULL,
`author` varchar(64) NOT NULL,
`text` text NOT NULL,
`rating` int(1) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT 0,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`review_id`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_review`
--
LOCK TABLES `oc_review` WRITE;
/*!40000 ALTER TABLE `oc_review` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_review` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_seo_url`
--
DROP TABLE IF EXISTS `oc_seo_url`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_seo_url` (
`seo_url_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`query` varchar(255) NOT NULL,
`keyword` varchar(255) NOT NULL,
PRIMARY KEY (`seo_url_id`),
KEY `query` (`query`),
KEY `keyword` (`keyword`)
) ENGINE=MyISAM AUTO_INCREMENT=1061 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_seo_url`
--
LOCK TABLES `oc_seo_url` WRITE;
/*!40000 ALTER TABLE `oc_seo_url` DISABLE KEYS */;
INSERT INTO `oc_seo_url` VALUES
(868,0,1,'product_id=48','ipod-classic'),
(836,0,1,'category_id=20','desktops'),
(834,0,1,'category_id=26','pc'),
(888,0,1,'category_id=27','mac'),
(880,0,1,'manufacturer_id=8','apple'),
(918,0,1,'information_id=4','about_us'),
(920,0,1,'product_id=42','test'),
(789,0,1,'category_id=34','mp3-players'),
(781,0,1,'category_id=36','test2'),
(774,0,1,'category_id=18','laptop-notebook'),
(775,0,1,'category_id=46','macs'),
(776,0,1,'category_id=45','windows'),
(854,0,1,'category_id=25','component'),
(778,0,1,'category_id=29','mouse'),
(779,0,1,'category_id=28','monitor'),
(780,0,1,'category_id=35','test1'),
(782,0,1,'category_id=30','printer'),
(783,0,1,'category_id=31','scanner'),
(784,0,1,'category_id=32','web-camera'),
(785,0,1,'category_id=57','tablet'),
(786,0,1,'category_id=17','software'),
(855,0,1,'category_id=24','smartphone'),
(846,0,1,'category_id=33','camera'),
(790,0,1,'category_id=43','test11'),
(791,0,1,'category_id=44','test12'),
(792,0,1,'category_id=47','test15'),
(793,0,1,'category_id=48','test16'),
(794,0,1,'category_id=49','test17'),
(795,0,1,'category_id=50','test18'),
(796,0,1,'category_id=51','test19'),
(797,0,1,'category_id=52','test20'),
(798,0,1,'category_id=58','test25'),
(799,0,1,'category_id=53','test21'),
(800,0,1,'category_id=54','test22'),
(801,0,1,'category_id=55','test23'),
(802,0,1,'category_id=56','test24'),
(803,0,1,'category_id=38','test4'),
(804,0,1,'category_id=37','test5'),
(805,0,1,'category_id=39','test6'),
(806,0,1,'category_id=40','test7'),
(807,0,1,'category_id=41','test8'),
(808,0,1,'category_id=42','test9'),
(858,0,1,'product_id=30','canon-eos-5d'),
(861,0,1,'product_id=47','hp-lp3065'),
(862,0,1,'product_id=28','htc-touch-hd'),
(873,0,1,'product_id=43','macbook'),
(874,0,1,'product_id=44','macbook-air'),
(875,0,1,'product_id=45','macbook-pro'),
(876,0,1,'product_id=31','nikon-d300'),
(906,0,1,'product_id=376','journal-tee'),
(818,0,1,'product_id=35','product-8'),
(892,0,1,'product_id=49','samsung-galaxy-tab-10-1'),
(894,0,1,'product_id=33','samsung-syncmaster-941bw'),
(863,0,1,'product_id=41','imac'),
(864,0,1,'product_id=40','iphone'),
(867,0,1,'product_id=36','ipod-nano'),
(869,0,1,'product_id=34','ipod-shuffle'),
(871,0,1,'product_id=32','ipod-touch'),
(881,0,1,'manufacturer_id=9','canon'),
(883,0,1,'manufacturer_id=5','htc'),
(882,0,1,'manufacturer_id=7','hewlett-packard'),
(884,0,1,'manufacturer_id=6','palm'),
(885,0,1,'manufacturer_id=10','sony'),
(841,0,1,'information_id=6','delivery'),
(842,0,1,'information_id=3','privacy'),
(843,0,1,'information_id=5','terms'),
(904,0,1,'category_id=59','fashion'),
(910,0,1,'product/catalog','products'),
(913,0,1,'category_id=109','fashion-category'),
(919,0,1,'product/catalog','all-products'),
(921,0,2,'product_id=48','ipod-classic-es'),
(922,0,2,'category_id=20','desktops-es'),
(923,0,2,'category_id=26','pc-es'),
(924,0,2,'category_id=27','mac-es'),
(925,0,2,'manufacturer_id=8','apple-es'),
(926,0,2,'information_id=4','about_us-es'),
(927,0,2,'product_id=42','test-es'),
(928,0,2,'category_id=34','mp3-players-es'),
(929,0,2,'category_id=36','test2-es'),
(930,0,2,'category_id=18','laptop-notebook-es'),
(931,0,2,'category_id=46','macs-es'),
(932,0,2,'category_id=45','windows-es'),
(933,0,2,'category_id=25','component-es'),
(934,0,2,'category_id=29','mouse-es'),
(935,0,2,'category_id=28','monitor-es'),
(936,0,2,'category_id=35','test1-es'),
(937,0,2,'category_id=30','printer-es'),
(938,0,2,'category_id=31','scanner-es'),
(939,0,2,'category_id=32','web-camera-es'),
(940,0,2,'category_id=57','tablet-es'),
(941,0,2,'category_id=17','software-es'),
(942,0,2,'category_id=24','smartphone-es'),
(943,0,2,'category_id=33','camera-es'),
(944,0,2,'category_id=43','test11-es'),
(945,0,2,'category_id=44','test12-es'),
(946,0,2,'category_id=47','test15-es'),
(947,0,2,'category_id=48','test16-es'),
(948,0,2,'category_id=49','test17-es'),
(949,0,2,'category_id=50','test18-es'),
(950,0,2,'category_id=51','test19-es'),
(951,0,2,'category_id=52','test20-es'),
(952,0,2,'category_id=58','test25-es'),
(953,0,2,'category_id=53','test21-es'),
(954,0,2,'category_id=54','test22-es'),
(955,0,2,'category_id=55','test23-es'),
(956,0,2,'category_id=56','test24-es'),
(957,0,2,'category_id=38','test4-es'),
(958,0,2,'category_id=37','test5-es'),
(959,0,2,'category_id=39','test6-es'),
(960,0,2,'category_id=40','test7-es'),
(961,0,2,'category_id=41','test8-es'),
(962,0,2,'category_id=42','test9-es'),
(963,0,2,'product_id=30','canon-eos-5d-es'),
(964,0,2,'product_id=47','hp-lp3065-es'),
(965,0,2,'product_id=28','htc-touch-hd-es'),
(966,0,2,'product_id=43','macbook-es'),
(967,0,2,'product_id=44','macbook-air-es'),
(968,0,2,'product_id=45','macbook-pro-es'),
(969,0,2,'product_id=31','nikon-d300-es'),
(970,0,2,'product_id=376','journal-tee-es'),
(971,0,2,'product_id=35','product-8-es'),
(972,0,2,'product_id=49','samsung-galaxy-tab-10-1-es'),
(973,0,2,'product_id=33','samsung-syncmaster-941bw-es'),
(974,0,2,'product_id=41','imac-es'),
(975,0,2,'product_id=40','iphone-es'),
(976,0,2,'product_id=36','ipod-nano-es'),
(977,0,2,'product_id=34','ipod-shuffle-es'),
(978,0,2,'product_id=32','ipod-touch-es'),
(979,0,2,'manufacturer_id=9','canon-es'),
(980,0,2,'manufacturer_id=5','htc-es'),
(981,0,2,'manufacturer_id=7','hewlett-packard-es'),
(982,0,2,'manufacturer_id=6','palm-es'),
(983,0,2,'manufacturer_id=10','sony-es'),
(984,0,2,'information_id=6','delivery-es'),
(985,0,2,'information_id=3','privacy-es'),
(986,0,2,'information_id=5','terms-es'),
(987,0,2,'category_id=59','fashion-es'),
(988,0,2,'product/catalog','products-es'),
(989,0,2,'category_id=109','fashion-category-es'),
(990,0,2,'product/catalog','all-products-es'),
(991,0,3,'product_id=48','ipod-classic-ar'),
(992,0,3,'category_id=20','desktops-ar'),
(993,0,3,'category_id=26','pc-ar'),
(994,0,3,'category_id=27','mac-ar'),
(995,0,3,'manufacturer_id=8','apple-ar'),
(996,0,3,'information_id=4','about_us-ar'),
(997,0,3,'product_id=42','test-ar'),
(998,0,3,'category_id=34','mp3-players-ar'),
(999,0,3,'category_id=36','test2-ar'),
(1000,0,3,'category_id=18','laptop-notebook-ar'),
(1001,0,3,'category_id=46','macs-ar'),
(1002,0,3,'category_id=45','windows-ar'),
(1003,0,3,'category_id=25','component-ar'),
(1004,0,3,'category_id=29','mouse-ar'),
(1005,0,3,'category_id=28','monitor-ar'),
(1006,0,3,'category_id=35','test1-ar'),
(1007,0,3,'category_id=30','printer-ar'),
(1008,0,3,'category_id=31','scanner-ar'),
(1009,0,3,'category_id=32','web-camera-ar'),
(1010,0,3,'category_id=57','tablet-ar'),
(1011,0,3,'category_id=17','software-ar'),
(1012,0,3,'category_id=24','smartphone-ar'),
(1013,0,3,'category_id=33','camera-ar'),
(1014,0,3,'category_id=43','test11-ar'),
(1015,0,3,'category_id=44','test12-ar'),
(1016,0,3,'category_id=47','test15-ar'),
(1017,0,3,'category_id=48','test16-ar'),
(1018,0,3,'category_id=49','test17-ar'),
(1019,0,3,'category_id=50','test18-ar'),
(1020,0,3,'category_id=51','test19-ar'),
(1021,0,3,'category_id=52','test20-ar'),
(1022,0,3,'category_id=58','test25-ar'),
(1023,0,3,'category_id=53','test21-ar'),
(1024,0,3,'category_id=54','test22-ar'),
(1025,0,3,'category_id=55','test23-ar'),
(1026,0,3,'category_id=56','test24-ar'),
(1027,0,3,'category_id=38','test4-ar'),
(1028,0,3,'category_id=37','test5-ar'),
(1029,0,3,'category_id=39','test6-ar'),
(1030,0,3,'category_id=40','test7-ar'),
(1031,0,3,'category_id=41','test8-ar'),
(1032,0,3,'category_id=42','test9-ar'),
(1033,0,3,'product_id=30','canon-eos-5d-ar'),
(1034,0,3,'product_id=47','hp-lp3065-ar'),
(1035,0,3,'product_id=28','htc-touch-hd-ar'),
(1036,0,3,'product_id=43','macbook-ar'),
(1037,0,3,'product_id=44','macbook-air-ar'),
(1038,0,3,'product_id=45','macbook-pro-ar'),
(1039,0,3,'product_id=31','nikon-d300-ar'),
(1040,0,3,'product_id=376','journal-tee-ar'),
(1041,0,3,'product_id=35','product-8-ar'),
(1042,0,3,'product_id=49','samsung-galaxy-tab-10-1-ar'),
(1043,0,3,'product_id=33','samsung-syncmaster-941bw-ar'),
(1044,0,3,'product_id=41','imac-ar'),
(1045,0,3,'product_id=40','iphone-ar'),
(1046,0,3,'product_id=36','ipod-nano-ar'),
(1047,0,3,'product_id=34','ipod-shuffle-ar'),
(1048,0,3,'product_id=32','ipod-touch-ar'),
(1049,0,3,'manufacturer_id=9','canon-ar'),
(1050,0,3,'manufacturer_id=5','htc-ar'),
(1051,0,3,'manufacturer_id=7','hewlett-packard-ar'),
(1052,0,3,'manufacturer_id=6','palm-ar'),
(1053,0,3,'manufacturer_id=10','sony-ar'),
(1054,0,3,'information_id=6','delivery-ar'),
(1055,0,3,'information_id=3','privacy-ar'),
(1056,0,3,'information_id=5','terms-ar'),
(1057,0,3,'category_id=59','fashion-ar'),
(1058,0,3,'product/catalog','products-ar'),
(1059,0,3,'category_id=109','fashion-category-ar'),
(1060,0,3,'product/catalog','all-products-ar');
/*!40000 ALTER TABLE `oc_seo_url` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_session`
--
DROP TABLE IF EXISTS `oc_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_session` (
`session_id` varchar(32) NOT NULL,
`data` text NOT NULL,
`expire` datetime NOT NULL,
PRIMARY KEY (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_session`
--
LOCK TABLES `oc_session` WRITE;
/*!40000 ALTER TABLE `oc_session` DISABLE KEYS */;
INSERT INTO `oc_session` VALUES
('b024f6f5ddd36921d21befdd98','{\"language\":\"tr-tr\",\"currency\":\"TRY\",\"jrv\":[\"360\",\"297\",\"43\",\"320\"]}','2025-02-26 00:02:54'),
('e5b6cb6f9b99859075c8c295a7','{\"language\":\"tr-tr\",\"currency\":\"TRY\"}','2025-02-26 00:02:55'),
('f3962f89e09295da1d5f05a72c','{\"language\":\"tr-tr\",\"currency\":\"TRY\"}','2025-02-26 00:02:46');
/*!40000 ALTER TABLE `oc_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_setting`
--
DROP TABLE IF EXISTS `oc_setting`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_setting` (
`setting_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) NOT NULL DEFAULT 0,
`code` varchar(128) NOT NULL,
`key` varchar(128) NOT NULL,
`value` text NOT NULL,
`serialized` tinyint(1) NOT NULL,
PRIMARY KEY (`setting_id`)
) ENGINE=MyISAM AUTO_INCREMENT=433 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_setting`
--
LOCK TABLES `oc_setting` WRITE;
/*!40000 ALTER TABLE `oc_setting` DISABLE KEYS */;
INSERT INTO `oc_setting` VALUES
(404,0,'config','config_error_filename','hatalar.log',0),
(403,0,'config','config_error_log','1',0),
(402,0,'config','config_error_display','1',0),
(394,0,'config','config_compression','0',0),
(395,0,'config','config_secure','0',0),
(396,0,'config','config_password','1',0),
(397,0,'config','config_shared','0',0),
(398,0,'config','config_encryption','bKqXVc7tqtpVN7LSzYxzLmffDR21zPE8QXxalOZw9KLOwJXdDHX7SNVEq29upLuY8lomBi3vBAbEaRs2St9a7Pax89XVY5HOuYwnI2bsO7kD0JEEyBwBHS1R60ydAp6W8PZ4FaMxQyO2NPa6ii8c8FwI2IHy8dA6lRjXPA1xm5sKlYfvLwlc7scqvTFWQStyYpCb01cn9gM6qpu7ZRphhv7E29KhQIj8imcZexCdYrYCHHGaqLZxjj32wzRt3TX0kBzAXZrr1ESuYvn7iHSsWP3NN7CKPgiA5rEtnGoHSq2w40CLXuLKtUF6C1Q1UD3PtNpYaNdOyFpBAnt4UlhE5cZdNyQD0ltlqwl0R0aBhfwkp9KSzLqUkvjyFL1Ogr22ro9l9SbNVIjXQia9J6jHeb9kCfoZzCLDYEemhGDPBPAgW4e5ig6Yrvcz4VzwvCIBpt4awHyZZb7SJze0oqvbvkLuwO6bNvokRlgUa94Pm7R8b7bWSGW9UQgqe7jxY4oHHyREXjVasE7ZWX6qR9XLk0N7K8wjXQYP0RHzKK7ljRewNjq4hV01ahDY4Qd94zGpf9I1TO7z5kQ6Cl9rNaEi2NE4IpKHghyox1WtxcVNJNVx94TAxShOj11vxazmfgnn40OE01PSGuxrKqZXJRZx6cevulF0ILWdRQI15Eajtsfl3dOwX4ZTrnhSrjebRELyiBDfVmDATF5NJ8bxpwqrtkXGx1fA1PfMkG8k1yKNunZWCUQZD7uusLAMImC8x1MgwwVQAcku8ygA6W0obhGz5MCwGVnBymn1fqqlMd730EBfX0A45p0eBYaY5e350aT6qgt4yB2t02Y9UgHiolCbKL1uUUKiezSFCH0Phmp4K6F9KMKExkTSyeUk4I6O5QCwaxZJ625vKjnptjLG2HL0paUcIwTnW1Kg5MJ583PHzF2lJnZPtrgz6xws2tgHvxAE8P6XI70ADPYU1dp6svg4NfNtIbsriPOoOvAyfwdyQgYQQI5knvq2qfg5NcD0RoLz',0),
(399,0,'config','config_file_max_size','300000',0),
(400,0,'config','config_file_ext_allowed','txt\r\npng\r\njpe\r\njpeg\r\njpg\r\ngif\r\nbmp\r\nico\r\ntiff\r\ntif\r\nsvg\r\nsvgz\r\nzip\r\nrar\r\nmsi\r\ncab\r\nmp3\r\nqt\r\nmov\r\npdf\r\npsd\r\nai\r\neps\r\nps\r\ndoc\r\nrtf\r\nxls\r\nppt\r\nodt\r\nods',0),
(393,0,'config','config_robots','abot\r\ndbot\r\nebot\r\nhbot\r\nkbot\r\nlbot\r\nmbot\r\nnbot\r\nobot\r\npbot\r\nrbot\r\nsbot\r\ntbot\r\nvbot\r\nybot\r\nzbot\r\nbot.\r\nbot/\r\n_bot\r\n.bot\r\n/bot\r\n-bot\r\n:bot\r\n(bot\r\ncrawl\r\nslurp\r\nspider\r\nseek\r\naccoona\r\nacoon\r\nadressendeutschland\r\nah-ha.com\r\nahoy\r\naltavista\r\nananzi\r\nanthill\r\nappie\r\narachnophilia\r\narale\r\naraneo\r\naranha\r\narchitext\r\naretha\r\narks\r\nasterias\r\natlocal\r\natn\r\natomz\r\naugurfind\r\nbackrub\r\nbannana_bot\r\nbaypup\r\nbdfetch\r\nbig brother\r\nbiglotron\r\nbjaaland\r\nblackwidow\r\nblaiz\r\nblog\r\nblo.\r\nbloodhound\r\nboitho\r\nbooch\r\nbradley\r\nbutterfly\r\ncalif\r\ncassandra\r\nccubee\r\ncfetch\r\ncharlotte\r\nchurl\r\ncienciaficcion\r\ncmc\r\ncollective\r\ncomagent\r\ncombine\r\ncomputingsite\r\ncsci\r\ncurl\r\ncusco\r\ndaumoa\r\ndeepindex\r\ndelorie\r\ndepspid\r\ndeweb\r\ndie blinde kuh\r\ndigger\r\nditto\r\ndmoz\r\ndocomo\r\ndownload express\r\ndtaagent\r\ndwcp\r\nebiness\r\nebingbong\r\ne-collector\r\nejupiter\r\nemacs-w3 search engine\r\nesther\r\nevliya celebi\r\nezresult\r\nfalcon\r\nfelix ide\r\nferret\r\nfetchrover\r\nfido\r\nfindlinks\r\nfireball\r\nfish search\r\nfouineur\r\nfunnelweb\r\ngazz\r\ngcreep\r\ngenieknows\r\ngetterroboplus\r\ngeturl\r\nglx\r\ngoforit\r\ngolem\r\ngrabber\r\ngrapnel\r\ngralon\r\ngriffon\r\ngromit\r\ngrub\r\ngulliver\r\nhamahakki\r\nharvest\r\nhavindex\r\nhelix\r\nheritrix\r\nhku www octopus\r\nhomerweb\r\nhtdig\r\nhtml index\r\nhtml_analyzer\r\nhtmlgobble\r\nhubater\r\nhyper-decontextualizer\r\nia_archiver\r\nibm_planetwide\r\nichiro\r\niconsurf\r\niltrovatore\r\nimage.kapsi.net\r\nimagelock\r\nincywincy\r\nindexer\r\ninfobee\r\ninformant\r\ningrid\r\ninktomisearch.com\r\ninspector web\r\nintelliagent\r\ninternet shinchakubin\r\nip3000\r\niron33\r\nisraeli-search\r\nivia\r\njack\r\njakarta\r\njavabee\r\njetbot\r\njumpstation\r\nkatipo\r\nkdd-explorer\r\nkilroy\r\nknowledge\r\nkototoi\r\nkretrieve\r\nlabelgrabber\r\nlachesis\r\nlarbin\r\nlegs\r\nlibwww\r\nlinkalarm\r\nlink validator\r\nlinkscan\r\nlockon\r\nlwp\r\nlycos\r\nmagpie\r\nmantraagent\r\nmapoftheinternet\r\nmarvin/\r\nmattie\r\nmediafox\r\nmediapartners\r\nmercator\r\nmerzscope\r\nmicrosoft url control\r\nminirank\r\nmiva\r\nmj12\r\nmnogosearch\r\nmoget\r\nmonster\r\nmoose\r\nmotor\r\nmultitext\r\nmuncher\r\nmuscatferret\r\nmwd.search\r\nmyweb\r\nnajdi\r\nnameprotect\r\nnationaldirectory\r\nnazilla\r\nncsa beta\r\nnec-meshexplorer\r\nnederland.zoek\r\nnetcarta webmap engine\r\nnetmechanic\r\nnetresearchserver\r\nnetscoop\r\nnewscan-online\r\nnhse\r\nnokia6682/\r\nnomad\r\nnoyona\r\nnutch\r\nnzexplorer\r\nobjectssearch\r\noccam\r\nomni\r\nopen text\r\nopenfind\r\nopenintelligencedata\r\norb search\r\nosis-project\r\npack rat\r\npageboy\r\npagebull\r\npage_verifier\r\npanscient\r\nparasite\r\npartnersite\r\npatric\r\npear.\r\npegasus\r\nperegrinator\r\npgp key agent\r\nphantom\r\nphpdig\r\npicosearch\r\npiltdownman\r\npimptrain\r\npinpoint\r\npioneer\r\npiranha\r\nplumtreewebaccessor\r\npogodak\r\npoirot\r\npompos\r\npoppelsdorf\r\npoppi\r\npopular iconoclast\r\npsycheclone\r\npublisher\r\npython\r\nrambler\r\nraven search\r\nroach\r\nroad runner\r\nroadhouse\r\nrobbie\r\nrobofox\r\nrobozilla\r\nrules\r\nsalty\r\nsbider\r\nscooter\r\nscoutjet\r\nscrubby\r\nsearch.\r\nsearchprocess\r\nsemanticdiscovery\r\nsenrigan\r\nsg-scout\r\nshai\'hulud\r\nshark\r\nshopwiki\r\nsidewinder\r\nsift\r\nsilk\r\nsimmany\r\nsite searcher\r\nsite valet\r\nsitetech-rover\r\nskymob.com\r\nsleek\r\nsmartwit\r\nsna-\r\nsnappy\r\nsnooper\r\nsohu\r\nspeedfind\r\nsphere\r\nsphider\r\nspinner\r\nspyder\r\nsteeler/\r\nsuke\r\nsuntek\r\nsupersnooper\r\nsurfnomore\r\nsven\r\nsygol\r\nszukacz\r\ntach black widow\r\ntarantula\r\ntempleton\r\n/teoma\r\nt-h-u-n-d-e-r-s-t-o-n-e\r\ntheophrastus\r\ntitan\r\ntitin\r\ntkwww\r\ntoutatis\r\nt-rex\r\ntutorgig\r\ntwiceler\r\ntwisted\r\nucsd\r\nudmsearch\r\nurl check\r\nupdated\r\nvagabondo\r\nvalkyrie\r\nverticrawl\r\nvictoria\r\nvision-search\r\nvolcano\r\nvoyager/\r\nvoyager-hc\r\nw3c_validator\r\nw3m2\r\nw3mir\r\nwalker\r\nwallpaper\r\nwanderer\r\nwauuu\r\nwavefire\r\nweb core\r\nweb hopper\r\nweb wombat\r\nwebbandit\r\nwebcatcher\r\nwebcopy\r\nwebfoot\r\nweblayers\r\nweblinker\r\nweblog monitor\r\nwebmirror\r\nwebmonkey\r\nwebquest\r\nwebreaper\r\nwebsitepulse\r\nwebsnarf\r\nwebstolperer\r\nwebvac\r\nwebwalk\r\nwebwatch\r\nwebwombat\r\nwebzinger\r\nwhizbang\r\nwhowhere\r\nwild ferret\r\nworldlight\r\nwwwc\r\nwwwster\r\nxenu\r\nxget\r\nxift\r\nxirq\r\nyandex\r\nyanga\r\nyeti\r\nyodao\r\nzao\r\nzippp\r\nzyborg',0),
(392,0,'config','config_seo_url','0',0),
(391,0,'config','config_maintenance','0',0),
(390,0,'config','config_mail_alert_email','',0),
(386,0,'config','config_mail_smtp_password','',0),
(387,0,'config','config_mail_smtp_port','587',0),
(388,0,'config','config_mail_smtp_timeout','5',0),
(389,0,'config','config_mail_alert','[\"order\"]',1),
(385,0,'config','config_mail_smtp_username','',0),
(384,0,'config','config_mail_smtp_hostname','',0),
(383,0,'config','config_mail_parameter','',0),
(382,0,'config','config_mail_engine','mail',0),
(381,0,'config','config_icon','catalog/cart.png',0),
(380,0,'config','config_logo','catalog/opencarttr-logo.png',0),
(379,0,'config','config_captcha_page','[\"review\",\"return\",\"contact\"]',1),
(378,0,'config','config_captcha','',0),
(377,0,'config','config_return_status_id','2',0),
(376,0,'config','config_return_id','0',0),
(375,0,'config','config_affiliate_id','4',0),
(374,0,'config','config_affiliate_commission','5',0),
(373,0,'config','config_affiliate_auto','0',0),
(372,0,'config','config_affiliate_approval','0',0),
(371,0,'config','config_affiliate_group_id','1',0),
(370,0,'config','config_stock_checkout','0',0),
(369,0,'config','config_stock_warning','0',0),
(367,0,'config','config_api_id','1',0),
(368,0,'config','config_stock_display','0',0),
(366,0,'config','config_fraud_status_id','10',0),
(365,0,'config','config_complete_status','[\"3\",\"5\"]',1),
(364,0,'config','config_processing_status','[\"12\",\"2\",\"3\",\"1\",\"5\"]',1),
(363,0,'config','config_order_status_id','1',0),
(362,0,'config','config_checkout_id','0',0),
(361,0,'config','config_checkout_guest','1',0),
(359,0,'config','config_invoice_prefix','INV-2025-00',0),
(360,0,'config','config_cart_weight','1',0),
(94,0,'payment_free_checkout','payment_free_checkout_status','1',0),
(95,0,'payment_free_checkout','payment_free_checkout_order_status_id','1',0),
(96,0,'payment_free_checkout','payment_free_checkout_sort_order','1',0),
(97,0,'payment_cod','payment_cod_sort_order','5',0),
(98,0,'payment_cod','payment_cod_total','0.01',0),
(99,0,'payment_cod','payment_cod_order_status_id','1',0),
(100,0,'payment_cod','payment_cod_geo_zone_id','0',0),
(101,0,'payment_cod','payment_cod_status','1',0),
(102,0,'shipping_flat','shipping_flat_sort_order','1',0),
(103,0,'shipping_flat','shipping_flat_status','1',0),
(104,0,'shipping_flat','shipping_flat_geo_zone_id','0',0),
(105,0,'shipping_flat','shipping_flat_tax_class_id','9',0),
(106,0,'shipping_flat','shipping_flat_cost','5.00',0),
(107,0,'total_sub_total','total_sub_total_sort_order','1',0),
(108,0,'total_sub_total','total_sub_total_status','1',0),
(109,0,'total_tax','total_tax_sort_order','5',0),
(110,0,'total_tax','total_tax_status','1',0),
(111,0,'total_total','total_total_sort_order','9',0),
(112,0,'total_total','total_total_status','1',0),
(113,0,'total_shipping','total_shipping_sort_order','3',0),
(114,0,'total_shipping','total_shipping_status','1',0),
(115,0,'total_shipping','total_shipping_estimator','1',0),
(116,0,'total_coupon','total_coupon_sort_order','4',0),
(117,0,'total_coupon','total_coupon_status','1',0),
(118,0,'total_voucher','total_voucher_sort_order','8',0),
(119,0,'total_voucher','total_voucher_status','1',0),
(120,0,'total_credit','total_credit_sort_order','7',0),
(121,0,'total_credit','total_credit_status','1',0),
(122,0,'total_reward','total_reward_sort_order','2',0),
(123,0,'total_reward','total_reward_status','1',0),
(124,0,'module_category','module_category_status','1',0),
(125,0,'module_account','module_account_status','1',0),
(426,0,'theme_default','theme_default_image_cart_height','47',0),
(425,0,'theme_default','theme_default_image_cart_width','47',0),
(424,0,'theme_default','theme_default_image_wishlist_height','47',0),
(423,0,'theme_default','theme_default_image_wishlist_width','47',0),
(422,0,'theme_default','theme_default_image_compare_height','90',0),
(421,0,'theme_default','theme_default_image_compare_width','90',0),
(420,0,'theme_default','theme_default_image_related_height','200',0),
(419,0,'theme_default','theme_default_image_related_width','200',0),
(418,0,'theme_default','theme_default_image_additional_height','74',0),
(417,0,'theme_default','theme_default_image_additional_width','74',0),
(416,0,'theme_default','theme_default_image_product_height','228',0),
(415,0,'theme_default','theme_default_image_product_width','228',0),
(414,0,'theme_default','theme_default_image_popup_height','500',0),
(413,0,'theme_default','theme_default_image_popup_width','500',0),
(411,0,'theme_default','theme_default_image_thumb_width','228',0),
(412,0,'theme_default','theme_default_image_thumb_height','228',0),
(410,0,'theme_default','theme_default_image_category_height','80',0),
(409,0,'theme_default','theme_default_image_category_width','80',0),
(408,0,'theme_default','theme_default_product_description_length','100',0),
(150,0,'dashboard_activity','dashboard_activity_status','1',0),
(151,0,'dashboard_activity','dashboard_activity_sort_order','7',0),
(152,0,'dashboard_sale','dashboard_sale_status','1',0),
(153,0,'dashboard_sale','dashboard_sale_width','3',0),
(154,0,'dashboard_chart','dashboard_chart_status','1',0),
(155,0,'dashboard_chart','dashboard_chart_width','6',0),
(156,0,'dashboard_customer','dashboard_customer_status','1',0),
(157,0,'dashboard_customer','dashboard_customer_width','3',0),
(158,0,'dashboard_map','dashboard_map_status','1',0),
(159,0,'dashboard_map','dashboard_map_width','6',0),
(160,0,'dashboard_online','dashboard_online_status','1',0),
(161,0,'dashboard_online','dashboard_online_width','3',0),
(162,0,'dashboard_order','dashboard_order_sort_order','1',0),
(163,0,'dashboard_order','dashboard_order_status','1',0),
(164,0,'dashboard_order','dashboard_order_width','3',0),
(165,0,'dashboard_sale','dashboard_sale_sort_order','2',0),
(166,0,'dashboard_customer','dashboard_customer_sort_order','3',0),
(167,0,'dashboard_online','dashboard_online_sort_order','4',0),
(168,0,'dashboard_map','dashboard_map_sort_order','5',0),
(169,0,'dashboard_chart','dashboard_chart_sort_order','6',0),
(170,0,'dashboard_recent','dashboard_recent_status','1',0),
(171,0,'dashboard_recent','dashboard_recent_sort_order','8',0),
(172,0,'dashboard_activity','dashboard_activity_width','4',0),
(173,0,'dashboard_recent','dashboard_recent_width','8',0),
(174,0,'report_customer_activity','report_customer_activity_status','1',0),
(175,0,'report_customer_activity','report_customer_activity_sort_order','1',0),
(176,0,'report_customer_order','report_customer_order_status','1',0),
(177,0,'report_customer_order','report_customer_order_sort_order','2',0),
(178,0,'report_customer_reward','report_customer_reward_status','1',0),
(179,0,'report_customer_reward','report_customer_reward_sort_order','3',0),
(180,0,'report_customer_search','report_customer_search_sort_order','3',0),
(181,0,'report_customer_search','report_customer_search_status','1',0),
(182,0,'report_customer_transaction','report_customer_transaction_status','1',0),
(183,0,'report_customer_transaction','report_customer_transaction_status_sort_order','4',0),
(184,0,'report_sale_tax','report_sale_tax_status','1',0),
(185,0,'report_sale_tax','report_sale_tax_sort_order','5',0),
(186,0,'report_sale_shipping','report_sale_shipping_status','1',0),
(187,0,'report_sale_shipping','report_sale_shipping_sort_order','6',0),
(188,0,'report_sale_return','report_sale_return_status','1',0),
(189,0,'report_sale_return','report_sale_return_sort_order','7',0),
(190,0,'report_sale_order','report_sale_order_status','1',0),
(191,0,'report_sale_order','report_sale_order_sort_order','8',0),
(192,0,'report_sale_coupon','report_sale_coupon_status','1',0),
(193,0,'report_sale_coupon','report_sale_coupon_sort_order','9',0),
(194,0,'report_product_viewed','report_product_viewed_status','1',0),
(195,0,'report_product_viewed','report_product_viewed_sort_order','10',0),
(196,0,'report_product_purchased','report_product_purchased_status','1',0),
(197,0,'report_product_purchased','report_product_purchased_sort_order','11',0),
(198,0,'report_marketing','report_marketing_status','1',0),
(199,0,'report_marketing','report_marketing_sort_order','12',0),
(200,0,'developer','developer_theme','1',0),
(201,0,'developer','developer_sass','1',0),
(358,0,'config','config_account_id','3',0),
(357,0,'config','config_login_attempts','5',0),
(356,0,'config','config_customer_price','0',0),
(355,0,'config','config_customer_group_display','[\"1\"]',1),
(354,0,'config','config_customer_group_id','1',0),
(353,0,'config','config_customer_search','0',0),
(352,0,'config','config_customer_activity','0',0),
(351,0,'config','config_customer_online','0',0),
(350,0,'config','config_tax_customer','payment',0),
(349,0,'config','config_tax_default','payment',0),
(348,0,'config','config_tax','1',0),
(347,0,'config','config_voucher_max','1000',0),
(346,0,'config','config_voucher_min','1',0),
(345,0,'config','config_review_guest','1',0),
(344,0,'config','config_review_status','1',0),
(343,0,'config','config_limit_admin','20',0),
(341,0,'config','config_weight_class_id','1',0),
(342,0,'config','config_product_count','1',0),
(428,0,'theme_default','theme_default_image_location_height','50',0),
(401,0,'config','config_file_mime_allowed','text/plain\r\nimage/png\r\nimage/jpeg\r\nimage/gif\r\nimage/bmp\r\nimage/vnd.microsoft.icon\r\nimage/tiff\r\nimage/svg+xml\r\napplication/zip\r\n"application/zip"\r\napplication/x-zip\r\n"application/x-zip"\r\napplication/x-zip-compressed\r\n"application/x-zip-compressed"\r\napplication/rar\r\n"application/rar"\r\napplication/x-rar\r\n"application/x-rar"\r\napplication/x-rar-compressed\r\n"application/x-rar-compressed"\r\napplication/octet-stream\r\n"application/octet-stream"\r\napplication/x-msdownload\r\napplication/vnd.ms-cab-compressed\r\napplication/postscript\r\napplication/msword\r\napplication/rtf\r\napplication/vnd.ms-excel\r\napplication/vnd.ms-powerpoint\r\napplication/vnd.oasis.opendocument.text\r\napplication/vnd.oasis.opendocument.spreadsheet\r\naudio/mpeg\r\nvideo/quicktime\r\napplication/pdf\r\nimage/vnd.adobe.photoshop',0),
(340,0,'config','config_length_class_id','1',0),
(337,0,'config','config_admin_language','tr-tr',0),
(338,0,'config','config_currency','TRY',0),
(339,0,'config','config_currency_auto','1',0),
(320,0,'config','config_meta_keyword','',0),
(321,0,'config','config_theme','journal3',0),
(322,0,'config','config_layout_id','4',0),
(323,0,'config','config_name','Your Store',0),
(324,0,'config','config_owner','Your Name',0),
(325,0,'config','config_address','Address 1',0),
(326,0,'config','config_geocode','',0),
(327,0,'config','config_email','erer@webservis.com.tr',0),
(328,0,'config','config_telephone','123456789',0),
(329,0,'config','config_fax','',0),
(330,0,'config','config_image','',0),
(331,0,'config','config_open','',0),
(332,0,'config','config_comment','',0),
(333,0,'config','config_country_id','215',0),
(334,0,'config','config_zone_id','3335',0),
(335,0,'config','config_timezone','Europe/Istanbul',0),
(336,0,'config','config_language','tr-tr',0),
(319,0,'config','config_meta_description','My Store',0),
(318,0,'config','config_meta_title','Your Store',0),
(427,0,'theme_default','theme_default_image_location_width','268',0),
(407,0,'theme_default','theme_default_product_limit','15',0),
(406,0,'theme_default','theme_default_status','1',0),
(405,0,'theme_default','theme_default_directory','default',0),
(432,0,'theme_journal3','theme_journal3_status','1',0);
/*!40000 ALTER TABLE `oc_setting` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_shipping_courier`
--
DROP TABLE IF EXISTS `oc_shipping_courier`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_shipping_courier` (
`shipping_courier_id` int(11) NOT NULL,
`shipping_courier_code` varchar(255) NOT NULL DEFAULT '',
`shipping_courier_name` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`shipping_courier_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_shipping_courier`
--
LOCK TABLES `oc_shipping_courier` WRITE;
/*!40000 ALTER TABLE `oc_shipping_courier` DISABLE KEYS */;
INSERT INTO `oc_shipping_courier` VALUES
(1,'dhl','DHL'),
(2,'fedex','Fedex'),
(3,'ups','UPS'),
(4,'royal-mail','Royal Mail'),
(5,'usps','United States Postal Service'),
(6,'auspost','Australia Post');
/*!40000 ALTER TABLE `oc_shipping_courier` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_statistics`
--
DROP TABLE IF EXISTS `oc_statistics`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_statistics` (
`statistics_id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(64) NOT NULL,
`value` decimal(15,4) NOT NULL,
PRIMARY KEY (`statistics_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_statistics`
--
LOCK TABLES `oc_statistics` WRITE;
/*!40000 ALTER TABLE `oc_statistics` DISABLE KEYS */;
INSERT INTO `oc_statistics` VALUES
(1,'order_sale',0.0000),
(2,'order_processing',0.0000),
(3,'order_complete',0.0000),
(4,'order_other',0.0000),
(5,'returns',0.0000),
(6,'product',0.0000),
(7,'review',0.0000);
/*!40000 ALTER TABLE `oc_statistics` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_stock_status`
--
DROP TABLE IF EXISTS `oc_stock_status`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_stock_status` (
`stock_status_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
PRIMARY KEY (`stock_status_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_stock_status`
--
LOCK TABLES `oc_stock_status` WRITE;
/*!40000 ALTER TABLE `oc_stock_status` DISABLE KEYS */;
INSERT INTO `oc_stock_status` VALUES
(7,1,'In Stock'),
(8,1,'Pre-Order'),
(5,1,'Out Of Stock'),
(6,1,'2-3 Days'),
(6,2,'2-3 Days'),
(5,2,'Out Of Stock'),
(8,2,'Pre-Order'),
(7,2,'In Stock'),
(7,3,'In Stock'),
(8,3,'Pre-Order'),
(5,3,'Out Of Stock'),
(6,3,'2-3 Days');
/*!40000 ALTER TABLE `oc_stock_status` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_store`
--
DROP TABLE IF EXISTS `oc_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_store` (
`store_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`url` varchar(255) NOT NULL,
`ssl` varchar(255) NOT NULL,
PRIMARY KEY (`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_store`
--
LOCK TABLES `oc_store` WRITE;
/*!40000 ALTER TABLE `oc_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_store` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_tax_class`
--
DROP TABLE IF EXISTS `oc_tax_class`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_tax_class` (
`tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(32) NOT NULL,
`description` varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_tax_class`
--
LOCK TABLES `oc_tax_class` WRITE;
/*!40000 ALTER TABLE `oc_tax_class` DISABLE KEYS */;
INSERT INTO `oc_tax_class` VALUES
(1,'KDV (%18)','%18\'lik KDV oranına tabi ürünler','2009-01-06 23:21:53','2011-09-30 01:10:54'),
(2,'KDV (%8)','%8\'lik KDV oranına tabi ürünler','2011-09-21 22:19:39','2011-09-30 01:11:14');
/*!40000 ALTER TABLE `oc_tax_class` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_tax_rate`
--
DROP TABLE IF EXISTS `oc_tax_rate`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_tax_rate` (
`tax_rate_id` int(11) NOT NULL AUTO_INCREMENT,
`geo_zone_id` int(11) NOT NULL DEFAULT 0,
`name` varchar(32) NOT NULL,
`rate` decimal(15,4) NOT NULL DEFAULT 0.0000,
`type` char(1) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`tax_rate_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_tax_rate`
--
LOCK TABLES `oc_tax_rate` WRITE;
/*!40000 ALTER TABLE `oc_tax_rate` DISABLE KEYS */;
INSERT INTO `oc_tax_rate` VALUES
(1,1,'KDV (%8)',8.0000,'P','2011-03-09 21:17:10','2011-09-30 01:08:36'),
(2,1,'KDV (%18)',18.0000,'P','2011-09-21 21:49:23','2011-09-30 01:08:43');
/*!40000 ALTER TABLE `oc_tax_rate` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_tax_rate_to_customer_group`
--
DROP TABLE IF EXISTS `oc_tax_rate_to_customer_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_tax_rate_to_customer_group` (
`tax_rate_id` int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
PRIMARY KEY (`tax_rate_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_tax_rate_to_customer_group`
--
LOCK TABLES `oc_tax_rate_to_customer_group` WRITE;
/*!40000 ALTER TABLE `oc_tax_rate_to_customer_group` DISABLE KEYS */;
INSERT INTO `oc_tax_rate_to_customer_group` VALUES
(1,1),
(1,2),
(2,1),
(2,2);
/*!40000 ALTER TABLE `oc_tax_rate_to_customer_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_tax_rule`
--
DROP TABLE IF EXISTS `oc_tax_rule`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_tax_rule` (
`tax_rule_id` int(11) NOT NULL AUTO_INCREMENT,
`tax_class_id` int(11) NOT NULL,
`tax_rate_id` int(11) NOT NULL,
`based` varchar(10) NOT NULL,
`priority` int(5) NOT NULL DEFAULT 1,
PRIMARY KEY (`tax_rule_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_tax_rule`
--
LOCK TABLES `oc_tax_rule` WRITE;
/*!40000 ALTER TABLE `oc_tax_rule` DISABLE KEYS */;
INSERT INTO `oc_tax_rule` VALUES
(1,2,1,'payment',2),
(2,1,2,'payment',2),
(3,2,1,'shipping',1),
(4,1,2,'shipping',1),
(5,1,2,'store',0),
(6,2,1,'store',0);
/*!40000 ALTER TABLE `oc_tax_rule` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_theme`
--
DROP TABLE IF EXISTS `oc_theme`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_theme` (
`theme_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) NOT NULL,
`theme` varchar(64) NOT NULL,
`route` varchar(64) NOT NULL,
`code` mediumtext NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`theme_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_theme`
--
LOCK TABLES `oc_theme` WRITE;
/*!40000 ALTER TABLE `oc_theme` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_theme` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_translation`
--
DROP TABLE IF EXISTS `oc_translation`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_translation` (
`translation_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`route` varchar(64) NOT NULL,
`key` varchar(64) NOT NULL,
`value` text NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`translation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_translation`
--
LOCK TABLES `oc_translation` WRITE;
/*!40000 ALTER TABLE `oc_translation` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_translation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_upload`
--
DROP TABLE IF EXISTS `oc_upload`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_upload` (
`upload_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`filename` varchar(255) NOT NULL,
`code` varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`upload_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_upload`
--
LOCK TABLES `oc_upload` WRITE;
/*!40000 ALTER TABLE `oc_upload` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_upload` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_user`
--
DROP TABLE IF EXISTS `oc_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`user_group_id` int(11) NOT NULL,
`username` varchar(20) NOT NULL,
`password` varchar(40) NOT NULL,
`salt` varchar(9) NOT NULL,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`image` varchar(255) NOT NULL,
`code` varchar(40) NOT NULL,
`ip` varchar(40) NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_user`
--
LOCK TABLES `oc_user` WRITE;
/*!40000 ALTER TABLE `oc_user` DISABLE KEYS */;
INSERT INTO `oc_user` VALUES
(1,1,'admin','cab5254730d44a13d43f1c654889c06c06386255','l4nfCcTcL','John','Doe','erer@webservis.com.tr','','','24.133.104.97',1,'2025-02-11 23:12:24');
/*!40000 ALTER TABLE `oc_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_user_group`
--
DROP TABLE IF EXISTS `oc_user_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_user_group` (
`user_group_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`permission` text NOT NULL,
PRIMARY KEY (`user_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_user_group`
--
LOCK TABLES `oc_user_group` WRITE;
/*!40000 ALTER TABLE `oc_user_group` DISABLE KEYS */;
INSERT INTO `oc_user_group` VALUES
(1,'Kurucu Yönetici','{\"access\":[\"catalog\\/attribute\",\"catalog\\/attribute_group\",\"catalog\\/category\",\"catalog\\/download\",\"catalog\\/filter\",\"catalog\\/information\",\"catalog\\/manufacturer\",\"catalog\\/option\",\"catalog\\/product\",\"catalog\\/recurring\",\"catalog\\/review\",\"common\\/column_left\",\"common\\/developer\",\"common\\/filemanager\",\"common\\/profile\",\"common\\/security\",\"customer\\/custom_field\",\"customer\\/customer\",\"customer\\/customer_approval\",\"customer\\/customer_group\",\"design\\/banner\",\"design\\/layout\",\"design\\/theme\",\"design\\/translation\",\"design\\/seo_url\",\"event\\/statistics\",\"event\\/theme\",\"extension\\/advertise\\/google\",\"extension\\/analytics\\/google\",\"extension\\/captcha\\/basic\",\"extension\\/captcha\\/google\",\"extension\\/dashboard\\/activity\",\"extension\\/dashboard\\/chart\",\"extension\\/dashboard\\/customer\",\"extension\\/dashboard\\/map\",\"extension\\/dashboard\\/online\",\"extension\\/dashboard\\/order\",\"extension\\/dashboard\\/recent\",\"extension\\/dashboard\\/sale\",\"extension\\/extension\\/advertise\",\"extension\\/extension\\/analytics\",\"extension\\/extension\\/captcha\",\"extension\\/extension\\/dashboard\",\"extension\\/extension\\/feed\",\"extension\\/extension\\/fraud\",\"extension\\/extension\\/menu\",\"extension\\/extension\\/module\",\"extension\\/extension\\/payment\",\"extension\\/extension\\/report\",\"extension\\/extension\\/shipping\",\"extension\\/extension\\/theme\",\"extension\\/extension\\/total\",\"extension\\/feed\\/google_base\",\"extension\\/feed\\/google_sitemap\",\"extension\\/fraud\\/fraudlabspro\",\"extension\\/fraud\\/ip\",\"extension\\/fraud\\/maxmind\",\"extension\\/marketing\\/remarketing\",\"extension\\/module\\/account\",\"extension\\/module\\/amazon_login\",\"extension\\/module\\/amazon_pay\",\"extension\\/module\\/banner\",\"extension\\/module\\/bestseller\",\"extension\\/module\\/carousel\",\"extension\\/module\\/category\",\"extension\\/module\\/divido_calculator\",\"extension\\/module\\/ebay_listing\",\"extension\\/module\\/featured\",\"extension\\/module\\/filter\",\"extension\\/module\\/google_hangouts\",\"extension\\/module\\/html\",\"extension\\/module\\/information\",\"extension\\/module\\/klarna_checkout_module\",\"extension\\/module\\/latest\",\"extension\\/module\\/laybuy_layout\",\"extension\\/module\\/pilibaba_button\",\"extension\\/module\\/sagepay_direct_cards\",\"extension\\/module\\/sagepay_server_cards\",\"extension\\/module\\/slideshow\",\"extension\\/module\\/special\",\"extension\\/module\\/store\",\"extension\\/payment\\/amazon_login_pay\",\"extension\\/payment\\/authorizenet_aim\",\"extension\\/payment\\/authorizenet_sim\",\"extension\\/payment\\/bank_transfer\",\"extension\\/payment\\/bluepay_hosted\",\"extension\\/payment\\/bluepay_redirect\",\"extension\\/payment\\/cardconnect\",\"extension\\/payment\\/cardinity\",\"extension\\/payment\\/cheque\",\"extension\\/payment\\/cod\",\"extension\\/payment\\/divido\",\"extension\\/payment\\/eway\",\"extension\\/payment\\/firstdata\",\"extension\\/payment\\/firstdata_remote\",\"extension\\/payment\\/free_checkout\",\"extension\\/payment\\/g2apay\",\"extension\\/payment\\/globalpay\",\"extension\\/payment\\/globalpay_remote\",\"extension\\/payment\\/klarna_account\",\"extension\\/payment\\/klarna_checkout\",\"extension\\/payment\\/klarna_invoice\",\"extension\\/payment\\/laybuy\",\"extension\\/payment\\/liqpay\",\"extension\\/payment\\/nochex\",\"extension\\/payment\\/paymate\",\"extension\\/payment\\/paypoint\",\"extension\\/payment\\/payza\",\"extension\\/payment\\/perpetual_payments\",\"extension\\/payment\\/pilibaba\",\"extension\\/payment\\/realex\",\"extension\\/payment\\/realex_remote\",\"extension\\/payment\\/sagepay_direct\",\"extension\\/payment\\/sagepay_server\",\"extension\\/payment\\/sagepay_us\",\"extension\\/payment\\/securetrading_pp\",\"extension\\/payment\\/securetrading_ws\",\"extension\\/payment\\/skrill\",\"extension\\/payment\\/twocheckout\",\"extension\\/payment\\/web_payment_software\",\"extension\\/payment\\/worldpay\",\"extension\\/module\\/pp_braintree_button\",\"extension\\/payment\\/pp_braintree\",\"extension\\/report\\/customer_activity\",\"extension\\/report\\/customer_order\",\"extension\\/report\\/customer_reward\",\"extension\\/report\\/customer_search\",\"extension\\/report\\/customer_transaction\",\"extension\\/report\\/marketing\",\"extension\\/report\\/product_purchased\",\"extension\\/report\\/product_viewed\",\"extension\\/report\\/sale_coupon\",\"extension\\/report\\/sale_order\",\"extension\\/report\\/sale_return\",\"extension\\/report\\/sale_shipping\",\"extension\\/report\\/sale_tax\",\"extension\\/shipping\\/auspost\",\"extension\\/shipping\\/ec_ship\",\"extension\\/shipping\\/fedex\",\"extension\\/shipping\\/flat\",\"extension\\/shipping\\/free\",\"extension\\/shipping\\/item\",\"extension\\/shipping\\/parcelforce_48\",\"extension\\/shipping\\/pickup\",\"extension\\/shipping\\/royal_mail\",\"extension\\/shipping\\/ups\",\"extension\\/shipping\\/usps\",\"extension\\/shipping\\/weight\",\"extension\\/theme\\/default\",\"extension\\/total\\/coupon\",\"extension\\/total\\/credit\",\"extension\\/total\\/handling\",\"extension\\/total\\/klarna_fee\",\"extension\\/total\\/low_order_fee\",\"extension\\/total\\/reward\",\"extension\\/total\\/shipping\",\"extension\\/total\\/sub_total\",\"extension\\/total\\/tax\",\"extension\\/total\\/total\",\"extension\\/total\\/voucher\",\"localisation\\/country\",\"localisation\\/currency\",\"localisation\\/geo_zone\",\"localisation\\/language\",\"localisation\\/length_class\",\"localisation\\/location\",\"localisation\\/order_status\",\"localisation\\/return_action\",\"localisation\\/return_reason\",\"localisation\\/return_status\",\"localisation\\/stock_status\",\"localisation\\/tax_class\",\"localisation\\/tax_rate\",\"localisation\\/weight_class\",\"localisation\\/zone\",\"mail\\/affiliate\",\"mail\\/customer\",\"mail\\/forgotten\",\"mail\\/return\",\"mail\\/reward\",\"mail\\/transaction\",\"marketing\\/contact\",\"marketing\\/coupon\",\"marketing\\/marketing\",\"marketplace\\/api\",\"marketplace\\/event\",\"marketplace\\/extension\",\"marketplace\\/install\",\"marketplace\\/installer\",\"marketplace\\/marketplace\",\"marketplace\\/modification\",\"report\\/online\",\"report\\/report\",\"report\\/statistics\",\"sale\\/order\",\"sale\\/recurring\",\"sale\\/return\",\"sale\\/voucher\",\"sale\\/voucher_theme\",\"setting\\/setting\",\"setting\\/store\",\"startup\\/error\",\"startup\\/event\",\"startup\\/login\",\"startup\\/permission\",\"startup\\/router\",\"startup\\/sass\",\"startup\\/startup\",\"tool\\/backup\",\"tool\\/log\",\"tool\\/upload\",\"user\\/api\",\"user\\/user\",\"user\\/user_permission\",\"extension\\/theme\\/journal3\",\"journal3\\/blog_category\",\"journal3\\/blog_comment\",\"journal3\\/blog_post\",\"journal3\\/blog_setting\",\"journal3\\/import_export\",\"journal3\\/journal3\",\"journal3\\/layout\",\"journal3\\/message\",\"journal3\\/module_footer\",\"journal3\\/module_header\",\"journal3\\/module_layout\",\"journal3\\/module_product\",\"journal3\\/newsletter\",\"journal3\\/setting\",\"journal3\\/skin\",\"journal3\\/startup\",\"journal3\\/style\",\"journal3\\/system\",\"journal3\\/variable\"],\"modify\":[\"catalog\\/attribute\",\"catalog\\/attribute_group\",\"catalog\\/category\",\"catalog\\/download\",\"catalog\\/filter\",\"catalog\\/information\",\"catalog\\/manufacturer\",\"catalog\\/option\",\"catalog\\/product\",\"catalog\\/recurring\",\"catalog\\/review\",\"common\\/column_left\",\"common\\/developer\",\"common\\/filemanager\",\"common\\/profile\",\"common\\/security\",\"customer\\/custom_field\",\"customer\\/customer\",\"customer\\/customer_approval\",\"customer\\/customer_group\",\"design\\/banner\",\"design\\/layout\",\"design\\/theme\",\"design\\/translation\",\"design\\/seo_url\",\"event\\/statistics\",\"event\\/theme\",\"extension\\/advertise\\/google\",\"extension\\/analytics\\/google\",\"extension\\/captcha\\/basic\",\"extension\\/captcha\\/google\",\"extension\\/dashboard\\/activity\",\"extension\\/dashboard\\/chart\",\"extension\\/dashboard\\/customer\",\"extension\\/dashboard\\/map\",\"extension\\/dashboard\\/online\",\"extension\\/dashboard\\/order\",\"extension\\/dashboard\\/recent\",\"extension\\/dashboard\\/sale\",\"extension\\/extension\\/advertise\",\"extension\\/extension\\/analytics\",\"extension\\/extension\\/captcha\",\"extension\\/extension\\/dashboard\",\"extension\\/extension\\/feed\",\"extension\\/extension\\/fraud\",\"extension\\/extension\\/menu\",\"extension\\/extension\\/module\",\"extension\\/extension\\/payment\",\"extension\\/extension\\/report\",\"extension\\/extension\\/shipping\",\"extension\\/extension\\/theme\",\"extension\\/extension\\/total\",\"extension\\/feed\\/google_base\",\"extension\\/feed\\/google_sitemap\",\"extension\\/fraud\\/fraudlabspro\",\"extension\\/fraud\\/ip\",\"extension\\/fraud\\/maxmind\",\"extension\\/marketing\\/remarketing\",\"extension\\/module\\/account\",\"extension\\/module\\/amazon_login\",\"extension\\/module\\/amazon_pay\",\"extension\\/module\\/banner\",\"extension\\/module\\/bestseller\",\"extension\\/module\\/carousel\",\"extension\\/module\\/category\",\"extension\\/module\\/divido_calculator\",\"extension\\/module\\/ebay_listing\",\"extension\\/module\\/featured\",\"extension\\/module\\/filter\",\"extension\\/module\\/google_hangouts\",\"extension\\/module\\/html\",\"extension\\/module\\/information\",\"extension\\/module\\/klarna_checkout_module\",\"extension\\/module\\/latest\",\"extension\\/module\\/laybuy_layout\",\"extension\\/module\\/pilibaba_button\",\"extension\\/module\\/sagepay_direct_cards\",\"extension\\/module\\/sagepay_server_cards\",\"extension\\/module\\/slideshow\",\"extension\\/module\\/special\",\"extension\\/module\\/store\",\"extension\\/payment\\/amazon_login_pay\",\"extension\\/payment\\/authorizenet_aim\",\"extension\\/payment\\/authorizenet_sim\",\"extension\\/payment\\/bank_transfer\",\"extension\\/payment\\/bluepay_hosted\",\"extension\\/payment\\/bluepay_redirect\",\"extension\\/payment\\/cardconnect\",\"extension\\/payment\\/cardinity\",\"extension\\/payment\\/cheque\",\"extension\\/payment\\/cod\",\"extension\\/payment\\/divido\",\"extension\\/payment\\/eway\",\"extension\\/payment\\/firstdata\",\"extension\\/payment\\/firstdata_remote\",\"extension\\/payment\\/free_checkout\",\"extension\\/payment\\/g2apay\",\"extension\\/payment\\/globalpay\",\"extension\\/payment\\/globalpay_remote\",\"extension\\/payment\\/klarna_account\",\"extension\\/payment\\/klarna_checkout\",\"extension\\/payment\\/klarna_invoice\",\"extension\\/payment\\/laybuy\",\"extension\\/payment\\/liqpay\",\"extension\\/payment\\/nochex\",\"extension\\/payment\\/paymate\",\"extension\\/payment\\/paypoint\",\"extension\\/payment\\/payza\",\"extension\\/payment\\/perpetual_payments\",\"extension\\/payment\\/pilibaba\",\"extension\\/payment\\/realex\",\"extension\\/payment\\/realex_remote\",\"extension\\/payment\\/sagepay_direct\",\"extension\\/payment\\/sagepay_server\",\"extension\\/payment\\/sagepay_us\",\"extension\\/payment\\/securetrading_pp\",\"extension\\/payment\\/securetrading_ws\",\"extension\\/payment\\/skrill\",\"extension\\/payment\\/twocheckout\",\"extension\\/payment\\/web_payment_software\",\"extension\\/payment\\/worldpay\",\"extension\\/module\\/pp_braintree_button\",\"extension\\/payment\\/pp_braintree\",\"extension\\/report\\/customer_activity\",\"extension\\/report\\/customer_order\",\"extension\\/report\\/customer_reward\",\"extension\\/report\\/customer_search\",\"extension\\/report\\/customer_transaction\",\"extension\\/report\\/marketing\",\"extension\\/report\\/product_purchased\",\"extension\\/report\\/product_viewed\",\"extension\\/report\\/sale_coupon\",\"extension\\/report\\/sale_order\",\"extension\\/report\\/sale_return\",\"extension\\/report\\/sale_shipping\",\"extension\\/report\\/sale_tax\",\"extension\\/shipping\\/auspost\",\"extension\\/shipping\\/ec_ship\",\"extension\\/shipping\\/fedex\",\"extension\\/shipping\\/flat\",\"extension\\/shipping\\/free\",\"extension\\/shipping\\/item\",\"extension\\/shipping\\/parcelforce_48\",\"extension\\/shipping\\/pickup\",\"extension\\/shipping\\/royal_mail\",\"extension\\/shipping\\/ups\",\"extension\\/shipping\\/usps\",\"extension\\/shipping\\/weight\",\"extension\\/theme\\/default\",\"extension\\/total\\/coupon\",\"extension\\/total\\/credit\",\"extension\\/total\\/handling\",\"extension\\/total\\/klarna_fee\",\"extension\\/total\\/low_order_fee\",\"extension\\/total\\/reward\",\"extension\\/total\\/shipping\",\"extension\\/total\\/sub_total\",\"extension\\/total\\/tax\",\"extension\\/total\\/total\",\"extension\\/total\\/voucher\",\"localisation\\/country\",\"localisation\\/currency\",\"localisation\\/geo_zone\",\"localisation\\/language\",\"localisation\\/length_class\",\"localisation\\/location\",\"localisation\\/order_status\",\"localisation\\/return_action\",\"localisation\\/return_reason\",\"localisation\\/return_status\",\"localisation\\/stock_status\",\"localisation\\/tax_class\",\"localisation\\/tax_rate\",\"localisation\\/weight_class\",\"localisation\\/zone\",\"mail\\/affiliate\",\"mail\\/customer\",\"mail\\/forgotten\",\"mail\\/return\",\"mail\\/reward\",\"mail\\/transaction\",\"marketing\\/contact\",\"marketing\\/coupon\",\"marketing\\/marketing\",\"marketplace\\/event\",\"marketplace\\/api\",\"marketplace\\/extension\",\"marketplace\\/install\",\"marketplace\\/installer\",\"marketplace\\/marketplace\",\"marketplace\\/modification\",\"report\\/online\",\"report\\/report\",\"report\\/statistics\",\"sale\\/order\",\"sale\\/recurring\",\"sale\\/return\",\"sale\\/voucher\",\"sale\\/voucher_theme\",\"setting\\/setting\",\"setting\\/store\",\"startup\\/error\",\"startup\\/event\",\"startup\\/login\",\"startup\\/permission\",\"startup\\/router\",\"startup\\/sass\",\"startup\\/startup\",\"tool\\/backup\",\"tool\\/log\",\"tool\\/upload\",\"user\\/api\",\"user\\/user\",\"user\\/user_permission\",\"extension\\/theme\\/journal3\",\"journal3\\/blog_category\",\"journal3\\/blog_comment\",\"journal3\\/blog_post\",\"journal3\\/blog_setting\",\"journal3\\/import_export\",\"journal3\\/journal3\",\"journal3\\/layout\",\"journal3\\/message\",\"journal3\\/module_footer\",\"journal3\\/module_header\",\"journal3\\/module_layout\",\"journal3\\/module_product\",\"journal3\\/newsletter\",\"journal3\\/setting\",\"journal3\\/skin\",\"journal3\\/startup\",\"journal3\\/style\",\"journal3\\/system\",\"journal3\\/variable\"]}'),
(2,'Yönetici','');
/*!40000 ALTER TABLE `oc_user_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_voucher`
--
DROP TABLE IF EXISTS `oc_voucher`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_voucher` (
`voucher_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`code` varchar(10) NOT NULL,
`from_name` varchar(64) NOT NULL,
`from_email` varchar(96) NOT NULL,
`to_name` varchar(64) NOT NULL,
`to_email` varchar(96) NOT NULL,
`voucher_theme_id` int(11) NOT NULL,
`message` text NOT NULL,
`amount` decimal(15,4) NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`voucher_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_voucher`
--
LOCK TABLES `oc_voucher` WRITE;
/*!40000 ALTER TABLE `oc_voucher` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_voucher` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_voucher_history`
--
DROP TABLE IF EXISTS `oc_voucher_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_voucher_history` (
`voucher_history_id` int(11) NOT NULL AUTO_INCREMENT,
`voucher_id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`amount` decimal(15,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`voucher_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_voucher_history`
--
LOCK TABLES `oc_voucher_history` WRITE;
/*!40000 ALTER TABLE `oc_voucher_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `oc_voucher_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_voucher_theme`
--
DROP TABLE IF EXISTS `oc_voucher_theme`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_voucher_theme` (
`voucher_theme_id` int(11) NOT NULL AUTO_INCREMENT,
`image` varchar(255) NOT NULL,
PRIMARY KEY (`voucher_theme_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_voucher_theme`
--
LOCK TABLES `oc_voucher_theme` WRITE;
/*!40000 ALTER TABLE `oc_voucher_theme` DISABLE KEYS */;
INSERT INTO `oc_voucher_theme` VALUES
(1,'catalog/demo/canon_eos_5d_2.jpg'),
(2,'catalog/demo/gift-voucher-birthday.jpg'),
(3,'catalog/demo/apple_logo.jpg');
/*!40000 ALTER TABLE `oc_voucher_theme` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_voucher_theme_description`
--
DROP TABLE IF EXISTS `oc_voucher_theme_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_voucher_theme_description` (
`voucher_theme_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
PRIMARY KEY (`voucher_theme_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_voucher_theme_description`
--
LOCK TABLES `oc_voucher_theme_description` WRITE;
/*!40000 ALTER TABLE `oc_voucher_theme_description` DISABLE KEYS */;
INSERT INTO `oc_voucher_theme_description` VALUES
(1,1,'Yıl Başı'),
(2,1,'Doğum Günü'),
(3,1,'Genel');
/*!40000 ALTER TABLE `oc_voucher_theme_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_weight_class`
--
DROP TABLE IF EXISTS `oc_weight_class`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_weight_class` (
`weight_class_id` int(11) NOT NULL AUTO_INCREMENT,
`value` decimal(15,8) NOT NULL DEFAULT 0.00000000,
PRIMARY KEY (`weight_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_weight_class`
--
LOCK TABLES `oc_weight_class` WRITE;
/*!40000 ALTER TABLE `oc_weight_class` DISABLE KEYS */;
INSERT INTO `oc_weight_class` VALUES
(1,1.00000000),
(2,1000.00000000),
(3,2.20460000),
(4,35.27400000);
/*!40000 ALTER TABLE `oc_weight_class` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_weight_class_description`
--
DROP TABLE IF EXISTS `oc_weight_class_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_weight_class_description` (
`weight_class_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`title` varchar(32) NOT NULL,
`unit` varchar(4) NOT NULL,
PRIMARY KEY (`weight_class_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_weight_class_description`
--
LOCK TABLES `oc_weight_class_description` WRITE;
/*!40000 ALTER TABLE `oc_weight_class_description` DISABLE KEYS */;
INSERT INTO `oc_weight_class_description` VALUES
(1,1,'Kilogram','kg'),
(2,1,'Gram','g'),
(3,1,'Pound ','lb'),
(4,1,'Ounce','oz');
/*!40000 ALTER TABLE `oc_weight_class_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_zone`
--
DROP TABLE IF EXISTS `oc_zone`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_zone` (
`zone_id` int(11) NOT NULL AUTO_INCREMENT,
`country_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
`code` varchar(32) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4239 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_zone`
--
LOCK TABLES `oc_zone` WRITE;
/*!40000 ALTER TABLE `oc_zone` DISABLE KEYS */;
INSERT INTO `oc_zone` VALUES
(1,1,'Badakhshan','BDS',1),
(2,1,'Badghis','BDG',1),
(3,1,'Baghlan','BGL',1),
(4,1,'Balkh','BAL',1),
(5,1,'Bamian','BAM',1),
(6,1,'Farah','FRA',1),
(7,1,'Faryab','FYB',1),
(8,1,'Ghazni','GHA',1),
(9,1,'Ghowr','GHO',1),
(10,1,'Helmand','HEL',1),
(11,1,'Herat','HER',1),
(12,1,'Jowzjan','JOW',1),
(13,1,'Kabul','KAB',1),
(14,1,'Kandahar','KAN',1),
(15,1,'Kapisa','KAP',1),
(16,1,'Khost','KHO',1),
(17,1,'Konar','KNR',1),
(18,1,'Kondoz','KDZ',1),
(19,1,'Laghman','LAG',1),
(20,1,'Lowgar','LOW',1),
(21,1,'Nangrahar','NAN',1),
(22,1,'Nimruz','NIM',1),
(23,1,'Nurestan','NUR',1),
(24,1,'Oruzgan','ORU',1),
(25,1,'Paktia','PIA',1),
(26,1,'Paktika','PKA',1),
(27,1,'Parwan','PAR',1),
(28,1,'Samangan','SAM',1),
(29,1,'Sar-e Pol','SAR',1),
(30,1,'Takhar','TAK',1),
(31,1,'Wardak','WAR',1),
(32,1,'Zabol','ZAB',1),
(33,2,'Berat','BR',1),
(34,2,'Bulqize','BU',1),
(35,2,'Delvine','DL',1),
(36,2,'Devoll','DV',1),
(37,2,'Diber','DI',1),
(38,2,'Durres','DR',1),
(39,2,'Elbasan','EL',1),
(40,2,'Kolonje','ER',1),
(41,2,'Fier','FR',1),
(42,2,'Gjirokaster','GJ',1),
(43,2,'Gramsh','GR',1),
(44,2,'Has','HA',1),
(45,2,'Kavaje','KA',1),
(46,2,'Kurbin','KB',1),
(47,2,'Kucove','KC',1),
(48,2,'Korce','KO',1),
(49,2,'Kruje','KR',1),
(50,2,'Kukes','KU',1),
(51,2,'Librazhd','LB',1),
(52,2,'Lezhe','LE',1),
(53,2,'Lushnje','LU',1),
(54,2,'Malesi e Madhe','MM',1),
(55,2,'Mallakaster','MK',1),
(56,2,'Mat','MT',1),
(57,2,'Mirdite','MR',1),
(58,2,'Peqin','PQ',1),
(59,2,'Permet','PR',1),
(60,2,'Pogradec','PG',1),
(61,2,'Puke','PU',1),
(62,2,'Shkoder','SH',1),
(63,2,'Skrapar','SK',1),
(64,2,'Sarande','SR',1),
(65,2,'Tepelene','TE',1),
(66,2,'Tropoje','TP',1),
(67,2,'Tirane','TR',1),
(68,2,'Vlore','VL',1),
(69,3,'Adrar','ADR',1),
(70,3,'Ain Defla','ADE',1),
(71,3,'Ain Temouchent','ATE',1),
(72,3,'Alger','ALG',1),
(73,3,'Annaba','ANN',1),
(74,3,'Batna','BAT',1),
(75,3,'Bechar','BEC',1),
(76,3,'Bejaia','BEJ',1),
(77,3,'Biskra','BIS',1),
(78,3,'Blida','BLI',1),
(79,3,'Bordj Bou Arreridj','BBA',1),
(80,3,'Bouira','BOA',1),
(81,3,'Boumerdes','BMD',1),
(82,3,'Chlef','CHL',1),
(83,3,'Constantine','CON',1),
(84,3,'Djelfa','DJE',1),
(85,3,'El Bayadh','EBA',1),
(86,3,'El Oued','EOU',1),
(87,3,'El Tarf','ETA',1),
(88,3,'Ghardaia','GHA',1),
(89,3,'Guelma','GUE',1),
(90,3,'Illizi','ILL',1),
(91,3,'Jijel','JIJ',1),
(92,3,'Khenchela','KHE',1),
(93,3,'Laghouat','LAG',1),
(94,3,'Muaskar','MUA',1),
(95,3,'Medea','MED',1),
(96,3,'Mila','MIL',1),
(97,3,'Mostaganem','MOS',1),
(98,3,'M\'Sila','MSI',1),
(99,3,'Naama','NAA',1),
(100,3,'Oran','ORA',1),
(101,3,'Ouargla','OUA',1),
(102,3,'Oum el-Bouaghi','OEB',1),
(103,3,'Relizane','REL',1),
(104,3,'Saida','SAI',1),
(105,3,'Setif','SET',1),
(106,3,'Sidi Bel Abbes','SBA',1),
(107,3,'Skikda','SKI',1),
(108,3,'Souk Ahras','SAH',1),
(109,3,'Tamanghasset','TAM',1),
(110,3,'Tebessa','TEB',1),
(111,3,'Tiaret','TIA',1),
(112,3,'Tindouf','TIN',1),
(113,3,'Tipaza','TIP',1),
(114,3,'Tissemsilt','TIS',1),
(115,3,'Tizi Ouzou','TOU',1),
(116,3,'Tlemcen','TLE',1),
(117,4,'Eastern','E',1),
(118,4,'Manu\'a','M',1),
(119,4,'Rose Island','R',1),
(120,4,'Swains Island','S',1),
(121,4,'Western','W',1),
(122,5,'Andorra la Vella','ALV',1),
(123,5,'Canillo','CAN',1),
(124,5,'Encamp','ENC',1),
(125,5,'Escaldes-Engordany','ESE',1),
(126,5,'La Massana','LMA',1),
(127,5,'Ordino','ORD',1),
(128,5,'Sant Julia de Loria','SJL',1),
(129,6,'Bengo','BGO',1),
(130,6,'Benguela','BGU',1),
(131,6,'Bie','BIE',1),
(132,6,'Cabinda','CAB',1),
(133,6,'Cuando-Cubango','CCU',1),
(134,6,'Cuanza Norte','CNO',1),
(135,6,'Cuanza Sul','CUS',1),
(136,6,'Cunene','CNN',1),
(137,6,'Huambo','HUA',1),
(138,6,'Huila','HUI',1),
(139,6,'Luanda','LUA',1),
(140,6,'Lunda Norte','LNO',1),
(141,6,'Lunda Sul','LSU',1),
(142,6,'Malange','MAL',1),
(143,6,'Moxico','MOX',1),
(144,6,'Namibe','NAM',1),
(145,6,'Uige','UIG',1),
(146,6,'Zaire','ZAI',1),
(147,9,'Saint George','ASG',1),
(148,9,'Saint John','ASJ',1),
(149,9,'Saint Mary','ASM',1),
(150,9,'Saint Paul','ASL',1),
(151,9,'Saint Peter','ASR',1),
(152,9,'Saint Philip','ASH',1),
(153,9,'Barbuda','BAR',1),
(154,9,'Redonda','RED',1),
(155,10,'Antartida e Islas del Atlantico','AN',1),
(156,10,'Buenos Aires','BA',1),
(157,10,'Catamarca','CA',1),
(158,10,'Chaco','CH',1),
(159,10,'Chubut','CU',1),
(160,10,'Cordoba','CO',1),
(161,10,'Corrientes','CR',1),
(162,10,'Distrito Federal','DF',1),
(163,10,'Entre Rios','ER',1),
(164,10,'Formosa','FO',1),
(165,10,'Jujuy','JU',1),
(166,10,'La Pampa','LP',1),
(167,10,'La Rioja','LR',1),
(168,10,'Mendoza','ME',1),
(169,10,'Misiones','MI',1),
(170,10,'Neuquen','NE',1),
(171,10,'Rio Negro','RN',1),
(172,10,'Salta','SA',1),
(173,10,'San Juan','SJ',1),
(174,10,'San Luis','SL',1),
(175,10,'Santa Cruz','SC',1),
(176,10,'Santa Fe','SF',1),
(177,10,'Santiago del Estero','SD',1),
(178,10,'Tierra del Fuego','TF',1),
(179,10,'Tucuman','TU',1),
(180,11,'Aragatsotn','AGT',1),
(181,11,'Ararat','ARR',1),
(182,11,'Armavir','ARM',1),
(183,11,'Geghark\'unik\'','GEG',1),
(184,11,'Kotayk\'','KOT',1),
(185,11,'Lorri','LOR',1),
(186,11,'Shirak','SHI',1),
(187,11,'Syunik\'','SYU',1),
(188,11,'Tavush','TAV',1),
(189,11,'Vayots\' Dzor','VAY',1),
(190,11,'Yerevan','YER',1),
(191,13,'Australian Capital Territory','ACT',1),
(192,13,'New South Wales','NSW',1),
(193,13,'Northern Territory','NT',1),
(194,13,'Queensland','QLD',1),
(195,13,'South Australia','SA',1),
(196,13,'Tasmania','TAS',1),
(197,13,'Victoria','VIC',1),
(198,13,'Western Australia','WA',1),
(199,14,'Burgenland','BUR',1),
(200,14,'Kärnten','KAR',1),
(201,14,'Niederösterreich','NOS',1),
(202,14,'Oberösterreich','OOS',1),
(203,14,'Salzburg','SAL',1),
(204,14,'Steiermark','STE',1),
(205,14,'Tirol','TIR',1),
(206,14,'Vorarlberg','VOR',1),
(207,14,'Wien','WIE',1),
(208,15,'Ali Bayramli','AB',1),
(209,15,'Abseron','ABS',1),
(210,15,'AgcabAdi','AGC',1),
(211,15,'Agdam','AGM',1),
(212,15,'Agdas','AGS',1),
(213,15,'Agstafa','AGA',1),
(214,15,'Agsu','AGU',1),
(215,15,'Astara','AST',1),
(216,15,'Baki','BA',1),
(217,15,'BabAk','BAB',1),
(218,15,'BalakAn','BAL',1),
(219,15,'BArdA','BAR',1),
(220,15,'Beylaqan','BEY',1),
(221,15,'Bilasuvar','BIL',1),
(222,15,'Cabrayil','CAB',1),
(223,15,'Calilabab','CAL',1),
(224,15,'Culfa','CUL',1),
(225,15,'Daskasan','DAS',1),
(226,15,'Davaci','DAV',1),
(227,15,'Fuzuli','FUZ',1),
(228,15,'Ganca','GA',1),
(229,15,'Gadabay','GAD',1),
(230,15,'Goranboy','GOR',1),
(231,15,'Goycay','GOY',1),
(232,15,'Haciqabul','HAC',1),
(233,15,'Imisli','IMI',1),
(234,15,'Ismayilli','ISM',1),
(235,15,'Kalbacar','KAL',1),
(236,15,'Kurdamir','KUR',1),
(237,15,'Lankaran','LA',1),
(238,15,'Lacin','LAC',1),
(239,15,'Lankaran','LAN',1),
(240,15,'Lerik','LER',1),
(241,15,'Masalli','MAS',1),
(242,15,'Mingacevir','MI',1),
(243,15,'Naftalan','NA',1),
(244,15,'Neftcala','NEF',1),
(245,15,'Oguz','OGU',1),
(246,15,'Ordubad','ORD',1),
(247,15,'Qabala','QAB',1),
(248,15,'Qax','QAX',1),
(249,15,'Qazax','QAZ',1),
(250,15,'Qobustan','QOB',1),
(251,15,'Quba','QBA',1),
(252,15,'Qubadli','QBI',1),
(253,15,'Qusar','QUS',1),
(254,15,'Saki','SA',1),
(255,15,'Saatli','SAT',1),
(256,15,'Sabirabad','SAB',1),
(257,15,'Sadarak','SAD',1),
(258,15,'Sahbuz','SAH',1),
(259,15,'Saki','SAK',1),
(260,15,'Salyan','SAL',1),
(261,15,'Sumqayit','SM',1),
(262,15,'Samaxi','SMI',1),
(263,15,'Samkir','SKR',1),
(264,15,'Samux','SMX',1),
(265,15,'Sarur','SAR',1),
(266,15,'Siyazan','SIY',1),
(267,15,'Susa','SS',1),
(268,15,'Susa','SUS',1),
(269,15,'Tartar','TAR',1),
(270,15,'Tovuz','TOV',1),
(271,15,'Ucar','UCA',1),
(272,15,'Xankandi','XA',1),
(273,15,'Xacmaz','XAC',1),
(274,15,'Xanlar','XAN',1),
(275,15,'Xizi','XIZ',1),
(276,15,'Xocali','XCI',1),
(277,15,'Xocavand','XVD',1),
(278,15,'Yardimli','YAR',1),
(279,15,'Yevlax','YEV',1),
(280,15,'Zangilan','ZAN',1),
(281,15,'Zaqatala','ZAQ',1),
(282,15,'Zardab','ZAR',1),
(283,15,'Naxcivan','NX',1),
(284,16,'Acklins','ACK',1),
(285,16,'Berry Islands','BER',1),
(286,16,'Bimini','BIM',1),
(287,16,'Black Point','BLK',1),
(288,16,'Cat Island','CAT',1),
(289,16,'Central Abaco','CAB',1),
(290,16,'Central Andros','CAN',1),
(291,16,'Central Eleuthera','CEL',1),
(292,16,'City of Freeport','FRE',1),
(293,16,'Crooked Island','CRO',1),
(294,16,'East Grand Bahama','EGB',1),
(295,16,'Exuma','EXU',1),
(296,16,'Grand Cay','GRD',1),
(297,16,'Harbour Island','HAR',1),
(298,16,'Hope Town','HOP',1),
(299,16,'Inagua','INA',1),
(300,16,'Long Island','LNG',1),
(301,16,'Mangrove Cay','MAN',1),
(302,16,'Mayaguana','MAY',1),
(303,16,'Moore\'s Island','MOO',1),
(304,16,'North Abaco','NAB',1),
(305,16,'North Andros','NAN',1),
(306,16,'North Eleuthera','NEL',1),
(307,16,'Ragged Island','RAG',1),
(308,16,'Rum Cay','RUM',1),
(309,16,'San Salvador','SAL',1),
(310,16,'South Abaco','SAB',1),
(311,16,'South Andros','SAN',1),
(312,16,'South Eleuthera','SEL',1),
(313,16,'Spanish Wells','SWE',1),
(314,16,'West Grand Bahama','WGB',1),
(315,17,'Capital','CAP',1),
(316,17,'Central','CEN',1),
(317,17,'Muharraq','MUH',1),
(318,17,'Northern','NOR',1),
(319,17,'Southern','SOU',1),
(320,18,'Barisal','BAR',1),
(321,18,'Chittagong','CHI',1),
(322,18,'Dhaka','DHA',1),
(323,18,'Khulna','KHU',1),
(324,18,'Rajshahi','RAJ',1),
(325,18,'Sylhet','SYL',1),
(326,19,'Christ Church','CC',1),
(327,19,'Saint Andrew','AND',1),
(328,19,'Saint George','GEO',1),
(329,19,'Saint James','JAM',1),
(330,19,'Saint John','JOH',1),
(331,19,'Saint Joseph','JOS',1),
(332,19,'Saint Lucy','LUC',1),
(333,19,'Saint Michael','MIC',1),
(334,19,'Saint Peter','PET',1),
(335,19,'Saint Philip','PHI',1),
(336,19,'Saint Thomas','THO',1),
(337,20,'Brestskaya (Brest)','BR',1),
(338,20,'Homyel\'skaya (Homyel\')','HO',1),
(339,20,'Horad Minsk','HM',1),
(340,20,'Hrodzyenskaya (Hrodna)','HR',1),
(341,20,'Mahilyowskaya (Mahilyow)','MA',1),
(342,20,'Minskaya','MI',1),
(343,20,'Vitsyebskaya (Vitsyebsk)','VI',1),
(344,21,'Antwerpen','VAN',1),
(345,21,'Brabant Wallon','WBR',1),
(346,21,'Hainaut','WHT',1),
(347,21,'Liège','WLG',1),
(348,21,'Limburg','VLI',1),
(349,21,'Luxembourg','WLX',1),
(350,21,'Namur','WNA',1),
(351,21,'Oost-Vlaanderen','VOV',1),
(352,21,'Vlaams Brabant','VBR',1),
(353,21,'West-Vlaanderen','VWV',1),
(354,22,'Belize','BZ',1),
(355,22,'Cayo','CY',1),
(356,22,'Corozal','CR',1),
(357,22,'Orange Walk','OW',1),
(358,22,'Stann Creek','SC',1),
(359,22,'Toledo','TO',1),
(360,23,'Alibori','AL',1),
(361,23,'Atakora','AK',1),
(362,23,'Atlantique','AQ',1),
(363,23,'Borgou','BO',1),
(364,23,'Collines','CO',1),
(365,23,'Donga','DO',1),
(366,23,'Kouffo','KO',1),
(367,23,'Littoral','LI',1),
(368,23,'Mono','MO',1),
(369,23,'Oueme','OU',1),
(370,23,'Plateau','PL',1),
(371,23,'Zou','ZO',1),
(372,24,'Devonshire','DS',1),
(373,24,'Hamilton City','HC',1),
(374,24,'Hamilton','HA',1),
(375,24,'Paget','PG',1),
(376,24,'Pembroke','PB',1),
(377,24,'Saint George City','GC',1),
(378,24,'Saint George\'s','SG',1),
(379,24,'Sandys','SA',1),
(380,24,'Smith\'s','SM',1),
(381,24,'Southampton','SH',1),
(382,24,'Warwick','WA',1),
(383,25,'Bumthang','BUM',1),
(384,25,'Chukha','CHU',1),
(385,25,'Dagana','DAG',1),
(386,25,'Gasa','GAS',1),
(387,25,'Haa','HAA',1),
(388,25,'Lhuntse','LHU',1),
(389,25,'Mongar','MON',1),
(390,25,'Paro','PAR',1),
(391,25,'Pemagatshel','PEM',1),
(392,25,'Punakha','PUN',1),
(393,25,'Samdrup Jongkhar','SJO',1),
(394,25,'Samtse','SAT',1),
(395,25,'Sarpang','SAR',1),
(396,25,'Thimphu','THI',1),
(397,25,'Trashigang','TRG',1),
(398,25,'Trashiyangste','TRY',1),
(399,25,'Trongsa','TRO',1),
(400,25,'Tsirang','TSI',1),
(401,25,'Wangdue Phodrang','WPH',1),
(402,25,'Zhemgang','ZHE',1),
(403,26,'Beni','BEN',1),
(404,26,'Chuquisaca','CHU',1),
(405,26,'Cochabamba','COC',1),
(406,26,'La Paz','LPZ',1),
(407,26,'Oruro','ORU',1),
(408,26,'Pando','PAN',1),
(409,26,'Potosi','POT',1),
(410,26,'Santa Cruz','SCZ',1),
(411,26,'Tarija','TAR',1),
(412,27,'Brcko district','BRO',1),
(413,27,'Unsko-Sanski Kanton','FUS',1),
(414,27,'Posavski Kanton','FPO',1),
(415,27,'Tuzlanski Kanton','FTU',1),
(416,27,'Zenicko-Dobojski Kanton','FZE',1),
(417,27,'Bosanskopodrinjski Kanton','FBP',1),
(418,27,'Srednjebosanski Kanton','FSB',1),
(419,27,'Hercegovacko-neretvanski Kanton','FHN',1),
(420,27,'Zapadnohercegovacka Zupanija','FZH',1),
(421,27,'Kanton Sarajevo','FSA',1),
(422,27,'Zapadnobosanska','FZA',1),
(423,27,'Banja Luka','SBL',1),
(424,27,'Doboj','SDO',1),
(425,27,'Bijeljina','SBI',1),
(426,27,'Vlasenica','SVL',1),
(427,27,'Sarajevo-Romanija or Sokolac','SSR',1),
(428,27,'Foca','SFO',1),
(429,27,'Trebinje','STR',1),
(430,28,'Central','CE',1),
(431,28,'Ghanzi','GH',1),
(432,28,'Kgalagadi','KD',1),
(433,28,'Kgatleng','KT',1),
(434,28,'Kweneng','KW',1),
(435,28,'Ngamiland','NG',1),
(436,28,'North East','NE',1),
(437,28,'North West','NW',1),
(438,28,'South East','SE',1),
(439,28,'Southern','SO',1),
(440,30,'Acre','AC',1),
(441,30,'Alagoas','AL',1),
(442,30,'Amapá','AP',1),
(443,30,'Amazonas','AM',1),
(444,30,'Bahia','BA',1),
(445,30,'Ceará','CE',1),
(446,30,'Distrito Federal','DF',1),
(447,30,'Espírito Santo','ES',1),
(448,30,'Goiás','GO',1),
(449,30,'Maranhão','MA',1),
(450,30,'Mato Grosso','MT',1),
(451,30,'Mato Grosso do Sul','MS',1),
(452,30,'Minas Gerais','MG',1),
(453,30,'Pará','PA',1),
(454,30,'Paraíba','PB',1),
(455,30,'Paraná','PR',1),
(456,30,'Pernambuco','PE',1),
(457,30,'Piauí','PI',1),
(458,30,'Rio de Janeiro','RJ',1),
(459,30,'Rio Grande do Norte','RN',1),
(460,30,'Rio Grande do Sul','RS',1),
(461,30,'Rondônia','RO',1),
(462,30,'Roraima','RR',1),
(463,30,'Santa Catarina','SC',1),
(464,30,'São Paulo','SP',1),
(465,30,'Sergipe','SE',1),
(466,30,'Tocantins','TO',1),
(467,31,'Peros Banhos','PB',1),
(468,31,'Salomon Islands','SI',1),
(469,31,'Nelsons Island','NI',1),
(470,31,'Three Brothers','TB',1),
(471,31,'Eagle Islands','EA',1),
(472,31,'Danger Island','DI',1),
(473,31,'Egmont Islands','EG',1),
(474,31,'Diego Garcia','DG',1),
(475,32,'Belait','BEL',1),
(476,32,'Brunei and Muara','BRM',1),
(477,32,'Temburong','TEM',1),
(478,32,'Tutong','TUT',1),
(479,33,'Blagoevgrad','',1),
(480,33,'Burgas','',1),
(481,33,'Dobrich','',1),
(482,33,'Gabrovo','',1),
(483,33,'Haskovo','',1),
(484,33,'Kardjali','',1),
(485,33,'Kyustendil','',1),
(486,33,'Lovech','',1),
(487,33,'Montana','',1),
(488,33,'Pazardjik','',1),
(489,33,'Pernik','',1),
(490,33,'Pleven','',1),
(491,33,'Plovdiv','',1),
(492,33,'Razgrad','',1),
(493,33,'Shumen','',1),
(494,33,'Silistra','',1),
(495,33,'Sliven','',1),
(496,33,'Smolyan','',1),
(497,33,'Sofia','',1),
(498,33,'Sofia - town','',1),
(499,33,'Stara Zagora','',1),
(500,33,'Targovishte','',1),
(501,33,'Varna','',1),
(502,33,'Veliko Tarnovo','',1),
(503,33,'Vidin','',1),
(504,33,'Vratza','',1),
(505,33,'Yambol','',1),
(506,34,'Bale','BAL',1),
(507,34,'Bam','BAM',1),
(508,34,'Banwa','BAN',1),
(509,34,'Bazega','BAZ',1),
(510,34,'Bougouriba','BOR',1),
(511,34,'Boulgou','BLG',1),
(512,34,'Boulkiemde','BOK',1),
(513,34,'Comoe','COM',1),
(514,34,'Ganzourgou','GAN',1),
(515,34,'Gnagna','GNA',1),
(516,34,'Gourma','GOU',1),
(517,34,'Houet','HOU',1),
(518,34,'Ioba','IOA',1),
(519,34,'Kadiogo','KAD',1),
(520,34,'Kenedougou','KEN',1),
(521,34,'Komondjari','KOD',1),
(522,34,'Kompienga','KOP',1),
(523,34,'Kossi','KOS',1),
(524,34,'Koulpelogo','KOL',1),
(525,34,'Kouritenga','KOT',1),
(526,34,'Kourweogo','KOW',1),
(527,34,'Leraba','LER',1),
(528,34,'Loroum','LOR',1),
(529,34,'Mouhoun','MOU',1),
(530,34,'Nahouri','NAH',1),
(531,34,'Namentenga','NAM',1),
(532,34,'Nayala','NAY',1),
(533,34,'Noumbiel','NOU',1),
(534,34,'Oubritenga','OUB',1),
(535,34,'Oudalan','OUD',1),
(536,34,'Passore','PAS',1),
(537,34,'Poni','PON',1),
(538,34,'Sanguie','SAG',1),
(539,34,'Sanmatenga','SAM',1),
(540,34,'Seno','SEN',1),
(541,34,'Sissili','SIS',1),
(542,34,'Soum','SOM',1),
(543,34,'Sourou','SOR',1),
(544,34,'Tapoa','TAP',1),
(545,34,'Tuy','TUY',1),
(546,34,'Yagha','YAG',1),
(547,34,'Yatenga','YAT',1),
(548,34,'Ziro','ZIR',1),
(549,34,'Zondoma','ZOD',1),
(550,34,'Zoundweogo','ZOW',1),
(551,35,'Bubanza','BB',1),
(552,35,'Bujumbura','BJ',1),
(553,35,'Bururi','BR',1),
(554,35,'Cankuzo','CA',1),
(555,35,'Cibitoke','CI',1),
(556,35,'Gitega','GI',1),
(557,35,'Karuzi','KR',1),
(558,35,'Kayanza','KY',1),
(559,35,'Kirundo','KI',1),
(560,35,'Makamba','MA',1),
(561,35,'Muramvya','MU',1),
(562,35,'Muyinga','MY',1),
(563,35,'Mwaro','MW',1),
(564,35,'Ngozi','NG',1),
(565,35,'Rutana','RT',1),
(566,35,'Ruyigi','RY',1),
(567,36,'Phnom Penh','PP',1),
(568,36,'Preah Seihanu (Kompong Som or Sihanoukville)','PS',1),
(569,36,'Pailin','PA',1),
(570,36,'Keb','KB',1),
(571,36,'Banteay Meanchey','BM',1),
(572,36,'Battambang','BA',1),
(573,36,'Kampong Cham','KM',1),
(574,36,'Kampong Chhnang','KN',1),
(575,36,'Kampong Speu','KU',1),
(576,36,'Kampong Som','KO',1),
(577,36,'Kampong Thom','KT',1),
(578,36,'Kampot','KP',1),
(579,36,'Kandal','KL',1),
(580,36,'Kaoh Kong','KK',1),
(581,36,'Kratie','KR',1),
(582,36,'Mondul Kiri','MK',1),
(583,36,'Oddar Meancheay','OM',1),
(584,36,'Pursat','PU',1),
(585,36,'Preah Vihear','PR',1),
(586,36,'Prey Veng','PG',1),
(587,36,'Ratanak Kiri','RK',1),
(588,36,'Siemreap','SI',1),
(589,36,'Stung Treng','ST',1),
(590,36,'Svay Rieng','SR',1),
(591,36,'Takeo','TK',1),
(592,37,'Adamawa (Adamaoua)','ADA',1),
(593,37,'Centre','CEN',1),
(594,37,'East (Est)','EST',1),
(595,37,'Extreme North (Extreme-Nord)','EXN',1),
(596,37,'Littoral','LIT',1),
(597,37,'North (Nord)','NOR',1),
(598,37,'Northwest (Nord-Ouest)','NOT',1),
(599,37,'West (Ouest)','OUE',1),
(600,37,'South (Sud)','SUD',1),
(601,37,'Southwest (Sud-Ouest).','SOU',1),
(602,38,'Alberta','AB',1),
(603,38,'British Columbia','BC',1),
(604,38,'Manitoba','MB',1),
(605,38,'New Brunswick','NB',1),
(606,38,'Newfoundland and Labrador','NL',1),
(607,38,'Northwest Territories','NT',1),
(608,38,'Nova Scotia','NS',1),
(609,38,'Nunavut','NU',1),
(610,38,'Ontario','ON',1),
(611,38,'Prince Edward Island','PE',1),
(612,38,'Québec','QC',1),
(613,38,'Saskatchewan','SK',1),
(614,38,'Yukon Territory','YT',1),
(615,39,'Boa Vista','BV',1),
(616,39,'Brava','BR',1),
(617,39,'Calheta de Sao Miguel','CS',1),
(618,39,'Maio','MA',1),
(619,39,'Mosteiros','MO',1),
(620,39,'Paul','PA',1),
(621,39,'Porto Novo','PN',1),
(622,39,'Praia','PR',1),
(623,39,'Ribeira Grande','RG',1),
(624,39,'Sal','SL',1),
(625,39,'Santa Catarina','CA',1),
(626,39,'Santa Cruz','CR',1),
(627,39,'Sao Domingos','SD',1),
(628,39,'Sao Filipe','SF',1),
(629,39,'Sao Nicolau','SN',1),
(630,39,'Sao Vicente','SV',1),
(631,39,'Tarrafal','TA',1),
(632,40,'Creek','CR',1),
(633,40,'Eastern','EA',1),
(634,40,'Midland','ML',1),
(635,40,'South Town','ST',1),
(636,40,'Spot Bay','SP',1),
(637,40,'Stake Bay','SK',1),
(638,40,'West End','WD',1),
(639,40,'Western','WN',1),
(640,41,'Bamingui-Bangoran','BBA',1),
(641,41,'Basse-Kotto','BKO',1),
(642,41,'Haute-Kotto','HKO',1),
(643,41,'Haut-Mbomou','HMB',1),
(644,41,'Kemo','KEM',1),
(645,41,'Lobaye','LOB',1),
(646,41,'Mambere-KadeÔ','MKD',1),
(647,41,'Mbomou','MBO',1),
(648,41,'Nana-Mambere','NMM',1),
(649,41,'Ombella-M\'Poko','OMP',1),
(650,41,'Ouaka','OUK',1),
(651,41,'Ouham','OUH',1),
(652,41,'Ouham-Pende','OPE',1),
(653,41,'Vakaga','VAK',1),
(654,41,'Nana-Grebizi','NGR',1),
(655,41,'Sangha-Mbaere','SMB',1),
(656,41,'Bangui','BAN',1),
(657,42,'Batha','BA',1),
(658,42,'Biltine','BI',1),
(659,42,'Borkou-Ennedi-Tibesti','BE',1),
(660,42,'Chari-Baguirmi','CB',1),
(661,42,'Guera','GU',1),
(662,42,'Kanem','KA',1),
(663,42,'Lac','LA',1),
(664,42,'Logone Occidental','LC',1),
(665,42,'Logone Oriental','LR',1),
(666,42,'Mayo-Kebbi','MK',1),
(667,42,'Moyen-Chari','MC',1),
(668,42,'Ouaddai','OU',1),
(669,42,'Salamat','SA',1),
(670,42,'Tandjile','TA',1),
(671,43,'Aisen del General Carlos Ibanez','AI',1),
(672,43,'Antofagasta','AN',1),
(673,43,'Araucania','AR',1),
(674,43,'Atacama','AT',1),
(675,43,'Bio-Bio','BI',1),
(676,43,'Coquimbo','CO',1),
(677,43,'Libertador General Bernardo O\'Higgins','LI',1),
(678,43,'Los Lagos','LL',1),
(679,43,'Magallanes y de la Antartica Chilena','MA',1),
(680,43,'Maule','ML',1),
(681,43,'Region Metropolitana','RM',1),
(682,43,'Tarapaca','TA',1),
(683,43,'Valparaiso','VS',1),
(684,44,'Anhui','AN',1),
(685,44,'Beijing','BE',1),
(686,44,'Chongqing','CH',1),
(687,44,'Fujian','FU',1),
(688,44,'Gansu','GA',1),
(689,44,'Guangdong','GU',1),
(690,44,'Guangxi','GX',1),
(691,44,'Guizhou','GZ',1),
(692,44,'Hainan','HA',1),
(693,44,'Hebei','HB',1),
(694,44,'Heilongjiang','HL',1),
(695,44,'Henan','HE',1),
(696,44,'Hong Kong','HK',1),
(697,44,'Hubei','HU',1),
(698,44,'Hunan','HN',1),
(699,44,'Inner Mongolia','IM',1),
(700,44,'Jiangsu','JI',1),
(701,44,'Jiangxi','JX',1),
(702,44,'Jilin','JL',1),
(703,44,'Liaoning','LI',1),
(704,44,'Macau','MA',1),
(705,44,'Ningxia','NI',1),
(706,44,'Shaanxi','SH',1),
(707,44,'Shandong','SA',1),
(708,44,'Shanghai','SG',1),
(709,44,'Shanxi','SX',1),
(710,44,'Sichuan','SI',1),
(711,44,'Tianjin','TI',1),
(712,44,'Xinjiang','XI',1),
(713,44,'Yunnan','YU',1),
(714,44,'Zhejiang','ZH',1),
(715,46,'Direction Island','D',1),
(716,46,'Home Island','H',1),
(717,46,'Horsburgh Island','O',1),
(718,46,'South Island','S',1),
(719,46,'West Island','W',1),
(720,47,'Amazonas','AMZ',1),
(721,47,'Antioquia','ANT',1),
(722,47,'Arauca','ARA',1),
(723,47,'Atlantico','ATL',1),
(724,47,'Bogota D.C.','BDC',1),
(725,47,'Bolivar','BOL',1),
(726,47,'Boyaca','BOY',1),
(727,47,'Caldas','CAL',1),
(728,47,'Caqueta','CAQ',1),
(729,47,'Casanare','CAS',1),
(730,47,'Cauca','CAU',1),
(731,47,'Cesar','CES',1),
(732,47,'Choco','CHO',1),
(733,47,'Cordoba','COR',1),
(734,47,'Cundinamarca','CAM',1),
(735,47,'Guainia','GNA',1),
(736,47,'Guajira','GJR',1),
(737,47,'Guaviare','GVR',1),
(738,47,'Huila','HUI',1),
(739,47,'Magdalena','MAG',1),
(740,47,'Meta','MET',1),
(741,47,'Narino','NAR',1),
(742,47,'Norte de Santander','NDS',1),
(743,47,'Putumayo','PUT',1),
(744,47,'Quindio','QUI',1),
(745,47,'Risaralda','RIS',1),
(746,47,'San Andres y Providencia','SAP',1),
(747,47,'Santander','SAN',1),
(748,47,'Sucre','SUC',1),
(749,47,'Tolima','TOL',1),
(750,47,'Valle del Cauca','VDC',1),
(751,47,'Vaupes','VAU',1),
(752,47,'Vichada','VIC',1),
(753,48,'Grande Comore','G',1),
(754,48,'Anjouan','A',1),
(755,48,'Moheli','M',1),
(756,49,'Bouenza','BO',1),
(757,49,'Brazzaville','BR',1),
(758,49,'Cuvette','CU',1),
(759,49,'Cuvette-Ouest','CO',1),
(760,49,'Kouilou','KO',1),
(761,49,'Lekoumou','LE',1),
(762,49,'Likouala','LI',1),
(763,49,'Niari','NI',1),
(764,49,'Plateaux','PL',1),
(765,49,'Pool','PO',1),
(766,49,'Sangha','SA',1),
(767,50,'Pukapuka','PU',1),
(768,50,'Rakahanga','RK',1),
(769,50,'Manihiki','MK',1),
(770,50,'Penrhyn','PE',1),
(771,50,'Nassau Island','NI',1),
(772,50,'Surwarrow','SU',1),
(773,50,'Palmerston','PA',1),
(774,50,'Aitutaki','AI',1),
(775,50,'Manuae','MA',1),
(776,50,'Takutea','TA',1),
(777,50,'Mitiaro','MT',1),
(778,50,'Atiu','AT',1),
(779,50,'Mauke','MU',1),
(780,50,'Rarotonga','RR',1),
(781,50,'Mangaia','MG',1),
(782,51,'Alajuela','AL',1),
(783,51,'Cartago','CA',1),
(784,51,'Guanacaste','GU',1),
(785,51,'Heredia','HE',1),
(786,51,'Limon','LI',1),
(787,51,'Puntarenas','PU',1),
(788,51,'San Jose','SJ',1),
(789,52,'Abengourou','ABE',1),
(790,52,'Abidjan','ABI',1),
(791,52,'Aboisso','ABO',1),
(792,52,'Adiake','ADI',1),
(793,52,'Adzope','ADZ',1),
(794,52,'Agboville','AGB',1),
(795,52,'Agnibilekrou','AGN',1),
(796,52,'Alepe','ALE',1),
(797,52,'Bocanda','BOC',1),
(798,52,'Bangolo','BAN',1),
(799,52,'Beoumi','BEO',1),
(800,52,'Biankouma','BIA',1),
(801,52,'Bondoukou','BDK',1),
(802,52,'Bongouanou','BGN',1),
(803,52,'Bouafle','BFL',1),
(804,52,'Bouake','BKE',1),
(805,52,'Bouna','BNA',1),
(806,52,'Boundiali','BDL',1),
(807,52,'Dabakala','DKL',1),
(808,52,'Dabou','DBU',1),
(809,52,'Daloa','DAL',1),
(810,52,'Danane','DAN',1),
(811,52,'Daoukro','DAO',1),
(812,52,'Dimbokro','DIM',1),
(813,52,'Divo','DIV',1),
(814,52,'Duekoue','DUE',1),
(815,52,'Ferkessedougou','FER',1),
(816,52,'Gagnoa','GAG',1),
(817,52,'Grand-Bassam','GBA',1),
(818,52,'Grand-Lahou','GLA',1),
(819,52,'Guiglo','GUI',1),
(820,52,'Issia','ISS',1),
(821,52,'Jacqueville','JAC',1),
(822,52,'Katiola','KAT',1),
(823,52,'Korhogo','KOR',1),
(824,52,'Lakota','LAK',1),
(825,52,'Man','MAN',1),
(826,52,'Mankono','MKN',1),
(827,52,'Mbahiakro','MBA',1),
(828,52,'Odienne','ODI',1),
(829,52,'Oume','OUM',1),
(830,52,'Sakassou','SAK',1),
(831,52,'San-Pedro','SPE',1),
(832,52,'Sassandra','SAS',1),
(833,52,'Seguela','SEG',1),
(834,52,'Sinfra','SIN',1),
(835,52,'Soubre','SOU',1),
(836,52,'Tabou','TAB',1),
(837,52,'Tanda','TAN',1),
(838,52,'Tiebissou','TIE',1),
(839,52,'Tingrela','TIN',1),
(840,52,'Tiassale','TIA',1),
(841,52,'Touba','TBA',1),
(842,52,'Toulepleu','TLP',1),
(843,52,'Toumodi','TMD',1),
(844,52,'Vavoua','VAV',1),
(845,52,'Yamoussoukro','YAM',1),
(846,52,'Zuenoula','ZUE',1),
(847,53,'Bjelovarsko-bilogorska','BB',1),
(848,53,'Grad Zagreb','GZ',1),
(849,53,'Dubrovačko-neretvanska','DN',1),
(850,53,'Istarska','IS',1),
(851,53,'Karlovačka','KA',1),
(852,53,'Koprivničko-križevačka','KK',1),
(853,53,'Krapinsko-zagorska','KZ',1),
(854,53,'Ličko-senjska','LS',1),
(855,53,'Međimurska','ME',1),
(856,53,'Osječko-baranjska','OB',1),
(857,53,'Požeško-slavonska','PS',1),
(858,53,'Primorsko-goranska','PG',1),
(859,53,'Šibensko-kninska','SK',1),
(860,53,'Sisačko-moslavačka','SM',1),
(861,53,'Brodsko-posavska','BP',1),
(862,53,'Splitsko-dalmatinska','SD',1),
(863,53,'Varaždinska','VA',1),
(864,53,'Virovitičko-podravska','VP',1),
(865,53,'Vukovarsko-srijemska','VS',1),
(866,53,'Zadarska','ZA',1),
(867,53,'Zagrebačka','ZG',1),
(868,54,'Camaguey','CA',1),
(869,54,'Ciego de Avila','CD',1),
(870,54,'Cienfuegos','CI',1),
(871,54,'Ciudad de La Habana','CH',1),
(872,54,'Granma','GR',1),
(873,54,'Guantanamo','GU',1),
(874,54,'Holguin','HO',1),
(875,54,'Isla de la Juventud','IJ',1),
(876,54,'La Habana','LH',1),
(877,54,'Las Tunas','LT',1),
(878,54,'Matanzas','MA',1),
(879,54,'Pinar del Rio','PR',1),
(880,54,'Sancti Spiritus','SS',1),
(881,54,'Santiago de Cuba','SC',1),
(882,54,'Villa Clara','VC',1),
(883,55,'Famagusta','F',1),
(884,55,'Kyrenia','K',1),
(885,55,'Larnaca','A',1),
(886,55,'Limassol','I',1),
(887,55,'Nicosia','N',1),
(888,55,'Paphos','P',1),
(889,56,'Ústecký','U',1),
(890,56,'Jihočeský','C',1),
(891,56,'Jihomoravský','B',1),
(892,56,'Karlovarský','K',1),
(893,56,'Královehradecký','H',1),
(894,56,'Liberecký','L',1),
(895,56,'Moravskoslezský','T',1),
(896,56,'Olomoucký','M',1),
(897,56,'Pardubický','E',1),
(898,56,'Plzeňský','P',1),
(899,56,'Praha','A',1),
(900,56,'Středočeský','S',1),
(901,56,'Vysočina','J',1),
(902,56,'Zlínský','Z',1),
(903,57,'Arhus','AR',1),
(904,57,'Bornholm','BH',1),
(905,57,'Copenhagen','CO',1),
(906,57,'Faroe Islands','FO',1),
(907,57,'Frederiksborg','FR',1),
(908,57,'Fyn','FY',1),
(909,57,'Kobenhavn','KO',1),
(910,57,'Nordjylland','NO',1),
(911,57,'Ribe','RI',1),
(912,57,'Ringkobing','RK',1),
(913,57,'Roskilde','RO',1),
(914,57,'Sonderjylland','SO',1),
(915,57,'Storstrom','ST',1),
(916,57,'Vejle','VK',1),
(917,57,'Vestjælland','VJ',1),
(918,57,'Viborg','VB',1),
(919,58,'\'Ali Sabih','S',1),
(920,58,'Dikhil','K',1),
(921,58,'Djibouti','J',1),
(922,58,'Obock','O',1),
(923,58,'Tadjoura','T',1),
(924,59,'Saint Andrew Parish','AND',1),
(925,59,'Saint David Parish','DAV',1),
(926,59,'Saint George Parish','GEO',1),
(927,59,'Saint John Parish','JOH',1),
(928,59,'Saint Joseph Parish','JOS',1),
(929,59,'Saint Luke Parish','LUK',1),
(930,59,'Saint Mark Parish','MAR',1),
(931,59,'Saint Patrick Parish','PAT',1),
(932,59,'Saint Paul Parish','PAU',1),
(933,59,'Saint Peter Parish','PET',1),
(934,60,'Distrito Nacional','DN',1),
(935,60,'Azua','AZ',1),
(936,60,'Baoruco','BC',1),
(937,60,'Barahona','BH',1),
(938,60,'Dajabon','DJ',1),
(939,60,'Duarte','DU',1),
(940,60,'Elias Pina','EL',1),
(941,60,'El Seybo','SY',1),
(942,60,'Espaillat','ET',1),
(943,60,'Hato Mayor','HM',1),
(944,60,'Independencia','IN',1),
(945,60,'La Altagracia','AL',1),
(946,60,'La Romana','RO',1),
(947,60,'La Vega','VE',1),
(948,60,'Maria Trinidad Sanchez','MT',1),
(949,60,'Monsenor Nouel','MN',1),
(950,60,'Monte Cristi','MC',1),
(951,60,'Monte Plata','MP',1),
(952,60,'Pedernales','PD',1),
(953,60,'Peravia (Bani)','PR',1),
(954,60,'Puerto Plata','PP',1),
(955,60,'Salcedo','SL',1),
(956,60,'Samana','SM',1),
(957,60,'Sanchez Ramirez','SH',1),
(958,60,'San Cristobal','SC',1),
(959,60,'San Jose de Ocoa','JO',1),
(960,60,'San Juan','SJ',1),
(961,60,'San Pedro de Macoris','PM',1),
(962,60,'Santiago','SA',1),
(963,60,'Santiago Rodriguez','ST',1),
(964,60,'Santo Domingo','SD',1),
(965,60,'Valverde','VA',1),
(966,61,'Aileu','AL',1),
(967,61,'Ainaro','AN',1),
(968,61,'Baucau','BA',1),
(969,61,'Bobonaro','BO',1),
(970,61,'Cova Lima','CO',1),
(971,61,'Dili','DI',1),
(972,61,'Ermera','ER',1),
(973,61,'Lautem','LA',1),
(974,61,'Liquica','LI',1),
(975,61,'Manatuto','MT',1),
(976,61,'Manufahi','MF',1),
(977,61,'Oecussi','OE',1),
(978,61,'Viqueque','VI',1),
(979,62,'Azuay','AZU',1),
(980,62,'Bolivar','BOL',1),
(981,62,'Cañar','CAN',1),
(982,62,'Carchi','CAR',1),
(983,62,'Chimborazo','CHI',1),
(984,62,'Cotopaxi','COT',1),
(985,62,'El Oro','EOR',1),
(986,62,'Esmeraldas','ESM',1),
(987,62,'Galápagos','GPS',1),
(988,62,'Guayas','GUA',1),
(989,62,'Imbabura','IMB',1),
(990,62,'Loja','LOJ',1),
(991,62,'Los Rios','LRO',1),
(992,62,'Manabí','MAN',1),
(993,62,'Morona Santiago','MSA',1),
(994,62,'Napo','NAP',1),
(995,62,'Orellana','ORE',1),
(996,62,'Pastaza','PAS',1),
(997,62,'Pichincha','PIC',1),
(998,62,'Sucumbíos','SUC',1),
(999,62,'Tungurahua','TUN',1),
(1000,62,'Zamora Chinchipe','ZCH',1),
(1001,63,'Ad Daqahliyah','DHY',1),
(1002,63,'Al Bahr al Ahmar','BAM',1),
(1003,63,'Al Buhayrah','BHY',1),
(1004,63,'Al Fayyum','FYM',1),
(1005,63,'Al Gharbiyah','GBY',1),
(1006,63,'Al Iskandariyah','IDR',1),
(1007,63,'Al Isma\'iliyah','IML',1),
(1008,63,'Al Jizah','JZH',1),
(1009,63,'Al Minufiyah','MFY',1),
(1010,63,'Al Minya','MNY',1),
(1011,63,'Al Qahirah','QHR',1),
(1012,63,'Al Qalyubiyah','QLY',1),
(1013,63,'Al Wadi al Jadid','WJD',1),
(1014,63,'Ash Sharqiyah','SHQ',1),
(1015,63,'As Suways','SWY',1),
(1016,63,'Aswan','ASW',1),
(1017,63,'Asyut','ASY',1),
(1018,63,'Bani Suwayf','BSW',1),
(1019,63,'Bur Sa\'id','BSD',1),
(1020,63,'Dumyat','DMY',1),
(1021,63,'Janub Sina\'','JNS',1),
(1022,63,'Kafr ash Shaykh','KSH',1),
(1023,63,'Matruh','MAT',1),
(1024,63,'Qina','QIN',1),
(1025,63,'Shamal Sina\'','SHS',1),
(1026,63,'Suhaj','SUH',1),
(1027,64,'Ahuachapan','AH',1),
(1028,64,'Cabanas','CA',1),
(1029,64,'Chalatenango','CH',1),
(1030,64,'Cuscatlan','CU',1),
(1031,64,'La Libertad','LB',1),
(1032,64,'La Paz','PZ',1),
(1033,64,'La Union','UN',1),
(1034,64,'Morazan','MO',1),
(1035,64,'San Miguel','SM',1),
(1036,64,'San Salvador','SS',1),
(1037,64,'San Vicente','SV',1),
(1038,64,'Santa Ana','SA',1),
(1039,64,'Sonsonate','SO',1),
(1040,64,'Usulutan','US',1),
(1041,65,'Provincia Annobon','AN',1),
(1042,65,'Provincia Bioko Norte','BN',1),
(1043,65,'Provincia Bioko Sur','BS',1),
(1044,65,'Provincia Centro Sur','CS',1),
(1045,65,'Provincia Kie-Ntem','KN',1),
(1046,65,'Provincia Litoral','LI',1),
(1047,65,'Provincia Wele-Nzas','WN',1),
(1048,66,'Central (Maekel)','MA',1),
(1049,66,'Anseba (Keren)','KE',1),
(1050,66,'Southern Red Sea (Debub-Keih-Bahri)','DK',1),
(1051,66,'Northern Red Sea (Semien-Keih-Bahri)','SK',1),
(1052,66,'Southern (Debub)','DE',1),
(1053,66,'Gash-Barka (Barentu)','BR',1),
(1054,67,'Harjumaa (Tallinn)','HA',1),
(1055,67,'Hiiumaa (Kardla)','HI',1),
(1056,67,'Ida-Virumaa (Johvi)','IV',1),
(1057,67,'Jarvamaa (Paide)','JA',1),
(1058,67,'Jogevamaa (Jogeva)','JO',1),
(1059,67,'Laane-Virumaa (Rakvere)','LV',1),
(1060,67,'Laanemaa (Haapsalu)','LA',1),
(1061,67,'Parnumaa (Parnu)','PA',1),
(1062,67,'Polvamaa (Polva)','PO',1),
(1063,67,'Raplamaa (Rapla)','RA',1),
(1064,67,'Saaremaa (Kuessaare)','SA',1),
(1065,67,'Tartumaa (Tartu)','TA',1),
(1066,67,'Valgamaa (Valga)','VA',1),
(1067,67,'Viljandimaa (Viljandi)','VI',1),
(1068,67,'Vorumaa (Voru)','VO',1),
(1069,68,'Afar','AF',1),
(1070,68,'Amhara','AH',1),
(1071,68,'Benishangul-Gumaz','BG',1),
(1072,68,'Gambela','GB',1),
(1073,68,'Hariai','HR',1),
(1074,68,'Oromia','OR',1),
(1075,68,'Somali','SM',1),
(1076,68,'Southern Nations - Nationalities and Peoples Region','SN',1),
(1077,68,'Tigray','TG',1),
(1078,68,'Addis Ababa','AA',1),
(1079,68,'Dire Dawa','DD',1),
(1080,71,'Central Division','C',1),
(1081,71,'Northern Division','N',1),
(1082,71,'Eastern Division','E',1),
(1083,71,'Western Division','W',1),
(1084,71,'Rotuma','R',1),
(1085,72,'Ahvenanmaan lääni','AL',1),
(1086,72,'Etelä-Suomen lääni','ES',1),
(1087,72,'Itä-Suomen lääni','IS',1),
(1088,72,'Länsi-Suomen lääni','LS',1),
(1089,72,'Lapin lääni','LA',1),
(1090,72,'Oulun lääni','OU',1),
(1114,74,'Ain','01',1),
(1115,74,'Aisne','02',1),
(1116,74,'Allier','03',1),
(1117,74,'Alpes de Haute Provence','04',1),
(1118,74,'Hautes-Alpes','05',1),
(1119,74,'Alpes Maritimes','06',1),
(1120,74,'Ardèche','07',1),
(1121,74,'Ardennes','08',1),
(1122,74,'Ariège','09',1),
(1123,74,'Aube','10',1),
(1124,74,'Aude','11',1),
(1125,74,'Aveyron','12',1),
(1126,74,'Bouches du Rhône','13',1),
(1127,74,'Calvados','14',1),
(1128,74,'Cantal','15',1),
(1129,74,'Charente','16',1),
(1130,74,'Charente Maritime','17',1),
(1131,74,'Cher','18',1),
(1132,74,'Corrèze','19',1),
(1133,74,'Corse du Sud','2A',1),
(1134,74,'Haute Corse','2B',1),
(1135,74,'Côte d'or','21',1),
(1136,74,'Côtes d'Armor','22',1),
(1137,74,'Creuse','23',1),
(1138,74,'Dordogne','24',1),
(1139,74,'Doubs','25',1),
(1140,74,'Drôme','26',1),
(1141,74,'Eure','27',1),
(1142,74,'Eure et Loir','28',1),
(1143,74,'Finistère','29',1),
(1144,74,'Gard','30',1),
(1145,74,'Haute Garonne','31',1),
(1146,74,'Gers','32',1),
(1147,74,'Gironde','33',1),
(1148,74,'Hérault','34',1),
(1149,74,'Ille et Vilaine','35',1),
(1150,74,'Indre','36',1),
(1151,74,'Indre et Loire','37',1),
(1152,74,'Isére','38',1),
(1153,74,'Jura','39',1),
(1154,74,'Landes','40',1),
(1155,74,'Loir et Cher','41',1),
(1156,74,'Loire','42',1),
(1157,74,'Haute Loire','43',1),
(1158,74,'Loire Atlantique','44',1),
(1159,74,'Loiret','45',1),
(1160,74,'Lot','46',1),
(1161,74,'Lot et Garonne','47',1),
(1162,74,'Lozère','48',1),
(1163,74,'Maine et Loire','49',1),
(1164,74,'Manche','50',1),
(1165,74,'Marne','51',1),
(1166,74,'Haute Marne','52',1),
(1167,74,'Mayenne','53',1),
(1168,74,'Meurthe et Moselle','54',1),
(1169,74,'Meuse','55',1),
(1170,74,'Morbihan','56',1),
(1171,74,'Moselle','57',1),
(1172,74,'Nièvre','58',1),
(1173,74,'Nord','59',1),
(1174,74,'Oise','60',1),
(1175,74,'Orne','61',1),
(1176,74,'Pas de Calais','62',1),
(1177,74,'Puy de Dôme','63',1),
(1178,74,'Pyrénées Atlantiques','64',1),
(1179,74,'Hautes Pyrénées','65',1),
(1180,74,'Pyrénées Orientales','66',1),
(1181,74,'Bas Rhin','67',1),
(1182,74,'Haut Rhin','68',1),
(1183,74,'Rhône','69',1),
(1184,74,'Haute Saône','70',1),
(1185,74,'Saône et Loire','71',1),
(1186,74,'Sarthe','72',1),
(1187,74,'Savoie','73',1),
(1188,74,'Haute Savoie','74',1),
(1189,74,'Paris','75',1),
(1190,74,'Seine Maritime','76',1),
(1191,74,'Seine et Marne','77',1),
(1192,74,'Yvelines','78',1),
(1193,74,'Deux Sèvres','79',1),
(1194,74,'Somme','80',1),
(1195,74,'Tarn','81',1),
(1196,74,'Tarn et Garonne','82',1),
(1197,74,'Var','83',1),
(1198,74,'Vaucluse','84',1),
(1199,74,'Vendée','85',1),
(1200,74,'Vienne','86',1),
(1201,74,'Haute Vienne','87',1),
(1202,74,'Vosges','88',1),
(1203,74,'Yonne','89',1),
(1204,74,'Territoire de Belfort','90',1),
(1205,74,'Essonne','91',1),
(1206,74,'Hauts de Seine','92',1),
(1207,74,'Seine St-Denis','93',1),
(1208,74,'Val de Marne','94',1),
(1209,74,'Val d\'Oise','95',1),
(1210,76,'Archipel des Marquises','M',1),
(1211,76,'Archipel des Tuamotu','T',1),
(1212,76,'Archipel des Tubuai','I',1),
(1213,76,'Iles du Vent','V',1),
(1214,76,'Iles Sous-le-Vent','S',1),
(1215,77,'Iles Crozet','C',1),
(1216,77,'Iles Kerguelen','K',1),
(1217,77,'Ile Amsterdam','A',1),
(1218,77,'Ile Saint-Paul','P',1),
(1219,77,'Adelie Land','D',1),
(1220,78,'Estuaire','ES',1),
(1221,78,'Haut-Ogooue','HO',1),
(1222,78,'Moyen-Ogooue','MO',1),
(1223,78,'Ngounie','NG',1),
(1224,78,'Nyanga','NY',1),
(1225,78,'Ogooue-Ivindo','OI',1),
(1226,78,'Ogooue-Lolo','OL',1),
(1227,78,'Ogooue-Maritime','OM',1),
(1228,78,'Woleu-Ntem','WN',1),
(1229,79,'Banjul','BJ',1),
(1230,79,'Basse','BS',1),
(1231,79,'Brikama','BR',1),
(1232,79,'Janjangbure','JA',1),
(1233,79,'Kanifeng','KA',1),
(1234,79,'Kerewan','KE',1),
(1235,79,'Kuntaur','KU',1),
(1236,79,'Mansakonko','MA',1),
(1237,79,'Lower River','LR',1),
(1238,79,'Central River','CR',1),
(1239,79,'North Bank','NB',1),
(1240,79,'Upper River','UR',1),
(1241,79,'Western','WE',1),
(1242,80,'Abkhazia','AB',1),
(1243,80,'Ajaria','AJ',1),
(1244,80,'Tbilisi','TB',1),
(1245,80,'Guria','GU',1),
(1246,80,'Imereti','IM',1),
(1247,80,'Kakheti','KA',1),
(1248,80,'Kvemo Kartli','KK',1),
(1249,80,'Mtskheta-Mtianeti','MM',1),
(1250,80,'Racha Lechkhumi and Kvemo Svanet','RL',1),
(1251,80,'Samegrelo-Zemo Svaneti','SZ',1),
(1252,80,'Samtskhe-Javakheti','SJ',1),
(1253,80,'Shida Kartli','SK',1),
(1254,81,'Baden-Württemberg','BAW',1),
(1255,81,'Bayern','BAY',1),
(1256,81,'Berlin','BER',1),
(1257,81,'Brandenburg','BRG',1),
(1258,81,'Bremen','BRE',1),
(1259,81,'Hamburg','HAM',1),
(1260,81,'Hessen','HES',1),
(1261,81,'Mecklenburg-Vorpommern','MEC',1),
(1262,81,'Niedersachsen','NDS',1),
(1263,81,'Nordrhein-Westfalen','NRW',1),
(1264,81,'Rheinland-Pfalz','RHE',1),
(1265,81,'Saarland','SAR',1),
(1266,81,'Sachsen','SAS',1),
(1267,81,'Sachsen-Anhalt','SAC',1),
(1268,81,'Schleswig-Holstein','SCN',1),
(1269,81,'Thüringen','THE',1),
(1270,82,'Ashanti Region','AS',1),
(1271,82,'Brong-Ahafo Region','BA',1),
(1272,82,'Central Region','CE',1),
(1273,82,'Eastern Region','EA',1),
(1274,82,'Greater Accra Region','GA',1),
(1275,82,'Northern Region','NO',1),
(1276,82,'Upper East Region','UE',1),
(1277,82,'Upper West Region','UW',1),
(1278,82,'Volta Region','VO',1),
(1279,82,'Western Region','WE',1),
(1280,84,'Attica','AT',1),
(1281,84,'Central Greece','CN',1),
(1282,84,'Central Macedonia','CM',1),
(1283,84,'Crete','CR',1),
(1284,84,'East Macedonia and Thrace','EM',1),
(1285,84,'Epirus','EP',1),
(1286,84,'Ionian Islands','II',1),
(1287,84,'North Aegean','NA',1),
(1288,84,'Peloponnesos','PP',1),
(1289,84,'South Aegean','SA',1),
(1290,84,'Thessaly','TH',1),
(1291,84,'West Greece','WG',1),
(1292,84,'West Macedonia','WM',1),
(1293,85,'Avannaa','A',1),
(1294,85,'Tunu','T',1),
(1295,85,'Kitaa','K',1),
(1296,86,'Saint Andrew','A',1),
(1297,86,'Saint David','D',1),
(1298,86,'Saint George','G',1),
(1299,86,'Saint John','J',1),
(1300,86,'Saint Mark','M',1),
(1301,86,'Saint Patrick','P',1),
(1302,86,'Carriacou','C',1),
(1303,86,'Petit Martinique','Q',1),
(1304,89,'Alta Verapaz','AV',1),
(1305,89,'Baja Verapaz','BV',1),
(1306,89,'Chimaltenango','CM',1),
(1307,89,'Chiquimula','CQ',1),
(1308,89,'El Peten','PE',1),
(1309,89,'El Progreso','PR',1),
(1310,89,'El Quiche','QC',1),
(1311,89,'Escuintla','ES',1),
(1312,89,'Guatemala','GU',1),
(1313,89,'Huehuetenango','HU',1),
(1314,89,'Izabal','IZ',1),
(1315,89,'Jalapa','JA',1),
(1316,89,'Jutiapa','JU',1),
(1317,89,'Quetzaltenango','QZ',1),
(1318,89,'Retalhuleu','RE',1),
(1319,89,'Sacatepequez','ST',1),
(1320,89,'San Marcos','SM',1),
(1321,89,'Santa Rosa','SR',1),
(1322,89,'Solola','SO',1),
(1323,89,'Suchitepequez','SU',1),
(1324,89,'Totonicapan','TO',1),
(1325,89,'Zacapa','ZA',1),
(1326,90,'Conakry','CNK',1),
(1327,90,'Beyla','BYL',1),
(1328,90,'Boffa','BFA',1),
(1329,90,'Boke','BOK',1),
(1330,90,'Coyah','COY',1),
(1331,90,'Dabola','DBL',1),
(1332,90,'Dalaba','DLB',1),
(1333,90,'Dinguiraye','DGR',1),
(1334,90,'Dubreka','DBR',1),
(1335,90,'Faranah','FRN',1),
(1336,90,'Forecariah','FRC',1),
(1337,90,'Fria','FRI',1),
(1338,90,'Gaoual','GAO',1),
(1339,90,'Gueckedou','GCD',1),
(1340,90,'Kankan','KNK',1),
(1341,90,'Kerouane','KRN',1),
(1342,90,'Kindia','KND',1),
(1343,90,'Kissidougou','KSD',1),
(1344,90,'Koubia','KBA',1),
(1345,90,'Koundara','KDA',1),
(1346,90,'Kouroussa','KRA',1),
(1347,90,'Labe','LAB',1),
(1348,90,'Lelouma','LLM',1),
(1349,90,'Lola','LOL',1),
(1350,90,'Macenta','MCT',1),
(1351,90,'Mali','MAL',1),
(1352,90,'Mamou','MAM',1),
(1353,90,'Mandiana','MAN',1),
(1354,90,'Nzerekore','NZR',1),
(1355,90,'Pita','PIT',1),
(1356,90,'Siguiri','SIG',1),
(1357,90,'Telimele','TLM',1),
(1358,90,'Tougue','TOG',1),
(1359,90,'Yomou','YOM',1),
(1360,91,'Bafata Region','BF',1),
(1361,91,'Biombo Region','BB',1),
(1362,91,'Bissau Region','BS',1),
(1363,91,'Bolama Region','BL',1),
(1364,91,'Cacheu Region','CA',1),
(1365,91,'Gabu Region','GA',1),
(1366,91,'Oio Region','OI',1),
(1367,91,'Quinara Region','QU',1),
(1368,91,'Tombali Region','TO',1),
(1369,92,'Barima-Waini','BW',1),
(1370,92,'Cuyuni-Mazaruni','CM',1),
(1371,92,'Demerara-Mahaica','DM',1),
(1372,92,'East Berbice-Corentyne','EC',1),
(1373,92,'Essequibo Islands-West Demerara','EW',1),
(1374,92,'Mahaica-Berbice','MB',1),
(1375,92,'Pomeroon-Supenaam','PM',1),
(1376,92,'Potaro-Siparuni','PI',1),
(1377,92,'Upper Demerara-Berbice','UD',1),
(1378,92,'Upper Takutu-Upper Essequibo','UT',1),
(1379,93,'Artibonite','AR',1),
(1380,93,'Centre','CE',1),
(1381,93,'Grand\'Anse','GA',1),
(1382,93,'Nord','ND',1),
(1383,93,'Nord-Est','NE',1),
(1384,93,'Nord-Ouest','NO',1),
(1385,93,'Ouest','OU',1),
(1386,93,'Sud','SD',1),
(1387,93,'Sud-Est','SE',1),
(1388,94,'Flat Island','F',1),
(1389,94,'McDonald Island','M',1),
(1390,94,'Shag Island','S',1),
(1391,94,'Heard Island','H',1),
(1392,95,'Atlantida','AT',1),
(1393,95,'Choluteca','CH',1),
(1394,95,'Colon','CL',1),
(1395,95,'Comayagua','CM',1),
(1396,95,'Copan','CP',1),
(1397,95,'Cortes','CR',1),
(1398,95,'El Paraiso','PA',1),
(1399,95,'Francisco Morazan','FM',1),
(1400,95,'Gracias a Dios','GD',1),
(1401,95,'Intibuca','IN',1),
(1402,95,'Islas de la Bahia (Bay Islands)','IB',1),
(1403,95,'La Paz','PZ',1),
(1404,95,'Lempira','LE',1),
(1405,95,'Ocotepeque','OC',1),
(1406,95,'Olancho','OL',1),
(1407,95,'Santa Barbara','SB',1),
(1408,95,'Valle','VA',1),
(1409,95,'Yoro','YO',1),
(1410,96,'Central and Western Hong Kong Island','HCW',1),
(1411,96,'Eastern Hong Kong Island','HEA',1),
(1412,96,'Southern Hong Kong Island','HSO',1),
(1413,96,'Wan Chai Hong Kong Island','HWC',1),
(1414,96,'Kowloon City Kowloon','KKC',1),
(1415,96,'Kwun Tong Kowloon','KKT',1),
(1416,96,'Sham Shui Po Kowloon','KSS',1),
(1417,96,'Wong Tai Sin Kowloon','KWT',1),
(1418,96,'Yau Tsim Mong Kowloon','KYT',1),
(1419,96,'Islands New Territories','NIS',1),
(1420,96,'Kwai Tsing New Territories','NKT',1),
(1421,96,'North New Territories','NNO',1),
(1422,96,'Sai Kung New Territories','NSK',1),
(1423,96,'Sha Tin New Territories','NST',1),
(1424,96,'Tai Po New Territories','NTP',1),
(1425,96,'Tsuen Wan New Territories','NTW',1),
(1426,96,'Tuen Mun New Territories','NTM',1),
(1427,96,'Yuen Long New Territories','NYL',1),
(1467,98,'Austurland','AL',1),
(1468,98,'Hofuoborgarsvaeoi','HF',1),
(1469,98,'Norourland eystra','NE',1),
(1470,98,'Norourland vestra','NV',1),
(1471,98,'Suourland','SL',1),
(1472,98,'Suournes','SN',1),
(1473,98,'Vestfiroir','VF',1),
(1474,98,'Vesturland','VL',1),
(1475,99,'Andaman and Nicobar Islands','AN',1),
(1476,99,'Andhra Pradesh','AP',1),
(1477,99,'Arunachal Pradesh','AR',1),
(1478,99,'Assam','AS',1),
(1479,99,'Bihar','BI',1),
(1480,99,'Chandigarh','CH',1),
(1481,99,'Dadra and Nagar Haveli','DA',1),
(1482,99,'Daman and Diu','DM',1),
(1483,99,'Delhi','DE',1),
(1484,99,'Goa','GO',1),
(1485,99,'Gujarat','GU',1),
(1486,99,'Haryana','HA',1),
(1487,99,'Himachal Pradesh','HP',1),
(1488,99,'Jammu and Kashmir','JA',1),
(1489,99,'Karnataka','KA',1),
(1490,99,'Kerala','KE',1),
(1491,99,'Lakshadweep Islands','LI',1),
(1492,99,'Madhya Pradesh','MP',1),
(1493,99,'Maharashtra','MA',1),
(1494,99,'Manipur','MN',1),
(1495,99,'Meghalaya','ME',1),
(1496,99,'Mizoram','MI',1),
(1497,99,'Nagaland','NA',1),
(1498,99,'Orissa','OR',1),
(1499,99,'Puducherry','PO',1),
(1500,99,'Punjab','PU',1),
(1501,99,'Rajasthan','RA',1),
(1502,99,'Sikkim','SI',1),
(1503,99,'Tamil Nadu','TN',1),
(1504,99,'Tripura','TR',1),
(1505,99,'Uttar Pradesh','UP',1),
(1506,99,'West Bengal','WB',1),
(1507,100,'Aceh','AC',1),
(1508,100,'Bali','BA',1),
(1509,100,'Banten','BT',1),
(1510,100,'Bengkulu','BE',1),
(1511,100,'Kalimantan Utara','BD',1),
(1512,100,'Gorontalo','GO',1),
(1513,100,'Jakarta','JK',1),
(1514,100,'Jambi','JA',1),
(1515,100,'Jawa Barat','JB',1),
(1516,100,'Jawa Tengah','JT',1),
(1517,100,'Jawa Timur','JI',1),
(1518,100,'Kalimantan Barat','KB',1),
(1519,100,'Kalimantan Selatan','KS',1),
(1520,100,'Kalimantan Tengah','KT',1),
(1521,100,'Kalimantan Timur','KI',1),
(1522,100,'Kepulauan Bangka Belitung','BB',1),
(1523,100,'Lampung','LA',1),
(1524,100,'Maluku','MA',1),
(1525,100,'Maluku Utara','MU',1),
(1526,100,'Nusa Tenggara Barat','NB',1),
(1527,100,'Nusa Tenggara Timur','NT',1),
(1528,100,'Papua','PA',1),
(1529,100,'Riau','RI',1),
(1530,100,'Sulawesi Selatan','SN',1),
(1531,100,'Sulawesi Tengah','ST',1),
(1532,100,'Sulawesi Tenggara','SG',1),
(1533,100,'Sulawesi Utara','SA',1),
(1534,100,'Sumatera Barat','SB',1),
(1535,100,'Sumatera Selatan','SS',1),
(1536,100,'Sumatera Utara','SU',1),
(1537,100,'Yogyakarta','YO',1),
(1538,101,'Tehran','TEH',1),
(1539,101,'Qom','QOM',1),
(1540,101,'Markazi','MKZ',1),
(1541,101,'Qazvin','QAZ',1),
(1542,101,'Gilan','GIL',1),
(1543,101,'Ardabil','ARD',1),
(1544,101,'Zanjan','ZAN',1),
(1545,101,'East Azarbaijan','EAZ',1),
(1546,101,'West Azarbaijan','WEZ',1),
(1547,101,'Kurdistan','KRD',1),
(1548,101,'Hamadan','HMD',1),
(1549,101,'Kermanshah','KRM',1),
(1550,101,'Ilam','ILM',1),
(1551,101,'Lorestan','LRS',1),
(1552,101,'Khuzestan','KZT',1),
(1553,101,'Chahar Mahaal and Bakhtiari','CMB',1),
(1554,101,'Kohkiluyeh and Buyer Ahmad','KBA',1),
(1555,101,'Bushehr','BSH',1),
(1556,101,'Fars','FAR',1),
(1557,101,'Hormozgan','HRM',1),
(1558,101,'Sistan and Baluchistan','SBL',1),
(1559,101,'Kerman','KRB',1),
(1560,101,'Yazd','YZD',1),
(1561,101,'Esfahan','EFH',1),
(1562,101,'Semnan','SMN',1),
(1563,101,'Mazandaran','MZD',1),
(1564,101,'Golestan','GLS',1),
(1565,101,'North Khorasan','NKH',1),
(1566,101,'Razavi Khorasan','RKH',1),
(1567,101,'South Khorasan','SKH',1),
(1568,102,'Baghdad','BD',1),
(1569,102,'Salah ad Din','SD',1),
(1570,102,'Diyala','DY',1),
(1571,102,'Wasit','WS',1),
(1572,102,'Maysan','MY',1),
(1573,102,'Al Basrah','BA',1),
(1574,102,'Dhi Qar','DQ',1),
(1575,102,'Al Muthanna','MU',1),
(1576,102,'Al Qadisyah','QA',1),
(1577,102,'Babil','BB',1),
(1578,102,'Al Karbala','KB',1),
(1579,102,'An Najaf','NJ',1),
(1580,102,'Al Anbar','AB',1),
(1581,102,'Ninawa','NN',1),
(1582,102,'Dahuk','DH',1),
(1583,102,'Arbil','AL',1),
(1584,102,'At Ta\'mim','TM',1),
(1585,102,'As Sulaymaniyah','SL',1),
(1586,103,'Carlow','CA',1),
(1587,103,'Cavan','CV',1),
(1588,103,'Clare','CL',1),
(1589,103,'Cork','CO',1),
(1590,103,'Donegal','DO',1),
(1591,103,'Dublin','DU',1),
(1592,103,'Galway','GA',1),
(1593,103,'Kerry','KE',1),
(1594,103,'Kildare','KI',1),
(1595,103,'Kilkenny','KL',1),
(1596,103,'Laois','LA',1),
(1597,103,'Leitrim','LE',1),
(1598,103,'Limerick','LI',1),
(1599,103,'Longford','LO',1),
(1600,103,'Louth','LU',1),
(1601,103,'Mayo','MA',1),
(1602,103,'Meath','ME',1),
(1603,103,'Monaghan','MO',1),
(1604,103,'Offaly','OF',1),
(1605,103,'Roscommon','RO',1),
(1606,103,'Sligo','SL',1),
(1607,103,'Tipperary','TI',1),
(1608,103,'Waterford','WA',1),
(1609,103,'Westmeath','WE',1),
(1610,103,'Wexford','WX',1),
(1611,103,'Wicklow','WI',1),
(1612,104,'Be\'er Sheva','BS',1),
(1613,104,'Bika\'at Hayarden','BH',1),
(1614,104,'Eilat and Arava','EA',1),
(1615,104,'Galil','GA',1),
(1616,104,'Haifa','HA',1),
(1617,104,'Jehuda Mountains','JM',1),
(1618,104,'Jerusalem','JE',1),
(1619,104,'Negev','NE',1),
(1620,104,'Semaria','SE',1),
(1621,104,'Sharon','SH',1),
(1622,104,'Tel Aviv (Gosh Dan)','TA',1),
(3860,105,'Caltanissetta','CL',1),
(3842,105,'Agrigento','AG',1),
(3843,105,'Alessandria','AL',1),
(3844,105,'Ancona','AN',1),
(3845,105,'Aosta','AO',1),
(3846,105,'Arezzo','AR',1),
(3847,105,'Ascoli Piceno','AP',1),
(3848,105,'Asti','AT',1),
(3849,105,'Avellino','AV',1),
(3850,105,'Bari','BA',1),
(3851,105,'Belluno','BL',1),
(3852,105,'Benevento','BN',1),
(3853,105,'Bergamo','BG',1),
(3854,105,'Biella','BI',1),
(3855,105,'Bologna','BO',1),
(3856,105,'Bolzano','BZ',1),
(3857,105,'Brescia','BS',1),
(3858,105,'Brindisi','BR',1),
(3859,105,'Cagliari','CA',1),
(1643,106,'Clarendon Parish','CLA',1),
(1644,106,'Hanover Parish','HAN',1),
(1645,106,'Kingston Parish','KIN',1),
(1646,106,'Manchester Parish','MAN',1),
(1647,106,'Portland Parish','POR',1),
(1648,106,'Saint Andrew Parish','AND',1),
(1649,106,'Saint Ann Parish','ANN',1),
(1650,106,'Saint Catherine Parish','CAT',1),
(1651,106,'Saint Elizabeth Parish','ELI',1),
(1652,106,'Saint James Parish','JAM',1),
(1653,106,'Saint Mary Parish','MAR',1),
(1654,106,'Saint Thomas Parish','THO',1),
(1655,106,'Trelawny Parish','TRL',1),
(1656,106,'Westmoreland Parish','WML',1),
(1657,107,'Aichi','AI',1),
(1658,107,'Akita','AK',1),
(1659,107,'Aomori','AO',1),
(1660,107,'Chiba','CH',1),
(1661,107,'Ehime','EH',1),
(1662,107,'Fukui','FK',1),
(1663,107,'Fukuoka','FU',1),
(1664,107,'Fukushima','FS',1),
(1665,107,'Gifu','GI',1),
(1666,107,'Gumma','GU',1),
(1667,107,'Hiroshima','HI',1),
(1668,107,'Hokkaido','HO',1),
(1669,107,'Hyogo','HY',1),
(1670,107,'Ibaraki','IB',1),
(1671,107,'Ishikawa','IS',1),
(1672,107,'Iwate','IW',1),
(1673,107,'Kagawa','KA',1),
(1674,107,'Kagoshima','KG',1),
(1675,107,'Kanagawa','KN',1),
(1676,107,'Kochi','KO',1),
(1677,107,'Kumamoto','KU',1),
(1678,107,'Kyoto','KY',1),
(1679,107,'Mie','MI',1),
(1680,107,'Miyagi','MY',1),
(1681,107,'Miyazaki','MZ',1),
(1682,107,'Nagano','NA',1),
(1683,107,'Nagasaki','NG',1),
(1684,107,'Nara','NR',1),
(1685,107,'Niigata','NI',1),
(1686,107,'Oita','OI',1),
(1687,107,'Okayama','OK',1),
(1688,107,'Okinawa','ON',1),
(1689,107,'Osaka','OS',1),
(1690,107,'Saga','SA',1),
(1691,107,'Saitama','SI',1),
(1692,107,'Shiga','SH',1),
(1693,107,'Shimane','SM',1),
(1694,107,'Shizuoka','SZ',1),
(1695,107,'Tochigi','TO',1),
(1696,107,'Tokushima','TS',1),
(1697,107,'Tokyo','TK',1),
(1698,107,'Tottori','TT',1),
(1699,107,'Toyama','TY',1),
(1700,107,'Wakayama','WA',1),
(1701,107,'Yamagata','YA',1),
(1702,107,'Yamaguchi','YM',1),
(1703,107,'Yamanashi','YN',1),
(1704,108,'\'Amman','AM',1),
(1705,108,'Ajlun','AJ',1),
(1706,108,'Al \'Aqabah','AA',1),
(1707,108,'Al Balqa\'','AB',1),
(1708,108,'Al Karak','AK',1),
(1709,108,'Al Mafraq','AL',1),
(1710,108,'At Tafilah','AT',1),
(1711,108,'Az Zarqa\'','AZ',1),
(1712,108,'Irbid','IR',1),
(1713,108,'Jarash','JA',1),
(1714,108,'Ma\'an','MA',1),
(1715,108,'Madaba','MD',1),
(1716,109,'Almaty','AL',1),
(1717,109,'Almaty City','AC',1),
(1718,109,'Aqmola','AM',1),
(1719,109,'Aqtobe','AQ',1),
(1720,109,'Astana City','AS',1),
(1721,109,'Atyrau','AT',1),
(1722,109,'Batys Qazaqstan','BA',1),
(1723,109,'Bayqongyr City','BY',1),
(1724,109,'Mangghystau','MA',1),
(1725,109,'Ongtustik Qazaqstan','ON',1),
(1726,109,'Pavlodar','PA',1),
(1727,109,'Qaraghandy','QA',1),
(1728,109,'Qostanay','QO',1),
(1729,109,'Qyzylorda','QY',1),
(1730,109,'Shyghys Qazaqstan','SH',1),
(1731,109,'Soltustik Qazaqstan','SO',1),
(1732,109,'Zhambyl','ZH',1),
(1733,110,'Central','CE',1),
(1734,110,'Coast','CO',1),
(1735,110,'Eastern','EA',1),
(1736,110,'Nairobi Area','NA',1),
(1737,110,'North Eastern','NE',1),
(1738,110,'Nyanza','NY',1),
(1739,110,'Rift Valley','RV',1),
(1740,110,'Western','WE',1),
(1741,111,'Abaiang','AG',1),
(1742,111,'Abemama','AM',1),
(1743,111,'Aranuka','AK',1),
(1744,111,'Arorae','AO',1),
(1745,111,'Banaba','BA',1),
(1746,111,'Beru','BE',1),
(1747,111,'Butaritari','bT',1),
(1748,111,'Kanton','KA',1),
(1749,111,'Kiritimati','KR',1),
(1750,111,'Kuria','KU',1),
(1751,111,'Maiana','MI',1),
(1752,111,'Makin','MN',1),
(1753,111,'Marakei','ME',1),
(1754,111,'Nikunau','NI',1),
(1755,111,'Nonouti','NO',1),
(1756,111,'Onotoa','ON',1),
(1757,111,'Tabiteuea','TT',1),
(1758,111,'Tabuaeran','TR',1),
(1759,111,'Tamana','TM',1),
(1760,111,'Tarawa','TW',1),
(1761,111,'Teraina','TE',1),
(1762,112,'Chagang-do','CHA',1),
(1763,112,'Hamgyong-bukto','HAB',1),
(1764,112,'Hamgyong-namdo','HAN',1),
(1765,112,'Hwanghae-bukto','HWB',1),
(1766,112,'Hwanghae-namdo','HWN',1),
(1767,112,'Kangwon-do','KAN',1),
(1768,112,'P\'yongan-bukto','PYB',1),
(1769,112,'P\'yongan-namdo','PYN',1),
(1770,112,'Ryanggang-do (Yanggang-do)','YAN',1),
(1771,112,'Rason Directly Governed City','NAJ',1),
(1772,112,'P\'yongyang Special City','PYO',1),
(1773,113,'Ch\'ungch\'ong-bukto','CO',1),
(1774,113,'Ch\'ungch\'ong-namdo','CH',1),
(1775,113,'Cheju-do','CD',1),
(1776,113,'Cholla-bukto','CB',1),
(1777,113,'Cholla-namdo','CN',1),
(1778,113,'Inch\'on-gwangyoksi','IG',1),
(1779,113,'Kangwon-do','KA',1),
(1780,113,'Kwangju-gwangyoksi','KG',1),
(1781,113,'Kyonggi-do','KD',1),
(1782,113,'Kyongsang-bukto','KB',1),
(1783,113,'Kyongsang-namdo','KN',1),
(1784,113,'Pusan-gwangyoksi','PG',1),
(1785,113,'Soul-t\'ukpyolsi','SO',1),
(1786,113,'Taegu-gwangyoksi','TA',1),
(1787,113,'Taejon-gwangyoksi','TG',1),
(1788,114,'Al \'Asimah','AL',1),
(1789,114,'Al Ahmadi','AA',1),
(1790,114,'Al Farwaniyah','AF',1),
(1791,114,'Al Jahra\'','AJ',1),
(1792,114,'Hawalli','HA',1),
(1793,115,'Bishkek','GB',1),
(1794,115,'Batken','B',1),
(1795,115,'Chu','C',1),
(1796,115,'Jalal-Abad','J',1),
(1797,115,'Naryn','N',1),
(1798,115,'Osh','O',1),
(1799,115,'Talas','T',1),
(1800,115,'Ysyk-Kol','Y',1),
(1801,116,'Vientiane','VT',1),
(1802,116,'Attapu','AT',1),
(1803,116,'Bokeo','BK',1),
(1804,116,'Bolikhamxai','BL',1),
(1805,116,'Champasak','CH',1),
(1806,116,'Houaphan','HO',1),
(1807,116,'Khammouan','KH',1),
(1808,116,'Louang Namtha','LM',1),
(1809,116,'Louangphabang','LP',1),
(1810,116,'Oudomxai','OU',1),
(1811,116,'Phongsali','PH',1),
(1812,116,'Salavan','SL',1),
(1813,116,'Savannakhet','SV',1),
(1814,116,'Vientiane','VI',1),
(1815,116,'Xaignabouli','XA',1),
(1816,116,'Xekong','XE',1),
(1817,116,'Xiangkhoang','XI',1),
(1818,116,'Xaisomboun','XN',1),
(1852,119,'Berea','BE',1),
(1853,119,'Butha-Buthe','BB',1),
(1854,119,'Leribe','LE',1),
(1855,119,'Mafeteng','MF',1),
(1856,119,'Maseru','MS',1),
(1857,119,'Mohale\'s Hoek','MH',1),
(1858,119,'Mokhotlong','MK',1),
(1859,119,'Qacha\'s Nek','QN',1),
(1860,119,'Quthing','QT',1),
(1861,119,'Thaba-Tseka','TT',1),
(1862,120,'Bomi','BI',1),
(1863,120,'Bong','BG',1),
(1864,120,'Grand Bassa','GB',1),
(1865,120,'Grand Cape Mount','CM',1),
(1866,120,'Grand Gedeh','GG',1),
(1867,120,'Grand Kru','GK',1),
(1868,120,'Lofa','LO',1),
(1869,120,'Margibi','MG',1),
(1870,120,'Maryland','ML',1),
(1871,120,'Montserrado','MS',1),
(1872,120,'Nimba','NB',1),
(1873,120,'River Cess','RC',1),
(1874,120,'Sinoe','SN',1),
(1875,121,'Ajdabiya','AJ',1),
(1876,121,'Al \'Aziziyah','AZ',1),
(1877,121,'Al Fatih','FA',1),
(1878,121,'Al Jabal al Akhdar','JA',1),
(1879,121,'Al Jufrah','JU',1),
(1880,121,'Al Khums','KH',1),
(1881,121,'Al Kufrah','KU',1),
(1882,121,'An Nuqat al Khams','NK',1),
(1883,121,'Ash Shati\'','AS',1),
(1884,121,'Awbari','AW',1),
(1885,121,'Az Zawiyah','ZA',1),
(1886,121,'Banghazi','BA',1),
(1887,121,'Darnah','DA',1),
(1888,121,'Ghadamis','GD',1),
(1889,121,'Gharyan','GY',1),
(1890,121,'Misratah','MI',1),
(1891,121,'Murzuq','MZ',1),
(1892,121,'Sabha','SB',1),
(1893,121,'Sawfajjin','SW',1),
(1894,121,'Surt','SU',1),
(1895,121,'Tarabulus (Tripoli)','TL',1),
(1896,121,'Tarhunah','TH',1),
(1897,121,'Tubruq','TU',1),
(1898,121,'Yafran','YA',1),
(1899,121,'Zlitan','ZL',1),
(1900,122,'Vaduz','V',1),
(1901,122,'Schaan','A',1),
(1902,122,'Balzers','B',1),
(1903,122,'Triesen','N',1),
(1904,122,'Eschen','E',1),
(1905,122,'Mauren','M',1),
(1906,122,'Triesenberg','T',1),
(1907,122,'Ruggell','R',1),
(1908,122,'Gamprin','G',1),
(1909,122,'Schellenberg','L',1),
(1910,122,'Planken','P',1),
(1911,123,'Alytus','AL',1),
(1912,123,'Kaunas','KA',1),
(1913,123,'Klaipeda','KL',1),
(1914,123,'Marijampole','MA',1),
(1915,123,'Panevezys','PA',1),
(1916,123,'Siauliai','SI',1),
(1917,123,'Taurage','TA',1),
(1918,123,'Telsiai','TE',1),
(1919,123,'Utena','UT',1),
(1920,123,'Vilnius','VI',1),
(1921,124,'Diekirch','DD',1),
(1922,124,'Clervaux','DC',1),
(1923,124,'Redange','DR',1),
(1924,124,'Vianden','DV',1),
(1925,124,'Wiltz','DW',1),
(1926,124,'Grevenmacher','GG',1),
(1927,124,'Echternach','GE',1),
(1928,124,'Remich','GR',1),
(1929,124,'Luxembourg','LL',1),
(1930,124,'Capellen','LC',1),
(1931,124,'Esch-sur-Alzette','LE',1),
(1932,124,'Mersch','LM',1),
(1933,125,'Our Lady Fatima Parish','OLF',1),
(1934,125,'St. Anthony Parish','ANT',1),
(1935,125,'St. Lazarus Parish','LAZ',1),
(1936,125,'Cathedral Parish','CAT',1),
(1937,125,'St. Lawrence Parish','LAW',1),
(1938,127,'Antananarivo','AN',1),
(1939,127,'Antsiranana','AS',1),
(1940,127,'Fianarantsoa','FN',1),
(1941,127,'Mahajanga','MJ',1),
(1942,127,'Toamasina','TM',1),
(1943,127,'Toliara','TL',1),
(1944,128,'Balaka','BLK',1),
(1945,128,'Blantyre','BLT',1),
(1946,128,'Chikwawa','CKW',1),
(1947,128,'Chiradzulu','CRD',1),
(1948,128,'Chitipa','CTP',1),
(1949,128,'Dedza','DDZ',1),
(1950,128,'Dowa','DWA',1),
(1951,128,'Karonga','KRG',1),
(1952,128,'Kasungu','KSG',1),
(1953,128,'Likoma','LKM',1),
(1954,128,'Lilongwe','LLG',1),
(1955,128,'Machinga','MCG',1),
(1956,128,'Mangochi','MGC',1),
(1957,128,'Mchinji','MCH',1),
(1958,128,'Mulanje','MLJ',1),
(1959,128,'Mwanza','MWZ',1),
(1960,128,'Mzimba','MZM',1),
(1961,128,'Ntcheu','NTU',1),
(1962,128,'Nkhata Bay','NKB',1),
(1963,128,'Nkhotakota','NKH',1),
(1964,128,'Nsanje','NSJ',1),
(1965,128,'Ntchisi','NTI',1),
(1966,128,'Phalombe','PHL',1),
(1967,128,'Rumphi','RMP',1),
(1968,128,'Salima','SLM',1),
(1969,128,'Thyolo','THY',1),
(1970,128,'Zomba','ZBA',1),
(1971,129,'Johor','MY-01',1),
(1972,129,'Kedah','MY-02',1),
(1973,129,'Kelantan','MY-03',1),
(1974,129,'Labuan','MY-15',1),
(1975,129,'Melaka','MY-04',1),
(1976,129,'Negeri Sembilan','MY-05',1),
(1977,129,'Pahang','MY-06',1),
(1978,129,'Perak','MY-08',1),
(1979,129,'Perlis','MY-09',1),
(1980,129,'Pulau Pinang','MY-07',1),
(1981,129,'Sabah','MY-12',1),
(1982,129,'Sarawak','MY-13',1),
(1983,129,'Selangor','MY-10',1),
(1984,129,'Terengganu','MY-11',1),
(1985,129,'Kuala Lumpur','MY-14',1),
(4035,129,'Putrajaya','MY-16',1),
(1986,130,'Thiladhunmathi Uthuru','THU',1),
(1987,130,'Thiladhunmathi Dhekunu','THD',1),
(1988,130,'Miladhunmadulu Uthuru','MLU',1),
(1989,130,'Miladhunmadulu Dhekunu','MLD',1),
(1990,130,'Maalhosmadulu Uthuru','MAU',1),
(1991,130,'Maalhosmadulu Dhekunu','MAD',1),
(1992,130,'Faadhippolhu','FAA',1),
(1993,130,'Male Atoll','MAA',1),
(1994,130,'Ari Atoll Uthuru','AAU',1),
(1995,130,'Ari Atoll Dheknu','AAD',1),
(1996,130,'Felidhe Atoll','FEA',1),
(1997,130,'Mulaku Atoll','MUA',1),
(1998,130,'Nilandhe Atoll Uthuru','NAU',1),
(1999,130,'Nilandhe Atoll Dhekunu','NAD',1),
(2000,130,'Kolhumadulu','KLH',1),
(2001,130,'Hadhdhunmathi','HDH',1),
(2002,130,'Huvadhu Atoll Uthuru','HAU',1),
(2003,130,'Huvadhu Atoll Dhekunu','HAD',1),
(2004,130,'Fua Mulaku','FMU',1),
(2005,130,'Addu','ADD',1),
(2006,131,'Gao','GA',1),
(2007,131,'Kayes','KY',1),
(2008,131,'Kidal','KD',1),
(2009,131,'Koulikoro','KL',1),
(2010,131,'Mopti','MP',1),
(2011,131,'Segou','SG',1),
(2012,131,'Sikasso','SK',1),
(2013,131,'Tombouctou','TB',1),
(2014,131,'Bamako Capital District','CD',1),
(2015,132,'Attard','ATT',1),
(2016,132,'Balzan','BAL',1),
(2017,132,'Birgu','BGU',1),
(2018,132,'Birkirkara','BKK',1),
(2019,132,'Birzebbuga','BRZ',1),
(2020,132,'Bormla','BOR',1),
(2021,132,'Dingli','DIN',1),
(2022,132,'Fgura','FGU',1),
(2023,132,'Floriana','FLO',1),
(2024,132,'Gudja','GDJ',1),
(2025,132,'Gzira','GZR',1),
(2026,132,'Gargur','GRG',1),
(2027,132,'Gaxaq','GXQ',1),
(2028,132,'Hamrun','HMR',1),
(2029,132,'Iklin','IKL',1),
(2030,132,'Isla','ISL',1),
(2031,132,'Kalkara','KLK',1),
(2032,132,'Kirkop','KRK',1),
(2033,132,'Lija','LIJ',1),
(2034,132,'Luqa','LUQ',1),
(2035,132,'Marsa','MRS',1),
(2036,132,'Marsaskala','MKL',1),
(2037,132,'Marsaxlokk','MXL',1),
(2038,132,'Mdina','MDN',1),
(2039,132,'Melliea','MEL',1),
(2040,132,'Mgarr','MGR',1),
(2041,132,'Mosta','MST',1),
(2042,132,'Mqabba','MQA',1),
(2043,132,'Msida','MSI',1),
(2044,132,'Mtarfa','MTF',1),
(2045,132,'Naxxar','NAX',1),
(2046,132,'Paola','PAO',1),
(2047,132,'Pembroke','PEM',1),
(2048,132,'Pieta','PIE',1),
(2049,132,'Qormi','QOR',1),
(2050,132,'Qrendi','QRE',1),
(2051,132,'Rabat','RAB',1),
(2052,132,'Safi','SAF',1),
(2053,132,'San Giljan','SGI',1),
(2054,132,'Santa Lucija','SLU',1),
(2055,132,'San Pawl il-Bahar','SPB',1),
(2056,132,'San Gwann','SGW',1),
(2057,132,'Santa Venera','SVE',1),
(2058,132,'Siggiewi','SIG',1),
(2059,132,'Sliema','SLM',1),
(2060,132,'Swieqi','SWQ',1),
(2061,132,'Ta Xbiex','TXB',1),
(2062,132,'Tarxien','TRX',1),
(2063,132,'Valletta','VLT',1),
(2064,132,'Xgajra','XGJ',1),
(2065,132,'Zabbar','ZBR',1),
(2066,132,'Zebbug','ZBG',1),
(2067,132,'Zejtun','ZJT',1),
(2068,132,'Zurrieq','ZRQ',1),
(2069,132,'Fontana','FNT',1),
(2070,132,'Ghajnsielem','GHJ',1),
(2071,132,'Gharb','GHR',1),
(2072,132,'Ghasri','GHS',1),
(2073,132,'Kercem','KRC',1),
(2074,132,'Munxar','MUN',1),
(2075,132,'Nadur','NAD',1),
(2076,132,'Qala','QAL',1),
(2077,132,'Victoria','VIC',1),
(2078,132,'San Lawrenz','SLA',1),
(2079,132,'Sannat','SNT',1),
(2080,132,'Xagra','ZAG',1),
(2081,132,'Xewkija','XEW',1),
(2082,132,'Zebbug','ZEB',1),
(2083,133,'Ailinginae','ALG',1),
(2084,133,'Ailinglaplap','ALL',1),
(2085,133,'Ailuk','ALK',1),
(2086,133,'Arno','ARN',1),
(2087,133,'Aur','AUR',1),
(2088,133,'Bikar','BKR',1),
(2089,133,'Bikini','BKN',1),
(2090,133,'Bokak','BKK',1),
(2091,133,'Ebon','EBN',1),
(2092,133,'Enewetak','ENT',1),
(2093,133,'Erikub','EKB',1),
(2094,133,'Jabat','JBT',1),
(2095,133,'Jaluit','JLT',1),
(2096,133,'Jemo','JEM',1),
(2097,133,'Kili','KIL',1),
(2098,133,'Kwajalein','KWJ',1),
(2099,133,'Lae','LAE',1),
(2100,133,'Lib','LIB',1),
(2101,133,'Likiep','LKP',1),
(2102,133,'Majuro','MJR',1),
(2103,133,'Maloelap','MLP',1),
(2104,133,'Mejit','MJT',1),
(2105,133,'Mili','MIL',1),
(2106,133,'Namorik','NMK',1),
(2107,133,'Namu','NAM',1),
(2108,133,'Rongelap','RGL',1),
(2109,133,'Rongrik','RGK',1),
(2110,133,'Toke','TOK',1),
(2111,133,'Ujae','UJA',1),
(2112,133,'Ujelang','UJL',1),
(2113,133,'Utirik','UTK',1),
(2114,133,'Wotho','WTH',1),
(2115,133,'Wotje','WTJ',1),
(2116,135,'Adrar','AD',1),
(2117,135,'Assaba','AS',1),
(2118,135,'Brakna','BR',1),
(2119,135,'Dakhlet Nouadhibou','DN',1),
(2120,135,'Gorgol','GO',1),
(2121,135,'Guidimaka','GM',1),
(2122,135,'Hodh Ech Chargui','HC',1),
(2123,135,'Hodh El Gharbi','HG',1),
(2124,135,'Inchiri','IN',1),
(2125,135,'Tagant','TA',1),
(2126,135,'Tiris Zemmour','TZ',1),
(2127,135,'Trarza','TR',1),
(2128,135,'Nouakchott','NO',1),
(2129,136,'Beau Bassin-Rose Hill','BR',1),
(2130,136,'Curepipe','CU',1),
(2131,136,'Port Louis','PU',1),
(2132,136,'Quatre Bornes','QB',1),
(2133,136,'Vacoas-Phoenix','VP',1),
(2134,136,'Agalega Islands','AG',1),
(2135,136,'Cargados Carajos Shoals (Saint Brandon Islands)','CC',1),
(2136,136,'Rodrigues','RO',1),
(2137,136,'Black River','BL',1),
(2138,136,'Flacq','FL',1),
(2139,136,'Grand Port','GP',1),
(2140,136,'Moka','MO',1),
(2141,136,'Pamplemousses','PA',1),
(2142,136,'Plaines Wilhems','PW',1),
(2143,136,'Port Louis','PL',1),
(2144,136,'Riviere du Rempart','RR',1),
(2145,136,'Savanne','SA',1),
(2146,138,'Baja California Norte','BN',1),
(2147,138,'Baja California Sur','BS',1),
(2148,138,'Campeche','CA',1),
(2149,138,'Chiapas','CI',1),
(2150,138,'Chihuahua','CH',1),
(2151,138,'Coahuila de Zaragoza','CZ',1),
(2152,138,'Colima','CL',1),
(2153,138,'Distrito Federal','DF',1),
(2154,138,'Durango','DU',1),
(2155,138,'Guanajuato','GA',1),
(2156,138,'Guerrero','GE',1),
(2157,138,'Hidalgo','HI',1),
(2158,138,'Jalisco','JA',1),
(2159,138,'Mexico','ME',1),
(2160,138,'Michoacan de Ocampo','MI',1),
(2161,138,'Morelos','MO',1),
(2162,138,'Nayarit','NA',1),
(2163,138,'Nuevo Leon','NL',1),
(2164,138,'Oaxaca','OA',1),
(2165,138,'Puebla','PU',1),
(2166,138,'Queretaro de Arteaga','QA',1),
(2167,138,'Quintana Roo','QR',1),
(2168,138,'San Luis Potosi','SA',1),
(2169,138,'Sinaloa','SI',1),
(2170,138,'Sonora','SO',1),
(2171,138,'Tabasco','TB',1),
(2172,138,'Tamaulipas','TM',1),
(2173,138,'Tlaxcala','TL',1),
(2174,138,'Veracruz-Llave','VE',1),
(2175,138,'Yucatan','YU',1),
(2176,138,'Zacatecas','ZA',1),
(2177,139,'Chuuk','C',1),
(2178,139,'Kosrae','K',1),
(2179,139,'Pohnpei','P',1),
(2180,139,'Yap','Y',1),
(2181,140,'Gagauzia','GA',1),
(2182,140,'Chisinau','CU',1),
(2183,140,'Balti','BA',1),
(2184,140,'Cahul','CA',1),
(2185,140,'Edinet','ED',1),
(2186,140,'Lapusna','LA',1),
(2187,140,'Orhei','OR',1),
(2188,140,'Soroca','SO',1),
(2189,140,'Tighina','TI',1),
(2190,140,'Ungheni','UN',1),
(2191,140,'St‚nga Nistrului','SN',1),
(2192,141,'Fontvieille','FV',1),
(2193,141,'La Condamine','LC',1),
(2194,141,'Monaco-Ville','MV',1),
(2195,141,'Monte-Carlo','MC',1),
(2196,142,'Ulanbaatar','1',1),
(2197,142,'Orhon','035',1),
(2198,142,'Darhan uul','037',1),
(2199,142,'Hentiy','039',1),
(2200,142,'Hovsgol','041',1),
(2201,142,'Hovd','043',1),
(2202,142,'Uvs','046',1),
(2203,142,'Tov','047',1),
(2204,142,'Selenge','049',1),
(2205,142,'Suhbaatar','051',1),
(2206,142,'Omnogovi','053',1),
(2207,142,'Ovorhangay','055',1),
(2208,142,'Dzavhan','057',1),
(2209,142,'DundgovL','059',1),
(2210,142,'Dornod','061',1),
(2211,142,'Dornogov','063',1),
(2212,142,'Govi-Sumber','064',1),
(2213,142,'Govi-Altay','065',1),
(2214,142,'Bulgan','067',1),
(2215,142,'Bayanhongor','069',1),
(2216,142,'Bayan-Olgiy','071',1),
(2217,142,'Arhangay','073',1),
(2218,143,'Saint Anthony','A',1),
(2219,143,'Saint Georges','G',1),
(2220,143,'Saint Peter','P',1),
(2221,144,'Agadir','AGD',1),
(2222,144,'Al Hoceima','HOC',1),
(2223,144,'Azilal','AZI',1),
(2224,144,'Beni Mellal','BME',1),
(2225,144,'Ben Slimane','BSL',1),
(2226,144,'Boulemane','BLM',1),
(2227,144,'Casablanca','CBL',1),
(2228,144,'Chaouen','CHA',1),
(2229,144,'El Jadida','EJA',1),
(2230,144,'El Kelaa des Sraghna','EKS',1),
(2231,144,'Er Rachidia','ERA',1),
(2232,144,'Essaouira','ESS',1),
(2233,144,'Fes','FES',1),
(2234,144,'Figuig','FIG',1),
(2235,144,'Guelmim','GLM',1),
(2236,144,'Ifrane','IFR',1),
(2237,144,'Kenitra','KEN',1),
(2238,144,'Khemisset','KHM',1),
(2239,144,'Khenifra','KHN',1),
(2240,144,'Khouribga','KHO',1),
(2241,144,'Laayoune','LYN',1),
(2242,144,'Larache','LAR',1),
(2243,144,'Marrakech','MRK',1),
(2244,144,'Meknes','MKN',1),
(2245,144,'Nador','NAD',1),
(2246,144,'Ouarzazate','ORZ',1),
(2247,144,'Oujda','OUJ',1),
(2248,144,'Rabat-Sale','RSA',1),
(2249,144,'Safi','SAF',1),
(2250,144,'Settat','SET',1),
(2251,144,'Sidi Kacem','SKA',1),
(2252,144,'Tangier','TGR',1),
(2253,144,'Tan-Tan','TAN',1),
(2254,144,'Taounate','TAO',1),
(2255,144,'Taroudannt','TRD',1),
(2256,144,'Tata','TAT',1),
(2257,144,'Taza','TAZ',1),
(2258,144,'Tetouan','TET',1),
(2259,144,'Tiznit','TIZ',1),
(2260,144,'Ad Dakhla','ADK',1),
(2261,144,'Boujdour','BJD',1),
(2262,144,'Es Smara','ESM',1),
(2263,145,'Cabo Delgado','CD',1),
(2264,145,'Gaza','GZ',1),
(2265,145,'Inhambane','IN',1),
(2266,145,'Manica','MN',1),
(2267,145,'Maputo (city)','MC',1),
(2268,145,'Maputo','MP',1),
(2269,145,'Nampula','NA',1),
(2270,145,'Niassa','NI',1),
(2271,145,'Sofala','SO',1),
(2272,145,'Tete','TE',1),
(2273,145,'Zambezia','ZA',1),
(2274,146,'Ayeyarwady','AY',1),
(2275,146,'Bago','BG',1),
(2276,146,'Magway','MG',1),
(2277,146,'Mandalay','MD',1),
(2278,146,'Sagaing','SG',1),
(2279,146,'Tanintharyi','TN',1),
(2280,146,'Yangon','YG',1),
(2281,146,'Chin State','CH',1),
(2282,146,'Kachin State','KC',1),
(2283,146,'Kayah State','KH',1),
(2284,146,'Kayin State','KN',1),
(2285,146,'Mon State','MN',1),
(2286,146,'Rakhine State','RK',1),
(2287,146,'Shan State','SH',1),
(2288,147,'Caprivi','CA',1),
(2289,147,'Erongo','ER',1),
(2290,147,'Hardap','HA',1),
(2291,147,'Karas','KR',1),
(2292,147,'Kavango','KV',1),
(2293,147,'Khomas','KH',1),
(2294,147,'Kunene','KU',1),
(2295,147,'Ohangwena','OW',1),
(2296,147,'Omaheke','OK',1),
(2297,147,'Omusati','OT',1),
(2298,147,'Oshana','ON',1),
(2299,147,'Oshikoto','OO',1),
(2300,147,'Otjozondjupa','OJ',1),
(2301,148,'Aiwo','AO',1),
(2302,148,'Anabar','AA',1),
(2303,148,'Anetan','AT',1),
(2304,148,'Anibare','AI',1),
(2305,148,'Baiti','BA',1),
(2306,148,'Boe','BO',1),
(2307,148,'Buada','BU',1),
(2308,148,'Denigomodu','DE',1),
(2309,148,'Ewa','EW',1),
(2310,148,'Ijuw','IJ',1),
(2311,148,'Meneng','ME',1),
(2312,148,'Nibok','NI',1),
(2313,148,'Uaboe','UA',1),
(2314,148,'Yaren','YA',1),
(2315,149,'Bagmati','BA',1),
(2316,149,'Bheri','BH',1),
(2317,149,'Dhawalagiri','DH',1),
(2318,149,'Gandaki','GA',1),
(2319,149,'Janakpur','JA',1),
(2320,149,'Karnali','KA',1),
(2321,149,'Kosi','KO',1),
(2322,149,'Lumbini','LU',1),
(2323,149,'Mahakali','MA',1),
(2324,149,'Mechi','ME',1),
(2325,149,'Narayani','NA',1),
(2326,149,'Rapti','RA',1),
(2327,149,'Sagarmatha','SA',1),
(2328,149,'Seti','SE',1),
(2329,150,'Drenthe','DR',1),
(2330,150,'Flevoland','FL',1),
(2331,150,'Friesland','FR',1),
(2332,150,'Gelderland','GE',1),
(2333,150,'Groningen','GR',1),
(2334,150,'Limburg','LI',1),
(2335,150,'Noord-Brabant','NB',1),
(2336,150,'Noord-Holland','NH',1),
(2337,150,'Overijssel','OV',1),
(2338,150,'Utrecht','UT',1),
(2339,150,'Zeeland','ZE',1),
(2340,150,'Zuid-Holland','ZH',1),
(2341,152,'Iles Loyaute','L',1),
(2342,152,'Nord','N',1),
(2343,152,'Sud','S',1),
(2344,153,'Auckland','AUK',1),
(2345,153,'Bay of Plenty','BOP',1),
(2346,153,'Canterbury','CAN',1),
(2347,153,'Coromandel','COR',1),
(2348,153,'Gisborne','GIS',1),
(2349,153,'Fiordland','FIO',1),
(2350,153,'Hawke\'s Bay','HKB',1),
(2351,153,'Marlborough','MBH',1),
(2352,153,'Manawatu-Wanganui','MWT',1),
(2353,153,'Mt Cook-Mackenzie','MCM',1),
(2354,153,'Nelson','NSN',1),
(2355,153,'Northland','NTL',1),
(2356,153,'Otago','OTA',1),
(2357,153,'Southland','STL',1),
(2358,153,'Taranaki','TKI',1),
(2359,153,'Wellington','WGN',1),
(2360,153,'Waikato','WKO',1),
(2361,153,'Wairarapa','WAI',1),
(2362,153,'West Coast','WTC',1),
(2363,154,'Atlantico Norte','AN',1),
(2364,154,'Atlantico Sur','AS',1),
(2365,154,'Boaco','BO',1),
(2366,154,'Carazo','CA',1),
(2367,154,'Chinandega','CI',1),
(2368,154,'Chontales','CO',1),
(2369,154,'Esteli','ES',1),
(2370,154,'Granada','GR',1),
(2371,154,'Jinotega','JI',1),
(2372,154,'Leon','LE',1),
(2373,154,'Madriz','MD',1),
(2374,154,'Managua','MN',1),
(2375,154,'Masaya','MS',1),
(2376,154,'Matagalpa','MT',1),
(2377,154,'Nuevo Segovia','NS',1),
(2378,154,'Rio San Juan','RS',1),
(2379,154,'Rivas','RI',1),
(2380,155,'Agadez','AG',1),
(2381,155,'Diffa','DF',1),
(2382,155,'Dosso','DS',1),
(2383,155,'Maradi','MA',1),
(2384,155,'Niamey','NM',1),
(2385,155,'Tahoua','TH',1),
(2386,155,'Tillaberi','TL',1),
(2387,155,'Zinder','ZD',1),
(2388,156,'Abia','AB',1),
(2389,156,'Abuja Federal Capital Territory','CT',1),
(2390,156,'Adamawa','AD',1),
(2391,156,'Akwa Ibom','AK',1),
(2392,156,'Anambra','AN',1),
(2393,156,'Bauchi','BC',1),
(2394,156,'Bayelsa','BY',1),
(2395,156,'Benue','BN',1),
(2396,156,'Borno','BO',1),
(2397,156,'Cross River','CR',1),
(2398,156,'Delta','DE',1),
(2399,156,'Ebonyi','EB',1),
(2400,156,'Edo','ED',1),
(2401,156,'Ekiti','EK',1),
(2402,156,'Enugu','EN',1),
(2403,156,'Gombe','GO',1),
(2404,156,'Imo','IM',1),
(2405,156,'Jigawa','JI',1),
(2406,156,'Kaduna','KD',1),
(2407,156,'Kano','KN',1),
(2408,156,'Katsina','KT',1),
(2409,156,'Kebbi','KE',1),
(2410,156,'Kogi','KO',1),
(2411,156,'Kwara','KW',1),
(2412,156,'Lagos','LA',1),
(2413,156,'Nassarawa','NA',1),
(2414,156,'Niger','NI',1),
(2415,156,'Ogun','OG',1),
(2416,156,'Ondo','ONG',1),
(2417,156,'Osun','OS',1),
(2418,156,'Oyo','OY',1),
(2419,156,'Plateau','PL',1),
(2420,156,'Rivers','RI',1),
(2421,156,'Sokoto','SO',1),
(2422,156,'Taraba','TA',1),
(2423,156,'Yobe','YO',1),
(2424,156,'Zamfara','ZA',1),
(2425,159,'Northern Islands','N',1),
(2426,159,'Rota','R',1),
(2427,159,'Saipan','S',1),
(2428,159,'Tinian','T',1),
(2429,160,'Akershus','AK',1),
(2430,160,'Aust-Agder','AA',1),
(2431,160,'Buskerud','BU',1),
(2432,160,'Finnmark','FM',1),
(2433,160,'Hedmark','HM',1),
(2434,160,'Hordaland','HL',1),
(2435,160,'More og Romdal','MR',1),
(2436,160,'Nord-Trondelag','NT',1),
(2437,160,'Nordland','NL',1),
(2438,160,'Ostfold','OF',1),
(2439,160,'Oppland','OP',1),
(2440,160,'Oslo','OL',1),
(2441,160,'Rogaland','RL',1),
(2442,160,'Sor-Trondelag','ST',1),
(2443,160,'Sogn og Fjordane','SJ',1),
(2444,160,'Svalbard','SV',1),
(2445,160,'Telemark','TM',1),
(2446,160,'Troms','TR',1),
(2447,160,'Vest-Agder','VA',1),
(2448,160,'Vestfold','VF',1),
(2449,161,'Ad Dakhiliyah','DA',1),
(2450,161,'Al Batinah','BA',1),
(2451,161,'Al Wusta','WU',1),
(2452,161,'Ash Sharqiyah','SH',1),
(2453,161,'Az Zahirah','ZA',1),
(2454,161,'Masqat','MA',1),
(2455,161,'Musandam','MU',1),
(2456,161,'Zufar','ZU',1),
(2457,162,'Balochistan','B',1),
(2458,162,'Federally Administered Tribal Areas','T',1),
(2459,162,'Islamabad Capital Territory','I',1),
(2460,162,'North-West Frontier','N',1),
(2461,162,'Punjab','P',1),
(2462,162,'Sindh','S',1),
(2463,163,'Aimeliik','AM',1),
(2464,163,'Airai','AR',1),
(2465,163,'Angaur','AN',1),
(2466,163,'Hatohobei','HA',1),
(2467,163,'Kayangel','KA',1),
(2468,163,'Koror','KO',1),
(2469,163,'Melekeok','ME',1),
(2470,163,'Ngaraard','NA',1),
(2471,163,'Ngarchelong','NG',1),
(2472,163,'Ngardmau','ND',1),
(2473,163,'Ngatpang','NT',1),
(2474,163,'Ngchesar','NC',1),
(2475,163,'Ngeremlengui','NR',1),
(2476,163,'Ngiwal','NW',1),
(2477,163,'Peleliu','PE',1),
(2478,163,'Sonsorol','SO',1),
(2479,164,'Bocas del Toro','BT',1),
(2480,164,'Chiriqui','CH',1),
(2481,164,'Cocle','CC',1),
(2482,164,'Colon','CL',1),
(2483,164,'Darien','DA',1),
(2484,164,'Herrera','HE',1),
(2485,164,'Los Santos','LS',1),
(2486,164,'Panama','PA',1),
(2487,164,'San Blas','SB',1),
(2488,164,'Veraguas','VG',1),
(2489,165,'Bougainville','BV',1),
(2490,165,'Central','CE',1),
(2491,165,'Chimbu','CH',1),
(2492,165,'Eastern Highlands','EH',1),
(2493,165,'East New Britain','EB',1),
(2494,165,'East Sepik','ES',1),
(2495,165,'Enga','EN',1),
(2496,165,'Gulf','GU',1),
(2497,165,'Madang','MD',1),
(2498,165,'Manus','MN',1),
(2499,165,'Milne Bay','MB',1),
(2500,165,'Morobe','MR',1),
(2501,165,'National Capital','NC',1),
(2502,165,'New Ireland','NI',1),
(2503,165,'Northern','NO',1),
(2504,165,'Sandaun','SA',1),
(2505,165,'Southern Highlands','SH',1),
(2506,165,'Western','WE',1),
(2507,165,'Western Highlands','WH',1),
(2508,165,'West New Britain','WB',1),
(2509,166,'Alto Paraguay','AG',1),
(2510,166,'Alto Parana','AN',1),
(2511,166,'Amambay','AM',1),
(2512,166,'Asuncion','AS',1),
(2513,166,'Boqueron','BO',1),
(2514,166,'Caaguazu','CG',1),
(2515,166,'Caazapa','CZ',1),
(2516,166,'Canindeyu','CN',1),
(2517,166,'Central','CE',1),
(2518,166,'Concepcion','CC',1),
(2519,166,'Cordillera','CD',1),
(2520,166,'Guaira','GU',1),
(2521,166,'Itapua','IT',1),
(2522,166,'Misiones','MI',1),
(2523,166,'Neembucu','NE',1),
(2524,166,'Paraguari','PA',1),
(2525,166,'Presidente Hayes','PH',1),
(2526,166,'San Pedro','SP',1),
(2527,167,'Amazonas','AM',1),
(2528,167,'Ancash','AN',1),
(2529,167,'Apurimac','AP',1),
(2530,167,'Arequipa','AR',1),
(2531,167,'Ayacucho','AY',1),
(2532,167,'Cajamarca','CJ',1),
(2533,167,'Callao','CL',1),
(2534,167,'Cusco','CU',1),
(2535,167,'Huancavelica','HV',1),
(2536,167,'Huanuco','HO',1),
(2537,167,'Ica','IC',1),
(2538,167,'Junin','JU',1),
(2539,167,'La Libertad','LD',1),
(2540,167,'Lambayeque','LY',1),
(2541,167,'Lima','LI',1),
(2542,167,'Loreto','LO',1),
(2543,167,'Madre de Dios','MD',1),
(2544,167,'Moquegua','MO',1),
(2545,167,'Pasco','PA',1),
(2546,167,'Piura','PI',1),
(2547,167,'Puno','PU',1),
(2548,167,'San Martin','SM',1),
(2549,167,'Tacna','TA',1),
(2550,167,'Tumbes','TU',1),
(2551,167,'Ucayali','UC',1),
(2552,168,'Abra','ABR',1),
(2553,168,'Agusan del Norte','ANO',1),
(2554,168,'Agusan del Sur','ASU',1),
(2555,168,'Aklan','AKL',1),
(2556,168,'Albay','ALB',1),
(2557,168,'Antique','ANT',1),
(2558,168,'Apayao','APY',1),
(2559,168,'Aurora','AUR',1),
(2560,168,'Basilan','BAS',1),
(2561,168,'Bataan','BTA',1),
(2562,168,'Batanes','BTE',1),
(2563,168,'Batangas','BTG',1),
(2564,168,'Biliran','BLR',1),
(2565,168,'Benguet','BEN',1),
(2566,168,'Bohol','BOL',1),
(2567,168,'Bukidnon','BUK',1),
(2568,168,'Bulacan','BUL',1),
(2569,168,'Cagayan','CAG',1),
(2570,168,'Camarines Norte','CNO',1),
(2571,168,'Camarines Sur','CSU',1),
(2572,168,'Camiguin','CAM',1),
(2573,168,'Capiz','CAP',1),
(2574,168,'Catanduanes','CAT',1),
(2575,168,'Cavite','CAV',1),
(2576,168,'Cebu','CEB',1),
(2577,168,'Compostela','CMP',1),
(2578,168,'Davao del Norte','DNO',1),
(2579,168,'Davao del Sur','DSU',1),
(2580,168,'Davao Oriental','DOR',1),
(2581,168,'Eastern Samar','ESA',1),
(2582,168,'Guimaras','GUI',1),
(2583,168,'Ifugao','IFU',1),
(2584,168,'Ilocos Norte','INO',1),
(2585,168,'Ilocos Sur','ISU',1),
(2586,168,'Iloilo','ILO',1),
(2587,168,'Isabela','ISA',1),
(2588,168,'Kalinga','KAL',1),
(2589,168,'Laguna','LAG',1),
(2590,168,'Lanao del Norte','LNO',1),
(2591,168,'Lanao del Sur','LSU',1),
(2592,168,'La Union','UNI',1),
(2593,168,'Leyte','LEY',1),
(2594,168,'Maguindanao','MAG',1),
(2595,168,'Marinduque','MRN',1),
(2596,168,'Masbate','MSB',1),
(2597,168,'Mindoro Occidental','MIC',1),
(2598,168,'Mindoro Oriental','MIR',1),
(2599,168,'Misamis Occidental','MSC',1),
(2600,168,'Misamis Oriental','MOR',1),
(2601,168,'Mountain','MOP',1),
(2602,168,'Negros Occidental','NOC',1),
(2603,168,'Negros Oriental','NOR',1),
(2604,168,'North Cotabato','NCT',1),
(2605,168,'Northern Samar','NSM',1),
(2606,168,'Nueva Ecija','NEC',1),
(2607,168,'Nueva Vizcaya','NVZ',1),
(2608,168,'Palawan','PLW',1),
(2609,168,'Pampanga','PMP',1),
(2610,168,'Pangasinan','PNG',1),
(2611,168,'Quezon','QZN',1),
(2612,168,'Quirino','QRN',1),
(2613,168,'Rizal','RIZ',1),
(2614,168,'Romblon','ROM',1),
(2615,168,'Samar','SMR',1),
(2616,168,'Sarangani','SRG',1),
(2617,168,'Siquijor','SQJ',1),
(2618,168,'Sorsogon','SRS',1),
(2619,168,'South Cotabato','SCO',1),
(2620,168,'Southern Leyte','SLE',1),
(2621,168,'Sultan Kudarat','SKU',1),
(2622,168,'Sulu','SLU',1),
(2623,168,'Surigao del Norte','SNO',1),
(2624,168,'Surigao del Sur','SSU',1),
(2625,168,'Tarlac','TAR',1),
(2626,168,'Tawi-Tawi','TAW',1),
(2627,168,'Zambales','ZBL',1),
(2628,168,'Zamboanga del Norte','ZNO',1),
(2629,168,'Zamboanga del Sur','ZSU',1),
(2630,168,'Zamboanga Sibugay','ZSI',1),
(2631,170,'Dolnoslaskie','DO',1),
(2632,170,'Kujawsko-Pomorskie','KP',1),
(2633,170,'Lodzkie','LO',1),
(2634,170,'Lubelskie','LL',1),
(2635,170,'Lubuskie','LU',1),
(2636,170,'Malopolskie','ML',1),
(2637,170,'Mazowieckie','MZ',1),
(2638,170,'Opolskie','OP',1),
(2639,170,'Podkarpackie','PP',1),
(2640,170,'Podlaskie','PL',1),
(2641,170,'Pomorskie','PM',1),
(2642,170,'Slaskie','SL',1),
(2643,170,'Swietokrzyskie','SW',1),
(2644,170,'Warminsko-Mazurskie','WM',1),
(2645,170,'Wielkopolskie','WP',1),
(2646,170,'Zachodniopomorskie','ZA',1),
(2647,198,'Saint Pierre','P',1),
(2648,198,'Miquelon','M',1),
(2649,171,'Açores','AC',1),
(2650,171,'Aveiro','AV',1),
(2651,171,'Beja','BE',1),
(2652,171,'Braga','BR',1),
(2653,171,'Bragança','BA',1),
(2654,171,'Castelo Branco','CB',1),
(2655,171,'Coimbra','CO',1),
(2656,171,'Évora','EV',1),
(2657,171,'Faro','FA',1),
(2658,171,'Guarda','GU',1),
(2659,171,'Leiria','LE',1),
(2660,171,'Lisboa','LI',1),
(2661,171,'Madeira','ME',1),
(2662,171,'Portalegre','PO',1),
(2663,171,'Porto','PR',1),
(2664,171,'Santarém','SA',1),
(2665,171,'Setúbal','SE',1),
(2666,171,'Viana do Castelo','VC',1),
(2667,171,'Vila Real','VR',1),
(2668,171,'Viseu','VI',1),
(2669,173,'Ad Dawhah','DW',1),
(2670,173,'Al Ghuwayriyah','GW',1),
(2671,173,'Al Jumayliyah','JM',1),
(2672,173,'Al Khawr','KR',1),
(2673,173,'Al Wakrah','WK',1),
(2674,173,'Ar Rayyan','RN',1),
(2675,173,'Jarayan al Batinah','JB',1),
(2676,173,'Madinat ash Shamal','MS',1),
(2677,173,'Umm Sa\'id','UD',1),
(2678,173,'Umm Salal','UL',1),
(2679,175,'Alba','AB',1),
(2680,175,'Arad','AR',1),
(2681,175,'Arges','AG',1),
(2682,175,'Bacau','BC',1),
(2683,175,'Bihor','BH',1),
(2684,175,'Bistrita-Nasaud','BN',1),
(2685,175,'Botosani','BT',1),
(2686,175,'Brasov','BV',1),
(2687,175,'Braila','BR',1),
(2688,175,'Bucuresti','B',1),
(2689,175,'Buzau','BZ',1),
(2690,175,'Caras-Severin','CS',1),
(2691,175,'Calarasi','CL',1),
(2692,175,'Cluj','CJ',1),
(2693,175,'Constanta','CT',1),
(2694,175,'Covasna','CV',1),
(2695,175,'Dimbovita','DB',1),
(2696,175,'Dolj','DJ',1),
(2697,175,'Galati','GL',1),
(2698,175,'Giurgiu','GR',1),
(2699,175,'Gorj','GJ',1),
(2700,175,'Harghita','HR',1),
(2701,175,'Hunedoara','HD',1),
(2702,175,'Ialomita','IL',1),
(2703,175,'Iasi','IS',1),
(2704,175,'Ilfov','IF',1),
(2705,175,'Maramures','MM',1),
(2706,175,'Mehedinti','MH',1),
(2707,175,'Mures','MS',1),
(2708,175,'Neamt','NT',1),
(2709,175,'Olt','OT',1),
(2710,175,'Prahova','PH',1),
(2711,175,'Satu-Mare','SM',1),
(2712,175,'Salaj','SJ',1),
(2713,175,'Sibiu','SB',1),
(2714,175,'Suceava','SV',1),
(2715,175,'Teleorman','TR',1),
(2716,175,'Timis','TM',1),
(2717,175,'Tulcea','TL',1),
(2718,175,'Vaslui','VS',1),
(2719,175,'Valcea','VL',1),
(2720,175,'Vrancea','VN',1),
(2721,176,'Abakan','AB',1),
(2722,176,'Aginskoye','AG',1),
(2723,176,'Anadyr','AN',1),
(2724,176,'Arkahangelsk','AR',1),
(2725,176,'Astrakhan','AS',1),
(2726,176,'Barnaul','BA',1),
(2727,176,'Belgorod','BE',1),
(2728,176,'Birobidzhan','BI',1),
(2729,176,'Blagoveshchensk','BL',1),
(2730,176,'Bryansk','BR',1),
(2731,176,'Cheboksary','CH',1),
(2732,176,'Chelyabinsk','CL',1),
(2733,176,'Cherkessk','CR',1),
(2734,176,'Chita','CI',1),
(2735,176,'Dudinka','DU',1),
(2736,176,'Elista','EL',1),
(2738,176,'Gorno-Altaysk','GA',1),
(2739,176,'Groznyy','GR',1),
(2740,176,'Irkutsk','IR',1),
(2741,176,'Ivanovo','IV',1),
(2742,176,'Izhevsk','IZ',1),
(2743,176,'Kalinigrad','KA',1),
(2744,176,'Kaluga','KL',1),
(2745,176,'Kasnodar','KS',1),
(2746,176,'Kazan','KZ',1),
(2747,176,'Kemerovo','KE',1),
(2748,176,'Khabarovsk','KH',1),
(2749,176,'Khanty-Mansiysk','KM',1),
(2750,176,'Kostroma','KO',1),
(2751,176,'Krasnodar','KR',1),
(2752,176,'Krasnoyarsk','KN',1),
(2753,176,'Kudymkar','KU',1),
(2754,176,'Kurgan','KG',1),
(2755,176,'Kursk','KK',1),
(2756,176,'Kyzyl','KY',1),
(2757,176,'Lipetsk','LI',1),
(2758,176,'Magadan','MA',1),
(2759,176,'Makhachkala','MK',1),
(2760,176,'Maykop','MY',1),
(2761,176,'Moscow','MO',1),
(2762,176,'Murmansk','MU',1),
(2763,176,'Nalchik','NA',1),
(2764,176,'Naryan Mar','NR',1),
(2765,176,'Nazran','NZ',1),
(2766,176,'Nizhniy Novgorod','NI',1),
(2767,176,'Novgorod','NO',1),
(2768,176,'Novosibirsk','NV',1),
(2769,176,'Omsk','OM',1),
(2770,176,'Orel','OR',1),
(2771,176,'Orenburg','OE',1),
(2772,176,'Palana','PA',1),
(2773,176,'Penza','PE',1),
(2774,176,'Perm','PR',1),
(2775,176,'Petropavlovsk-Kamchatskiy','PK',1),
(2776,176,'Petrozavodsk','PT',1),
(2777,176,'Pskov','PS',1),
(2778,176,'Rostov-na-Donu','RO',1),
(2779,176,'Ryazan','RY',1),
(2780,176,'Salekhard','SL',1),
(2781,176,'Samara','SA',1),
(2782,176,'Saransk','SR',1),
(2783,176,'Saratov','SV',1),
(2784,176,'Smolensk','SM',1),
(2785,176,'St. Petersburg','SP',1),
(2786,176,'Stavropol','ST',1),
(2787,176,'Syktyvkar','SY',1),
(2788,176,'Tambov','TA',1),
(2789,176,'Tomsk','TO',1),
(2790,176,'Tula','TU',1),
(2791,176,'Tura','TR',1),
(2792,176,'Tver','TV',1),
(2793,176,'Tyumen','TY',1),
(2794,176,'Ufa','UF',1),
(2795,176,'Ul\'yanovsk','UL',1),
(2796,176,'Ulan-Ude','UU',1),
(2797,176,'Ust\'-Ordynskiy','US',1),
(2798,176,'Vladikavkaz','VL',1),
(2799,176,'Vladimir','VA',1),
(2800,176,'Vladivostok','VV',1),
(2801,176,'Volgograd','VG',1),
(2802,176,'Vologda','VD',1),
(2803,176,'Voronezh','VO',1),
(2804,176,'Vyatka','VY',1),
(2805,176,'Yakutsk','YA',1),
(2806,176,'Yaroslavl','YR',1),
(2807,176,'Yekaterinburg','YE',1),
(2808,176,'Yoshkar-Ola','YO',1),
(2809,177,'Butare','BU',1),
(2810,177,'Byumba','BY',1),
(2811,177,'Cyangugu','CY',1),
(2812,177,'Gikongoro','GK',1),
(2813,177,'Gisenyi','GS',1),
(2814,177,'Gitarama','GT',1),
(2815,177,'Kibungo','KG',1),
(2816,177,'Kibuye','KY',1),
(2817,177,'Kigali Rurale','KR',1),
(2818,177,'Kigali-ville','KV',1),
(2819,177,'Ruhengeri','RU',1),
(2820,177,'Umutara','UM',1),
(2821,178,'Christ Church Nichola Town','CCN',1),
(2822,178,'Saint Anne Sandy Point','SAS',1),
(2823,178,'Saint George Basseterre','SGB',1),
(2824,178,'Saint George Gingerland','SGG',1),
(2825,178,'Saint James Windward','SJW',1),
(2826,178,'Saint John Capesterre','SJC',1),
(2827,178,'Saint John Figtree','SJF',1),
(2828,178,'Saint Mary Cayon','SMC',1),
(2829,178,'Saint Paul Capesterre','CAP',1),
(2830,178,'Saint Paul Charlestown','CHA',1),
(2831,178,'Saint Peter Basseterre','SPB',1),
(2832,178,'Saint Thomas Lowland','STL',1),
(2833,178,'Saint Thomas Middle Island','STM',1),
(2834,178,'Trinity Palmetto Point','TPP',1),
(2835,179,'Anse-la-Raye','AR',1),
(2836,179,'Castries','CA',1),
(2837,179,'Choiseul','CH',1),
(2838,179,'Dauphin','DA',1),
(2839,179,'Dennery','DE',1),
(2840,179,'Gros-Islet','GI',1),
(2841,179,'Laborie','LA',1),
(2842,179,'Micoud','MI',1),
(2843,179,'Praslin','PR',1),
(2844,179,'Soufriere','SO',1),
(2845,179,'Vieux-Fort','VF',1),
(2846,180,'Charlotte','C',1),
(2847,180,'Grenadines','R',1),
(2848,180,'Saint Andrew','A',1),
(2849,180,'Saint David','D',1),
(2850,180,'Saint George','G',1),
(2851,180,'Saint Patrick','P',1),
(2852,181,'A\'ana','AN',1),
(2853,181,'Aiga-i-le-Tai','AI',1),
(2854,181,'Atua','AT',1),
(2855,181,'Fa\'asaleleaga','FA',1),
(2856,181,'Gaga\'emauga','GE',1),
(2857,181,'Gagaifomauga','GF',1),
(2858,181,'Palauli','PA',1),
(2859,181,'Satupa\'itea','SA',1),
(2860,181,'Tuamasaga','TU',1),
(2861,181,'Va\'a-o-Fonoti','VF',1),
(2862,181,'Vaisigano','VS',1),
(2863,182,'Acquaviva','AC',1),
(2864,182,'Borgo Maggiore','BM',1),
(2865,182,'Chiesanuova','CH',1),
(2866,182,'Domagnano','DO',1),
(2867,182,'Faetano','FA',1),
(2868,182,'Fiorentino','FI',1),
(2869,182,'Montegiardino','MO',1),
(2870,182,'Citta di San Marino','SM',1),
(2871,182,'Serravalle','SE',1),
(2872,183,'Sao Tome','S',1),
(2873,183,'Principe','P',1),
(2874,184,'Al Bahah','BH',1),
(2875,184,'Al Hudud ash Shamaliyah','HS',1),
(2876,184,'Al Jawf','JF',1),
(2877,184,'Al Madinah','MD',1),
(2878,184,'Al Qasim','QS',1),
(2879,184,'Ar Riyad','RD',1),
(2880,184,'Ash Sharqiyah (Eastern)','AQ',1),
(2881,184,'\'Asir','AS',1),
(2882,184,'Ha\'il','HL',1),
(2883,184,'Jizan','JZ',1),
(2884,184,'Makkah','ML',1),
(2885,184,'Najran','NR',1),
(2886,184,'Tabuk','TB',1),
(2887,185,'Dakar','DA',1),
(2888,185,'Diourbel','DI',1),
(2889,185,'Fatick','FA',1),
(2890,185,'Kaolack','KA',1),
(2891,185,'Kolda','KO',1),
(2892,185,'Louga','LO',1),
(2893,185,'Matam','MA',1),
(2894,185,'Saint-Louis','SL',1),
(2895,185,'Tambacounda','TA',1),
(2896,185,'Thies','TH',1),
(2897,185,'Ziguinchor','ZI',1),
(2898,186,'Anse aux Pins','AP',1),
(2899,186,'Anse Boileau','AB',1),
(2900,186,'Anse Etoile','AE',1),
(2901,186,'Anse Louis','AL',1),
(2902,186,'Anse Royale','AR',1),
(2903,186,'Baie Lazare','BL',1),
(2904,186,'Baie Sainte Anne','BS',1),
(2905,186,'Beau Vallon','BV',1),
(2906,186,'Bel Air','BA',1),
(2907,186,'Bel Ombre','BO',1),
(2908,186,'Cascade','CA',1),
(2909,186,'Glacis','GL',1),
(2910,186,'Grand\' Anse (on Mahe)','GM',1),
(2911,186,'Grand\' Anse (on Praslin)','GP',1),
(2912,186,'La Digue','DG',1),
(2913,186,'La Riviere Anglaise','RA',1),
(2914,186,'Mont Buxton','MB',1),
(2915,186,'Mont Fleuri','MF',1),
(2916,186,'Plaisance','PL',1),
(2917,186,'Pointe La Rue','PR',1),
(2918,186,'Port Glaud','PG',1),
(2919,186,'Saint Louis','SL',1),
(2920,186,'Takamaka','TA',1),
(2921,187,'Eastern','E',1),
(2922,187,'Northern','N',1),
(2923,187,'Southern','S',1),
(2924,187,'Western','W',1),
(2925,189,'Banskobystrický','BA',1),
(2926,189,'Bratislavský','BR',1),
(2927,189,'Košický','KO',1),
(2928,189,'Nitriansky','NI',1),
(2929,189,'Prešovský','PR',1),
(2930,189,'Trenčiansky','TC',1),
(2931,189,'Trnavský','TV',1),
(2932,189,'Žilinský','ZI',1),
(2933,191,'Central','CE',1),
(2934,191,'Choiseul','CH',1),
(2935,191,'Guadalcanal','GC',1),
(2936,191,'Honiara','HO',1),
(2937,191,'Isabel','IS',1),
(2938,191,'Makira','MK',1),
(2939,191,'Malaita','ML',1),
(2940,191,'Rennell and Bellona','RB',1),
(2941,191,'Temotu','TM',1),
(2942,191,'Western','WE',1),
(2943,192,'Awdal','AW',1),
(2944,192,'Bakool','BK',1),
(2945,192,'Banaadir','BN',1),
(2946,192,'Bari','BR',1),
(2947,192,'Bay','BY',1),
(2948,192,'Galguduud','GA',1),
(2949,192,'Gedo','GE',1),
(2950,192,'Hiiraan','HI',1),
(2951,192,'Jubbada Dhexe','JD',1),
(2952,192,'Jubbada Hoose','JH',1),
(2953,192,'Mudug','MU',1),
(2954,192,'Nugaal','NU',1),
(2955,192,'Sanaag','SA',1),
(2956,192,'Shabeellaha Dhexe','SD',1),
(2957,192,'Shabeellaha Hoose','SH',1),
(2958,192,'Sool','SL',1),
(2959,192,'Togdheer','TO',1),
(2960,192,'Woqooyi Galbeed','WG',1),
(2961,193,'Eastern Cape','EC',1),
(2962,193,'Free State','FS',1),
(2963,193,'Gauteng','GT',1),
(2964,193,'KwaZulu-Natal','KN',1),
(2965,193,'Limpopo','LP',1),
(2966,193,'Mpumalanga','MP',1),
(2967,193,'North West','NW',1),
(2968,193,'Northern Cape','NC',1),
(2969,193,'Western Cape','WC',1),
(2970,195,'La Coruña','CA',1),
(2971,195,'Álava','AL',1),
(2972,195,'Albacete','AB',1),
(2973,195,'Alicante','AC',1),
(2974,195,'Almeria','AM',1),
(2975,195,'Asturias','AS',1),
(2976,195,'Ávila','AV',1),
(2977,195,'Badajoz','BJ',1),
(2978,195,'Baleares','IB',1),
(2979,195,'Barcelona','BA',1),
(2980,195,'Burgos','BU',1),
(2981,195,'Cáceres','CC',1),
(2982,195,'Cádiz','CZ',1),
(2983,195,'Cantabria','CT',1),
(2984,195,'Castellón','CL',1),
(2985,195,'Ceuta','CE',1),
(2986,195,'Ciudad Real','CR',1),
(2987,195,'Córdoba','CD',1),
(2988,195,'Cuenca','CU',1),
(2989,195,'Girona','GI',1),
(2990,195,'Granada','GD',1),
(2991,195,'Guadalajara','GJ',1),
(2992,195,'Guipúzcoa','GP',1),
(2993,195,'Huelva','HL',1),
(2994,195,'Huesca','HS',1),
(2995,195,'Jaén','JN',1),
(2996,195,'La Rioja','RJ',1),
(2997,195,'Las Palmas','PM',1),
(2998,195,'Leon','LE',1),
(2999,195,'Lleida','LL',1),
(3000,195,'Lugo','LG',1),
(3001,195,'Madrid','MD',1),
(3002,195,'Malaga','MA',1),
(3003,195,'Melilla','ML',1),
(3004,195,'Murcia','MU',1),
(3005,195,'Navarra','NV',1),
(3006,195,'Ourense','OU',1),
(3007,195,'Palencia','PL',1),
(3008,195,'Pontevedra','PO',1),
(3009,195,'Salamanca','SL',1),
(3010,195,'Santa Cruz de Tenerife','SC',1),
(3011,195,'Segovia','SG',1),
(3012,195,'Sevilla','SV',1),
(3013,195,'Soria','SO',1),
(3014,195,'Tarragona','TA',1),
(3015,195,'Teruel','TE',1),
(3016,195,'Toledo','TO',1),
(3017,195,'Valencia','VC',1),
(3018,195,'Valladolid','VD',1),
(3019,195,'Vizcaya','VZ',1),
(3020,195,'Zamora','ZM',1),
(3021,195,'Zaragoza','ZR',1),
(3022,196,'Central','CE',1),
(3023,196,'Eastern','EA',1),
(3024,196,'North Central','NC',1),
(3025,196,'Northern','NO',1),
(3026,196,'North Western','NW',1),
(3027,196,'Sabaragamuwa','SA',1),
(3028,196,'Southern','SO',1),
(3029,196,'Uva','UV',1),
(3030,196,'Western','WE',1),
(3032,197,'Saint Helena','S',1),
(3034,199,'A\'ali an Nil','ANL',1),
(3035,199,'Al Bahr al Ahmar','BAM',1),
(3036,199,'Al Buhayrat','BRT',1),
(3037,199,'Al Jazirah','JZR',1),
(3038,199,'Al Khartum','KRT',1),
(3039,199,'Al Qadarif','QDR',1),
(3040,199,'Al Wahdah','WDH',1),
(3041,199,'An Nil al Abyad','ANB',1),
(3042,199,'An Nil al Azraq','ANZ',1),
(3043,199,'Ash Shamaliyah','ASH',1),
(3044,199,'Bahr al Jabal','BJA',1),
(3045,199,'Gharb al Istiwa\'iyah','GIS',1),
(3046,199,'Gharb Bahr al Ghazal','GBG',1),
(3047,199,'Gharb Darfur','GDA',1),
(3048,199,'Gharb Kurdufan','GKU',1),
(3049,199,'Janub Darfur','JDA',1),
(3050,199,'Janub Kurdufan','JKU',1),
(3051,199,'Junqali','JQL',1),
(3052,199,'Kassala','KSL',1),
(3053,199,'Nahr an Nil','NNL',1),
(3054,199,'Shamal Bahr al Ghazal','SBG',1),
(3055,199,'Shamal Darfur','SDA',1),
(3056,199,'Shamal Kurdufan','SKU',1),
(3057,199,'Sharq al Istiwa\'iyah','SIS',1),
(3058,199,'Sinnar','SNR',1),
(3059,199,'Warab','WRB',1),
(3060,200,'Brokopondo','BR',1),
(3061,200,'Commewijne','CM',1),
(3062,200,'Coronie','CR',1),
(3063,200,'Marowijne','MA',1),
(3064,200,'Nickerie','NI',1),
(3065,200,'Para','PA',1),
(3066,200,'Paramaribo','PM',1),
(3067,200,'Saramacca','SA',1),
(3068,200,'Sipaliwini','SI',1),
(3069,200,'Wanica','WA',1),
(3070,202,'Hhohho','H',1),
(3071,202,'Lubombo','L',1),
(3072,202,'Manzini','M',1),
(3073,202,'Shishelweni','S',1),
(3074,203,'Blekinge','K',1),
(3075,203,'Dalarna','W',1),
(3076,203,'Gävleborg','X',1),
(3077,203,'Gotland','I',1),
(3078,203,'Halland','N',1),
(3079,203,'Jämtland','Z',1),
(3080,203,'Jönköping','F',1),
(3081,203,'Kalmar','H',1),
(3082,203,'Kronoberg','G',1),
(3083,203,'Norrbotten','BD',1),
(3084,203,'Örebro','T',1),
(3085,203,'Östergötland','E',1),
(3086,203,'Skåne','M',1),
(3087,203,'Södermanland','D',1),
(3088,203,'Stockholm','AB',1),
(3089,203,'Uppsala','C',1),
(3090,203,'Värmland','S',1),
(3091,203,'Västerbotten','AC',1),
(3092,203,'Västernorrland','Y',1),
(3093,203,'Västmanland','U',1),
(3094,203,'Västra Götaland','O',1),
(3095,204,'Aargau','AG',1),
(3096,204,'Appenzell Ausserrhoden','AR',1),
(3097,204,'Appenzell Innerrhoden','AI',1),
(3098,204,'Basel-Stadt','BS',1),
(3099,204,'Basel-Landschaft','BL',1),
(3100,204,'Bern','BE',1),
(3101,204,'Fribourg','FR',1),
(3102,204,'Genève','GE',1),
(3103,204,'Glarus','GL',1),
(3104,204,'Graubünden','GR',1),
(3105,204,'Jura','JU',1),
(3106,204,'Luzern','LU',1),
(3107,204,'Neuchâtel','NE',1),
(3108,204,'Nidwald','NW',1),
(3109,204,'Obwald','OW',1),
(3110,204,'St. Gallen','SG',1),
(3111,204,'Schaffhausen','SH',1),
(3112,204,'Schwyz','SZ',1),
(3113,204,'Solothurn','SO',1),
(3114,204,'Thurgau','TG',1),
(3115,204,'Ticino','TI',1),
(3116,204,'Uri','UR',1),
(3117,204,'Valais','VS',1),
(3118,204,'Vaud','VD',1),
(3119,204,'Zug','ZG',1),
(3120,204,'Zürich','ZH',1),
(3121,205,'Al Hasakah','HA',1),
(3122,205,'Al Ladhiqiyah','LA',1),
(3123,205,'Al Qunaytirah','QU',1),
(3124,205,'Ar Raqqah','RQ',1),
(3125,205,'As Suwayda','SU',1),
(3126,205,'Dara','DA',1),
(3127,205,'Dayr az Zawr','DZ',1),
(3128,205,'Dimashq','DI',1),
(3129,205,'Halab','HL',1),
(3130,205,'Hamah','HM',1),
(3131,205,'Hims','HI',1),
(3132,205,'Idlib','ID',1),
(3133,205,'Rif Dimashq','RD',1),
(3134,205,'Tartus','TA',1),
(3135,206,'Chang-hua','CH',1),
(3136,206,'Chia-i','CI',1),
(3137,206,'Hsin-chu','HS',1),
(3138,206,'Hua-lien','HL',1),
(3139,206,'I-lan','IL',1),
(3140,206,'Kao-hsiung county','KH',1),
(3141,206,'Kin-men','KM',1),
(3142,206,'Lien-chiang','LC',1),
(3143,206,'Miao-li','ML',1),
(3144,206,'Nan-t\'ou','NT',1),
(3145,206,'P\'eng-hu','PH',1),
(3146,206,'P\'ing-tung','PT',1),
(3147,206,'T\'ai-chung','TG',1),
(3148,206,'T\'ai-nan','TA',1),
(3149,206,'T\'ai-pei county','TP',1),
(3150,206,'T\'ai-tung','TT',1),
(3151,206,'T\'ao-yuan','TY',1),
(3152,206,'Yun-lin','YL',1),
(3153,206,'Chia-i city','CC',1),
(3154,206,'Chi-lung','CL',1),
(3155,206,'Hsin-chu','HC',1),
(3156,206,'T\'ai-chung','TH',1),
(3157,206,'T\'ai-nan','TN',1),
(3158,206,'Kao-hsiung city','KC',1),
(3159,206,'T\'ai-pei city','TC',1),
(3160,207,'Gorno-Badakhstan','GB',1),
(3161,207,'Khatlon','KT',1),
(3162,207,'Sughd','SU',1),
(3163,208,'Arusha','AR',1),
(3164,208,'Dar es Salaam','DS',1),
(3165,208,'Dodoma','DO',1),
(3166,208,'Iringa','IR',1),
(3167,208,'Kagera','KA',1),
(3168,208,'Kigoma','KI',1),
(3169,208,'Kilimanjaro','KJ',1),
(3170,208,'Lindi','LN',1),
(3171,208,'Manyara','MY',1),
(3172,208,'Mara','MR',1),
(3173,208,'Mbeya','MB',1),
(3174,208,'Morogoro','MO',1),
(3175,208,'Mtwara','MT',1),
(3176,208,'Mwanza','MW',1),
(3177,208,'Pemba North','PN',1),
(3178,208,'Pemba South','PS',1),
(3179,208,'Pwani','PW',1),
(3180,208,'Rukwa','RK',1),
(3181,208,'Ruvuma','RV',1),
(3182,208,'Shinyanga','SH',1),
(3183,208,'Singida','SI',1),
(3184,208,'Tabora','TB',1),
(3185,208,'Tanga','TN',1),
(3186,208,'Zanzibar Central/South','ZC',1),
(3187,208,'Zanzibar North','ZN',1),
(3188,208,'Zanzibar Urban/West','ZU',1),
(3189,209,'Amnat Charoen','Amnat Charoen',1),
(3190,209,'Ang Thong','Ang Thong',1),
(3191,209,'Ayutthaya','Ayutthaya',1),
(3192,209,'Bangkok','Bangkok',1),
(3193,209,'Buriram','Buriram',1),
(3194,209,'Chachoengsao','Chachoengsao',1),
(3195,209,'Chai Nat','Chai Nat',1),
(3196,209,'Chaiyaphum','Chaiyaphum',1),
(3197,209,'Chanthaburi','Chanthaburi',1),
(3198,209,'Chiang Mai','Chiang Mai',1),
(3199,209,'Chiang Rai','Chiang Rai',1),
(3200,209,'Chon Buri','Chon Buri',1),
(3201,209,'Chumphon','Chumphon',1),
(3202,209,'Kalasin','Kalasin',1),
(3203,209,'Kamphaeng Phet','Kamphaeng Phet',1),
(3204,209,'Kanchanaburi','Kanchanaburi',1),
(3205,209,'Khon Kaen','Khon Kaen',1),
(3206,209,'Krabi','Krabi',1),
(3207,209,'Lampang','Lampang',1),
(3208,209,'Lamphun','Lamphun',1),
(3209,209,'Loei','Loei',1),
(3210,209,'Lop Buri','Lop Buri',1),
(3211,209,'Mae Hong Son','Mae Hong Son',1),
(3212,209,'Maha Sarakham','Maha Sarakham',1),
(3213,209,'Mukdahan','Mukdahan',1),
(3214,209,'Nakhon Nayok','Nakhon Nayok',1),
(3215,209,'Nakhon Pathom','Nakhon Pathom',1),
(3216,209,'Nakhon Phanom','Nakhon Phanom',1),
(3217,209,'Nakhon Ratchasima','Nakhon Ratchasima',1),
(3218,209,'Nakhon Sawan','Nakhon Sawan',1),
(3219,209,'Nakhon Si Thammarat','Nakhon Si Thammarat',1),
(3220,209,'Nan','Nan',1),
(3221,209,'Narathiwat','Narathiwat',1),
(3222,209,'Nong Bua Lamphu','Nong Bua Lamphu',1),
(3223,209,'Nong Khai','Nong Khai',1),
(3224,209,'Nonthaburi','Nonthaburi',1),
(3225,209,'Pathum Thani','Pathum Thani',1),
(3226,209,'Pattani','Pattani',1),
(3227,209,'Phangnga','Phangnga',1),
(3228,209,'Phatthalung','Phatthalung',1),
(3229,209,'Phayao','Phayao',1),
(3230,209,'Phetchabun','Phetchabun',1),
(3231,209,'Phetchaburi','Phetchaburi',1),
(3232,209,'Phichit','Phichit',1),
(3233,209,'Phitsanulok','Phitsanulok',1),
(3234,209,'Phrae','Phrae',1),
(3235,209,'Phuket','Phuket',1),
(3236,209,'Prachin Buri','Prachin Buri',1),
(3237,209,'Prachuap Khiri Khan','Prachuap Khiri Khan',1),
(3238,209,'Ranong','Ranong',1),
(3239,209,'Ratchaburi','Ratchaburi',1),
(3240,209,'Rayong','Rayong',1),
(3241,209,'Roi Et','Roi Et',1),
(3242,209,'Sa Kaeo','Sa Kaeo',1),
(3243,209,'Sakon Nakhon','Sakon Nakhon',1),
(3244,209,'Samut Prakan','Samut Prakan',1),
(3245,209,'Samut Sakhon','Samut Sakhon',1),
(3246,209,'Samut Songkhram','Samut Songkhram',1),
(3247,209,'Sara Buri','Sara Buri',1),
(3248,209,'Satun','Satun',1),
(3249,209,'Sing Buri','Sing Buri',1),
(3250,209,'Sisaket','Sisaket',1),
(3251,209,'Songkhla','Songkhla',1),
(3252,209,'Sukhothai','Sukhothai',1),
(3253,209,'Suphan Buri','Suphan Buri',1),
(3254,209,'Surat Thani','Surat Thani',1),
(3255,209,'Surin','Surin',1),
(3256,209,'Tak','Tak',1),
(3257,209,'Trang','Trang',1),
(3258,209,'Trat','Trat',1),
(3259,209,'Ubon Ratchathani','Ubon Ratchathani',1),
(3260,209,'Udon Thani','Udon Thani',1),
(3261,209,'Uthai Thani','Uthai Thani',1),
(3262,209,'Uttaradit','Uttaradit',1),
(3263,209,'Yala','Yala',1),
(3264,209,'Yasothon','Yasothon',1),
(3265,210,'Kara','K',1),
(3266,210,'Plateaux','P',1),
(3267,210,'Savanes','S',1),
(3268,210,'Centrale','C',1),
(3269,210,'Maritime','M',1),
(3270,211,'Atafu','A',1),
(3271,211,'Fakaofo','F',1),
(3272,211,'Nukunonu','N',1),
(3273,212,'Ha\'apai','H',1),
(3274,212,'Tongatapu','T',1),
(3275,212,'Vava\'u','V',1),
(3276,213,'Couva/Tabaquite/Talparo','CT',1),
(3277,213,'Diego Martin','DM',1),
(3278,213,'Mayaro/Rio Claro','MR',1),
(3279,213,'Penal/Debe','PD',1),
(3280,213,'Princes Town','PT',1),
(3281,213,'Sangre Grande','SG',1),
(3282,213,'San Juan/Laventille','SL',1),
(3283,213,'Siparia','SI',1),
(3284,213,'Tunapuna/Piarco','TP',1),
(3285,213,'Port of Spain','PS',1),
(3286,213,'San Fernando','SF',1),
(3287,213,'Arima','AR',1),
(3288,213,'Point Fortin','PF',1),
(3289,213,'Chaguanas','CH',1),
(3290,213,'Tobago','TO',1),
(3291,214,'Ariana','AR',1),
(3292,214,'Beja','BJ',1),
(3293,214,'Ben Arous','BA',1),
(3294,214,'Bizerte','BI',1),
(3295,214,'Gabes','GB',1),
(3296,214,'Gafsa','GF',1),
(3297,214,'Jendouba','JE',1),
(3298,214,'Kairouan','KR',1),
(3299,214,'Kasserine','KS',1),
(3300,214,'Kebili','KB',1),
(3301,214,'Kef','KF',1),
(3302,214,'Mahdia','MH',1),
(3303,214,'Manouba','MN',1),
(3304,214,'Medenine','ME',1),
(3305,214,'Monastir','MO',1),
(3306,214,'Nabeul','NA',1),
(3307,214,'Sfax','SF',1),
(3308,214,'Sidi','SD',1),
(3309,214,'Siliana','SL',1),
(3310,214,'Sousse','SO',1),
(3311,214,'Tataouine','TA',1),
(3312,214,'Tozeur','TO',1),
(3313,214,'Tunis','TU',1),
(3314,214,'Zaghouan','ZA',1),
(3315,215,'Adana','ADA',1),
(3316,215,'Adıyaman','ADI',1),
(3317,215,'Afyonkarahisar','AFY',1),
(3318,215,'Ağrı','AGR',1),
(3319,215,'Aksaray','AKS',1),
(3320,215,'Amasya','AMA',1),
(3321,215,'Ankara','ANK',1),
(3322,215,'Antalya','ANT',1),
(3323,215,'Ardahan','ARD',1),
(3324,215,'Artvin','ART',1),
(3325,215,'Aydın','AYI',1),
(3326,215,'Balıkesir','BAL',1),
(3327,215,'Bartın','BAR',1),
(3328,215,'Batman','BAT',1),
(3329,215,'Bayburt','BAY',1),
(3330,215,'Bilecik','BIL',1),
(3331,215,'Bingöl','BIN',1),
(3332,215,'Bitlis','BIT',1),
(3333,215,'Bolu','BOL',1),
(3334,215,'Burdur','BRD',1),
(3335,215,'Bursa','BRS',1),
(3336,215,'Çanakkale','CKL',1),
(3337,215,'Çankırı','CKR',1),
(3338,215,'Çorum','COR',1),
(3339,215,'Denizli','DEN',1),
(3340,215,'Diyarbakır','DIY',1),
(3341,215,'Düzce','DUZ',1),
(3342,215,'Edirne','EDI',1),
(3343,215,'Elazığ','ELA',1),
(3344,215,'Erzincan','EZC',1),
(3345,215,'Erzurum','EZR',1),
(3346,215,'Eskişehir','ESK',1),
(3347,215,'Gaziantep','GAZ',1),
(3348,215,'Giresun','GIR',1),
(3349,215,'Gümüşhane','GMS',1),
(3350,215,'Hakkari','HKR',1),
(3351,215,'Hatay','HTY',1),
(3352,215,'Iğdır','IGD',1),
(3353,215,'Isparta','ISP',1),
(3354,215,'İstanbul','IST',1),
(3355,215,'İzmir','IZM',1),
(3356,215,'Kahramanmaraş','KAH',1),
(3357,215,'Karabük','KRB',1),
(3358,215,'Karaman','KRM',1),
(3359,215,'Kars','KRS',1),
(3360,215,'Kastamonu','KAS',1),
(3361,215,'Kayseri','KAY',1),
(3362,215,'Kilis','KLS',1),
(3363,215,'Kırıkkale','KRK',1),
(3364,215,'Kırklareli','KLR',1),
(3365,215,'Kırşehir','KRH',1),
(3366,215,'Kocaeli','KOC',1),
(3367,215,'Konya','KON',1),
(3368,215,'Kütahya','KUT',1),
(3369,215,'Malatya','MAL',1),
(3370,215,'Manisa','MAN',1),
(3371,215,'Mardin','MAR',1),
(3372,215,'Mersin','MER',1),
(3373,215,'Muğla','MUG',1),
(3374,215,'Muş','MUS',1),
(3375,215,'Nevşehir','NEV',1),
(3376,215,'Niğde','NIG',1),
(3377,215,'Ordu','ORD',1),
(3378,215,'Osmaniye','OSM',1),
(3379,215,'Rize','RIZ',1),
(3380,215,'Sakarya','SAK',1),
(3381,215,'Samsun','SAM',1),
(3382,215,'Şanlıurfa','SAN',1),
(3383,215,'Siirt','SII',1),
(3384,215,'Sinop','SIN',1),
(3385,215,'Şırnak','SIR',1),
(3386,215,'Sivas','SIV',1),
(3387,215,'Tekirdağ','TEL',1),
(3388,215,'Tokat','TOK',1),
(3389,215,'Trabzon','TRA',1),
(3390,215,'Tunceli','TUN',1),
(3391,215,'Uşak','USK',1),
(3392,215,'Van','VAN',1),
(3393,215,'Yalova','YAL',1),
(3394,215,'Yozgat','YOZ',1),
(3395,215,'Zonguldak','ZON',1),
(3396,216,'Ahal Welayaty','A',1),
(3397,216,'Balkan Welayaty','B',1),
(3398,216,'Dashhowuz Welayaty','D',1),
(3399,216,'Lebap Welayaty','L',1),
(3400,216,'Mary Welayaty','M',1),
(3401,217,'Ambergris Cays','AC',1),
(3402,217,'Dellis Cay','DC',1),
(3403,217,'French Cay','FC',1),
(3404,217,'Little Water Cay','LW',1),
(3405,217,'Parrot Cay','RC',1),
(3406,217,'Pine Cay','PN',1),
(3407,217,'Salt Cay','SL',1),
(3408,217,'Grand Turk','GT',1),
(3409,217,'South Caicos','SC',1),
(3410,217,'East Caicos','EC',1),
(3411,217,'Middle Caicos','MC',1),
(3412,217,'North Caicos','NC',1),
(3413,217,'Providenciales','PR',1),
(3414,217,'West Caicos','WC',1),
(3415,218,'Nanumanga','NMG',1),
(3416,218,'Niulakita','NLK',1),
(3417,218,'Niutao','NTO',1),
(3418,218,'Funafuti','FUN',1),
(3419,218,'Nanumea','NME',1),
(3420,218,'Nui','NUI',1),
(3421,218,'Nukufetau','NFT',1),
(3422,218,'Nukulaelae','NLL',1),
(3423,218,'Vaitupu','VAI',1),
(3424,219,'Kalangala','KAL',1),
(3425,219,'Kampala','KMP',1),
(3426,219,'Kayunga','KAY',1),
(3427,219,'Kiboga','KIB',1),
(3428,219,'Luwero','LUW',1),
(3429,219,'Masaka','MAS',1),
(3430,219,'Mpigi','MPI',1),
(3431,219,'Mubende','MUB',1),
(3432,219,'Mukono','MUK',1),
(3433,219,'Nakasongola','NKS',1),
(3434,219,'Rakai','RAK',1),
(3435,219,'Sembabule','SEM',1),
(3436,219,'Wakiso','WAK',1),
(3437,219,'Bugiri','BUG',1),
(3438,219,'Busia','BUS',1),
(3439,219,'Iganga','IGA',1),
(3440,219,'Jinja','JIN',1),
(3441,219,'Kaberamaido','KAB',1),
(3442,219,'Kamuli','KML',1),
(3443,219,'Kapchorwa','KPC',1),
(3444,219,'Katakwi','KTK',1),
(3445,219,'Kumi','KUM',1),
(3446,219,'Mayuge','MAY',1),
(3447,219,'Mbale','MBA',1),
(3448,219,'Pallisa','PAL',1),
(3449,219,'Sironko','SIR',1),
(3450,219,'Soroti','SOR',1),
(3451,219,'Tororo','TOR',1),
(3452,219,'Adjumani','ADJ',1),
(3453,219,'Apac','APC',1),
(3454,219,'Arua','ARU',1),
(3455,219,'Gulu','GUL',1),
(3456,219,'Kitgum','KIT',1),
(3457,219,'Kotido','KOT',1),
(3458,219,'Lira','LIR',1),
(3459,219,'Moroto','MRT',1),
(3460,219,'Moyo','MOY',1),
(3461,219,'Nakapiripirit','NAK',1),
(3462,219,'Nebbi','NEB',1),
(3463,219,'Pader','PAD',1),
(3464,219,'Yumbe','YUM',1),
(3465,219,'Bundibugyo','BUN',1),
(3466,219,'Bushenyi','BSH',1),
(3467,219,'Hoima','HOI',1),
(3468,219,'Kabale','KBL',1),
(3469,219,'Kabarole','KAR',1),
(3470,219,'Kamwenge','KAM',1),
(3471,219,'Kanungu','KAN',1),
(3472,219,'Kasese','KAS',1),
(3473,219,'Kibaale','KBA',1),
(3474,219,'Kisoro','KIS',1),
(3475,219,'Kyenjojo','KYE',1),
(3476,219,'Masindi','MSN',1),
(3477,219,'Mbarara','MBR',1),
(3478,219,'Ntungamo','NTU',1),
(3479,219,'Rukungiri','RUK',1),
(3480,220,'Cherkas\'ka Oblast\'','71',1),
(3481,220,'Chernihivs\'ka Oblast\'','74',1),
(3482,220,'Chernivets\'ka Oblast\'','77',1),
(3483,220,'Crimea','43',1),
(3484,220,'Dnipropetrovs\'ka Oblast\'','12',1),
(3485,220,'Donets\'ka Oblast\'','14',1),
(3486,220,'Ivano-Frankivs\'ka Oblast\'','26',1),
(3487,220,'Khersons\'ka Oblast\'','65',1),
(3488,220,'Khmel\'nyts\'ka Oblast\'','68',1),
(3489,220,'Kirovohrads\'ka Oblast\'','35',1),
(3490,220,'Kyiv','30',1),
(3491,220,'Kyivs\'ka Oblast\'','32',1),
(3492,220,'Luhans\'ka Oblast\'','09',1),
(3493,220,'L\'vivs\'ka Oblast\'','46',1),
(3494,220,'Mykolayivs\'ka Oblast\'','48',1),
(3495,220,'Odes\'ka Oblast\'','51',1),
(3496,220,'Poltavs\'ka Oblast\'','53',1),
(3497,220,'Rivnens\'ka Oblast\'','56',1),
(3498,220,'Sevastopol\'','40',1),
(3499,220,'Sums\'ka Oblast\'','59',1),
(3500,220,'Ternopil\'s\'ka Oblast\'','61',1),
(3501,220,'Vinnyts\'ka Oblast\'','05',1),
(3502,220,'Volyns\'ka Oblast\'','07',1),
(3503,220,'Zakarpats\'ka Oblast\'','21',1),
(3504,220,'Zaporiz\'ka Oblast\'','23',1),
(3505,220,'Zhytomyrs\'ka oblast\'','18',1),
(3506,221,'Abu Dhabi','ADH',1),
(3507,221,'\'Ajman','AJ',1),
(3508,221,'Al Fujayrah','FU',1),
(3509,221,'Ash Shariqah','SH',1),
(3510,221,'Dubai','DU',1),
(3511,221,'R\'as al Khaymah','RK',1),
(3512,221,'Umm al Qaywayn','UQ',1),
(3513,222,'Aberdeen','ABN',1),
(3514,222,'Aberdeenshire','ABNS',1),
(3515,222,'Anglesey','ANG',1),
(3516,222,'Angus','AGS',1),
(3517,222,'Argyll and Bute','ARY',1),
(3518,222,'Bedfordshire','BEDS',1),
(3519,222,'Berkshire','BERKS',1),
(3520,222,'Blaenau Gwent','BLA',1),
(3521,222,'Bridgend','BRI',1),
(3522,222,'Bristol','BSTL',1),
(3523,222,'Buckinghamshire','BUCKS',1),
(3524,222,'Caerphilly','CAE',1),
(3525,222,'Cambridgeshire','CAMBS',1),
(3526,222,'Cardiff','CDF',1),
(3527,222,'Carmarthenshire','CARM',1),
(3528,222,'Ceredigion','CDGN',1),
(3529,222,'Cheshire','CHES',1),
(3530,222,'Clackmannanshire','CLACK',1),
(3531,222,'Conwy','CON',1),
(3532,222,'Cornwall','CORN',1),
(3533,222,'Denbighshire','DNBG',1),
(3534,222,'Derbyshire','DERBY',1),
(3535,222,'Devon','DVN',1),
(3536,222,'Dorset','DOR',1),
(3537,222,'Dumfries and Galloway','DGL',1),
(3538,222,'Dundee','DUND',1),
(3539,222,'Durham','DHM',1),
(3540,222,'East Ayrshire','ARYE',1),
(3541,222,'East Dunbartonshire','DUNBE',1),
(3542,222,'East Lothian','LOTE',1),
(3543,222,'East Renfrewshire','RENE',1),
(3544,222,'East Riding of Yorkshire','ERYS',1),
(3545,222,'East Sussex','SXE',1),
(3546,222,'Edinburgh','EDIN',1),
(3547,222,'Essex','ESX',1),
(3548,222,'Falkirk','FALK',1),
(3549,222,'Fife','FFE',1),
(3550,222,'Flintshire','FLINT',1),
(3551,222,'Glasgow','GLAS',1),
(3552,222,'Gloucestershire','GLOS',1),
(3553,222,'Greater London','LDN',1),
(3554,222,'Greater Manchester','MCH',1),
(3555,222,'Gwynedd','GDD',1),
(3556,222,'Hampshire','HANTS',1),
(3557,222,'Herefordshire','HWR',1),
(3558,222,'Hertfordshire','HERTS',1),
(3559,222,'Highlands','HLD',1),
(3560,222,'Inverclyde','IVER',1),
(3561,222,'Isle of Wight','IOW',1),
(3562,222,'Kent','KNT',1),
(3563,222,'Lancashire','LANCS',1),
(3564,222,'Leicestershire','LEICS',1),
(3565,222,'Lincolnshire','LINCS',1),
(3566,222,'Merseyside','MSY',1),
(3567,222,'Merthyr Tydfil','MERT',1),
(3568,222,'Midlothian','MLOT',1),
(3569,222,'Monmouthshire','MMOUTH',1),
(3570,222,'Moray','MORAY',1),
(3571,222,'Neath Port Talbot','NPRTAL',1),
(3572,222,'Newport','NEWPT',1),
(3573,222,'Norfolk','NOR',1),
(3574,222,'North Ayrshire','ARYN',1),
(3575,222,'North Lanarkshire','LANN',1),
(3576,222,'North Yorkshire','YSN',1),
(3577,222,'Northamptonshire','NHM',1),
(3578,222,'Northumberland','NLD',1),
(3579,222,'Nottinghamshire','NOT',1),
(3580,222,'Orkney Islands','ORK',1),
(3581,222,'Oxfordshire','OFE',1),
(3582,222,'Pembrokeshire','PEM',1),
(3583,222,'Perth and Kinross','PERTH',1),
(3584,222,'Powys','PWS',1),
(3585,222,'Renfrewshire','REN',1),
(3586,222,'Rhondda Cynon Taff','RHON',1),
(3587,222,'Rutland','RUT',1),
(3588,222,'Scottish Borders','BOR',1),
(3589,222,'Shetland Islands','SHET',1),
(3590,222,'Shropshire','SPE',1),
(3591,222,'Somerset','SOM',1),
(3592,222,'South Ayrshire','ARYS',1),
(3593,222,'South Lanarkshire','LANS',1),
(3594,222,'South Yorkshire','YSS',1),
(3595,222,'Staffordshire','SFD',1),
(3596,222,'Stirling','STIR',1),
(3597,222,'Suffolk','SFK',1),
(3598,222,'Surrey','SRY',1),
(3599,222,'Swansea','SWAN',1),
(3600,222,'Torfaen','TORF',1),
(3601,222,'Tyne and Wear','TWR',1),
(3602,222,'Vale of Glamorgan','VGLAM',1),
(3603,222,'Warwickshire','WARKS',1),
(3604,222,'West Dunbartonshire','WDUN',1),
(3605,222,'West Lothian','WLOT',1),
(3606,222,'West Midlands','WMD',1),
(3607,222,'West Sussex','SXW',1),
(3608,222,'West Yorkshire','YSW',1),
(3609,222,'Western Isles','WIL',1),
(3610,222,'Wiltshire','WLT',1),
(3611,222,'Worcestershire','WORCS',1),
(3612,222,'Wrexham','WRX',1),
(3613,223,'Alabama','AL',1),
(3614,223,'Alaska','AK',1),
(3615,223,'American Samoa','AS',1),
(3616,223,'Arizona','AZ',1),
(3617,223,'Arkansas','AR',1),
(3618,223,'Armed Forces Africa','AF',1),
(3619,223,'Armed Forces Americas','AA',1),
(3620,223,'Armed Forces Canada','AC',1),
(3621,223,'Armed Forces Europe','AE',1),
(3622,223,'Armed Forces Middle East','AM',1),
(3623,223,'Armed Forces Pacific','AP',1),
(3624,223,'California','CA',1),
(3625,223,'Colorado','CO',1),
(3626,223,'Connecticut','CT',1),
(3627,223,'Delaware','DE',1),
(3628,223,'District of Columbia','DC',1),
(3629,223,'Federated States Of Micronesia','FM',1),
(3630,223,'Florida','FL',1),
(3631,223,'Georgia','GA',1),
(3632,223,'Guam','GU',1),
(3633,223,'Hawaii','HI',1),
(3634,223,'Idaho','ID',1),
(3635,223,'Illinois','IL',1),
(3636,223,'Indiana','IN',1),
(3637,223,'Iowa','IA',1),
(3638,223,'Kansas','KS',1),
(3639,223,'Kentucky','KY',1),
(3640,223,'Louisiana','LA',1),
(3641,223,'Maine','ME',1),
(3642,223,'Marshall Islands','MH',1),
(3643,223,'Maryland','MD',1),
(3644,223,'Massachusetts','MA',1),
(3645,223,'Michigan','MI',1),
(3646,223,'Minnesota','MN',1),
(3647,223,'Mississippi','MS',1),
(3648,223,'Missouri','MO',1),
(3649,223,'Montana','MT',1),
(3650,223,'Nebraska','NE',1),
(3651,223,'Nevada','NV',1),
(3652,223,'New Hampshire','NH',1),
(3653,223,'New Jersey','NJ',1),
(3654,223,'New Mexico','NM',1),
(3655,223,'New York','NY',1),
(3656,223,'North Carolina','NC',1),
(3657,223,'North Dakota','ND',1),
(3658,223,'Northern Mariana Islands','MP',1),
(3659,223,'Ohio','OH',1),
(3660,223,'Oklahoma','OK',1),
(3661,223,'Oregon','OR',1),
(3662,223,'Palau','PW',1),
(3663,223,'Pennsylvania','PA',1),
(3664,223,'Puerto Rico','PR',1),
(3665,223,'Rhode Island','RI',1),
(3666,223,'South Carolina','SC',1),
(3667,223,'South Dakota','SD',1),
(3668,223,'Tennessee','TN',1),
(3669,223,'Texas','TX',1),
(3670,223,'Utah','UT',1),
(3671,223,'Vermont','VT',1),
(3672,223,'Virgin Islands','VI',1),
(3673,223,'Virginia','VA',1),
(3674,223,'Washington','WA',1),
(3675,223,'West Virginia','WV',1),
(3676,223,'Wisconsin','WI',1),
(3677,223,'Wyoming','WY',1),
(3678,224,'Baker Island','BI',1),
(3679,224,'Howland Island','HI',1),
(3680,224,'Jarvis Island','JI',1),
(3681,224,'Johnston Atoll','JA',1),
(3682,224,'Kingman Reef','KR',1),
(3683,224,'Midway Atoll','MA',1),
(3684,224,'Navassa Island','NI',1),
(3685,224,'Palmyra Atoll','PA',1),
(3686,224,'Wake Island','WI',1),
(3687,225,'Artigas','AR',1),
(3688,225,'Canelones','CA',1),
(3689,225,'Cerro Largo','CL',1),
(3690,225,'Colonia','CO',1),
(3691,225,'Durazno','DU',1),
(3692,225,'Flores','FS',1),
(3693,225,'Florida','FA',1),
(3694,225,'Lavalleja','LA',1),
(3695,225,'Maldonado','MA',1),
(3696,225,'Montevideo','MO',1),
(3697,225,'Paysandu','PA',1),
(3698,225,'Rio Negro','RN',1),
(3699,225,'Rivera','RV',1),
(3700,225,'Rocha','RO',1),
(3701,225,'Salto','SL',1),
(3702,225,'San Jose','SJ',1),
(3703,225,'Soriano','SO',1),
(3704,225,'Tacuarembo','TA',1),
(3705,225,'Treinta y Tres','TT',1),
(3706,226,'Andijon','AN',1),
(3707,226,'Buxoro','BU',1),
(3708,226,'Farg\'ona','FA',1),
(3709,226,'Jizzax','JI',1),
(3710,226,'Namangan','NG',1),
(3711,226,'Navoiy','NW',1),
(3712,226,'Qashqadaryo','QA',1),
(3713,226,'Qoraqalpog\'iston Republikasi','QR',1),
(3714,226,'Samarqand','SA',1),
(3715,226,'Sirdaryo','SI',1),
(3716,226,'Surxondaryo','SU',1),
(3717,226,'Toshkent City','TK',1),
(3718,226,'Toshkent Region','TO',1),
(3719,226,'Xorazm','XO',1),
(3720,227,'Malampa','MA',1),
(3721,227,'Penama','PE',1),
(3722,227,'Sanma','SA',1),
(3723,227,'Shefa','SH',1),
(3724,227,'Tafea','TA',1),
(3725,227,'Torba','TO',1),
(3726,229,'Amazonas','AM',1),
(3727,229,'Anzoategui','AN',1),
(3728,229,'Apure','AP',1),
(3729,229,'Aragua','AR',1),
(3730,229,'Barinas','BA',1),
(3731,229,'Bolivar','BO',1),
(3732,229,'Carabobo','CA',1),
(3733,229,'Cojedes','CO',1),
(3734,229,'Delta Amacuro','DA',1),
(3735,229,'Dependencias Federales','DF',1),
(3736,229,'Distrito Federal','DI',1),
(3737,229,'Falcon','FA',1),
(3738,229,'Guarico','GU',1),
(3739,229,'Lara','LA',1),
(3740,229,'Merida','ME',1),
(3741,229,'Miranda','MI',1),
(3742,229,'Monagas','MO',1),
(3743,229,'Nueva Esparta','NE',1),
(3744,229,'Portuguesa','PO',1),
(3745,229,'Sucre','SU',1),
(3746,229,'Tachira','TA',1),
(3747,229,'Trujillo','TR',1),
(3748,229,'Vargas','VA',1),
(3749,229,'Yaracuy','YA',1),
(3750,229,'Zulia','ZU',1),
(3751,230,'An Giang','AG',1),
(3752,230,'Bac Giang','BG',1),
(3753,230,'Bac Kan','BK',1),
(3754,230,'Bac Lieu','BL',1),
(3755,230,'Bac Ninh','BC',1),
(3756,230,'Ba Ria-Vung Tau','BR',1),
(3757,230,'Ben Tre','BN',1),
(3758,230,'Binh Dinh','BH',1),
(3759,230,'Binh Duong','BU',1),
(3760,230,'Binh Phuoc','BP',1),
(3761,230,'Binh Thuan','BT',1),
(3762,230,'Ca Mau','CM',1),
(3763,230,'Can Tho','CT',1),
(3764,230,'Cao Bang','CB',1),
(3765,230,'Dak Lak','DL',1),
(3766,230,'Dak Nong','DG',1),
(3767,230,'Da Nang','DN',1),
(3768,230,'Dien Bien','DB',1),
(3769,230,'Dong Nai','DI',1),
(3770,230,'Dong Thap','DT',1),
(3771,230,'Gia Lai','GL',1),
(3772,230,'Ha Giang','HG',1),
(3773,230,'Hai Duong','HD',1),
(3774,230,'Hai Phong','HP',1),
(3775,230,'Ha Nam','HM',1),
(3776,230,'Ha Noi','HI',1),
(3777,230,'Ha Tay','HT',1),
(3778,230,'Ha Tinh','HH',1),
(3779,230,'Hoa Binh','HB',1),
(3780,230,'Ho Chi Minh City','HC',1),
(3781,230,'Hau Giang','HU',1),
(3782,230,'Hung Yen','HY',1),
(3783,232,'Saint Croix','C',1),
(3784,232,'Saint John','J',1),
(3785,232,'Saint Thomas','T',1),
(3786,233,'Alo','A',1),
(3787,233,'Sigave','S',1),
(3788,233,'Wallis','W',1),
(3789,235,'Abyan','AB',1),
(3790,235,'Adan','AD',1),
(3791,235,'Amran','AM',1),
(3792,235,'Al Bayda','BA',1),
(3793,235,'Ad Dali','DA',1),
(3794,235,'Dhamar','DH',1),
(3795,235,'Hadramawt','HD',1),
(3796,235,'Hajjah','HJ',1),
(3797,235,'Al Hudaydah','HU',1),
(3798,235,'Ibb','IB',1),
(3799,235,'Al Jawf','JA',1),
(3800,235,'Lahij','LA',1),
(3801,235,'Ma\'rib','MA',1),
(3802,235,'Al Mahrah','MR',1),
(3803,235,'Al Mahwit','MW',1),
(3804,235,'Sa\'dah','SD',1),
(3805,235,'San\'a','SN',1),
(3806,235,'Shabwah','SH',1),
(3807,235,'Ta\'izz','TA',1),
(3812,237,'Bas-Congo','BC',1),
(3813,237,'Bandundu','BN',1),
(3814,237,'Equateur','EQ',1),
(3815,237,'Katanga','KA',1),
(3816,237,'Kasai-Oriental','KE',1),
(3817,237,'Kinshasa','KN',1),
(3818,237,'Kasai-Occidental','KW',1),
(3819,237,'Maniema','MA',1),
(3820,237,'Nord-Kivu','NK',1),
(3821,237,'Orientale','OR',1),
(3822,237,'Sud-Kivu','SK',1),
(3823,238,'Central','CE',1),
(3824,238,'Copperbelt','CB',1),
(3825,238,'Eastern','EA',1),
(3826,238,'Luapula','LP',1),
(3827,238,'Lusaka','LK',1),
(3828,238,'Northern','NO',1),
(3829,238,'North-Western','NW',1),
(3830,238,'Southern','SO',1),
(3831,238,'Western','WE',1),
(3832,239,'Bulawayo','BU',1),
(3833,239,'Harare','HA',1),
(3834,239,'Manicaland','ML',1),
(3835,239,'Mashonaland Central','MC',1),
(3836,239,'Mashonaland East','ME',1),
(3837,239,'Mashonaland West','MW',1),
(3838,239,'Masvingo','MV',1),
(3839,239,'Matabeleland North','MN',1),
(3840,239,'Matabeleland South','MS',1),
(3841,239,'Midlands','MD',1),
(3861,105,'Campobasso','CB',1),
(3863,105,'Caserta','CE',1),
(3864,105,'Catania','CT',1),
(3865,105,'Catanzaro','CZ',1),
(3866,105,'Chieti','CH',1),
(3867,105,'Como','CO',1),
(3868,105,'Cosenza','CS',1),
(3869,105,'Cremona','CR',1),
(3870,105,'Crotone','KR',1),
(3871,105,'Cuneo','CN',1),
(3872,105,'Enna','EN',1),
(3873,105,'Ferrara','FE',1),
(3874,105,'Firenze','FI',1),
(3875,105,'Foggia','FG',1),
(3876,105,'Forli-Cesena','FC',1),
(3877,105,'Frosinone','FR',1),
(3878,105,'Genova','GE',1),
(3879,105,'Gorizia','GO',1),
(3880,105,'Grosseto','GR',1),
(3881,105,'Imperia','IM',1),
(3882,105,'Isernia','IS',1),
(3883,105,'L'Aquila','AQ',1),
(3884,105,'La Spezia','SP',1),
(3885,105,'Latina','LT',1),
(3886,105,'Lecce','LE',1),
(3887,105,'Lecco','LC',1),
(3888,105,'Livorno','LI',1),
(3889,105,'Lodi','LO',1),
(3890,105,'Lucca','LU',1),
(3891,105,'Macerata','MC',1),
(3892,105,'Mantova','MN',1),
(3893,105,'Massa-Carrara','MS',1),
(3894,105,'Matera','MT',1),
(3896,105,'Messina','ME',1),
(3897,105,'Milano','MI',1),
(3898,105,'Modena','MO',1),
(3899,105,'Napoli','NA',1),
(3900,105,'Novara','NO',1),
(3901,105,'Nuoro','NU',1),
(3904,105,'Oristano','OR',1),
(3905,105,'Padova','PD',1),
(3906,105,'Palermo','PA',1),
(3907,105,'Parma','PR',1),
(3908,105,'Pavia','PV',1),
(3909,105,'Perugia','PG',1),
(3910,105,'Pesaro e Urbino','PU',1),
(3911,105,'Pescara','PE',1),
(3912,105,'Piacenza','PC',1),
(3913,105,'Pisa','PI',1),
(3914,105,'Pistoia','PT',1),
(3915,105,'Pordenone','PN',1),
(3916,105,'Potenza','PZ',1),
(3917,105,'Prato','PO',1),
(3918,105,'Ragusa','RG',1),
(3919,105,'Ravenna','RA',1),
(3920,105,'Reggio Calabria','RC',1),
(3921,105,'Reggio Emilia','RE',1),
(3922,105,'Rieti','RI',1),
(3923,105,'Rimini','RN',1),
(3924,105,'Roma','RM',1),
(3925,105,'Rovigo','RO',1),
(3926,105,'Salerno','SA',1),
(3927,105,'Sassari','SS',1),
(3928,105,'Savona','SV',1),
(3929,105,'Siena','SI',1),
(3930,105,'Siracusa','SR',1),
(3931,105,'Sondrio','SO',1),
(3932,105,'Taranto','TA',1),
(3933,105,'Teramo','TE',1),
(3934,105,'Terni','TR',1),
(3935,105,'Torino','TO',1),
(3936,105,'Trapani','TP',1),
(3937,105,'Trento','TN',1),
(3938,105,'Treviso','TV',1),
(3939,105,'Trieste','TS',1),
(3940,105,'Udine','UD',1),
(3941,105,'Varese','VA',1),
(3942,105,'Venezia','VE',1),
(3943,105,'Verbano-Cusio-Ossola','VB',1),
(3944,105,'Vercelli','VC',1),
(3945,105,'Verona','VR',1),
(3946,105,'Vibo Valentia','VV',1),
(3947,105,'Vicenza','VI',1),
(3948,105,'Viterbo','VT',1),
(3949,222,'County Antrim','ANT',1),
(3950,222,'County Armagh','ARM',1),
(3951,222,'County Down','DOW',1),
(3952,222,'County Fermanagh','FER',1),
(3953,222,'County Londonderry','LDY',1),
(3954,222,'County Tyrone','TYR',1),
(3955,222,'Cumbria','CMA',1),
(3956,190,'Pomurska','1',1),
(3957,190,'Podravska','2',1),
(3958,190,'Koroška','3',1),
(3959,190,'Savinjska','4',1),
(3960,190,'Zasavska','5',1),
(3961,190,'Spodnjeposavska','6',1),
(3962,190,'Jugovzhodna Slovenija','7',1),
(3963,190,'Osrednjeslovenska','8',1),
(3964,190,'Gorenjska','9',1),
(3965,190,'Notranjsko-kraška','10',1),
(3966,190,'Goriška','11',1),
(3967,190,'Obalno-kraška','12',1),
(3968,33,'Ruse','',1),
(3969,101,'Alborz','ALB',1),
(3970,21,'Brussels-Capital Region','BRU',1),
(3971,138,'Aguascalientes','AG',1),
(3973,242,'Andrijevica','01',1),
(3974,242,'Bar','02',1),
(3975,242,'Berane','03',1),
(3976,242,'Bijelo Polje','04',1),
(3977,242,'Budva','05',1),
(3978,242,'Cetinje','06',1),
(3979,242,'Danilovgrad','07',1),
(3980,242,'Herceg-Novi','08',1),
(3981,242,'Kolašin','09',1),
(3982,242,'Kotor','10',1),
(3983,242,'Mojkovac','11',1),
(3984,242,'Nikšić','12',1),
(3985,242,'Plav','13',1),
(3986,242,'Pljevlja','14',1),
(3987,242,'Plužine','15',1),
(3988,242,'Podgorica','16',1),
(3989,242,'Rožaje','17',1),
(3990,242,'Šavnik','18',1),
(3991,242,'Tivat','19',1),
(3992,242,'Ulcinj','20',1),
(3993,242,'Žabljak','21',1),
(3994,243,'Belgrade','00',1),
(3995,243,'North Bačka','01',1),
(3996,243,'Central Banat','02',1),
(3997,243,'North Banat','03',1),
(3998,243,'South Banat','04',1),
(3999,243,'West Bačka','05',1),
(4000,243,'South Bačka','06',1),
(4001,243,'Srem','07',1),
(4002,243,'Mačva','08',1),
(4003,243,'Kolubara','09',1),
(4004,243,'Podunavlje','10',1),
(4005,243,'Braničevo','11',1),
(4006,243,'Šumadija','12',1),
(4007,243,'Pomoravlje','13',1),
(4008,243,'Bor','14',1),
(4009,243,'Zaječar','15',1),
(4010,243,'Zlatibor','16',1),
(4011,243,'Moravica','17',1),
(4012,243,'Raška','18',1),
(4013,243,'Rasina','19',1),
(4014,243,'Nišava','20',1),
(4015,243,'Toplica','21',1),
(4016,243,'Pirot','22',1),
(4017,243,'Jablanica','23',1),
(4018,243,'Pčinja','24',1),
(4020,245,'Bonaire','BO',1),
(4021,245,'Saba','SA',1),
(4022,245,'Sint Eustatius','SE',1),
(4023,248,'Central Equatoria','EC',1),
(4024,248,'Eastern Equatoria','EE',1),
(4025,248,'Jonglei','JG',1),
(4026,248,'Lakes','LK',1),
(4027,248,'Northern Bahr el-Ghazal','BN',1),
(4028,248,'Unity','UY',1),
(4029,248,'Upper Nile','NU',1),
(4030,248,'Warrap','WR',1),
(4031,248,'Western Bahr el-Ghazal','BW',1),
(4032,248,'Western Equatoria','EW',1),
(4036,117,'Ainaži, Salacgrīvas novads','0661405',1),
(4037,117,'Aizkraukle, Aizkraukles novads','0320201',1),
(4038,117,'Aizkraukles novads','0320200',1),
(4039,117,'Aizpute, Aizputes novads','0640605',1),
(4040,117,'Aizputes novads','0640600',1),
(4041,117,'Aknīste, Aknīstes novads','0560805',1),
(4042,117,'Aknīstes novads','0560800',1),
(4043,117,'Aloja, Alojas novads','0661007',1),
(4044,117,'Alojas novads','0661000',1),
(4045,117,'Alsungas novads','0624200',1),
(4046,117,'Alūksne, Alūksnes novads','0360201',1),
(4047,117,'Alūksnes novads','0360200',1),
(4048,117,'Amatas novads','0424701',1),
(4049,117,'Ape, Apes novads','0360805',1),
(4050,117,'Apes novads','0360800',1),
(4051,117,'Auce, Auces novads','0460805',1),
(4052,117,'Auces novads','0460800',1),
(4053,117,'Ādažu novads','0804400',1),
(4054,117,'Babītes novads','0804900',1),
(4055,117,'Baldone, Baldones novads','0800605',1),
(4056,117,'Baldones novads','0800600',1),
(4057,117,'Baloži, Ķekavas novads','0800807',1),
(4058,117,'Baltinavas novads','0384400',1),
(4059,117,'Balvi, Balvu novads','0380201',1),
(4060,117,'Balvu novads','0380200',1),
(4061,117,'Bauska, Bauskas novads','0400201',1),
(4062,117,'Bauskas novads','0400200',1),
(4063,117,'Beverīnas novads','0964700',1),
(4064,117,'Brocēni, Brocēnu novads','0840605',1),
(4065,117,'Brocēnu novads','0840601',1),
(4066,117,'Burtnieku novads','0967101',1),
(4067,117,'Carnikavas novads','0805200',1),
(4068,117,'Cesvaine, Cesvaines novads','0700807',1),
(4069,117,'Cesvaines novads','0700800',1),
(4070,117,'Cēsis, Cēsu novads','0420201',1),
(4071,117,'Cēsu novads','0420200',1),
(4072,117,'Ciblas novads','0684901',1),
(4073,117,'Dagda, Dagdas novads','0601009',1),
(4074,117,'Dagdas novads','0601000',1),
(4075,117,'Daugavpils','0050000',1),
(4076,117,'Daugavpils novads','0440200',1),
(4077,117,'Dobele, Dobeles novads','0460201',1),
(4078,117,'Dobeles novads','0460200',1),
(4079,117,'Dundagas novads','0885100',1),
(4080,117,'Durbe, Durbes novads','0640807',1),
(4081,117,'Durbes novads','0640801',1),
(4082,117,'Engures novads','0905100',1),
(4083,117,'Ērgļu novads','0705500',1),
(4084,117,'Garkalnes novads','0806000',1),
(4085,117,'Grobiņa, Grobiņas novads','0641009',1),
(4086,117,'Grobiņas novads','0641000',1),
(4087,117,'Gulbene, Gulbenes novads','0500201',1),
(4088,117,'Gulbenes novads','0500200',1),
(4089,117,'Iecavas novads','0406400',1),
(4090,117,'Ikšķile, Ikšķiles novads','0740605',1),
(4091,117,'Ikšķiles novads','0740600',1),
(4092,117,'Ilūkste, Ilūkstes novads','0440807',1),
(4093,117,'Ilūkstes novads','0440801',1),
(4094,117,'Inčukalna novads','0801800',1),
(4095,117,'Jaunjelgava, Jaunjelgavas novads','0321007',1),
(4096,117,'Jaunjelgavas novads','0321000',1),
(4097,117,'Jaunpiebalgas novads','0425700',1),
(4098,117,'Jaunpils novads','0905700',1),
(4099,117,'Jelgava','0090000',1),
(4100,117,'Jelgavas novads','0540200',1),
(4101,117,'Jēkabpils','0110000',1),
(4102,117,'Jēkabpils novads','0560200',1),
(4103,117,'Jūrmala','0130000',1),
(4104,117,'Kalnciems, Jelgavas novads','0540211',1),
(4105,117,'Kandava, Kandavas novads','0901211',1),
(4106,117,'Kandavas novads','0901201',1),
(4107,117,'Kārsava, Kārsavas novads','0681009',1),
(4108,117,'Kārsavas novads','0681000',1),
(4109,117,'Kocēnu novads ,bij. Valmieras)','0960200',1),
(4110,117,'Kokneses novads','0326100',1),
(4111,117,'Krāslava, Krāslavas novads','0600201',1),
(4112,117,'Krāslavas novads','0600202',1),
(4113,117,'Krimuldas novads','0806900',1),
(4114,117,'Krustpils novads','0566900',1),
(4115,117,'Kuldīga, Kuldīgas novads','0620201',1),
(4116,117,'Kuldīgas novads','0620200',1),
(4117,117,'Ķeguma novads','0741001',1),
(4118,117,'Ķegums, Ķeguma novads','0741009',1),
(4119,117,'Ķekavas novads','0800800',1),
(4120,117,'Lielvārde, Lielvārdes novads','0741413',1),
(4121,117,'Lielvārdes novads','0741401',1),
(4122,117,'Liepāja','0170000',1),
(4123,117,'Limbaži, Limbažu novads','0660201',1),
(4124,117,'Limbažu novads','0660200',1),
(4125,117,'Līgatne, Līgatnes novads','0421211',1),
(4126,117,'Līgatnes novads','0421200',1),
(4127,117,'Līvāni, Līvānu novads','0761211',1),
(4128,117,'Līvānu novads','0761201',1),
(4129,117,'Lubāna, Lubānas novads','0701413',1),
(4130,117,'Lubānas novads','0701400',1),
(4131,117,'Ludza, Ludzas novads','0680201',1),
(4132,117,'Ludzas novads','0680200',1),
(4133,117,'Madona, Madonas novads','0700201',1),
(4134,117,'Madonas novads','0700200',1),
(4135,117,'Mazsalaca, Mazsalacas novads','0961011',1),
(4136,117,'Mazsalacas novads','0961000',1),
(4137,117,'Mālpils novads','0807400',1),
(4138,117,'Mārupes novads','0807600',1),
(4139,117,'Mērsraga novads','0887600',1),
(4140,117,'Naukšēnu novads','0967300',1),
(4141,117,'Neretas novads','0327100',1),
(4142,117,'Nīcas novads','0647900',1),
(4143,117,'Ogre, Ogres novads','0740201',1),
(4144,117,'Ogres novads','0740202',1),
(4145,117,'Olaine, Olaines novads','0801009',1),
(4146,117,'Olaines novads','0801000',1),
(4147,117,'Ozolnieku novads','0546701',1),
(4148,117,'Pārgaujas novads','0427500',1),
(4149,117,'Pāvilosta, Pāvilostas novads','0641413',1),
(4150,117,'Pāvilostas novads','0641401',1),
(4151,117,'Piltene, Ventspils novads','0980213',1),
(4152,117,'Pļaviņas, Pļaviņu novads','0321413',1),
(4153,117,'Pļaviņu novads','0321400',1),
(4154,117,'Preiļi, Preiļu novads','0760201',1),
(4155,117,'Preiļu novads','0760202',1),
(4156,117,'Priekule, Priekules novads','0641615',1),
(4157,117,'Priekules novads','0641600',1),
(4158,117,'Priekuļu novads','0427300',1),
(4159,117,'Raunas novads','0427700',1),
(4160,117,'Rēzekne','0210000',1),
(4161,117,'Rēzeknes novads','0780200',1),
(4162,117,'Riebiņu novads','0766300',1),
(4163,117,'Rīga','0010000',1),
(4164,117,'Rojas novads','0888300',1),
(4165,117,'Ropažu novads','0808400',1),
(4166,117,'Rucavas novads','0648500',1),
(4167,117,'Rugāju novads','0387500',1),
(4168,117,'Rundāles novads','0407700',1),
(4169,117,'Rūjiena, Rūjienas novads','0961615',1),
(4170,117,'Rūjienas novads','0961600',1),
(4171,117,'Sabile, Talsu novads','0880213',1),
(4172,117,'Salacgrīva, Salacgrīvas novads','0661415',1),
(4173,117,'Salacgrīvas novads','0661400',1),
(4174,117,'Salas novads','0568700',1),
(4175,117,'Salaspils novads','0801200',1),
(4176,117,'Salaspils, Salaspils novads','0801211',1),
(4177,117,'Saldus novads','0840200',1),
(4178,117,'Saldus, Saldus novads','0840201',1),
(4179,117,'Saulkrasti, Saulkrastu novads','0801413',1),
(4180,117,'Saulkrastu novads','0801400',1),
(4181,117,'Seda, Strenču novads','0941813',1),
(4182,117,'Sējas novads','0809200',1),
(4183,117,'Sigulda, Siguldas novads','0801615',1),
(4184,117,'Siguldas novads','0801601',1),
(4185,117,'Skrīveru novads','0328200',1),
(4186,117,'Skrunda, Skrundas novads','0621209',1),
(4187,117,'Skrundas novads','0621200',1),
(4188,117,'Smiltene, Smiltenes novads','0941615',1),
(4189,117,'Smiltenes novads','0941600',1),
(4190,117,'Staicele, Alojas novads','0661017',1),
(4191,117,'Stende, Talsu novads','0880215',1),
(4192,117,'Stopiņu novads','0809600',1),
(4193,117,'Strenči, Strenču novads','0941817',1),
(4194,117,'Strenču novads','0941800',1),
(4195,117,'Subate, Ilūkstes novads','0440815',1),
(4196,117,'Talsi, Talsu novads','0880201',1),
(4197,117,'Talsu novads','0880200',1),
(4198,117,'Tērvetes novads','0468900',1),
(4199,117,'Tukuma novads','0900200',1),
(4200,117,'Tukums, Tukuma novads','0900201',1),
(4201,117,'Vaiņodes novads','0649300',1),
(4202,117,'Valdemārpils, Talsu novads','0880217',1),
(4203,117,'Valka, Valkas novads','0940201',1),
(4204,117,'Valkas novads','0940200',1),
(4205,117,'Valmiera','0250000',1),
(4206,117,'Vangaži, Inčukalna novads','0801817',1),
(4207,117,'Varakļāni, Varakļānu novads','0701817',1),
(4208,117,'Varakļānu novads','0701800',1),
(4209,117,'Vārkavas novads','0769101',1),
(4210,117,'Vecpiebalgas novads','0429300',1),
(4211,117,'Vecumnieku novads','0409500',1),
(4212,117,'Ventspils','0270000',1),
(4213,117,'Ventspils novads','0980200',1),
(4214,117,'Viesīte, Viesītes novads','0561815',1),
(4215,117,'Viesītes novads','0561800',1),
(4216,117,'Viļaka, Viļakas novads','0381615',1),
(4217,117,'Viļakas novads','0381600',1),
(4218,117,'Viļāni, Viļānu novads','0781817',1),
(4219,117,'Viļānu novads','0781800',1),
(4220,117,'Zilupe, Zilupes novads','0681817',1),
(4221,117,'Zilupes novads','0681801',1),
(4222,43,'Arica y Parinacota','AP',1),
(4223,43,'Los Rios','LR',1),
(4224,220,'Kharkivs\'ka Oblast\'','63',1),
(4225,118,'Beirut','LB-BR',1),
(4226,118,'Bekaa','LB-BE',1),
(4227,118,'Mount Lebanon','LB-ML',1),
(4228,118,'Nabatieh','LB-NB',1),
(4229,118,'North','LB-NR',1),
(4230,118,'South','LB-ST',1),
(4231,99,'Telangana','TS',1),
(4232,44,'Qinghai','QH',1),
(4233,100,'Papua Barat','PB',1),
(4234,100,'Sulawesi Barat','SR',1),
(4235,100,'Kepulauan Riau','KR',1),
(4236,105,'Barletta-Andria-Trani','BT',1),
(4237,105,'Fermo','FM',1),
(4238,105,'Monza Brianza','MB',1);
/*!40000 ALTER TABLE `oc_zone` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oc_zone_to_geo_zone`
--
DROP TABLE IF EXISTS `oc_zone_to_geo_zone`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oc_zone_to_geo_zone` (
`zone_to_geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
`country_id` int(11) NOT NULL,
`zone_id` int(11) NOT NULL DEFAULT 0,
`geo_zone_id` int(11) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`zone_to_geo_zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oc_zone_to_geo_zone`
--
LOCK TABLES `oc_zone_to_geo_zone` WRITE;
/*!40000 ALTER TABLE `oc_zone_to_geo_zone` DISABLE KEYS */;
INSERT INTO `oc_zone_to_geo_zone` VALUES
(1,215,0,1,'2010-02-26 22:33:24','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `oc_zone_to_geo_zone` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2025-05-02 21:59:21