Version Notes
Shoe store has the following Features.
1. Ajax add to cart, wishlist and Compare Products.
2. Responsive Mega menu.
3. Ajax One step Checkout
4. Back end Settings Option
5. Animation Effects
Download this release
Release Info
Developer | AbserveTech |
Extension | AbservetechShoestore |
Version | 0.0.2 |
Comparing to | |
See all releases |
Code changes from version 0.0.1 to 0.0.2
- app/code/community/Abserve/CustomMenu/Block/Navigation.php +3 -2
- app/code/community/Abserve/CustomMenu/etc/config.xml +1 -1
- app/code/community/Abserve/Settings/etc/config.xml +32 -0
- app/code/community/Abserve/Settings/etc/system.xml +59 -9
- app/code/community/Abserve/Settings/link_old.phtml +4 -0
- app/design/frontend/abserve/shoestore/layout/review.xml +1 -1
- app/design/frontend/abserve/shoestore/layout/settings.xml +12 -2
- app/design/frontend/abserve/shoestore/template/ajaxwishlist/catalog/product/view/addto.phtml +8 -2
- app/design/frontend/abserve/shoestore/template/checkout/cart/minicart/default.phtml +1 -2
- app/design/frontend/abserve/shoestore/template/checkout/success.phtml +68 -0
- app/design/frontend/abserve/shoestore/template/page/html/header.phtml +11 -3
- app/design/frontend/abserve/shoestore/template/page/html/shoestore_footer.phtml +13 -11
- app/design/frontend/abserve/shoestore/template/settings/ad.phtml +4 -4
- app/design/frontend/abserve/shoestore/template/settings/banner.phtml +2 -2
- app/design/frontend/abserve/shoestore/template/settings/brand.phtml +3 -1
- app/design/frontend/abserve/shoestore/template/settings/delivery.phtml +3 -3
- app/design/frontend/abserve/shoestore/template/settings/tabs.phtml +42 -22
- media/settings/Thumbs.db +0 -0
- media/settings/ad_1.jpg +0 -0
- media/settings/ad_1.png +0 -0
- media/settings/ad_2.jpg +0 -0
- media/settings/ad_2.png +0 -0
- media/settings/ad_3.png +0 -0
- media/settings/ad_4.png +0 -0
- media/settings/banner-2.jpg +0 -0
- media/settings/banner.jpg +0 -0
- package.xml +7 -5
- skin/frontend/abserve/shoestore/css/abservemegamenu/custommenu/custommenu.css +7 -5
- skin/frontend/abserve/shoestore/css/animate.css +3272 -0
- skin/frontend/abserve/shoestore/css/styles.css +162 -113
- skin/frontend/abserve/shoestore/images/shoestore/Thumbs.db +0 -0
- skin/frontend/abserve/shoestore/images/shoestore/arrow-hover.png +0 -0
- skin/frontend/abserve/shoestore/images/shoestore/arrow.png +0 -0
- skin/frontend/abserve/shoestore/js/ajaxwishlist/ajaxwishlist.js +22 -8
- skin/frontend/abserve/shoestore/js/jquery.appear.js +151 -0
- skin/frontend/abserve/shoestore/owl-carousel/Thumbs.db +0 -0
- skin/frontend/abserve/shoestore/owl-carousel/owl.custom.js +84 -0
app/code/community/Abserve/CustomMenu/Block/Navigation.php
CHANGED
@@ -92,7 +92,8 @@ class Abserve_CustomMenu_Block_Navigation extends Mage_Catalog_Block_Navigation
|
|
92 |
if (Mage::getStoreConfig('custom_menu/general/non_breaking_space')) {
|
93 |
$name = str_replace(' ', ' ', $name);
|
94 |
}
|
95 |
-
$htmlTop[] = '<span>' . $name . '</span>';
|
|
|
96 |
$htmlTop[] = '</a>';
|
97 |
$htmlTop[] = '</div>';
|
98 |
$htmlTop[] = '</div>';
|
@@ -101,7 +102,7 @@ class Abserve_CustomMenu_Block_Navigation extends Mage_Catalog_Block_Navigation
|
|
101 |
if ($drawPopup) {
|
102 |
$htmlPopup = array();
|
103 |
// --- Popup function for hide ---
|
104 |
-
$htmlPopup[] = '<div id="popup' . $id . '" class="abserve-custom-menu-popup" onmouseout="abserveHideMenuPopup(this, event, \'popup' . $id . '\', \'menu' . $id . '\')" onmouseover="abservePopupOver(this, event, \'popup' . $id . '\', \'menu' . $id . '\')">';
|
105 |
// --- draw Sub Categories ---
|
106 |
if (count($activeChildren)) {
|
107 |
$columns = (int)Mage::getStoreConfig('custom_menu/columns/count');
|
92 |
if (Mage::getStoreConfig('custom_menu/general/non_breaking_space')) {
|
93 |
$name = str_replace(' ', ' ', $name);
|
94 |
}
|
95 |
+
$htmlTop[] = '<span>' . $name . '<i class="fa fa-angle-down"></i> </span>';
|
96 |
+
//$htmlTop[] = '<i class="fa fa-angle-down"></i>';
|
97 |
$htmlTop[] = '</a>';
|
98 |
$htmlTop[] = '</div>';
|
99 |
$htmlTop[] = '</div>';
|
102 |
if ($drawPopup) {
|
103 |
$htmlPopup = array();
|
104 |
// --- Popup function for hide ---
|
105 |
+
$htmlPopup[] = '<div id="popup' . $id . '" class="abserve-custom-menu-popup animated zoomIn" onmouseout="abserveHideMenuPopup(this, event, \'popup' . $id . '\', \'menu' . $id . '\')" onmouseover="abservePopupOver(this, event, \'popup' . $id . '\', \'menu' . $id . '\')">';
|
106 |
// --- draw Sub Categories ---
|
107 |
if (count($activeChildren)) {
|
108 |
$columns = (int)Mage::getStoreConfig('custom_menu/columns/count');
|
app/code/community/Abserve/CustomMenu/etc/config.xml
CHANGED
@@ -62,7 +62,7 @@
|
|
62 |
<custommenu module="custommenu">
|
63 |
<title>Custom Megamenu</title>
|
64 |
<sort_order>3</sort_order>
|
65 |
-
<action>adminhtml/system_config/edit/section/
|
66 |
</custommenu>
|
67 |
</children>
|
68 |
</settings>
|
62 |
<custommenu module="custommenu">
|
63 |
<title>Custom Megamenu</title>
|
64 |
<sort_order>3</sort_order>
|
65 |
+
<action>adminhtml/system_config/edit/section/custom_menu</action>
|
66 |
</custommenu>
|
67 |
</children>
|
68 |
</settings>
|
app/code/community/Abserve/Settings/etc/config.xml
CHANGED
@@ -47,10 +47,42 @@
|
|
47 |
</blocks>
|
48 |
</global>
|
49 |
<default>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
<settings>
|
51 |
<general>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
</general>
|
53 |
</settings>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
</default>
|
55 |
<adminhtml>
|
56 |
<menu>
|
47 |
</blocks>
|
48 |
</global>
|
49 |
<default>
|
50 |
+
<settings>
|
51 |
+
<configuration>
|
52 |
+
<brand>Brand_23</brand>
|
53 |
+
<tabfirst>Tabfirst_3</tabfirst>
|
54 |
+
<tabsecond>Tabsecond_4</tabsecond>
|
55 |
+
<tabthird>Tabthird_5</tabthird>
|
56 |
+
</configuration>
|
57 |
+
</settings>
|
58 |
+
|
59 |
<settings>
|
60 |
<general>
|
61 |
+
<copyrights>Copyright@2015.All rights reserved.</copyrights>
|
62 |
+
<skype>abservetech</skype>
|
63 |
+
<skypeno>+91 452 4366678</skypeno>
|
64 |
+
<facebook>abservetech</facebook>
|
65 |
+
<twitter>abservetech</twitter>
|
66 |
+
<linkedin>abservetech</linkedin>
|
67 |
+
<gplus>+Abservetech</gplus>
|
68 |
</general>
|
69 |
</settings>
|
70 |
+
|
71 |
+
<settings>
|
72 |
+
<contactus>
|
73 |
+
<address>Krishnapuram Colony</address>
|
74 |
+
<mobileno>+91 9976659085</mobileno>
|
75 |
+
<telephoneno>+91 452 4366678</telephoneno>
|
76 |
+
<contactmail>abservetech@gmail.com</contactmail>
|
77 |
+
</contactus>
|
78 |
+
</settings>
|
79 |
+
|
80 |
+
<settings>
|
81 |
+
<helpline>
|
82 |
+
<helplineno>support@abservetech.com</helplineno>
|
83 |
+
<helplineemail>+91 0452 4366678</helplineemail>
|
84 |
+
</helpline>
|
85 |
+
</settings>
|
86 |
</default>
|
87 |
<adminhtml>
|
88 |
<menu>
|
app/code/community/Abserve/Settings/etc/system.xml
CHANGED
@@ -41,7 +41,7 @@
|
|
41 |
|
42 |
|
43 |
<skype translate="label">
|
44 |
-
<label> Skype
|
45 |
<frontend_type>text</frontend_type>
|
46 |
<sort_order>0</sort_order>
|
47 |
<show_in_default>1</show_in_default>
|
@@ -49,6 +49,15 @@
|
|
49 |
<show_in_store>1</show_in_store>
|
50 |
</skype>
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
<facebook translate="label">
|
53 |
<label> Facebook Id </label>
|
54 |
<frontend_type>text</frontend_type>
|
@@ -84,21 +93,62 @@
|
|
84 |
<show_in_website>1</show_in_website>
|
85 |
<show_in_store>1</show_in_store>
|
86 |
</gplus>
|
|
|
87 |
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
<show_in_default>1</show_in_default>
|
94 |
<show_in_website>1</show_in_website>
|
95 |
<show_in_store>1</show_in_store>
|
96 |
-
</
|
97 |
-
</fields>
|
98 |
|
99 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
|
|
|
|
102 |
|
103 |
<contactus translate="label">
|
104 |
<label> Contactus </label>
|
41 |
|
42 |
|
43 |
<skype translate="label">
|
44 |
+
<label> Skype Id </label>
|
45 |
<frontend_type>text</frontend_type>
|
46 |
<sort_order>0</sort_order>
|
47 |
<show_in_default>1</show_in_default>
|
49 |
<show_in_store>1</show_in_store>
|
50 |
</skype>
|
51 |
|
52 |
+
<skypeno translate="label">
|
53 |
+
<label> Skype Number </label>
|
54 |
+
<frontend_type>text</frontend_type>
|
55 |
+
<sort_order>0</sort_order>
|
56 |
+
<show_in_default>1</show_in_default>
|
57 |
+
<show_in_website>1</show_in_website>
|
58 |
+
<show_in_store>1</show_in_store>
|
59 |
+
</skypeno>
|
60 |
+
|
61 |
<facebook translate="label">
|
62 |
<label> Facebook Id </label>
|
63 |
<frontend_type>text</frontend_type>
|
93 |
<show_in_website>1</show_in_website>
|
94 |
<show_in_store>1</show_in_store>
|
95 |
</gplus>
|
96 |
+
</fields>
|
97 |
|
98 |
+
</general>
|
99 |
+
|
100 |
+
<configuration translate="label">
|
101 |
+
<label> Home Blog Configuration </label>
|
102 |
+
<frontend_type>text</frontend_type>
|
103 |
+
<sort_order>0</sort_order>
|
104 |
+
<show_in_default>1</show_in_default>
|
105 |
+
<show_in_website>1</show_in_website>
|
106 |
+
<show_in_store>1</show_in_store>
|
107 |
+
|
108 |
+
<fields>
|
109 |
+
|
110 |
+
<brand translate="label">
|
111 |
+
<label> Brand Category </label>
|
112 |
+
<frontend_type>text</frontend_type>
|
113 |
+
<comment><![CDATA[Please Enter Brand Category : Brand_23 (23 is an your category id) ]]></comment>
|
114 |
+
<sort_order>1</sort_order>
|
115 |
<show_in_default>1</show_in_default>
|
116 |
<show_in_website>1</show_in_website>
|
117 |
<show_in_store>1</show_in_store>
|
118 |
+
</brand>
|
|
|
119 |
|
120 |
+
<tabfirst translate="label">
|
121 |
+
<label> Home Tab First </label>
|
122 |
+
<frontend_type>text</frontend_type>
|
123 |
+
<comment><![CDATA[Please Enter Which Category are you want in First Tab in Home Page (Tabfirst_23 (23 is an your category id)) ]]></comment>
|
124 |
+
<sort_order>2</sort_order>
|
125 |
+
<show_in_default>1</show_in_default>
|
126 |
+
<show_in_website>1</show_in_website>
|
127 |
+
<show_in_store>1</show_in_store>
|
128 |
+
</tabfirst>
|
129 |
+
|
130 |
+
<tabsecond translate="label">
|
131 |
+
<label> Home Tab Second </label>
|
132 |
+
<frontend_type>text</frontend_type>
|
133 |
+
<comment><![CDATA[Please Enter Which Category are you want in Second Tab in Home Page (Tabsecond_23 (23 is an your category id)) ]]></comment>
|
134 |
+
<sort_order>3</sort_order>
|
135 |
+
<show_in_default>1</show_in_default>
|
136 |
+
<show_in_website>1</show_in_website>
|
137 |
+
<show_in_store>1</show_in_store>
|
138 |
+
</tabsecond>
|
139 |
|
140 |
+
<tabthird translate="label">
|
141 |
+
<label> Home Tab Third </label>
|
142 |
+
<frontend_type>text</frontend_type>
|
143 |
+
<comment><![CDATA[Please Enter Which Category are you want in Third Tab in Home Page (Tabthird_23 (23 is an your category id)) ]]></comment>
|
144 |
+
<sort_order>4</sort_order>
|
145 |
+
<show_in_default>1</show_in_default>
|
146 |
+
<show_in_website>1</show_in_website>
|
147 |
+
<show_in_store>1</show_in_store>
|
148 |
+
</tabthird>
|
149 |
|
150 |
+
</fields>
|
151 |
+
</configuration>
|
152 |
|
153 |
<contactus translate="label">
|
154 |
<label> Contactus </label>
|
app/code/community/Abserve/Settings/link_old.phtml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
<?php if ($this->isPossibleOnepageCheckout()):?>
|
3 |
+
<button type="button" title="<?php echo $this->__('Proceed to Checkout') ?>" class="button btn-proceed-checkout<?php if ($this->isDisabled()):?> no-checkout<?php endif; ?>"<?php if ($this->isDisabled()):?> disabled="disabled"<?php endif; ?> onclick="window.location='<?php echo $this->getCheckoutUrl() ?>';"><span><?php echo $this->__('Proceed to Checkout') ?></span></button>
|
4 |
+
<?php endif?>
|
app/design/frontend/abserve/shoestore/layout/review.xml
CHANGED
@@ -80,7 +80,7 @@ Product reviews page
|
|
80 |
<review_product_list translate="label">
|
81 |
<label>Catalog Product Reviews List</label>
|
82 |
<reference name="root">
|
83 |
-
<action method="setTemplate"><template>page/
|
84 |
</reference>
|
85 |
<reference name="head">
|
86 |
<action method="addJs"><script>varien/product.js</script></action>
|
80 |
<review_product_list translate="label">
|
81 |
<label>Catalog Product Reviews List</label>
|
82 |
<reference name="root">
|
83 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
84 |
</reference>
|
85 |
<reference name="head">
|
86 |
<action method="addJs"><script>varien/product.js</script></action>
|
app/design/frontend/abserve/shoestore/layout/settings.xml
CHANGED
@@ -11,8 +11,18 @@
|
|
11 |
<action method="addItem">
|
12 |
<type>skin_css</type>
|
13 |
<name>owl-carousel/owl.theme.css</name>
|
14 |
-
</action>
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
<action method="addItem">
|
17 |
<type>skin_js</type>
|
18 |
<name>owl-carousel/owl.carousel.js</name>
|
11 |
<action method="addItem">
|
12 |
<type>skin_css</type>
|
13 |
<name>owl-carousel/owl.theme.css</name>
|
14 |
+
</action>
|
15 |
+
|
16 |
+
<action method="addItem">
|
17 |
+
<type>skin_css</type>
|
18 |
+
<name>css/animate.css</name>
|
19 |
+
</action>
|
20 |
+
|
21 |
+
<action method="addItem">
|
22 |
+
<type>skin_js</type>
|
23 |
+
<name>js/jquery.appear.js</name>
|
24 |
+
</action>
|
25 |
+
|
26 |
<action method="addItem">
|
27 |
<type>skin_js</type>
|
28 |
<name>owl-carousel/owl.carousel.js</name>
|
app/design/frontend/abserve/shoestore/template/ajaxwishlist/catalog/product/view/addto.phtml
CHANGED
@@ -44,15 +44,21 @@ wishlistForm.submitAjaxWishlist = function(button, url,id){
|
|
44 |
jQuery('#ajax_loading'+id).hide();
|
45 |
if(data.status == 'ERROR'){
|
46 |
jQuery("body").append('<ul class="messages msg_notification fixedmsg" style="position:fixed;top:0px;width:100%;"> <li class="notice-msg"><ul><li><span>'+data.message+'.</span></li></ul></li></ul>');
|
47 |
-
setTimeout(function() {
|
48 |
jQuery(".msg_notification").hide('blind', {}, 3000)
|
|
|
|
|
|
|
49 |
}, 1000);
|
50 |
//alert(data.message);
|
51 |
}else{
|
52 |
/*alert(data.message);*/
|
53 |
jQuery("body").append('<ul class="messages msg_notification fixedmsg" style="position:fixed;top:0px;width:100%;"> <li class="success-msg"><ul><li><span>'+data.message+'.</span></li></ul></li></ul>');
|
54 |
-
setTimeout(function() {
|
55 |
jQuery(".msg_notification").hide('blind', {}, 3000)
|
|
|
|
|
|
|
56 |
}, 1000);
|
57 |
|
58 |
if(jQuery('.block-wishlist').length){
|
44 |
jQuery('#ajax_loading'+id).hide();
|
45 |
if(data.status == 'ERROR'){
|
46 |
jQuery("body").append('<ul class="messages msg_notification fixedmsg" style="position:fixed;top:0px;width:100%;"> <li class="notice-msg"><ul><li><span>'+data.message+'.</span></li></ul></li></ul>');
|
47 |
+
/*setTimeout(function() {
|
48 |
jQuery(".msg_notification").hide('blind', {}, 3000)
|
49 |
+
}, 1000);*/
|
50 |
+
setTimeout(function() {
|
51 |
+
jQuery(".msg_notification").hide()
|
52 |
}, 1000);
|
53 |
//alert(data.message);
|
54 |
}else{
|
55 |
/*alert(data.message);*/
|
56 |
jQuery("body").append('<ul class="messages msg_notification fixedmsg" style="position:fixed;top:0px;width:100%;"> <li class="success-msg"><ul><li><span>'+data.message+'.</span></li></ul></li></ul>');
|
57 |
+
/*setTimeout(function() {
|
58 |
jQuery(".msg_notification").hide('blind', {}, 3000)
|
59 |
+
}, 1000);*/
|
60 |
+
setTimeout(function() {
|
61 |
+
jQuery(".msg_notification").hide()
|
62 |
}, 1000);
|
63 |
|
64 |
if(jQuery('.block-wishlist').length){
|
app/design/frontend/abserve/shoestore/template/checkout/cart/minicart/default.phtml
CHANGED
@@ -137,8 +137,7 @@
|
|
137 |
|
138 |
<button id="qbutton-<?php echo $_item->getId(); ?>"
|
139 |
data-item-id="<?php echo $_item->getId(); ?>"
|
140 |
-
disabled="disabled"
|
141 |
-
data-update
|
142 |
class="button quantity-button">
|
143 |
<?php echo $this->__('ok'); ?>
|
144 |
</button>
|
137 |
|
138 |
<button id="qbutton-<?php echo $_item->getId(); ?>"
|
139 |
data-item-id="<?php echo $_item->getId(); ?>"
|
140 |
+
disabled="disabled"
|
|
|
141 |
class="button quantity-button">
|
142 |
<?php echo $this->__('ok'); ?>
|
143 |
</button>
|
app/design/frontend/abserve/shoestore/template/checkout/success.phtml
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Your order has been received.') ?></h1>
|
29 |
+
</div>
|
30 |
+
<div class="order_success_container">
|
31 |
+
<div class="order_success">
|
32 |
+
<?php echo $this->getMessagesBlock()->toHtml() ?>
|
33 |
+
<h2 class="sub-title"><?php echo $this->__('Thank you for your purchase!') ?></h2>
|
34 |
+
|
35 |
+
<?php if ($this->getOrderId()):?>
|
36 |
+
<?php if ($this->getCanViewOrder()) :?>
|
37 |
+
<p><?php echo $this->__('Your order # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getViewOrderUrl()), $this->escapeHtml($this->getOrderId()))) ?></p>
|
38 |
+
<?php else :?>
|
39 |
+
<p><?php echo $this->__('Your order # is: %s.', $this->escapeHtml($this->getOrderId())) ?></p>
|
40 |
+
<?php endif;?>
|
41 |
+
<p><?php echo $this->__('You will receive an order confirmation email with details of your order and a link to track its progress.') ?></p>
|
42 |
+
<?php if ($this->getCanViewOrder() && $this->getCanPrintOrder()) :?>
|
43 |
+
<p>
|
44 |
+
<?php echo $this->__('Click <a href="%s" onclick="this.target=\'_blank\'">here to print</a> a copy of your order confirmation.', $this->getPrintUrl()) ?>
|
45 |
+
<?php echo $this->getChildHtml() ?>
|
46 |
+
</p>
|
47 |
+
<?php endif;?>
|
48 |
+
<?php endif;?>
|
49 |
+
|
50 |
+
<?php if ($this->getAgreementRefId()): ?>
|
51 |
+
<p><?php echo $this->__('Your billing agreement # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getAgreementUrl()), $this->escapeHtml($this->getAgreementRefId())))?></p>
|
52 |
+
<?php endif;?>
|
53 |
+
|
54 |
+
<?php if ($profiles = $this->getRecurringProfiles()):?>
|
55 |
+
<p><?php echo $this->__('Your recurring payment profiles:'); ?></p>
|
56 |
+
<ul class="disc">
|
57 |
+
<?php foreach($profiles as $profile):?>
|
58 |
+
<?php $profileIdHtml = ($this->getCanViewProfiles() ? sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getProfileUrl($profile)), $this->escapeHtml($this->getObjectData($profile, 'reference_id'))) : $this->escapeHtml($this->getObjectData($profile, 'reference_id')));?>
|
59 |
+
<li><?php echo $this->__('Payment profile # %s: "%s".', $profileIdHtml, $this->escapeHtml($this->getObjectData($profile, 'schedule_description')))?></li>
|
60 |
+
<?php endforeach;?>
|
61 |
+
</ul>
|
62 |
+
<?php endif;?>
|
63 |
+
|
64 |
+
<div class="buttons-set">
|
65 |
+
<button type="button" class="button" title="<?php echo $this->__('Continue Shopping') ?>" onclick="window.location='<?php echo $this->getUrl() ?>'"><span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>
|
66 |
+
</div>
|
67 |
+
</div>
|
68 |
+
</div>
|
app/design/frontend/abserve/shoestore/template/page/html/header.phtml
CHANGED
@@ -55,7 +55,7 @@ $helpno = Mage::getStoreConfig('settings/helpline/helplineno');
|
|
55 |
<?php echo $this->getChildHtml('store_switcher') ?>
|
56 |
</div>
|
57 |
<?php echo $this->getChildHtml('currency_switcher') ?>
|
58 |
-
<a href="<?php echo $this->helper('customer')->getAccountUrl(); ?>" data-target-element="#header-account" class="skip-link skip-account">
|
59 |
<span class="label"><?php echo $this->__('My Account'); ?></span>
|
60 |
</a>
|
61 |
</div>
|
@@ -65,7 +65,15 @@ $helpno = Mage::getStoreConfig('settings/helpline/helplineno');
|
|
65 |
</p>
|
66 |
</div>
|
67 |
</div>
|
68 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
<header id="header" class="page-header">
|
70 |
<div class="top_header clearfix hidden-mobile">
|
71 |
<div class="header_logo ">
|
@@ -134,7 +142,7 @@ $helpno = Mage::getStoreConfig('settings/helpline/helplineno');
|
|
134 |
|
135 |
<!-- Account -->
|
136 |
|
137 |
-
<div id="header-account" class="skip-content">
|
138 |
<?php echo $this->getChildHtml('topLinks') ?>
|
139 |
</div>
|
140 |
</div>
|
55 |
<?php echo $this->getChildHtml('store_switcher') ?>
|
56 |
</div>
|
57 |
<?php echo $this->getChildHtml('currency_switcher') ?>
|
58 |
+
<a onmouseover="hoveraccount()" href="<?php echo $this->helper('customer')->getAccountUrl(); ?>" data-target-element="#header-account" class="skip-link skip-account">
|
59 |
<span class="label"><?php echo $this->__('My Account'); ?></span>
|
60 |
</a>
|
61 |
</div>
|
65 |
</p>
|
66 |
</div>
|
67 |
</div>
|
68 |
+
<script type="text/javascript">
|
69 |
+
function hoveraccount(){
|
70 |
+
jQuery(".skip-content").removeClass("skip-active");
|
71 |
+
jQuery("#header-account").addClass("skip-active");
|
72 |
+
}
|
73 |
+
function unhoveraccount(){
|
74 |
+
jQuery("#header-account").removeClass("skip-active");
|
75 |
+
}
|
76 |
+
</script>
|
77 |
<header id="header" class="page-header">
|
78 |
<div class="top_header clearfix hidden-mobile">
|
79 |
<div class="header_logo ">
|
142 |
|
143 |
<!-- Account -->
|
144 |
|
145 |
+
<div id="header-account" class="skip-content" onmouseover="hoveraccount()" onmouseout="unhoveraccount()">
|
146 |
<?php echo $this->getChildHtml('topLinks') ?>
|
147 |
</div>
|
148 |
</div>
|
app/design/frontend/abserve/shoestore/template/page/html/shoestore_footer.phtml
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
<!-- <div class="newssuscribe clearfix">
|
2 |
<?php echo $this->getLayout()->createBlock('newsletter/subscribe')->setTemplate('newsletter/subscribe_footer.phtml')->toHtml(); ?>
|
3 |
</div> -->
|
4 |
-
<?php
|
|
|
|
|
5 |
$facebook = Mage::getStoreConfig('settings/general/facebook');
|
6 |
$gplus = Mage::getStoreConfig('settings/general/gplus');
|
7 |
$linkedin = Mage::getStoreConfig('settings/general/linkedin');
|
@@ -12,16 +14,16 @@
|
|
12 |
$telephoneno = Mage::getStoreConfig('settings/contactus/telephoneno');
|
13 |
$mobileno = Mage::getStoreConfig('settings/contactus/mobileno');
|
14 |
$contactmail = Mage::getStoreConfig('settings/contactus/contactmail');
|
15 |
-
|
16 |
$copyrights = Mage::getStoreConfig('settings/general/copyrights');
|
17 |
|
|
|
18 |
?>
|
19 |
<div class="footer_contact_container clearfix">
|
20 |
<div class="footer_contact">
|
21 |
<div class="call">
|
22 |
<i class="fa fa-phone"></i>
|
23 |
-
<a href="skype
|
24 |
-
<p class="text1"
|
25 |
<p class="text2">Give a call to talk with us</p>
|
26 |
</a>
|
27 |
</div>
|
@@ -56,11 +58,11 @@
|
|
56 |
<div Class="footer_pages">
|
57 |
<h2>Information</h2>
|
58 |
<ul>
|
59 |
-
<li><a href="
|
60 |
-
<li><a href="
|
61 |
-
<li><a href="
|
62 |
-
<li><a href="
|
63 |
-
<li><a href="
|
64 |
</ul>
|
65 |
</div>
|
66 |
|
@@ -68,8 +70,8 @@
|
|
68 |
<h2>Location</h2>
|
69 |
<ul>
|
70 |
<li><a href="javascript:void(0)"><i class="fa fa-map-marker"></i><?php echo $address; ?></a></li>
|
71 |
-
<li><a href="
|
72 |
-
<li><a href="
|
73 |
<li><a href="mailto:abservetech@gmail.com" style="text-transform: lowercase;"><i class="fa fa-envelope"></i><?php echo $contactmail; ?></a></li>
|
74 |
</ul>
|
75 |
</div>
|
1 |
<!-- <div class="newssuscribe clearfix">
|
2 |
<?php echo $this->getLayout()->createBlock('newsletter/subscribe')->setTemplate('newsletter/subscribe_footer.phtml')->toHtml(); ?>
|
3 |
</div> -->
|
4 |
+
<?php
|
5 |
+
$skype = trim(Mage::getStoreConfig('settings/general/skype'));
|
6 |
+
$skypeno = trim(Mage::getStoreConfig('settings/general/skypeno'));
|
7 |
$facebook = Mage::getStoreConfig('settings/general/facebook');
|
8 |
$gplus = Mage::getStoreConfig('settings/general/gplus');
|
9 |
$linkedin = Mage::getStoreConfig('settings/general/linkedin');
|
14 |
$telephoneno = Mage::getStoreConfig('settings/contactus/telephoneno');
|
15 |
$mobileno = Mage::getStoreConfig('settings/contactus/mobileno');
|
16 |
$contactmail = Mage::getStoreConfig('settings/contactus/contactmail');
|
|
|
17 |
$copyrights = Mage::getStoreConfig('settings/general/copyrights');
|
18 |
|
19 |
+
|
20 |
?>
|
21 |
<div class="footer_contact_container clearfix">
|
22 |
<div class="footer_contact">
|
23 |
<div class="call">
|
24 |
<i class="fa fa-phone"></i>
|
25 |
+
<a href="skype:<?php echo $skype; ?>?call">
|
26 |
+
<p class="text1"><?php echo $skypeno; ?></p>
|
27 |
<p class="text2">Give a call to talk with us</p>
|
28 |
</a>
|
29 |
</div>
|
58 |
<div Class="footer_pages">
|
59 |
<h2>Information</h2>
|
60 |
<ul>
|
61 |
+
<li><a href="<?php echo Mage::getBaseUrl(); ?>">Home</a></li>
|
62 |
+
<li><a href="<?php echo Mage::getBaseUrl(); ?>about-magento-demo-store/">About Us</a></li>
|
63 |
+
<li><a href="<?php echo Mage::getBaseUrl(); ?>contacts">Contact US</a></li>
|
64 |
+
<li><a href="<?php echo Mage::getBaseUrl(); ?>privacy-policy-cookie-restriction-mode/">Privacy Policy</a></li>
|
65 |
+
<li><a href="<?php echo Mage::getBaseUrl(); ?>customer-service/">Customer Service</a></li>
|
66 |
</ul>
|
67 |
</div>
|
68 |
|
70 |
<h2>Location</h2>
|
71 |
<ul>
|
72 |
<li><a href="javascript:void(0)"><i class="fa fa-map-marker"></i><?php echo $address; ?></a></li>
|
73 |
+
<li><a href="tel: 9976659085"><i class="fa fa-mobile"></i><?php echo $mobileno; ?></a></li>
|
74 |
+
<li><a href="tel: 04524366678"><i class="fa fa-phone"></i><?php echo $telephoneno; ?></a></li>
|
75 |
<li><a href="mailto:abservetech@gmail.com" style="text-transform: lowercase;"><i class="fa fa-envelope"></i><?php echo $contactmail; ?></a></li>
|
76 |
</ul>
|
77 |
</div>
|
app/design/frontend/abserve/shoestore/template/settings/ad.phtml
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
<div class="advertise_container clearfix">
|
2 |
<div class="advertisement advertisement_block1">
|
3 |
<a href="javascript:void(0)">
|
4 |
-
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/ad_1.
|
5 |
</a>
|
6 |
</div>
|
7 |
<div class="advertisement advertisement_block2">
|
8 |
<a href="javascript:void(0)">
|
9 |
-
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/ad_2.
|
10 |
</a>
|
11 |
<a href="javascript:void(0)">
|
12 |
-
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/
|
13 |
</a>
|
14 |
</div>
|
15 |
<div class="advertisement advertisement_block3">
|
16 |
<a href="javascript:void(0)">
|
17 |
-
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/
|
18 |
</a>
|
19 |
</div>
|
20 |
</div>
|
1 |
<div class="advertise_container clearfix">
|
2 |
<div class="advertisement advertisement_block1">
|
3 |
<a href="javascript:void(0)">
|
4 |
+
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/ad_1.jpg" alt="ad">
|
5 |
</a>
|
6 |
</div>
|
7 |
<div class="advertisement advertisement_block2">
|
8 |
<a href="javascript:void(0)">
|
9 |
+
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/ad_2.jpg" alt="ad">
|
10 |
</a>
|
11 |
<a href="javascript:void(0)">
|
12 |
+
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/ad_2.jpg" alt="ad">
|
13 |
</a>
|
14 |
</div>
|
15 |
<div class="advertisement advertisement_block3">
|
16 |
<a href="javascript:void(0)">
|
17 |
+
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/ad_1.jpg" alt="ad">
|
18 |
</a>
|
19 |
</div>
|
20 |
</div>
|
app/design/frontend/abserve/shoestore/template/settings/banner.phtml
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<div class="banner_slider">
|
2 |
<div id="owl-demo" class="owl-carousel owl-theme">
|
3 |
<div class="item">
|
4 |
-
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/banner
|
5 |
</div>
|
6 |
<div class="item">
|
7 |
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/banner.jpg" alt="banner">
|
8 |
</div>
|
9 |
<div class="item">
|
10 |
-
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/banner
|
11 |
</div>
|
12 |
</div>
|
13 |
</div>
|
1 |
<div class="banner_slider">
|
2 |
<div id="owl-demo" class="owl-carousel owl-theme">
|
3 |
<div class="item">
|
4 |
+
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/banner.jpg" alt="banner">
|
5 |
</div>
|
6 |
<div class="item">
|
7 |
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/banner.jpg" alt="banner">
|
8 |
</div>
|
9 |
<div class="item">
|
10 |
+
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/banner.jpg" alt="banner">
|
11 |
</div>
|
12 |
</div>
|
13 |
</div>
|
app/design/frontend/abserve/shoestore/template/settings/brand.phtml
CHANGED
@@ -7,7 +7,9 @@
|
|
7 |
</div>
|
8 |
<div class="brands">
|
9 |
<?php
|
10 |
-
$
|
|
|
|
|
11 |
$cat = Mage::getModel('catalog/category')->load($parentCategoryId);
|
12 |
$parentcatname = $cat->getName();
|
13 |
$subcats = $cat->getChildren();
|
7 |
</div>
|
8 |
<div class="brands">
|
9 |
<?php
|
10 |
+
$brand_getconfig = trim(Mage::getStoreConfig('settings/configuration/brand'));
|
11 |
+
$parentCategoryId = str_replace('Brand_','', $brand_getconfig);
|
12 |
+
/*$parentCategoryId = 23;*/
|
13 |
$cat = Mage::getModel('catalog/category')->load($parentCategoryId);
|
14 |
$parentcatname = $cat->getName();
|
15 |
$subcats = $cat->getChildren();
|
app/design/frontend/abserve/shoestore/template/settings/delivery.phtml
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<div class="service_container clearfix">
|
2 |
-
<div class="services">
|
3 |
<i class="fa fa-tags"></i>
|
4 |
<!-- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/service_1.png" alt="services"> -->
|
5 |
<h4>Member Discount</h4>
|
@@ -9,7 +9,7 @@
|
|
9 |
</div>
|
10 |
</div>
|
11 |
|
12 |
-
<div class="services">
|
13 |
<i class="fa fa-truck"></i>
|
14 |
<!-- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/service_2.png" alt="services"> -->
|
15 |
<h4>Free Delivery</h4>
|
@@ -19,7 +19,7 @@
|
|
19 |
</div>
|
20 |
</div>
|
21 |
|
22 |
-
<div class="services">
|
23 |
<i class="fa fa-thumbs-up"></i>
|
24 |
<!-- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/service_3.png" alt="services"> -->
|
25 |
<h4>Free Support</h4>
|
1 |
<div class="service_container clearfix">
|
2 |
+
<div class="services animated slideInLeft" style="animation-delay: 5s; animation-duration:5s;">
|
3 |
<i class="fa fa-tags"></i>
|
4 |
<!-- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/service_1.png" alt="services"> -->
|
5 |
<h4>Member Discount</h4>
|
9 |
</div>
|
10 |
</div>
|
11 |
|
12 |
+
<div class="services animated zoomIn" style="animation-delay: 5s; animation-duration:5s;">
|
13 |
<i class="fa fa-truck"></i>
|
14 |
<!-- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/service_2.png" alt="services"> -->
|
15 |
<h4>Free Delivery</h4>
|
19 |
</div>
|
20 |
</div>
|
21 |
|
22 |
+
<div class="services animated slideInLeft" style="animation-delay: 5s; animation-duration:5s;">
|
23 |
<i class="fa fa-thumbs-up"></i>
|
24 |
<!-- <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>settings/service_3.png" alt="services"> -->
|
25 |
<h4>Free Support</h4>
|
app/design/frontend/abserve/shoestore/template/settings/tabs.phtml
CHANGED
@@ -1,7 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<div class="category-products">
|
2 |
<div class="title">
|
3 |
-
<h2>
|
4 |
-
<p>
|
5 |
Lorem Ipsum is simply dummy text of the printing and typesetting industry Lorem Ipsum has been the industry's tandard dummy text ever since the 1500s.
|
6 |
</p>
|
7 |
</div>
|
@@ -9,24 +29,24 @@
|
|
9 |
<div id="tabs" class="tabs">
|
10 |
<nav>
|
11 |
<ul>
|
12 |
-
<li><a href="#section-1" class="icon-shop"><span
|
13 |
-
<li><a href="#section-2" class="icon-cup"><span
|
14 |
-
<li><a href="#section-3" class="icon-food"><span
|
15 |
</ul>
|
16 |
</nav>
|
17 |
<div class="content">
|
18 |
|
19 |
<section id="section-1">
|
20 |
<?php
|
21 |
-
|
22 |
$_helper = $this->helper('catalog/output');
|
23 |
$_columnCount = $this->getColumnCount();
|
24 |
-
if($cat_param){
|
25 |
$cat = Mage::getModel('catalog/category')->load($cat_param);
|
26 |
}else{
|
27 |
-
$cat = Mage::getModel('catalog/category')->load(
|
28 |
-
}
|
29 |
-
|
30 |
$_productCollection = $cat->getProductCollection()
|
31 |
->addAttributeToSelect('*')
|
32 |
->addAttributeToFilter('status',1)
|
@@ -120,16 +140,16 @@
|
|
120 |
</section>
|
121 |
<section id="section-2">
|
122 |
<?php
|
123 |
-
|
124 |
$_helper = $this->helper('catalog/output');
|
125 |
$_columnCount = $this->getColumnCount();
|
126 |
-
if($cat_param){
|
127 |
$cat = Mage::getModel('catalog/category')->load($cat_param);
|
128 |
}else{
|
129 |
-
$cat = Mage::getModel('catalog/category')->load(
|
130 |
-
}
|
131 |
-
|
132 |
-
$_productCollection = $
|
133 |
->addAttributeToSelect('*')
|
134 |
->addAttributeToFilter('status',1)
|
135 |
->addAttributeToFilter('visibility',array('neq' => 1))
|
@@ -221,16 +241,16 @@
|
|
221 |
</section>
|
222 |
<section id="section-3">
|
223 |
<?php
|
224 |
-
|
225 |
$_helper = $this->helper('catalog/output');
|
226 |
$_columnCount = $this->getColumnCount();
|
227 |
-
if($cat_param){
|
228 |
$cat = Mage::getModel('catalog/category')->load($cat_param);
|
229 |
}else{
|
230 |
-
$cat = Mage::getModel('catalog/category')->load(
|
231 |
-
}
|
232 |
-
|
233 |
-
$_productCollection = $
|
234 |
->addAttributeToSelect('*')
|
235 |
->addAttributeToFilter('status',1)
|
236 |
->addAttributeToFilter('visibility',array('neq' => 1))
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$tab1 = trim(Mage::getStoreConfig('settings/configuration/tabfirst'));
|
4 |
+
$tab_first_id = str_replace('Tabfirst_', '', $tab1);
|
5 |
+
$tab2 = trim(Mage::getStoreConfig('settings/configuration/tabsecond'));
|
6 |
+
$tab_second_id = str_replace('Tabsecond_', '', $tab2);
|
7 |
+
$tab3 = trim(Mage::getStoreConfig('settings/configuration/tabthird'));
|
8 |
+
$tab_third_id = str_replace('Tabthird_', '', $tab3);
|
9 |
+
|
10 |
+
$_category1 = Mage::getModel('catalog/category')->load($tab_first_id);
|
11 |
+
$categoryName1 = $_category1->getName();
|
12 |
+
|
13 |
+
$_category2 = Mage::getModel('catalog/category')->load($tab_second_id);
|
14 |
+
$categoryName2 = $_category2->getName();
|
15 |
+
|
16 |
+
$_category3 = Mage::getModel('catalog/category')->load($tab_third_id);
|
17 |
+
$categoryName3 = $_category3->getName();
|
18 |
+
|
19 |
+
?>
|
20 |
+
|
21 |
<div class="category-products">
|
22 |
<div class="title">
|
23 |
+
<h2 class="animated rotateIn"> Featured Products </h2>
|
24 |
+
<p class="animated zoomIn">
|
25 |
Lorem Ipsum is simply dummy text of the printing and typesetting industry Lorem Ipsum has been the industry's tandard dummy text ever since the 1500s.
|
26 |
</p>
|
27 |
</div>
|
29 |
<div id="tabs" class="tabs">
|
30 |
<nav>
|
31 |
<ul>
|
32 |
+
<li><a href="#section-1" class="icon-shop"><span><?php echo $categoryName1; ?></span></a></li>
|
33 |
+
<li><a href="#section-2" class="icon-cup"><span><?php echo $categoryName2; ?></span></a></li>
|
34 |
+
<li><a href="#section-3" class="icon-food"><span><?php echo $categoryName3; ?></span></a></li>
|
35 |
</ul>
|
36 |
</nav>
|
37 |
<div class="content">
|
38 |
|
39 |
<section id="section-1">
|
40 |
<?php
|
41 |
+
/*$cat_param = $_GET['cat'] ; */
|
42 |
$_helper = $this->helper('catalog/output');
|
43 |
$_columnCount = $this->getColumnCount();
|
44 |
+
/*if($cat_param){
|
45 |
$cat = Mage::getModel('catalog/category')->load($cat_param);
|
46 |
}else{
|
47 |
+
$cat = Mage::getModel('catalog/category')->load($tab_first_id);
|
48 |
+
}*/
|
49 |
+
$cat = Mage::getModel('catalog/category')->load($tab_first_id);
|
50 |
$_productCollection = $cat->getProductCollection()
|
51 |
->addAttributeToSelect('*')
|
52 |
->addAttributeToFilter('status',1)
|
140 |
</section>
|
141 |
<section id="section-2">
|
142 |
<?php
|
143 |
+
/*$cat_param = $_GET['cat'] ; */
|
144 |
$_helper = $this->helper('catalog/output');
|
145 |
$_columnCount = $this->getColumnCount();
|
146 |
+
/*if($cat_param){
|
147 |
$cat = Mage::getModel('catalog/category')->load($cat_param);
|
148 |
}else{
|
149 |
+
$cat = Mage::getModel('catalog/category')->load($tab_second_id);
|
150 |
+
}*/
|
151 |
+
$cat2 = Mage::getModel('catalog/category')->load($tab_second_id);
|
152 |
+
$_productCollection = $cat2->getProductCollection()
|
153 |
->addAttributeToSelect('*')
|
154 |
->addAttributeToFilter('status',1)
|
155 |
->addAttributeToFilter('visibility',array('neq' => 1))
|
241 |
</section>
|
242 |
<section id="section-3">
|
243 |
<?php
|
244 |
+
/*$cat_param = $_GET['cat'] ; */
|
245 |
$_helper = $this->helper('catalog/output');
|
246 |
$_columnCount = $this->getColumnCount();
|
247 |
+
/*if($cat_param){
|
248 |
$cat = Mage::getModel('catalog/category')->load($cat_param);
|
249 |
}else{
|
250 |
+
$cat = Mage::getModel('catalog/category')->load($tab_third_id);
|
251 |
+
}*/
|
252 |
+
$cat3 = Mage::getModel('catalog/category')->load($tab_third_id);
|
253 |
+
$_productCollection = $cat3->getProductCollection()
|
254 |
->addAttributeToSelect('*')
|
255 |
->addAttributeToFilter('status',1)
|
256 |
->addAttributeToFilter('visibility',array('neq' => 1))
|
media/settings/Thumbs.db
CHANGED
Binary file
|
media/settings/ad_1.jpg
ADDED
Binary file
|
media/settings/ad_1.png
DELETED
Binary file
|
media/settings/ad_2.jpg
ADDED
Binary file
|
media/settings/ad_2.png
DELETED
Binary file
|
media/settings/ad_3.png
DELETED
Binary file
|
media/settings/ad_4.png
DELETED
Binary file
|
media/settings/banner-2.jpg
DELETED
Binary file
|
media/settings/banner.jpg
CHANGED
Binary file
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>AbservetechShoestore</name>
|
4 |
-
<version>0.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -15,11 +15,13 @@
|
|
15 |
<notes>Shoe store has the following Features.
|
16 |
1. Ajax add to cart, wishlist and Compare Products.
|
17 |
2. Responsive Mega menu.
|
18 |
-
3. Ajax One step Checkout
|
|
|
|
|
19 |
<authors><author><name>AbserveTech</name><user>Abserve</user><email>support@abservetech.com</email></author></authors>
|
20 |
-
<date>2015-08-
|
21 |
-
<time>
|
22 |
-
<contents><target name="magecommunity"><dir name="Abserve"><dir name="AjaxWishlist"><dir name="Block"><file name="AjaxWishlist.php" hash="3add33aa64f49237dc369b3675fbf500"/></dir><dir name="Helper"><file name="Data.php" hash="342d181c09843c45d1d105564e239f00"/></dir><dir name="controllers"><file name="IndexController.php" hash="8f2ea8504fc13d636b8bc262593588b5"/></dir><dir name="etc"><file name="config.xml" hash="3d56fcd0643dd9e11167a8ed07680e63"/></dir></dir><dir name="Ajaxcart"><dir name="Block"><dir name="Adminhtml"><file name="Info.php" hash="7a86c6e27cb111d16e8227763a8c52dd"/><file name="Url.php" hash="87b3a1a45f414381f5b199a0213207ea"/></dir></dir><dir name="Helper"><file name="Data.php" hash="67053034724a0575bf1dd5ad592621fc"/></dir><dir name="Model"><file name="Observer.php" hash="22e469b5fb10e109fe8aa62244efc74b"/><file name="Response.php" hash="db6011c0e08047768186244410366f54"/></dir><dir name="controllers"><dir name="Checkout"><file name="CartController.php" hash="4aad3f6e8be578e4927cb0fccaa2eb56"/></dir></dir><dir name="etc"><file name="config.xml" hash="a8331195c533142240e65934e79ee6d9"/><file name="system.xml" hash="fa6f806937fe0a2b2bc8b66b2751b39d"/></dir></dir><dir name="AutoCurrency"><dir name="Helper"><file name="Data.php" hash="68b68b4094496024cbcaac494271c52a"/></dir><dir name="Model"><file name="Store.php" hash="ecaf211b16526902c01e99c9649e86c5"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Database.php" hash="fc7c045c6a8379ea26109761ec41639e"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="88cccdfd02bb82d69e83a8226f769869"/><file name="system.xml" hash="93fa8c912f0ff1e880376ad6e810ab71"/></dir></dir><dir name="Catalog"><dir name="Model"><dir name="Convert"><dir name="Adapter"><file name="Category.php" hash="5cff8ea75c17b4573a115ac40b35e0a9"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="85be4f3bc4c51d7ed859971aa1ff69b1"/></dir></dir><dir name="CustomMenu"><dir name="Block"><file name="About.php" hash="9693b77e470fa6bd6a38512adfaf46c0"/><file name="Navigation - Copy.php" hash="a3476b55f7742bc3fa80a60fbd0b9737"/><file name="Navigation.php" hash="738f26d4caf541976babcaae7b1ce96a"/><file name="Navigation_old.php" hash="bc53ce86873f3f0d6f3908cdfdb51391"/><file name="Toggle.php" hash="9bce8f40c4242a9e9d6c60002466aa5d"/><file name="Topmenu.php" hash="b1345b5846e7018e9387b8fc2388e9aa"/></dir><dir name="Helper"><file name="Data.php" hash="27ea114e4ab92ff69d9bea8e11b96954"/></dir><dir name="controllers"><file name="AjaxmenucontentController.php" hash="5cc28667d7b4245b5f34815a9aaa3445"/><file name="AjaxmobilemenucontentController.php" hash="4b633ea11bcf6646db182c951b98d812"/></dir><dir name="etc"><file name="config.xml" hash="93fd9df58972006c2655dd45dade0df9"/><file name="system.xml" hash="1eee4d9fc62089aa5e3457486149a782"/></dir></dir><dir name="Magenotification"><dir name="Block"><dir name="Adminhtml"><dir name="Feedback"><dir name="Edit"><file name="Form.php" hash="697ed7be500ff506ab4c230588d96725"/><dir name="Tab"><file name="Form.php" hash="2fa663964abc56559c92bcad5e9c2b44"/><file name="History.php" hash="74c559daca0cadf6352b5ebed395935f"/><file name="Message.php" hash="e4c82cdee14f0ea136d2bbc7c0597da4"/><file name="vssver2.scc" hash="9a4b6c8a5b53ffc015cdc78a55719f24"/></dir><file name="Tabs.php" hash="5bfa8c4c3458e4f60c5579e4e2af25f0"/><file name="vssver2.scc" hash="0082c024fe92287399cfdbac4f94460a"/></dir><file name="Edit.php" hash="261b3059f6953e647ecc55fa0dfaa612"/><file name="Grid.php" hash="fef7acdbf759cf527f46eb739cc4495c"/><dir name="Renderer"><file name="File.php" hash="c00adb78115d70eb26730248fd1c36c7"/><file name="Product.php" hash="c54002dfc6f9022f3ab624a3f31b9b6b"/><file name="Sentstatus.php" hash="86e114f0ce23a3fc673c03ccddd64c39"/><file name="Status.php" hash="deb24c88d9634b5cf7bbedfc4fef5858"/><file name="vssver2.scc" hash="f6c9955ad90dc414f4b2afe615a564c8"/></dir><file name="vssver2.scc" hash="50afa1ab41ba30dd17cfefb8c349d93e"/></dir><file name="Feedback.php" hash="1aa9a13d68cc3f138a7e6515d3a4388e"/><dir name="License"><file name="Purchaseform.php" hash="5c137ca0366872915076d735ce6f7302"/><file name="Updateform.php" hash="f340803ab2f6f265078884a8c33f8a3a"/><file name="vssver2.scc" hash="bbd00907f3e938fa997e659f4b729394"/></dir><dir name="Notification"><dir name="Inbox"><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="e7f923e468a679b0dcc6577b14a1b967"/><file name="Extensions.php" hash="4a1a15cdb7be306f2297a1225566d868"/></dir></dir><file name="Grid.php" hash="e1444436114b90ee1aff522c57c58ada"/></dir><file name="Inbox.php" hash="ea381980a5367fba64de60efa1eff1fb"/><file name="Window.php" hash="c5721524444d81941f06ee43f95422e9"/></dir><file name="vssver2.scc" hash="116f8b00b581f157d1c4c310f8b25c2a"/></dir><dir name="Config"><file name="Extensioncerts.php" hash="2a36e9cfe6b7081d948ca3f1b6e7f8f5"/><file name="Extensionkeys.php" hash="1fd7fe1778a99256c4126f7d957789d3"/><file name="Field.php" hash="318c051815024c91d71520a985d61bc5"/><file name="Label.php" hash="0495e72f19a10a42de025781a37f61b3"/><file name="Licenseinfo.php" hash="3f12351996e9b1d1c62cdc6094a14fd0"/><file name="vssver2.scc" hash="5ad5356ddec253a5b48bf9779d7787d7"/></dir><dir name="Rewrite"><file name="AdminhtmlNotificationGridRendererActions.php" hash="214942c2f06e5f0f608c728ad1406ab7"/><file name="AdminhtmlNotificationWindow.php" hash="893deae6f23dc3a3d3bf594c999b0821"/><file name="vssver2.scc" hash="7a37dbeded8b09338ab4ed543639f5cd"/></dir></dir><dir name="Helper"><file name="Data.php" hash="59d3e095805c5a5d2fcb8b2458df0674"/><file name="Feedback.php" hash="d43ac8708d5d1a1db8ffdeb9a2905d4c"/><file name="License.php" hash="4fa5881f9d30a62976230436de6f087d"/><file name="vssver2.scc" hash="c2cbcc580fd82993daf465d7d6337079"/></dir><dir name="Model"><file name="Config.php" hash="bacdcf49c4a0e4b06f4b549ef3647386"/><file name="Feedback.php" hash="3c7b6143a5e268547c00a202bc6a4889"/><file name="Feedbackmessage.php" hash="8553c5898860f9fe1aec4b9d0ec44d2d"/><file name="Keygen.php" hash="c8fb0b3eb5827c2f2892932fbfe56a46"/><file name="License.php" hash="20f297f10444e053d994fabed07f5422"/><file name="Logger.php" hash="d6a7ffe791d02cef97ebb05e1cae50b2"/><file name="Magenotification.php" hash="de2f5240075f49c5b3eaf836441717c7"/><dir name="Mysql4"><dir name="Feedback"><file name="Collection.php" hash="2c8f5d40ecb7f9e6bffb4df5ef7dd1bf"/><file name="vssver2.scc" hash="a55ea1da8a48a3099888033afd40149f"/></dir><file name="Feedback.php" hash="8d9e85baa220af64d7e4841b89a9dca4"/><dir name="Feedbackmessage"><file name="Collection.php" hash="430b05c0db708656baf65d1cdb16070a"/><file name="vssver2.scc" hash="cd829ec8fa76ec00480f2f187236bdb7"/></dir><file name="Feedbackmessage.php" hash="c2811019a51714206be74b59b65988b7"/><dir name="License"><file name="Collection.php" hash="b321db47e554c229a41af3bd62f151ee"/><file name="vssver2.scc" hash="4761590db57f47163fbf3f044e0ffc1c"/></dir><file name="License.php" hash="18f0a25bf4e05a061425297613460c74"/><dir name="Logger"><file name="Collection.php" hash="b99afc92dca44388ed7807ecee6e0aad"/><file name="vssver2.scc" hash="2359630ccb005fec13f76f30b06de71b"/></dir><file name="Logger.php" hash="e9031b4ab84098c7cd4c18404183e3a9"/><dir name="Magenotification"><file name="Collection.php" hash="9836b7589ba8e9f9bcedee9da62ba95e"/><file name="vssver2.scc" hash="6014a4159f8e923f720b07d5e6108b0c"/></dir><file name="Magenotification.php" hash="046cb185580ebf931ce3e2e83ae85ec5"/><file name="vssver2.scc" hash="253ad29b83623ac91964322237584df3"/></dir><file name="Observer.php" hash="01151bd39bc34f81dade2dfb13a7a04f"/><dir name="Rewrite"><file name="AdminnotificationMysql4Inbox.php" hash="de3f3e3d990aa748e73f7f5a71954894"/><file name="vssver2.scc" hash="c5a06859c1a613769204554aa43e0ed6"/></dir><dir name="Source"><file name="Time.php" hash="ce0226e2db22d89b1c7449f026b7af8b"/><file name="vssver2.scc" hash="12568266f19416b04a740eebc819d818"/></dir><file name="Status.php" hash="748bb5fc719641272d276a23d0076f3a"/><file name="vssver2.scc" hash="effd5b1e47b8860c71578131e127f1c2"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="FeedbackController.php" hash="a959250e669bb974dfd710a2d7f8fe10"/><file name="LicenseController.php" hash="2226eb3d0a51d7e32336cc4eb2debc71"/><file name="MagenotificationController.php" hash="fc5679a5fbafd07422aa28fb230aa0a4"/><file name="vssver2.scc" hash="0a6b37da420d8467e3564f75c89eb157"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e76ec4aac1ebafb4ae6d4cdb60ee0333"/><file name="config.xml" hash="a43488d78ee4d404eff212ee18dc5668"/><file name="system.xml" hash="025d7a6ae5391076088345d69f897e75"/><file name="vssver2.scc" hash="b2435886acd60f99ddaec4dbc8a0f0a6"/></dir><dir name="sql"><dir name="magenotification_setup"><file name="mysql4-install-0.1.0.php" hash="d5f1828751d561102cb8268e2505a2c2"/><file name="mysql4-install-0.1.1.php" hash="5ff9f5261e0087305c425471bd95f9ef"/><file name="mysql4-install-0.1.2.php" hash="74df00189812cc48e07807d4e67c532e"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="ee6cae2c85033cdf549d2c490b90b1b0"/><file name="mysql4-upgrade-0.1.0-0.1.2.php" hash="8833e8e06f11bcd4c421d35f10c5def2"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="741f09f46da1747f027d3fc87d321a2e"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="8943a9567ac7ced808db7a9d52816633"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="902cace9d39e64c461988817b1b5a937"/><file name="vssver2.scc" hash="af0f70f900649bd8cbc7b84381fd8424"/></dir></dir></dir><dir name="Onestepcheckout"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><file name="Edit.php" hash="5f50d141801fd2ee82f9e4f5f8b8a312"/></dir><dir name="Country"><dir name="Edit"><file name="Form.php" hash="2d6a0daba3155c7008e32011243d4aee"/><dir name="Tab"><file name="Form.php" hash="539a19f6445116ffbc76761d6f5dc27a"/></dir><file name="Tabs.php" hash="6298087fd75553f40890ec7bad46d4b9"/></dir><file name="Edit.php" hash="051c073c20fcd221585ed7e5077fc523"/><file name="Grid.php" hash="77b43f0efcabb5f05bbf75513714bf3e"/></dir><file name="Country.php" hash="16557ca2aa0de867a314675749e409c8"/><file name="Countrygrid.php" hash="7ec1cf51a49a4fb175b46703ba6b7a55"/><dir name="Geoip"><dir name="Edit"><file name="Form.php" hash="e4f2a5dde7cfe15f9ac50e2db8c21c04"/><dir name="Tab"><file name="Form.php" hash="a2abcb82a6bcea3eb868973c7d3bfa88"/></dir><file name="Tabs.php" hash="252078efb678bd57fbc2bc89d4840f9b"/></dir><file name="Edit.php" hash="8d23cad0b4d4e3d8fecb6a9b1ee986c0"/><file name="Grid.php" hash="c23a08c039f90c9f4afc5d72bc62defe"/></dir><file name="Geoip.php" hash="f7bfd8c80885198d1cfb46ba672a89c9"/><file name="Geoipgrid.php" hash="2cee0d92a6a4510ce207c14df402d77f"/><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Tab"><file name="Delivery.php" hash="0b003cc4c0d0bebdde22dd3de875a380"/><file name="Survey.php" hash="e96e1f1204374ee3f4d870130d8bf538"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Field"><file name="Position.php" hash="591f8bdc9dc260b516344358f9c61ea8"/><file name="Style.php" hash="3d2f697b7024b47095f995cfa37a100f"/></dir><dir name="Form"><dir name="Field"><file name="Separator.php" hash="4b47f2cdee81a7fbb216479fcc1f08ee"/></dir></dir></dir></dir></dir><dir name="Checkout"><file name="Links.php" hash="1ffd5ae049cfe93dc40a0084965d3745"/></dir><dir name="Onepage"><file name="Link.php" hash="d407f0011ca35e3ba01e64de7f1be9a7"/></dir><file name="Onestepcheckout.php" hash="d4534c663bedfd06291651568ff2cc41"/><file name="Postcode.php" hash="29391f38cecea96de719ae5f297b9350"/><file name="Reload.php" hash="6ee3cbc3eeaa10650e9fab34012e033b"/><file name="Review.php" hash="6bf69a378bd564f08053aacd5a19435b"/><dir name="Sales"><dir name="Order"><dir name="Totals"><file name="Delivery.php" hash="f0617f39596aa865fe5f754f40197d47"/><file name="Discount.php" hash="a2ada262148218f26e610cafafb9c6f0"/><file name="Giftwrap.php" hash="b57911d76e37747788ecc5664f010078"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Survey.php" hash="94ef853d027c56877d16daaabf090ee7"/></dir></dir></dir></dir><dir name="Widget"><file name="Dob.php" hash="a5360b3ecd0efb06f8663106b25ca123"/></dir></dir><dir name="Helper"><file name="Data.php" hash="9e9964a24d8e57fdb22fb8751422847f"/><file name="Message.php" hash="8d395efbb36ee56549f354e8d100d32f"/><dir name="Rewrite"><dir name="Checkout"><file name="Url.php" hash="1226c5a93ac50a776f1dd4cce4ed00a3"/></dir></dir></dir><dir name="Model"><file name="Address.php" hash="322044c8460b8affc05c4945ee2f3e84"/><file name="Config.php" hash="5d095e8a5c43d0e4ab5abf4b5f0137ef"/><file name="Country.php" hash="d19e8d472c5611fb37ca7ee5c791c89b"/><file name="Countrylist.php" hash="cbd5f56ce57937fe6f8aa163adbfb256"/><file name="Countryversion.php" hash="425646a61194d4ca2cb59a27ef7835c9"/><dir name="Customer"><file name="Customer.php" hash="f375a5a0fbab98c268da00a7cdbe8657"/><file name="Form.php" hash="ec5d2bd7f13230146f767ff19bc799bc"/></dir><file name="Delivery.php" hash="ceba6a56a8ee1eb1802f1e4345ba3ae0"/><file name="Geoip.php" hash="906826179f9cf964b8f2037ef446e75d"/><file name="Giftwrap.php" hash="972e625dba6682cb595470783aab8e7e"/><dir name="Mysql4"><dir name="Config"><file name="Collection.php" hash="e3b19062f97b78ba419eb0b8f9e5d481"/></dir><file name="Config.php" hash="96f9fb62ee69a1e99995cfbb487c23ff"/><dir name="Country"><file name="Collection.php" hash="540285ae87912aa35227046a432a2f2f"/></dir><file name="Country.php" hash="8f1d9d24bfb70e9754f0802caa8a6297"/><dir name="Countrylist"><file name="Collection.php" hash="5296991d5815c4ac7830081b3a3a1495"/></dir><file name="Countrylist.php" hash="a26819414ec2f9af9ff6338432bf57a8"/><dir name="Countryversion"><file name="Collection.php" hash="c3426b05e25bda5ed05c66c262a9f636"/></dir><file name="Countryversion.php" hash="e303a20c3fe88c989df582bfe9a7212a"/><file name="Delivery.php" hash="c1e25968150e3bb25f92ce784be411de"/><dir name="Geoip"><file name="Collection.php" hash="a1daba6f6b843b5e1a140edd92d657dc"/></dir><file name="Geoip.php" hash="bf4ac4c93a549db4c2c0b31219dd0cda"/><dir name="Survey"><file name="Collection.php" hash="ddb3991bd9c5cc3635c34c25c7e3ddb4"/></dir><file name="Survey.php" hash="53bf7bb425202bcbea15226a23154a9e"/></dir><file name="Observer.php" hash="43fd36f78237350ebe11e35042c8eed0"/><dir name="Order"><dir name="Pdf"><file name="Amount.php" hash="2e6e7c677d6fb923b18f4255126e75cf"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Discount.php" hash="ff57211bfb81b52a3849f053789086ab"/><file name="Giftwrap.php" hash="4f4f8dd5011c0c05be1011fdb49d00a3"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Discount.php" hash="4cb64bd3054be0d375a4e35a8abfdf88"/><file name="Giftwrap.php" hash="c26485219caf39b426f9ba9b08fce80a"/></dir></dir><dir name="Pdf"><file name="Invoice.php" hash="b7ce0875d70f46d6c51304ec84c960a9"/><file name="Shipment.php" hash="f984164f0a41dfd0dbb4fe5810d7def5"/></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Discount.php" hash="6bd8b3784a0ed7c715ccc9e07702c74e"/><file name="Giftwrap.php" hash="f0a69219d654b1b8240fde078a7a9968"/></dir></dir></dir></dir><dir name="Source"><file name="Ajaxbilling.php" hash="221f1b8d6ab054980fb62ca6aec1460a"/><file name="Layout.php" hash="f6f85e0a64b73d2324a1834582566df6"/><file name="Payment.php" hash="8f172a52fe92443b3db22009b4aac282"/><file name="Reloadpayment.php" hash="af63b34eb24789711d1b2c8656dfabbc"/><file name="Shipping.php" hash="d81e1e0229bd7f8685a531f4975358eb"/></dir><file name="Survey.php" hash="5971211006a20e6ad4271577c731aa21"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CountryController.php" hash="b6d2cf6445ac917c917e04d5e28b9345"/><file name="GeoipController.php" hash="7e641688a2a27e8236b1389d11b3ecad"/><file name="SimiController.php" hash="40e2ef29fdcef1a09f53872c97840974"/></dir><file name="AjaxController.php" hash="7c4d2b58d535cf3ffec4ffe40ca03caa"/><file name="GeoipController.php" hash="0b8aa30474813933cbbabbfbb9286d73"/><file name="IndexController.php" hash="e929d39b54da9fad359eb5cae4ff9407"/><file name="PaymentController.php" hash="864f072c87dd0c5a5a00296dba3426d0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="258600dda09291b04dc0e415f71b417c"/><file name="config.xml" hash="73748f347464d22ed91c23c2d340ce9c"/><file name="system.xml" hash="8f4cbb9f44353d83de81d5280eaa68fd"/></dir><dir name="sql"><dir name="onestepcheckout_setup"><file name="mysql4-upgrade-1.0.1-1.1.0.php" hash="b3caa92083b3568ecd1edc3069392a8a"/><file name="mysql4-upgrade-1.1.0-1.1.1.php" hash="729b10297f75f9b8c3c1fdf14a1cda98"/><file name="mysql4-upgrade-1.1.1-1.1.5.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.7-1.1.8.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.8-1.1.9.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.9-1.2.2.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.2.3-2.0.0.php" hash="bd1e074cca468386be07d3674a05498e"/><file name="mysql4-upgrade-2.0.0-2.0.1.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-2.0.2-3.0.0.php" hash="26b97b25c8741fc8913ec129205a2a12"/><file name="mysql4-upgrade-3.0.0-3.1.0.php" hash="2ccd0a859a785ac047fec2544cab6e27"/></dir></dir></dir><dir name="PaypalBNCode"><dir name="Helper"><file name="Data.php" hash="0fdcbcc78368f5937c8e9cf303bc7bfa"/></dir><dir name="Model"><file name="Config.php" hash="d928200b73e21bc098e6af99ac0eb5b8"/></dir><dir name="etc"><file name="config.xml" hash="e26be5583723747db39c6c421d752a64"/></dir></dir><dir name="Settings"><dir name="Block"><file name="Settings.php" hash="c6206688c0e841b52aca899e28de4802"/></dir><dir name="Helper"><file name="Data.php" hash="74d707d973e3b5464f6e126bc69402f9"/></dir><dir name="controllers"><file name="IndexController.php" hash="0011ae59221f785a49be12ff16994cab"/></dir><dir name="etc"><file name="adminhtml.xml" hash="868a54afc9e6bab1e2d16938ca918261"/><file name="config.xml" hash="d732f778329b69f8e10f77a19ebf705b"/><file name="system.xml" hash="1bca50db33701cab86b5f30d069b6c98"/></dir></dir><dir name="license_certificates"><file name="Abserve_Onestepcheckout.xml" hash="c19d7442cd4021a8023b1c6903051ee2"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magenotification.xml" hash="d8d6f09fe2eab3d24de2765584628eec"/><file name="onestepcheckout.xml" hash="5b9f21a9a540134f9ff42130322c3911"/></dir><dir name="template"><dir name="magenotification"><dir name="feedback"><file name="files.phtml" hash="55a255047fd65a80d4429cc5d6d6aad1"/><file name="history.phtml" hash="d0629d67987cafd34bde33e58bc9e23a"/></dir><dir name="license"><file name="licenseinfo.phtml" hash="3857a896c8cb9fc63331502ab782cb2c"/><file name="purchaseform.phtml" hash="5a39b6087f4f538a6094ecb66d6f8c0b"/><file name="updateform.phtml" hash="3d3cf9d0035d8f74fef33916e27fa549"/></dir></dir><dir name="onestepcheckout"><file name="country.phtml" hash="65e0870114409c9d23033f2c6cc069bb"/><file name="geoip.phtml" hash="d16c1243c4b8ca1039be5610d3f52d23"/><file name="geoipgrid.phtml" hash="437e910725c0732200551a28f931a37c"/><file name="info.phtml" hash="8bfe5e62abe665b40e9de61ba7e9ac17"/><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><file name="delivery.phtml" hash="8738cedfe8f60a206d7f1ee1bf7c94dd"/><file name="survey.phtml" hash="418d398894903cfa59fa73385a67fec3"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="abserve"><dir name="shoestore"><dir name="etc"><file name="theme.xml" hash="d344d5e39682e45bebf471c3510ca65e"/><file name="widget.xml" hash="c539ce6b70ec60dd6dae3cff68f80422"/></dir><dir name="layout"><dir name="abservemegamenu"><file name="custommenu.xml" hash="1b436b4368fdd37aa655ee88d7a518d8"/></dir><file name="ajaxcart.xml" hash="35fbf55de207af960608c800210c3c19"/><file name="ajaxwishlist.xml" hash="edd5d57a449a36aac5122c9e779f41dc"/><file name="bundle.xml" hash="9647d853d1f3f81c48ee8c3c677d1cdb"/><file name="catalog.xml" hash="a0d0fabfeb49b479f3a226117a328ae2"/><file name="catalog_msrp.xml" hash="abca4b7c8cc2a576ef59a2326150230d"/><file name="catalogsearch.xml" hash="c147291945ba7b431d35d88d0aba46fe"/><file name="checkout.xml" hash="e9cbf27525f14afc0287ffacb05a911b"/><file name="cms.xml" hash="f18becaaac55614d9aa23007aa33a1b6"/><file name="configurableswatches.xml" hash="e3554c2a0d8d3a935222e3f6a9dd82ee"/><file name="contacts.xml" hash="36d1a39df879403b44c76cf7b20e6a19"/><file name="customer.xml" hash="7b41750625f51b8ac32d92b83354a0b1"/><file name="directory.xml" hash="2db8e308d17e3ffec46aa8fb909c5e2b"/><file name="downloadable.xml" hash="081c20ef5b4a2f64d3889a7bed301778"/><file name="newsletter.xml" hash="25f0084fceed66a61f721680a1f54f5e"/><file name="oauth.xml" hash="0abe4da9723e35b24dfd58157a149727"/><file name="onestepcheckout.xml" hash="84edacc61f2795d791ba64151fc7413e"/><file name="page.xml" hash="205d0354f558ef7d92aaeee25b2a6507"/><file name="paypal.xml" hash="b3ca01ae096ed3d4e5200554c78ab8a3"/><file name="persistent.xml" hash="e97225bc8d7f2129117f0c511914c3f5"/><file name="review.xml" hash="045357977c8882ce048246465f55b6bb"/><file name="rss.xml" hash="7b08a0410fa224e8291bf69f4bb88858"/><file name="sales.xml" hash="cd208eca0e421c88949905f26515ebc2"/><file name="settings.xml" hash="90ab95f3b871f63a7bc1e94df458b0e3"/><file name="wishlist.xml" hash="f602af2b0b610143b788f5171ceac0a4"/></dir><dir name="template"><dir name="abservemegamenu"><dir name="custommenu"><file name="menucontent.phtml" hash="b9c5297a09aa2c9df51cde930c0041ee"/><file name="top.phtml" hash="a41bf7f78a26a89ead760a236dd64a12"/></dir></dir><dir name="ajaxcart"><dir name="catalog"><dir name="product"><file name="list - Copy.phtml" hash="68380c3ad3a88622b3afa7b45b47449f"/><file name="list.phtml" hash="5de9cc4655c01208d5f42b207b2fbf6c"/></dir></dir></dir><dir name="ajaxwishlist"><dir name="catalog"><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="9b6d9c8039b34c02eff84439714e95dc"/></dir><file name="list.phtml" hash="79642d95a654e4e0cf0a429f9b07b15b"/><file name="list_wishlist.phtml" hash="1d145d252e105a5d9e131d3f9c2e37ba"/><dir name="view"><file name="addto.phtml" hash="349ff7ce735187a46627556a18736451"/></dir></dir></dir></dir><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="f7dfb245dfd620e6bee75bd18b59bba6"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="view"><dir name="type"><dir name="bundle"><file name="availability.phtml" hash="a09e5cc2ef1686dd6533be025e19c86c"/><dir name="option"><file name="select.phtml" hash="c3e6f4178d8615bf75b6df4cb7a766b0"/></dir></dir><file name="bundle.phtml" hash="806dce08fae77b0572212b0ae7a3121a"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="04833cc8f11b7cf4e9d1f4ce4f2ab1bb"/></dir><dir name="invoice"><file name="default.phtml" hash="b68643ced0e053046990bdcc6d8d9846"/></dir><dir name="order"><file name="default.phtml" hash="85e3bdb680b17c8b3975275125e93771"/></dir><dir name="shipment"><file name="default.phtml" hash="63ab65ea9f9783d723bd92cb66f5cdc6"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="items"><file name="renderer.phtml" hash="42cfdfc713ef0d208ad66e8bba38fe58"/></dir></dir></dir></dir><dir name="captcha"><file name="zend.phtml" hash="76404ebdc503e9f262110a683a42f5b1"/></dir><dir name="catalog"><dir name="layer"><file name="filter.phtml" hash="4cd90ecbb576698e4c10327e2dac5fba"/><file name="state.phtml" hash="b4519ec0ae27d635103332c98f608304"/><file name="view.phtml" hash="5d69d94e7691b2f2372c0951375e8f2d"/></dir><dir name="msrp"><file name="popup.phtml" hash="20cf471182e99a91a978e9a002000f35"/></dir><dir name="navigation"><file name="left.phtml" hash="662968c9678fae8014a671304ee70f64"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="949a3ef19d290a3117442a2f2a72287a"/><file name="sidebar.phtml" hash="82c43611103da30cc6c2edbee0fdc04d"/></dir><dir name="list"><file name="related.phtml" hash="90df786ad9ae80837998292d175f204a"/><file name="toolbar.phtml" hash="16d2f185c7be49cc23b72b1c15b6c888"/><file name="upsell.phtml" hash="96c5c6aed5288c193e6d5c89b6078782"/></dir><file name="list.phtml" hash="c00cc06c5a427aec73e737ca79ff2648"/><file name="price.phtml" hash="db26709ad4723a94695b40b717e04161"/><dir name="view"><file name="addto.phtml" hash="5fafb53df6a2a13a7a0afab4d0b7421b"/><file name="addtocart.phtml" hash="b9bf4f1c587a6aa1f38ec219d03e7760"/><file name="media.phtml" hash="4d50c65a7d2b961ffd41b5926de882a9"/><file name="sharing.phtml" hash="79f483655165d7170c7533c5eb108518"/><dir name="type"><dir name="availability"><file name="default.phtml" hash="293cbf4904ed0020c1a79ec35da15845"/><file name="grouped.phtml" hash="cc87c320d32c2bc68f28338592537203"/></dir><file name="default.phtml" hash="16039952088f60ecb30d0f866eb1371e"/><file name="grouped.phtml" hash="73c5f72b14f922ff0646a3f2137f3a0f"/><dir name="options"><file name="configurable.phtml" hash="a7d16610ca3849b7aac6b4260d8636e3"/></dir></dir></dir><file name="view - Copy.phtml" hash="df2654f11fb7ea06a1b6addf798308d9"/><file name="view.phtml" hash="85a9fd4f5734d08dbec6b8f0543b945d"/><dir name="widget"><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="a5c61600e23acfb1037a12191d280cc3"/><file name="new_images_list.phtml" hash="f72bff4ddc5546790231ad4fe4afcbe9"/><file name="new_names_list.phtml" hash="565af8de07893af772ad88c0029365e1"/></dir><dir name="content"><file name="new_grid.phtml" hash="914532cbfa676027d7528dadb830ea05"/><file name="new_list.phtml" hash="e3eae9160536b3267c7cb6ae61e44163"/></dir></dir></dir></dir></dir><dir name="cataloginventory"><dir name="stockqty"><file name="composite.phtml" hash="590df1c4b80bbbac63c9da79780b56ac"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="7d188c26d3a8918eb08863d02829f7f2"/></dir><file name="form.mini.phtml" hash="2cd2f0d385355897d1d855f03958ad8b"/><file name="result.phtml" hash="deb989bcddb215eb6d5a99db296d0d88"/></dir><dir name="centinel"><dir name="authentication"><file name="start.phtml" hash="e3c35b383b6b8f65c0fd83f90c7c868f"/></dir></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="6c0a7e9a0bb7d05ef2ccb15daef3f1a5"/><file name="crosssell.phtml" hash="1a8bb4bd7fd478d1105d17a65b5c6727"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="31212147f0b4b5dccb66d4f1e48022d2"/></dir><file name="default.phtml" hash="da10721e350c1d2fa7defad411a7aa83"/></dir><dir name="minicart"><file name="default.phtml" hash="91e04cd578a4ae7234bdf0b3df4500a1"/><file name="items.phtml" hash="1274efbfbe25160126ddacda22036d40"/></dir><file name="minicart.phtml" hash="4296451c20562e5cbc52d5256f79468c"/><file name="noItems.phtml" hash="064f09a3150f7e21db8e097a1faba845"/><dir name="render"><file name="default.phtml" hash="5fc714619055669ab1bfbb12bf234c7d"/><file name="simple.phtml" hash="3a0bc4b80b779a086f9b381914262db1"/></dir><file name="shipping.phtml" hash="b46a1ac53a291fb06eb5dd386fe62329"/><dir name="sidebar"><file name="default.phtml" hash="4413299f80dd43fed5a6aff6807aef19"/></dir><file name="sidebar.phtml" hash="38422099e618114b7d4900cb5663f169"/></dir><file name="cart.phtml" hash="c29fdd24189688795db585e2d65f5d87"/><dir name="multishipping"><file name="addresses.phtml" hash="70dfa3d9f714194cba05067cbab862c4"/><file name="billing.phtml" hash="104d022214a3be22a8df8c204974b86b"/><dir name="item"><file name="default.phtml" hash="7eab166dd86140ec1b6535a5be607df7"/></dir><dir name="overview"><file name="item.phtml" hash="6b7765dbeebad9f47631a6b21814e0a5"/></dir><file name="overview.phtml" hash="cb5b8ab2a8f90dcc0a1485d97917d000"/></dir><dir name="onepage"><file name="payment.phtml" hash="9cdb8b3d26ac18a9e36996347baa9e87"/><file name="progress.phtml" hash="a170630c614567a871b01e32355e84c4"/><dir name="review"><file name="info.phtml" hash="cec1b4e38e96b4e6177f7be853ea51ea"/><file name="item.phtml" hash="ab99816f2112c6e5883edec049fe44eb"/></dir><file name="shipping.phtml" hash="c4dd01b76abed5b805548580fa4fc339"/></dir><file name="onepage.phtml" hash="503b349a975f95051a3843176055a0cb"/></dir><dir name="configurableswatches"><dir name="catalog"><dir name="layer"><dir name="filter"><file name="swatches.phtml" hash="2f96ff1d7eb48fbc260e489c047b4bc7"/></dir><dir name="state"><file name="swatch.phtml" hash="e696b74ae734670552bcc5eb308586ef"/></dir></dir><dir name="media"><file name="js.phtml" hash="ac5f32f7b18436a323e5972849f3840c"/></dir><dir name="product"><dir name="list"><file name="swatches.phtml" hash="b5dd16faa22d4c248ce9c237918df1c9"/></dir><dir name="view"><dir name="type"><dir name="configurable"><file name="swatch-js.phtml" hash="ba64818ebe7d00c7cc6aba106f72fe39"/></dir><dir name="options"><dir name="configurable"><file name="swatches.phtml" hash="25b9919bbdbaf300d44b3425f4af5925"/></dir></dir></dir></dir></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="95683da969c48e1dd4ebac8fb9d0af30"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="a797ffd2fabd0e4d720774ef4124fd31"/></dir><file name="dashboard.phtml" hash="468ba7d1c4b82fbd2f33afce080c8cc4"/><file name="navigation.phtml" hash="c35e960137bf6646601f9413df87ea76"/></dir><dir name="address"><file name="edit.phtml" hash="39bf5cfe7835956b2e031eccfd4c02f6"/></dir><dir name="form"><file name="address.phtml" hash="ce4796c4000edec1d206acdc4290832b"/><file name="changepassword.phtml" hash="14d880bce19bdd9628fb577b0106300e"/><file name="confirmation.phtml" hash="28b601c912814018a19e1c2a5d25bcbc"/><file name="edit.phtml" hash="ce6d04cf5bf57c48422677f5006a283e"/><file name="forgotpassword.phtml" hash="e015a9338fb585a792e681769755fb33"/><file name="mini.login.phtml" hash="bb6e40137fd74d0f48e741bd766cddb1"/><file name="resetforgottenpassword.phtml" hash="d071eca826dbe1240f52f2c9c453a571"/></dir></dir><dir name="directory"><file name="currency.phtml" hash="f4ee179ff64f0d65286005c447117719"/></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="type.phtml" hash="4a712609cc735fc604c9425ada13c867"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="149ff71d43d0e2eae474928753f93367"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="192c9728619eeb9ab180b6f50a80aee9"/></dir></dir></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="78b04ba5f65d80384edb9f4029929753"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="724e1b8893031d6d84c0ff1ae3c9a018"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="e77975f4f36a5bb5f2729084e67803cc"/></dir><dir name="order"><file name="downloadable.phtml" hash="89df38407f6d5ea94ea3113255a3ef0a"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="b3792f8577423183d0dd3a44728256a7"/></dir></dir></dir></dir></dir><dir name="email"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="39fa24623896902093bd393f36cf9560"/><file name="new.phtml" hash="331c94aab173bb0b2bc46a60265539b1"/></dir></dir><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="09e36a052dcc30198faacba4b48a5831"/></dir><dir name="invoice"><file name="items.phtml" hash="4cc757de3c554b1672499281af7409be"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="3a8799f9fd7ce3a0950234bdc244ee3a"/></dir><dir name="invoice"><file name="default.phtml" hash="3a8799f9fd7ce3a0950234bdc244ee3a"/></dir><dir name="order"><file name="default.phtml" hash="1b4a5fffcddf1929c89546b0701cce83"/></dir><dir name="shipment"><file name="default.phtml" hash="662ce092e205626c8fa5ddc9e42b9691"/></dir></dir><file name="items.phtml" hash="1a33865ef3cc5f40949f2922fb5f9325"/><dir name="shipment"><file name="items.phtml" hash="4e66b2c8b72415e84fd456eb79749c68"/><file name="track.phtml" hash="4892b058edd9b33f4437deb9774773df"/></dir><dir name="totals"><file name="wrapper.phtml" hash="9437e4b26484ca34880cce00355fefa0"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="0cf7cc8ed26d62d1755da506ace5d47b"/><file name="stock.phtml" hash="7c00c14428099ce87e9e2d3a9ce62fab"/></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="324dd231230a080ed5bf03acbd49ef94"/><file name="subscribe_footer.phtml" hash="d37c28702c2fb6b1dfd1a27ca8045087"/></dir><dir name="oauth"><dir name="authorize"><dir name="form"><file name="login-simple.phtml" hash="28226fcddef83b14d42d28decc4c0e47"/></dir></dir></dir><dir name="onestepcheckout"><dir name="geoip"><file name="postcode.phtml" hash="1f1e7af5440fa61ced488ee6e0597e6a"/></dir><dir name="giftmessage"><file name="inline.phtml" hash="1636965cb934c5133ac9d9b1715817ee"/></dir><file name="head.phtml" hash="40e31ea50849c9cac2c79f91a59fcd02"/><file name="link.phtml" hash="27a7ffcfe73d9b1f6a1d7552059bd3b7"/><file name="login_popup.phtml" hash="cb44ff52864e3b8421d7607e289f5d4f"/><dir name="onestepcheckout"><file name="billing.backup-Justin.phtml" hash="1fbb7c3337bbc918311a8206f75c8034"/><file name="billing.backup_19_05.phtml" hash="aea7fcddd65b673d2b1b64ef8b10ce0b"/><file name="billing.backup_20_05.phtml" hash="2f91db1e68fd9b43db3111c3c4cf3dc7"/><file name="billing.phtml" hash="440419d2cb58acb2145a752f01c700b4"/><file name="email_onestepcheckout.phtml" hash="47cf67859e3076223fd88e5e1aaa180b"/><file name="forgotpassword.phtml" hash="5ceda6dc5e3f53d069da5f816619bcb6"/><file name="login.phtml" hash="a4d4ba4a60c27f48a684b23993a42caa"/><file name="order_onestepcheckout.phtml" hash="abc22eebbc36eb58d8b83f3a276032c9"/><file name="payment_method.phtml" hash="2fd22e48ceba02cdeaee6bbe4a4858c5"/><file name="reload_data.phtml" hash="44a577e9d2e1c1aeb40ea93d3ee8e568"/><file name="reload_payment.phtml" hash="1c5bda57ebc536c0ff5de3eb33246f4f"/><dir name="review"><file name="info.phtml" hash="7812ca2aabeffc5d4cef1ba6691750e9"/><file name="item.phtml" hash="73fb3ffe18fccf3a87c3a09594cdd999"/><file name="totals.phtml" hash="99a3c6fc9a87d88dc8d9265146f6e2a2"/></dir><file name="review.phtml" hash="2bb2c2938010790ec326352e18d007c0"/><file name="shipping.backup-Justin.phtml" hash="9695a6d97f9dfe97edf6d7d24d94933f"/><file name="shipping.backup_20_05.phtml" hash="232190708a22d302546cbea78a71ad11"/><file name="shipping.phtml" hash="31dc2a57c7b0a25d33d2f4d46f8c4a0b"/><file name="shipping_method.phtml" hash="a05df124c9890039c89956a3ab66d4f4"/></dir><file name="onestepcheckout.phtml" hash="59e9bb49efdbdf950debef1c6f848149"/><dir name="preview"><file name="preview.phtml" hash="f2e929c3b44cd928fb937f32835ec38e"/></dir><dir name="widget"><file name="dob.phtml" hash="6ba174f04a017f20db8c30665dbf9614"/></dir></dir><dir name="page"><file name="1column.phtml" hash="2aa485183fd81fdf4503211cb3c43d06"/><file name="2columns-left.phtml" hash="6d413162d4832c67046f862018cecb2e"/><file name="2columns-right.phtml" hash="462c6d8b2d7d2b207c549a2a54ab6a61"/><file name="3columns.phtml" hash="11514fb376914a48b24feb799cd3c820"/><file name="empty.phtml" hash="a10789fc8675982fa61b1497ab7c86bb"/><dir name="html"><file name="footer.phtml" hash="3ee123468c82cea51916c6a67c82ae14"/><file name="header.phtml" hash="26ed7ec12cb29e050fc04c3f4049c987"/><file name="pager.phtml" hash="0368562ead537e0e1897eccf72b0b45a"/><file name="shoestore_footer.phtml" hash="95317b9487cda068bf857f4310c4cab9"/><dir name="topmenu"><file name="renderer.phtml" hash="addcfbe470c28761061ef1d1bff9d859"/></dir><file name="topmenu.phtml" hash="2edfd3f10256399e795fe7df5202cb91"/></dir><file name="popup.phtml" hash="fbb75f13871ddc732b07f5a380c0bdb1"/><file name="print.phtml" hash="d5ef6ad1901e6303d42c60497c3690a8"/><dir name="template"><file name="links.phtml" hash="0524e9d7748c1f447e3f8010f1d49dfe"/></dir></dir><dir name="payment"><dir name="form"><file name="cc.phtml" hash="aa6b20c90b6ab883431370d361d66154"/><file name="ccsave.phtml" hash="3d370d40d1c7ad1e82c9c2e12f8108ad"/></dir><dir name="info"><file name="default.phtml" hash="e3837010b3e1d8dd90b0ca4856c4aa1a"/></dir></dir><dir name="paypal"><file name="bml.phtml" hash="1bfd40191a32a97b3a330f175066ede2"/><dir name="express"><dir name="minicart"><file name="shortcut.phtml" hash="d28b02642cfec5228b0d271d7b4140bb"/></dir><dir name="product"><file name="shortcut.phtml" hash="0baf1b04b58587726beae265f4889dbe"/></dir><dir name="review"><file name="address.phtml" hash="b0ce1e61b7c2cc64ec2d8436bdb629b3"/><file name="details.phtml" hash="34c0b1f590bd299440684a12dbb81764"/><dir name="shipping"><file name="method.phtml" hash="dc85509da28da7788fce0cceff9d437b"/></dir></dir><file name="review.phtml" hash="4e2c9b15ed595e0982b12ee3f4002d66"/></dir><dir name="partner"><file name="us_logo.phtml" hash="f80346b7114b1f12ac4ea9b0fa32c2b4"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="d38359553264ca0ff5baced37bfae735"/><file name="login.phtml" hash="0216144eb8149f293cc8230a88b1c975"/></dir></dir><dir name="customer"><dir name="form"><file name="index.phtml" hash="b220cfa863324917486fa6bb9efc534b"/><file name="login.phtml" hash="803c090f0eb35187e7b4f22545ec3e03"/><file name="register.phtml" hash="2ef78c06900f39d4025af4d2d3e4c275"/></dir></dir><file name="remember_me.phtml" hash="bdd0e51d1b8c937dcf5df4e43a4f1ab8"/><file name="remember_me_tooltip.phtml" hash="1d13b81d28dbb1c4a8a4eabe3c0f632e"/></dir><dir name="rating"><file name="detailed.phtml" hash="19ea652e633785fad8486be2ee167802"/></dir><dir name="reports"><file name="product_viewed.phtml" hash="e5d2ce089259c1b38737a86b07c0c91d"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="940fba04f7cd957ac57e4ed11a1946b8"/><file name="compared_images_list.phtml" hash="2b2fc46ffe38ee7f59d7661c3859b7eb"/><file name="compared_names_list.phtml" hash="f63c037cef090cab8cd8fb900b120fbf"/></dir><dir name="content"><file name="compared_grid.phtml" hash="87226b5d935d39c6021d4cd5422edcfb"/><file name="compared_list.phtml" hash="49cde80a5bca0cf912f022a39b3f4cab"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="a94f07d839be8cf8b211e5409302d75a"/><file name="viewed_images_list.phtml" hash="da546241522e9a82fb3cd7d6cd1cc637"/><file name="viewed_names_list.phtml" hash="bda7fa14dd22a73a37b525ff375c3e4b"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="afac292fa7f1157dfa25e967f5eeb127"/><file name="viewed_list.phtml" hash="0560cf97c092b46a540a2a099244478e"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="view.phtml" hash="51a5d7006f280a1aa02cb55703bce9ba"/></dir><file name="form.phtml" hash="f2268d60d12084ee3dcfcbad97fad53c"/><dir name="product"><dir name="view"><file name="list.phtml" hash="2ad9f059f4f88e826027571bdf44242c"/></dir></dir><file name="view.phtml" hash="dd74319d4dda6195c8fb366d2d656c8a"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="77ee0e67e81ecf4feacc616ddbfddc6f"/></dir><file name="agreements.phtml" hash="e4ad8f8eabe7f77c63a6ad47ce376d5d"/></dir><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="fb5caa900a264e4fe3f2357bd1414c4d"/></dir></dir><file name="items.phtml" hash="5f911a73e7ffa7d543c551c7ab0be2df"/></dir><file name="history.phtml" hash="5298f96222dee9b3821b93be4e65bc0b"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="d448067860996e0a6df36214d20365ac"/></dir></dir><file name="items.phtml" hash="cd8879bf1ab2a917c05704dc57cfdf25"/></dir><dir name="items"><dir name="renderer"><file name="default.phtml" hash="de8794a8f89b8502cc65e891e47b1c7e"/></dir></dir><file name="items.phtml" hash="584bf90b01d4f9eaaa405647edb378d2"/><file name="recent.phtml" hash="23230fe43880bbcec950f79b688b9dcb"/><dir name="shipment"><file name="items.phtml" hash="33f0a6452ca8f682340d2bdf320dd00d"/></dir></dir><dir name="recurring"><file name="grid.phtml" hash="107b32c6e807d8d14b0fa8130108832a"/><dir name="profile"><file name="view.phtml" hash="a3dd07c603fa36cf6e4d5ce8163de860"/></dir></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="85d10144d57c0b89464031434b38fc6b"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="e7e23670c1d606ff706dc6d533eb5794"/></dir><dir name="settings"><file name="ad.phtml" hash="f43dfbdb45cfab18a491569e64ce3f91"/><file name="banner.phtml" hash="75cf2754f8f2e88608743e866f38db54"/><file name="blog.phtml" hash="721941ae843045d0824458467b2879af"/><file name="brand.phtml" hash="0a159a53cd275decf4d5b6dfb896bbc9"/><file name="brandproductlist.phtml" hash="e756b7dc1b9a5efd9ed60cc802baf84e"/><file name="categorylist.phtml" hash="d0b44b703913031cb800cfdacd31d26c"/><file name="categorylist_home.phtml" hash="e2370f8e9a23bde5fe166d6345a6d8ef"/><file name="delivery.phtml" hash="77fc528583a9c8bb584914aaa301ff36"/><file name="index.phtml" hash="3627e48b87c15514c962b975d7908087"/><file name="newproduct.phtml" hash="7c13fe3ff32de1d0cc4a25dc36a40d1a"/><file name="newproduct_home.phtml" hash="209379807d287be09da7cdf8da412552"/><file name="newproduct_waste.phtml" hash="7c13fe3ff32de1d0cc4a25dc36a40d1a"/><file name="tabs.phtml" hash="31e55193041176e85cd27b855aea2881"/></dir><dir name="wishlist"><dir name="button"><file name="update.phtml" hash="8ba68808b52caebf306902ad3883973d"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="0383427de3a81c12dd0f034a224259e1"/><file name="info.phtml" hash="197ceff8061f404cca24939a7a51eed5"/><file name="price.phtml" hash="0036a632106f0077393e9b3bc0e4e278"/><file name="quantity.phtml" hash="19f240558a2ae38095b528655bb155b8"/></dir><file name="list.phtml" hash="71e0d6e734981fffc69c26acaa797fe6"/></dir><file name="shared.phtml" hash="a79eff6bd55e403820312601f105ac04"/><file name="sidebar.phtml" hash="17d8d9f73aa7e3faec6491a90af2e4f2"/><file name="view.phtml" hash="f6de784fe0bd0946b2e096a192d85817"/></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="layout"><file name="ajaxcart.xml" hash="14885283aa1764dc7aba659ac16d73a3"/></dir><dir name="template"><dir name="ajaxcart"><file name="configurable_options.phtml" hash="b460b3489bc76785c5976679b38e7e50"/><file name="grouped_options.phtml" hash="ac72313480209ac09b88daa155801cd0"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Abserve_Ajaxcart.xml" hash="2a581b8166add2cb390cebb445e6031e"/><file name="Abserve_AjaxWishlist.xml" hash="3aff3c540338b8cd836d3d2ee3a9ac8a"/><file name="Abserve_CustomMenu.xml" hash="43fa4d53199e81eab5824fa0bb0441f6"/><file name="Abserve_Magenotification.xml" hash="ed594dd2a5de84a7d41ea2a85cbebf89"/><file name="Abserve_Onestepcheckout.xml" hash="b17acf4e9e97425a13a0e02e0b652244"/><file name="Abserve_PaypalBNCode.xml" hash="9cb0a69707aba8676be962063d46a772"/><file name="Abserve_Settings.xml" hash="819aaa2c9a3e62517d1ff7dc69035045"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Abserve_Onestepcheckout.csv" hash="ee2b6ba5d50b7030006426bba21ef841"/><dir name="template"><dir name="email"><dir name="sales"><file name="new_order_notification.html" hash="6e5a295cbd9294ad74920b3e79b79788"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="abserve"><dir name="adminhtml"><dir name="onestepcheckout"><file name="geoip.js" hash="56609a9fc6c61214401e39e500f76012"/></dir></dir><file name="geoip.js" hash="1492f91e92f8f16947b517c5c293d935"/><dir name="onestepcheckout"><dir name="colorpicker"><file name="config.js" hash="5947960e20ce76ab0a8f92474fca70d4"/><file name="prototype_colorpicker.js" hash="cad098399cbe4604c403afb1e9e0160d"/></dir></dir><file name="onestepcheckout.js" hash="2a8ff3e6580bfe677f3313a9c7b80dd1"/><dir name="responsive"><file name="jquery.mediaqueries.js" hash="6547e5b872598cc15b7ae8f161eebe88"/></dir><file name="tinybox.js" hash="fbbac0810d3bb6447740ff7e32238454"/><dir name="varien"><file name="form.js" hash="f736353e3fbe0ad1f0238037cd585613"/></dir><file name="window.js" hash="720a8314cc0fa45a475bf162223c553c"/></dir><dir name="jquery"><file name="jquery-ui.js" hash="04a4db2983450a2970c459ba87b4210a"/><file name="noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir><dir name="lib"><dir name="jquery"><file name="jquery-ui.js" hash="04a4db2983450a2970c459ba87b4210a"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="onestepcheckout"><dir name="style"><file name="black.png" hash="11520eb8eafec9d15692bd7355ed2139"/><file name="blue.png" hash="cacd8ca2975fd2480c70e69f80c93f62"/><file name="darkblue.png" hash="42a4d20b2a3f3b135e5787a5a2a79f18"/><file name="green.png" hash="2c95f767c2cb8fcfb09ca08f757f5af0"/><file name="orange.png" hash="10501058d6d7fb1827ca561df625cedb"/><file name="pink.png" hash="64542ca81ab440696ddf7ae8085f6dbc"/><file name="red.png" hash="2adf694b30017bdcc5b5da9e60a394c0"/><file name="violet.png" hash="caea9a33413538c7cd9fd7a0d5967769"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="abserve"><dir name="shoestore"><dir name="abserve"><dir name="settings"><file name="settings.css" hash="0057dd7cf7c8af8ec9835240fd30f867"/></dir></dir><dir name="ajaxcart"><file name="Thumbs.db" hash="51917ea9886ff41d145e294455c06adc"/><file name="ajaxcart.js" hash="689cbacac0e3024d5acc4f881615eeab"/><file name="growler.css" hash="3a0caf54ae6e2e098fd7caeaa9b7f610"/><file name="growler.js" hash="394bf2495b189ba6950fa0af2ca5e2a8"/><file name="modalbox.css" hash="9dfad4d258cbfe5af951f1bc7f7f82c7"/><file name="modalbox.js" hash="7aa6bdceed4379c80f47788ae21f1464"/><file name="spinner.gif" hash="58625c045f515052999e13aed5059b07"/></dir><dir name="css"><dir name="abserve"><file name="abserve.css" hash="c07bc5346dd877c9d19c7cc2e135b0a9"/><file name="mobile-sociallogin.css" hash="e2e0ab7d638ecd6117d0b9239d3ce9ae"/><file name="mobileonestepcheckout.css" hash="1d7771d591ac3ee830b0fa2c5b8acdbf"/><file name="onestepcheckout.css" hash="ca38b36707747fdcfe47a207da58f0ce"/><file name="onestepcheckout.css bk" hash="6cd883c57d1392ef2c15ab7cff653122"/><file name="tinybox.css" hash="007ee482e49e0199e7c9d237fb84440b"/><dir name="tinybox2"><dir name="images"><file name="Thumbs.db" hash="1d67b077c742492fffdbb63c56b041f2"/><file name="close.png" hash="4278a8b021acb550ad96cdddb2db6d8f"/><file name="preload.gif" hash="bf3ec68db23e93ba2ec795ef558e96da"/></dir><file name="style.css" hash="b39227d2f7eb01698da7309c063d175c"/></dir></dir><dir name="abservemegamenu"><dir name="custommenu"><file name="custommenu.css" hash="386606026d7a2e2908a1be8f7cccecc2"/><file name="custommenu_old.css" hash="46c0e7694ffb30b08092e9fac39867bd"/></dir><dir name="images"><file name="Thumbs.db" hash="23d0fa15f27240923552f7a4da9375b8"/><file name="arrow-1.png" hash="073e99226cff27c52137c55ad3cce8d0"/><file name="cat_img.png" hash="53e255f770ef509910e1ba7ac6584bf4"/></dir></dir><dir name="fonts"><dir name="droidsans"><file name="droidsans-demo.html" hash="2180344f078e8c82f19eb820c50f3683"/><file name="droidsans-webfont.eot" hash="03657f31390db0c1db5c0b28090b611e"/><file name="droidsans-webfont.svg" hash="68cf718e66aa485b729cf0d200d2e976"/><file name="droidsans-webfont.ttf" hash="f04ba3ed7806c0d2f1842e5b1777088c"/><file name="droidsans-webfont.woff" hash="de5e199e678f7a5a3c9d355b919aef5e"/><file name="droidsans-webfont.woff2" hash="b2f4352fa2af163b0b2d86516055e2e1"/><file name="generator_config.txt" hash="2909a1c0caf748fc762241b33bf09d10"/></dir><dir name="karla"><file name="generator_config.txt" hash="2909a1c0caf748fc762241b33bf09d10"/><file name="karla-regular-demo.html" hash="c524017b5900dbd256166663faf78787"/><file name="karla-regular-webfont.eot" hash="947b95a509faeed13f3c115def26a5d3"/><file name="karla-regular-webfont.svg" hash="c2e4a81907170a84e0ef7079904653c6"/><file name="karla-regular-webfont.ttf" hash="e335e976ddee382f6b414a5985177def"/><file name="karla-regular-webfont.woff" hash="1030fef6bf95b3052c71e791f25cc216"/><file name="karla-regular-webfont.woff2" hash="1b1ec88227e9da6a5d8a963e5eac7a6a"/><dir name="specimen_files"><file name="easytabs.js" hash="ca967cf40ebb80004a08c67d53824dc4"/><file name="grid_12-825-55-15.css" hash="45e9422c89bf16e8067b6ca13c6a7405"/><file name="specimen_stylesheet.css" hash="e2cb9ea14b546a77ddd7e9dfc8c0d32f"/></dir></dir></dir><file name="madisonisland-ie8.css" hash="b2817dd906364b24c88e4c7d16ee6c34"/><file name="madisonisland.css" hash="4490919a4bca6c03c594914c7754afcb"/><file name="scaffold-forms.css" hash="5008f94ec394f87c56a3cf12e970012f"/><file name="shoestore.css" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="styles-ie8.css" hash="726beedfeb7e5bb5ee4e64c2221ba83a"/><file name="styles.css" hash="fedaae39879a1958a5f043ed306382a9"/><file name="styles_old.css" hash="4e5a7b2dce6b7c15c7441b3e71e47752"/></dir><dir name="images"><dir name="New folder"><file name="Thumbs.db" hash="f1d7249e2b9691a41a6658ec15f98c01"/><file name="ajax-load.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="ajax-loader-abserve.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="ajax-loader.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="opc-ajax-loader-abserve.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="opc-ajax-loader.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/></dir><file name="Thumbs.db" hash="69eed818887df4629f56f1883e68261b"/><file name="ajax-load.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="ajax-loader-abserve.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="ajax-loader.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="bg_x.png" hash="c321c67f6929326129426c9e83207ea3"/><dir name="geoip"><file name="Thumbs.db" hash="72f1617e369240602c94d0527d2b73f5"/><file name="indicator.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/></dir><file name="icon_sprite.png" hash="e15f0103ef5ebe3baf48960bb9ccfaab"/><file name="icon_sprite@2x.png" hash="2e9c31d760a33d9f27951210f8311341"/><file name="logo.png" hash="d79df979566c5c3c73f6867366d5c1c5"/><file name="logo_email.png" hash="d79df979566c5c3c73f6867366d5c1c5"/><file name="logo_print.png" hash="d79df979566c5c3c73f6867366d5c1c5"/><dir name="media"><file name="Thumbs.db" hash="51d5f8b12d6ea68b7f9aec4631deaf2f"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="homepage_banner_1.jpg" hash="267b2827f3db118d99f7a623ee02ad8f"/><file name="homepage_banner_1@2x.jpg" hash="3baa6702111d6f5f5dd40d96f148fc60"/><file name="homepage_banner_2.jpg" hash="67f70cfb1690b5de6e185769fb55cd28"/><file name="homepage_callout_1.jpg" hash="4b8451e4e99e87b6c60a015f659d32b6"/><file name="homepage_callout_1@2x.jpg" hash="fb5e215f6cb623abf6f0365b5de1541d"/><file name="homepage_callout_2.jpg" hash="057ab6200f6ea05d4a6793969c5edac3"/><file name="homepage_callout_2@2x.jpg" hash="e923c6323d22235876fe61a9c5588c85"/><file name="homepage_callout_3.jpg" hash="b2cf1e73e87b3330df17425044d22f52"/><file name="homepage_callout_3@2x.jpg" hash="8b98dee63a61608b09c26bd60acea65e"/></dir><dir name="onestepcheckout"><file name="Thumbs.db" hash="9aba3d8ccdb9b9862a06210654c95e95"/><file name="add-icon.png" hash="cd6a2adf932717d5be2bfdf6ac181bb7"/><file name="ajax-loader.gif" hash="2ef5e9c1839462b187c93535a1670b92"/><file name="arrow-r.png" hash="eba52099034d84a4b8c38ea79ef330e4"/><file name="billing_title.png" hash="8db7729995d44d991450385ec7f9aa5e"/><file name="icon_delete.gif" hash="35efe33101eb511f8abe4bf07aba22b7"/><file name="icon_delete.png" hash="38d1c57597584acd0330c666c8f0e6d6"/><file name="invalidIcon.jpg" hash="a8b5b139df81900a73088d23b21e3216"/><file name="loading.gif" hash="94b7ff6d24d260848bdd112fdac6a3f1"/><file name="login_title.png" hash="f058985ac96735bff77eb7cdb8b48709"/><file name="method_title.png" hash="13ea3623eccb9ab9669cb76d2f194b01"/><file name="minus-1.png" hash="f4e81efc51128095d7d162dd70f41656"/><file name="onestep-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="onestepcheckout-popup-footer.gif" hash="5a6077f24809cfc33652b036157a7b4c"/><file name="onestepcheckout-popup-footer.png" hash="f52136cc9f06e55e5de1c749c97ed505"/><file name="onestepcheckout-popup-header.gif" hash="924d1941b6c3b15f55317e6af284f040"/><file name="onestepcheckout-popup-header.png" hash="aceea51c85688482504cf80e28c78840"/><file name="onestepcheckout_step_1.gif" hash="c099582959424ad776e8c54f2accfea2"/><file name="onestepcheckout_step_2.gif" hash="63230c5cae392817a0c8960f690046dc"/><file name="onestepcheckout_step_3.gif" hash="aa03a845e1c97500bf6c44cfed53e558"/><file name="onestepcheckout_step_4.gif" hash="f5cca8b36cf9dc618524a2e8c11d742a"/><file name="onestepcheckout_step_5.gif" hash="db60e6a628d54f988f618ffb907b85d7"/><file name="order_title.png" hash="1538abd02997fc2bf29876f35aac77b2"/><file name="payment_title.png" hash="6018f77570dd04ac812e4d4b7b79b4a4"/><file name="preload.gif" hash="2ef5e9c1839462b187c93535a1670b92"/><file name="term_title.png" hash="7786ed3abcdb0f47c91118e8da7a1ddd"/><file name="time_title.png" hash="9d7e50909fb570660bcdba97e5b27cab"/><file name="valid.gif" hash="4603e97bb67ba2f0c26e08eca57fd66b"/><file name="vertical_line.gif" hash="bef9df2d426124dbe3d496407219190b"/></dir><file name="opc-ajax-loader-abserve.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="opc-ajax-loader.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><dir name="shoestore"><file name="Thumbs.db" hash="38cda6c2d66d9f223acecf29521e1aca"/><file name="abt_banner.jpg" hash="f9308bdc386763f241b8878e1ba57f88"/><file name="blog_1.png" hash="eabcb636c8776608a44f1591c96c2b04"/><file name="blog_2.png" hash="e61faefcb4f3a7e5b26713ebcb9c7b0d"/><file name="blog_3.png" hash="f2bd9a0b7dba49cd75a19565e590784f"/><file name="blog_4.png" hash="7b0d867d5708114e978717cd74c7c50f"/><file name="footer_bg.png" hash="b772c7dc10d5c104fb88cbdd3a55d31a"/><file name="grid_active.png" hash="d88bd988e215161b45c2475c861594d8"/><file name="grid_icon_default.jpg" hash="90665ce8c91885fcae201e576c4eebdc"/><file name="list_active.jpg" hash="4676c59dba9e7f0ea42ee2becb075d16"/><file name="list_icon_default.png" hash="d74ed935165f365a4d3c30a82bcb7d60"/><file name="select_icon.png" hash="9399c7d9fd169494a005e9e953785bdb"/></dir><file name="social_icons.png" hash="a6d0bdaea0ca0f507bd36628a6ad31a2"/><file name="social_icons@2x.png" hash="531cc696a7b949dbc8121809c1bb4d46"/></dir><dir name="js"><dir name="abservemegamenu"><dir name="custommenu"><file name="custommenu.js" hash="7f5cc213556255621f30f16305642ada"/></dir></dir><dir name="ajaxwishlist"><file name="ajaxwishlist.js" hash="7624f6299ae927a77dd56929bed718c2"/></dir><file name="app.js" hash="86a9ca41d281d5734b2fcaca90450501"/><dir name="configurableswatches"><file name="product-media.js" hash="85c2a93413ab6ccd6399b300034f9944"/><file name="swatches-list.js" hash="ff35f4e497834fa25d9f1124b412f65a"/><file name="swatches-product.js" hash="87ad1b1fbaffecfba810a70c46f137e4"/></dir><dir name="lib"><dir name="elevatezoom"><file name="jquery.elevateZoom-3.0.8.min.js" hash="b8c320b245bda0ee6d6a05b1c5551a58"/><file name="jquery.elevatezoom.js" hash="85bed439e504fad4c0e631146d7a75ba"/></dir><file name="enquire.js" hash="17df503d3abac5be0bec038e4b133de1"/><file name="fastclick.js" hash="8613ebaa39dc59362c2a4b69b8669d05"/><file name="imagesloaded.js" hash="82bdcdaa438659d4cb966ab112b162f4"/><file name="jquery.cycle2.min.js" hash="eb609c79b0c3f4d32ee1ba625e4fb52e"/><file name="jquery.cycle2.swipe.min.js" hash="a1310de18f5cbbf2c91cfd2fad7e19a0"/><file name="matchMedia.addListener.js" hash="6f47448212550bd3157c4265e3ebf085"/><file name="matchMedia.js" hash="89f369588d629240d6a8d4f8788490c8"/><file name="modernizr.custom.min.js" hash="6b30635dd7d7297419bce69b3a0808e7"/><file name="selectivizr.js" hash="76618ffd6e448c796f0d2422c57a6658"/></dir><file name="minicart.js" hash="7882faeef5ec5a723bb4cdc1017a36ed"/><file name="msrp_rwd.js" hash="dbd8bdfa5161041e5ca8b3105862ff83"/><file name="opcheckout_rwd.js" hash="a7d030805978bde1272fb8dccf5e4d20"/><file name="slideshow.js" hash="4279a94ced8fa1a72cee9a43a6ed0a2a"/></dir><dir name="onestepcheckout"><dir name="js"><file name="sagePaySuite_Checkout.js" hash="f0deb367e2db5c3cff3752811c94b52f"/><file name="sagePaySuite_Checkout.js.old" hash="ff072304405450b02558fccdea006666"/></dir></dir><dir name="owl-carousel"><file name="AjaxLoader.gif" hash="5b8b06c052cac80413d62e5c45f9f37b"/><file name="Thumbs.db" hash="9c4c7a8f8fe293c1b9852bdc033b995a"/><file name="grabbing.png" hash="d817e1dba5bd5d891d0504bf1715807b"/><file name="owl.carousel.css" hash="0371b5a2d50e985b09b7d337edc0dc9f"/><file name="owl.carousel.js" hash="a5f96c62d75be144282ef6cc429a6259"/><file name="owl.carousel.min.js" hash="88d0fe722f04973e2888b58a63aa0570"/><file name="owl.custom.js" hash="94a90dd78a76cf4d12e6a4cda80b5b5a"/><file name="owl.theme.css" hash="f23cf727e4fcca9a5470658da5e755c9"/><file name="owl.transitions.css" hash="b1bdaeac4065bf67a7d7a06213192964"/></dir><dir name="scss"><file name="_core.scss" hash="db52c960bcd3378d58eb22a1deb5fd97"/><file name="_framework.scss" hash="a4f2996ecc09e5c5481874094e0322af"/><file name="_var.scss" hash="860e6894fb00a52a6f12ed8dcb60ddf4"/><file name="config.rb" hash="5f50b4dc5eefbab9e22abdfb80f4d689"/><dir name="content"><file name="_category.scss" hash="4f19a3deded95481220a8391230a04f6"/><file name="_home.scss" hash="f8d901657af2d5fde2a4d7cf4ac322b7"/></dir><dir name="core"><file name="_common.scss" hash="f6661f594822bfb8be9253219225c48f"/><file name="_form.scss" hash="e23acd534b44001fc950415bfb94e719"/><file name="_reset.scss" hash="c12ba4c9f58f0d11deef4355d7b61837"/><file name="_table.scss" hash="f2f95106bac4129b715908db3429dac2"/></dir><file name="email-inline.scss" hash="91aaacc9b532ffc46942601dfdbc89ac"/><file name="email-non-inline.scss" hash="22e99a847ebf574a8a6cc1c4275a663e"/><dir name="function"><file name="_black.scss" hash="10a15c9594c32fd446665f205c346587"/><file name="_white.scss" hash="370adbb0a300a54d3657a6c8f3cb3f0f"/></dir><dir name="layout"><file name="_footer.scss" hash="f0b89335e5a9843aa11e5f2444f98bee"/><file name="_global.scss" hash="7597c407b247fd35b8a10a4aa0bad0bc"/><file name="_header-account.scss" hash="18c710989834414b6e83034f3fcd4467"/><file name="_header-cart.scss" hash="06c3714f5946089bbca665d3d9df03a5"/><file name="_header-nav.scss" hash="4556c969928ce770560296f90f8e6295"/><file name="_header-search.scss" hash="4ab5a0f1564ab2a6e578bed504547d84"/><file name="_header.scss" hash="b0c83f9f8a26d0a656159bf9b48394ac"/></dir><file name="madisonisland-ie8.scss" hash="9fd2d82963d7502686d68d8fadd2335c"/><file name="madisonisland.scss" hash="bd32ff1a301615e94f0b3c792c851c0f"/><dir name="mixin"><file name="_breakpoint.scss" hash="099fbdebb53398b95e72a4a9b7a5c922"/><file name="_clearfix.scss" hash="870dd179899af929f093a4c3ff8e1920"/><file name="_if-resolution.scss" hash="41adcf5a2909e85d706912b9016e1a91"/><file name="_image-replacement.scss" hash="3b359967ac6cf0c48cf6c8ccb84cd685"/><file name="_loading-overlay.scss" hash="41fba1a35e20c994d93b4ccc6e7d27c9"/><file name="_menu.scss" hash="3c8b05c3324c20d12bccfdb17c0b88cc"/><file name="_not-selectable.scss" hash="9b38058b211d15142d7f2b32bfd764c5"/><file name="_toggle-content.scss" hash="2c60de9636e3fbd8cc3f7a1a28784ceb"/><file name="_triangle.scss" hash="ac527eeddebe2e3194cac464d57b63aa"/><file name="_typography.scss" hash="f7f02f6dc97e7b4ecbfcf92ce365da83"/></dir><dir name="module"><file name="_account-orders.scss" hash="1b6beb4f33c033022a8fa9e6f28b1791"/><file name="_account-reviews.scss" hash="f1e1c0f4a8e0653b6c68e8f0bc79384e"/><file name="_billing-agreements.scss" hash="57d6fc3c654ad016a0afe89713a6871b"/><file name="_captcha.scss" hash="8bf8547aaa8d8da0ab1c680c07acaac6"/><file name="_catalog-compare.scss" hash="0e1e95895b5390b5a79614abe8de2290"/><file name="_catalog-msrp.scss" hash="b6a4594b740ea448286bbab2b9b4a843"/><file name="_catalog-product.scss" hash="843049367cc48e477e8d3ed129c24428"/><file name="_checkout-cart-minicart.scss" hash="d3231cc5262c1ad35ebb77ea4d182c06"/><file name="_checkout-cart.scss" hash="35bd0714777558e4f78869f1ecb0b749"/><file name="_checkout-multi-address.scss" hash="7244f5eb123cd568ebd34e16d678b418"/><file name="_checkout-onepage.scss" hash="5039c5c1f1e7a6940b79f4d867879f1b"/><file name="_checkout-success.scss" hash="4bd8da613410b0132bf51f0c1bc853d1"/><file name="_cms.scss" hash="252c1b8b9d619c1ee70ef84093d51ad4"/><file name="_configurableswatches.scss" hash="03e37df69cbb45ddd594b403052105a3"/><file name="_contacts.scss" hash="a099e06cc8af4a47d81a68edf86c4eb8"/><file name="_cookies.scss" hash="e0414ba86438a143fcfae4528f7c5ecb"/><file name="_customer.scss" hash="bfbf486aff7f479dc62325b7ffce8295"/><file name="_paypal.scss" hash="4f9574601a4c353537f804dcadd1cc30"/><file name="_popular-terms.scss" hash="bd384c2060d205a66391e6810817510e"/><file name="_pricing_conditions.scss" hash="083debd5c24dc628ead4273b8091367d"/><file name="_product-list.scss" hash="7c10241cf70b5ab946b6b5f03b99ac5e"/><file name="_recurring-profiles.scss" hash="c4433e258678efdde7f6ab7f32dd1cfe"/><file name="_review.scss" hash="0b54489535ebaca32f9b7fba5cfcf164"/><file name="_search.scss" hash="2c4825a17f1f7e7391d53d693e674c40"/><file name="_slideshow.scss" hash="979848d085f96297e1a29e85efdf5e22"/><file name="_tags.scss" hash="e4e319c0f67a72d25be24194e791b771"/><file name="_widget.scss" hash="686c133bfac9f0e8b7cb637374c65312"/><file name="_wishlist.scss" hash="0d61ee366c4d8e5959792c73aa0b2458"/></dir><dir name="override"><file name="_plugin.scss" hash="c3665ab4e361971cb6942be205c1a1f0"/></dir><file name="scaffold-forms.scss" hash="72e2fa26d7c462ff2250e1fac316bb0f"/><file name="styles-ie8.scss" hash="301957f28de4fc994e6537d550c74b50"/><file name="styles.scss" hash="7014975439f2675096d7bd9332d9b2cc"/><dir name="vendor"><file name="_normalize.scss" hash="5d5355bfe851734877f4fc680efb7531"/></dir><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="tabscript"><dir name="css"><file name="component - original.css" hash="a0d63777d32e8d9629e6f89bddcc7369"/><file name="component.css" hash="d12d8f9fd050cc528df0eb9a9b3f62af"/></dir><dir name="fonts"><dir name="bpicons"><file name="bpicons.eot" hash="f504862defac56c452dfcb2b2c24c6c0"/><file name="bpicons.svg" hash="1061884daf0d0a08b462aba27e305c02"/><file name="bpicons.ttf" hash="2187bd6c90b679ef52e61f957fe49147"/><file name="bpicons.woff" hash="d5dd0c1ca5fce893f090bebe9d3d9038"/><file name="license.txt" hash="71989a368aa14fa2bee7719a8edaf654"/></dir><dir name="icomoon"><file name="icomoon.eot" hash="950f332d79bd636fbc698e98b887f81d"/><file name="icomoon.svg" hash="297a34b1b836f9e13f5081e566b3acce"/><file name="icomoon.ttf" hash="f298d3cb50c6a729d7d71ba5112964cc"/><file name="icomoon.woff" hash="006e21a20e73844d97b1fea4e497d36c"/><file name=".DS_Store" hash="11d970410ce45a8ba0c2e7ba7acf3dde"/></dir><file name=".DS_Store" hash="e5781847cb76a90f5d2ee09dd2734e88"/></dir><dir name="js"><file name="cbpFWTabs.js" hash="2a943433c19b1407085b61e7502c4ee7"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="settings"><file name="Thumbs.db" hash="02215000fb8595ac3b59e8160eb898b5"/><file name="ad_1.png" hash="7932a01abf43b1597a8982db1af24a67"/><file name="ad_2.png" hash="48f6264f88c682e692c7be9d46d9b74a"/><file name="ad_3.png" hash="11a0a9e1f18499071246a2f18843306a"/><file name="ad_4.png" hash="263f220284e817ebf007b7e2f5b18418"/><file name="adidas.png" hash="c635f92a284c53ba70fe2d6717d9713b"/><file name="balance.png" hash="a6575ef57e2d27c8260e211c5612ba99"/><file name="banner-2.jpg" hash="54279cb252d50bf11da1da697c55d5bb"/><file name="banner.jpg" hash="4156fca1e3283aeaf3f7c6c0155bf7c7"/><file name="diadora.png" hash="0c5710b8f1dada7f8748de8a90e93cc9"/><file name="henrilloyd.png" hash="36da509b1f1b9da325c446f4a003b2b2"/><file name="nike.png" hash="9b4ba5f52fcfb5e7134d16ff52d3d520"/><file name="puma.png" hash="84a0fc2c5259bc91d628a83208a81fa0"/><file name="reebok.png" hash="1eaca5ea35a8e230b0769f55b67e140f"/><file name="service_1.png" hash="198ca47618e21ecfd8bacd383668e72c"/><file name="service_2.png" hash="0e5ab33dc1a48ebdd22eb0fe9d8738fd"/><file name="service_3.png" hash="bc274d3960da4d134471cb6b839ce445"/><file name="supra.png" hash="06ff21126ebe9c528d424f1b7b2e7e9f"/></dir></target></contents>
|
23 |
<compatible/>
|
24 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
25 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>AbservetechShoestore</name>
|
4 |
+
<version>0.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
15 |
<notes>Shoe store has the following Features.
|
16 |
1. Ajax add to cart, wishlist and Compare Products.
|
17 |
2. Responsive Mega menu.
|
18 |
+
3. Ajax One step Checkout
|
19 |
+
4. Back end Settings Option
|
20 |
+
5. Animation Effects</notes>
|
21 |
<authors><author><name>AbserveTech</name><user>Abserve</user><email>support@abservetech.com</email></author></authors>
|
22 |
+
<date>2015-08-12</date>
|
23 |
+
<time>14:52:43</time>
|
24 |
+
<contents><target name="magecommunity"><dir name="Abserve"><dir name="AjaxWishlist"><dir name="Block"><file name="AjaxWishlist.php" hash="3add33aa64f49237dc369b3675fbf500"/></dir><dir name="Helper"><file name="Data.php" hash="342d181c09843c45d1d105564e239f00"/></dir><dir name="controllers"><file name="IndexController.php" hash="8f2ea8504fc13d636b8bc262593588b5"/></dir><dir name="etc"><file name="config.xml" hash="3d56fcd0643dd9e11167a8ed07680e63"/></dir></dir><dir name="Ajaxcart"><dir name="Block"><dir name="Adminhtml"><file name="Info.php" hash="7a86c6e27cb111d16e8227763a8c52dd"/><file name="Url.php" hash="87b3a1a45f414381f5b199a0213207ea"/></dir></dir><dir name="Helper"><file name="Data.php" hash="67053034724a0575bf1dd5ad592621fc"/></dir><dir name="Model"><file name="Observer.php" hash="22e469b5fb10e109fe8aa62244efc74b"/><file name="Response.php" hash="db6011c0e08047768186244410366f54"/></dir><dir name="controllers"><dir name="Checkout"><file name="CartController.php" hash="4aad3f6e8be578e4927cb0fccaa2eb56"/></dir></dir><dir name="etc"><file name="config.xml" hash="a8331195c533142240e65934e79ee6d9"/><file name="system.xml" hash="fa6f806937fe0a2b2bc8b66b2751b39d"/></dir></dir><dir name="AutoCurrency"><dir name="Helper"><file name="Data.php" hash="68b68b4094496024cbcaac494271c52a"/></dir><dir name="Model"><file name="Store.php" hash="ecaf211b16526902c01e99c9649e86c5"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Database.php" hash="fc7c045c6a8379ea26109761ec41639e"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="88cccdfd02bb82d69e83a8226f769869"/><file name="system.xml" hash="93fa8c912f0ff1e880376ad6e810ab71"/></dir></dir><dir name="Catalog"><dir name="Model"><dir name="Convert"><dir name="Adapter"><file name="Category.php" hash="5cff8ea75c17b4573a115ac40b35e0a9"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="85be4f3bc4c51d7ed859971aa1ff69b1"/></dir></dir><dir name="CustomMenu"><dir name="Block"><file name="About.php" hash="9693b77e470fa6bd6a38512adfaf46c0"/><file name="Navigation - Copy.php" hash="a3476b55f7742bc3fa80a60fbd0b9737"/><file name="Navigation.php" hash="6aae2e423653c258d110f518253b0718"/><file name="Navigation_old.php" hash="bc53ce86873f3f0d6f3908cdfdb51391"/><file name="Toggle.php" hash="9bce8f40c4242a9e9d6c60002466aa5d"/><file name="Topmenu.php" hash="b1345b5846e7018e9387b8fc2388e9aa"/></dir><dir name="Helper"><file name="Data.php" hash="27ea114e4ab92ff69d9bea8e11b96954"/></dir><dir name="controllers"><file name="AjaxmenucontentController.php" hash="5cc28667d7b4245b5f34815a9aaa3445"/><file name="AjaxmobilemenucontentController.php" hash="4b633ea11bcf6646db182c951b98d812"/></dir><dir name="etc"><file name="config.xml" hash="2fb46ed610dd63bf3c32205affec9907"/><file name="system.xml" hash="1eee4d9fc62089aa5e3457486149a782"/></dir></dir><dir name="Magenotification"><dir name="Block"><dir name="Adminhtml"><dir name="Feedback"><dir name="Edit"><file name="Form.php" hash="697ed7be500ff506ab4c230588d96725"/><dir name="Tab"><file name="Form.php" hash="2fa663964abc56559c92bcad5e9c2b44"/><file name="History.php" hash="74c559daca0cadf6352b5ebed395935f"/><file name="Message.php" hash="e4c82cdee14f0ea136d2bbc7c0597da4"/><file name="vssver2.scc" hash="9a4b6c8a5b53ffc015cdc78a55719f24"/></dir><file name="Tabs.php" hash="5bfa8c4c3458e4f60c5579e4e2af25f0"/><file name="vssver2.scc" hash="0082c024fe92287399cfdbac4f94460a"/></dir><file name="Edit.php" hash="261b3059f6953e647ecc55fa0dfaa612"/><file name="Grid.php" hash="fef7acdbf759cf527f46eb739cc4495c"/><dir name="Renderer"><file name="File.php" hash="c00adb78115d70eb26730248fd1c36c7"/><file name="Product.php" hash="c54002dfc6f9022f3ab624a3f31b9b6b"/><file name="Sentstatus.php" hash="86e114f0ce23a3fc673c03ccddd64c39"/><file name="Status.php" hash="deb24c88d9634b5cf7bbedfc4fef5858"/><file name="vssver2.scc" hash="f6c9955ad90dc414f4b2afe615a564c8"/></dir><file name="vssver2.scc" hash="50afa1ab41ba30dd17cfefb8c349d93e"/></dir><file name="Feedback.php" hash="1aa9a13d68cc3f138a7e6515d3a4388e"/><dir name="License"><file name="Purchaseform.php" hash="5c137ca0366872915076d735ce6f7302"/><file name="Updateform.php" hash="f340803ab2f6f265078884a8c33f8a3a"/><file name="vssver2.scc" hash="bbd00907f3e938fa997e659f4b729394"/></dir><dir name="Notification"><dir name="Inbox"><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="e7f923e468a679b0dcc6577b14a1b967"/><file name="Extensions.php" hash="4a1a15cdb7be306f2297a1225566d868"/></dir></dir><file name="Grid.php" hash="e1444436114b90ee1aff522c57c58ada"/></dir><file name="Inbox.php" hash="ea381980a5367fba64de60efa1eff1fb"/><file name="Window.php" hash="c5721524444d81941f06ee43f95422e9"/></dir><file name="vssver2.scc" hash="116f8b00b581f157d1c4c310f8b25c2a"/></dir><dir name="Config"><file name="Extensioncerts.php" hash="2a36e9cfe6b7081d948ca3f1b6e7f8f5"/><file name="Extensionkeys.php" hash="1fd7fe1778a99256c4126f7d957789d3"/><file name="Field.php" hash="318c051815024c91d71520a985d61bc5"/><file name="Label.php" hash="0495e72f19a10a42de025781a37f61b3"/><file name="Licenseinfo.php" hash="3f12351996e9b1d1c62cdc6094a14fd0"/><file name="vssver2.scc" hash="5ad5356ddec253a5b48bf9779d7787d7"/></dir><dir name="Rewrite"><file name="AdminhtmlNotificationGridRendererActions.php" hash="214942c2f06e5f0f608c728ad1406ab7"/><file name="AdminhtmlNotificationWindow.php" hash="893deae6f23dc3a3d3bf594c999b0821"/><file name="vssver2.scc" hash="7a37dbeded8b09338ab4ed543639f5cd"/></dir></dir><dir name="Helper"><file name="Data.php" hash="59d3e095805c5a5d2fcb8b2458df0674"/><file name="Feedback.php" hash="d43ac8708d5d1a1db8ffdeb9a2905d4c"/><file name="License.php" hash="4fa5881f9d30a62976230436de6f087d"/><file name="vssver2.scc" hash="c2cbcc580fd82993daf465d7d6337079"/></dir><dir name="Model"><file name="Config.php" hash="bacdcf49c4a0e4b06f4b549ef3647386"/><file name="Feedback.php" hash="3c7b6143a5e268547c00a202bc6a4889"/><file name="Feedbackmessage.php" hash="8553c5898860f9fe1aec4b9d0ec44d2d"/><file name="Keygen.php" hash="c8fb0b3eb5827c2f2892932fbfe56a46"/><file name="License.php" hash="20f297f10444e053d994fabed07f5422"/><file name="Logger.php" hash="d6a7ffe791d02cef97ebb05e1cae50b2"/><file name="Magenotification.php" hash="de2f5240075f49c5b3eaf836441717c7"/><dir name="Mysql4"><dir name="Feedback"><file name="Collection.php" hash="2c8f5d40ecb7f9e6bffb4df5ef7dd1bf"/><file name="vssver2.scc" hash="a55ea1da8a48a3099888033afd40149f"/></dir><file name="Feedback.php" hash="8d9e85baa220af64d7e4841b89a9dca4"/><dir name="Feedbackmessage"><file name="Collection.php" hash="430b05c0db708656baf65d1cdb16070a"/><file name="vssver2.scc" hash="cd829ec8fa76ec00480f2f187236bdb7"/></dir><file name="Feedbackmessage.php" hash="c2811019a51714206be74b59b65988b7"/><dir name="License"><file name="Collection.php" hash="b321db47e554c229a41af3bd62f151ee"/><file name="vssver2.scc" hash="4761590db57f47163fbf3f044e0ffc1c"/></dir><file name="License.php" hash="18f0a25bf4e05a061425297613460c74"/><dir name="Logger"><file name="Collection.php" hash="b99afc92dca44388ed7807ecee6e0aad"/><file name="vssver2.scc" hash="2359630ccb005fec13f76f30b06de71b"/></dir><file name="Logger.php" hash="e9031b4ab84098c7cd4c18404183e3a9"/><dir name="Magenotification"><file name="Collection.php" hash="9836b7589ba8e9f9bcedee9da62ba95e"/><file name="vssver2.scc" hash="6014a4159f8e923f720b07d5e6108b0c"/></dir><file name="Magenotification.php" hash="046cb185580ebf931ce3e2e83ae85ec5"/><file name="vssver2.scc" hash="253ad29b83623ac91964322237584df3"/></dir><file name="Observer.php" hash="01151bd39bc34f81dade2dfb13a7a04f"/><dir name="Rewrite"><file name="AdminnotificationMysql4Inbox.php" hash="de3f3e3d990aa748e73f7f5a71954894"/><file name="vssver2.scc" hash="c5a06859c1a613769204554aa43e0ed6"/></dir><dir name="Source"><file name="Time.php" hash="ce0226e2db22d89b1c7449f026b7af8b"/><file name="vssver2.scc" hash="12568266f19416b04a740eebc819d818"/></dir><file name="Status.php" hash="748bb5fc719641272d276a23d0076f3a"/><file name="vssver2.scc" hash="effd5b1e47b8860c71578131e127f1c2"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="FeedbackController.php" hash="a959250e669bb974dfd710a2d7f8fe10"/><file name="LicenseController.php" hash="2226eb3d0a51d7e32336cc4eb2debc71"/><file name="MagenotificationController.php" hash="fc5679a5fbafd07422aa28fb230aa0a4"/><file name="vssver2.scc" hash="0a6b37da420d8467e3564f75c89eb157"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e76ec4aac1ebafb4ae6d4cdb60ee0333"/><file name="config.xml" hash="a43488d78ee4d404eff212ee18dc5668"/><file name="system.xml" hash="025d7a6ae5391076088345d69f897e75"/><file name="vssver2.scc" hash="b2435886acd60f99ddaec4dbc8a0f0a6"/></dir><dir name="sql"><dir name="magenotification_setup"><file name="mysql4-install-0.1.0.php" hash="d5f1828751d561102cb8268e2505a2c2"/><file name="mysql4-install-0.1.1.php" hash="5ff9f5261e0087305c425471bd95f9ef"/><file name="mysql4-install-0.1.2.php" hash="74df00189812cc48e07807d4e67c532e"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="ee6cae2c85033cdf549d2c490b90b1b0"/><file name="mysql4-upgrade-0.1.0-0.1.2.php" hash="8833e8e06f11bcd4c421d35f10c5def2"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="741f09f46da1747f027d3fc87d321a2e"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="8943a9567ac7ced808db7a9d52816633"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="902cace9d39e64c461988817b1b5a937"/><file name="vssver2.scc" hash="af0f70f900649bd8cbc7b84381fd8424"/></dir></dir></dir><dir name="Onestepcheckout"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><file name="Edit.php" hash="5f50d141801fd2ee82f9e4f5f8b8a312"/></dir><dir name="Country"><dir name="Edit"><file name="Form.php" hash="2d6a0daba3155c7008e32011243d4aee"/><dir name="Tab"><file name="Form.php" hash="539a19f6445116ffbc76761d6f5dc27a"/></dir><file name="Tabs.php" hash="6298087fd75553f40890ec7bad46d4b9"/></dir><file name="Edit.php" hash="051c073c20fcd221585ed7e5077fc523"/><file name="Grid.php" hash="77b43f0efcabb5f05bbf75513714bf3e"/></dir><file name="Country.php" hash="16557ca2aa0de867a314675749e409c8"/><file name="Countrygrid.php" hash="7ec1cf51a49a4fb175b46703ba6b7a55"/><dir name="Geoip"><dir name="Edit"><file name="Form.php" hash="e4f2a5dde7cfe15f9ac50e2db8c21c04"/><dir name="Tab"><file name="Form.php" hash="a2abcb82a6bcea3eb868973c7d3bfa88"/></dir><file name="Tabs.php" hash="252078efb678bd57fbc2bc89d4840f9b"/></dir><file name="Edit.php" hash="8d23cad0b4d4e3d8fecb6a9b1ee986c0"/><file name="Grid.php" hash="c23a08c039f90c9f4afc5d72bc62defe"/></dir><file name="Geoip.php" hash="f7bfd8c80885198d1cfb46ba672a89c9"/><file name="Geoipgrid.php" hash="2cee0d92a6a4510ce207c14df402d77f"/><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Tab"><file name="Delivery.php" hash="0b003cc4c0d0bebdde22dd3de875a380"/><file name="Survey.php" hash="e96e1f1204374ee3f4d870130d8bf538"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Field"><file name="Position.php" hash="591f8bdc9dc260b516344358f9c61ea8"/><file name="Style.php" hash="3d2f697b7024b47095f995cfa37a100f"/></dir><dir name="Form"><dir name="Field"><file name="Separator.php" hash="4b47f2cdee81a7fbb216479fcc1f08ee"/></dir></dir></dir></dir></dir><dir name="Checkout"><file name="Links.php" hash="1ffd5ae049cfe93dc40a0084965d3745"/></dir><dir name="Onepage"><file name="Link.php" hash="d407f0011ca35e3ba01e64de7f1be9a7"/></dir><file name="Onestepcheckout.php" hash="d4534c663bedfd06291651568ff2cc41"/><file name="Postcode.php" hash="29391f38cecea96de719ae5f297b9350"/><file name="Reload.php" hash="6ee3cbc3eeaa10650e9fab34012e033b"/><file name="Review.php" hash="6bf69a378bd564f08053aacd5a19435b"/><dir name="Sales"><dir name="Order"><dir name="Totals"><file name="Delivery.php" hash="f0617f39596aa865fe5f754f40197d47"/><file name="Discount.php" hash="a2ada262148218f26e610cafafb9c6f0"/><file name="Giftwrap.php" hash="b57911d76e37747788ecc5664f010078"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Survey.php" hash="94ef853d027c56877d16daaabf090ee7"/></dir></dir></dir></dir><dir name="Widget"><file name="Dob.php" hash="a5360b3ecd0efb06f8663106b25ca123"/></dir></dir><dir name="Helper"><file name="Data.php" hash="9e9964a24d8e57fdb22fb8751422847f"/><file name="Message.php" hash="8d395efbb36ee56549f354e8d100d32f"/><dir name="Rewrite"><dir name="Checkout"><file name="Url.php" hash="1226c5a93ac50a776f1dd4cce4ed00a3"/></dir></dir></dir><dir name="Model"><file name="Address.php" hash="322044c8460b8affc05c4945ee2f3e84"/><file name="Config.php" hash="5d095e8a5c43d0e4ab5abf4b5f0137ef"/><file name="Country.php" hash="d19e8d472c5611fb37ca7ee5c791c89b"/><file name="Countrylist.php" hash="cbd5f56ce57937fe6f8aa163adbfb256"/><file name="Countryversion.php" hash="425646a61194d4ca2cb59a27ef7835c9"/><dir name="Customer"><file name="Customer.php" hash="f375a5a0fbab98c268da00a7cdbe8657"/><file name="Form.php" hash="ec5d2bd7f13230146f767ff19bc799bc"/></dir><file name="Delivery.php" hash="ceba6a56a8ee1eb1802f1e4345ba3ae0"/><file name="Geoip.php" hash="906826179f9cf964b8f2037ef446e75d"/><file name="Giftwrap.php" hash="972e625dba6682cb595470783aab8e7e"/><dir name="Mysql4"><dir name="Config"><file name="Collection.php" hash="e3b19062f97b78ba419eb0b8f9e5d481"/></dir><file name="Config.php" hash="96f9fb62ee69a1e99995cfbb487c23ff"/><dir name="Country"><file name="Collection.php" hash="540285ae87912aa35227046a432a2f2f"/></dir><file name="Country.php" hash="8f1d9d24bfb70e9754f0802caa8a6297"/><dir name="Countrylist"><file name="Collection.php" hash="5296991d5815c4ac7830081b3a3a1495"/></dir><file name="Countrylist.php" hash="a26819414ec2f9af9ff6338432bf57a8"/><dir name="Countryversion"><file name="Collection.php" hash="c3426b05e25bda5ed05c66c262a9f636"/></dir><file name="Countryversion.php" hash="e303a20c3fe88c989df582bfe9a7212a"/><file name="Delivery.php" hash="c1e25968150e3bb25f92ce784be411de"/><dir name="Geoip"><file name="Collection.php" hash="a1daba6f6b843b5e1a140edd92d657dc"/></dir><file name="Geoip.php" hash="bf4ac4c93a549db4c2c0b31219dd0cda"/><dir name="Survey"><file name="Collection.php" hash="ddb3991bd9c5cc3635c34c25c7e3ddb4"/></dir><file name="Survey.php" hash="53bf7bb425202bcbea15226a23154a9e"/></dir><file name="Observer.php" hash="43fd36f78237350ebe11e35042c8eed0"/><dir name="Order"><dir name="Pdf"><file name="Amount.php" hash="2e6e7c677d6fb923b18f4255126e75cf"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Discount.php" hash="ff57211bfb81b52a3849f053789086ab"/><file name="Giftwrap.php" hash="4f4f8dd5011c0c05be1011fdb49d00a3"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Discount.php" hash="4cb64bd3054be0d375a4e35a8abfdf88"/><file name="Giftwrap.php" hash="c26485219caf39b426f9ba9b08fce80a"/></dir></dir><dir name="Pdf"><file name="Invoice.php" hash="b7ce0875d70f46d6c51304ec84c960a9"/><file name="Shipment.php" hash="f984164f0a41dfd0dbb4fe5810d7def5"/></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Discount.php" hash="6bd8b3784a0ed7c715ccc9e07702c74e"/><file name="Giftwrap.php" hash="f0a69219d654b1b8240fde078a7a9968"/></dir></dir></dir></dir><dir name="Source"><file name="Ajaxbilling.php" hash="221f1b8d6ab054980fb62ca6aec1460a"/><file name="Layout.php" hash="f6f85e0a64b73d2324a1834582566df6"/><file name="Payment.php" hash="8f172a52fe92443b3db22009b4aac282"/><file name="Reloadpayment.php" hash="af63b34eb24789711d1b2c8656dfabbc"/><file name="Shipping.php" hash="d81e1e0229bd7f8685a531f4975358eb"/></dir><file name="Survey.php" hash="5971211006a20e6ad4271577c731aa21"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CountryController.php" hash="b6d2cf6445ac917c917e04d5e28b9345"/><file name="GeoipController.php" hash="7e641688a2a27e8236b1389d11b3ecad"/><file name="SimiController.php" hash="40e2ef29fdcef1a09f53872c97840974"/></dir><file name="AjaxController.php" hash="7c4d2b58d535cf3ffec4ffe40ca03caa"/><file name="GeoipController.php" hash="0b8aa30474813933cbbabbfbb9286d73"/><file name="IndexController.php" hash="e929d39b54da9fad359eb5cae4ff9407"/><file name="PaymentController.php" hash="864f072c87dd0c5a5a00296dba3426d0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="258600dda09291b04dc0e415f71b417c"/><file name="config.xml" hash="73748f347464d22ed91c23c2d340ce9c"/><file name="system.xml" hash="8f4cbb9f44353d83de81d5280eaa68fd"/></dir><dir name="sql"><dir name="onestepcheckout_setup"><file name="mysql4-upgrade-1.0.1-1.1.0.php" hash="b3caa92083b3568ecd1edc3069392a8a"/><file name="mysql4-upgrade-1.1.0-1.1.1.php" hash="729b10297f75f9b8c3c1fdf14a1cda98"/><file name="mysql4-upgrade-1.1.1-1.1.5.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.7-1.1.8.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.8-1.1.9.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.1.9-1.2.2.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-1.2.3-2.0.0.php" hash="bd1e074cca468386be07d3674a05498e"/><file name="mysql4-upgrade-2.0.0-2.0.1.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="9f34b3f8560395be303739b82244e995"/><file name="mysql4-upgrade-2.0.2-3.0.0.php" hash="26b97b25c8741fc8913ec129205a2a12"/><file name="mysql4-upgrade-3.0.0-3.1.0.php" hash="2ccd0a859a785ac047fec2544cab6e27"/></dir></dir></dir><dir name="PaypalBNCode"><dir name="Helper"><file name="Data.php" hash="0fdcbcc78368f5937c8e9cf303bc7bfa"/></dir><dir name="Model"><file name="Config.php" hash="d928200b73e21bc098e6af99ac0eb5b8"/></dir><dir name="etc"><file name="config.xml" hash="e26be5583723747db39c6c421d752a64"/></dir></dir><dir name="Settings"><dir name="Block"><file name="Settings.php" hash="c6206688c0e841b52aca899e28de4802"/></dir><dir name="Helper"><file name="Data.php" hash="74d707d973e3b5464f6e126bc69402f9"/></dir><dir name="controllers"><file name="IndexController.php" hash="0011ae59221f785a49be12ff16994cab"/></dir><dir name="etc"><file name="adminhtml.xml" hash="868a54afc9e6bab1e2d16938ca918261"/><file name="config.xml" hash="d38efc1ae157727c5939d2d743f0e057"/><file name="system.xml" hash="0d590381cd12cc4ed8d99a08550e53a3"/></dir><file name="link_old.phtml" hash="5dc7d1a281f02d3c0e855343454ba155"/></dir><dir name="license_certificates"><file name="Abserve_Onestepcheckout.xml" hash="c19d7442cd4021a8023b1c6903051ee2"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magenotification.xml" hash="d8d6f09fe2eab3d24de2765584628eec"/><file name="onestepcheckout.xml" hash="5b9f21a9a540134f9ff42130322c3911"/></dir><dir name="template"><dir name="magenotification"><dir name="feedback"><file name="files.phtml" hash="55a255047fd65a80d4429cc5d6d6aad1"/><file name="history.phtml" hash="d0629d67987cafd34bde33e58bc9e23a"/></dir><dir name="license"><file name="licenseinfo.phtml" hash="3857a896c8cb9fc63331502ab782cb2c"/><file name="purchaseform.phtml" hash="5a39b6087f4f538a6094ecb66d6f8c0b"/><file name="updateform.phtml" hash="3d3cf9d0035d8f74fef33916e27fa549"/></dir></dir><dir name="onestepcheckout"><file name="country.phtml" hash="65e0870114409c9d23033f2c6cc069bb"/><file name="geoip.phtml" hash="d16c1243c4b8ca1039be5610d3f52d23"/><file name="geoipgrid.phtml" hash="437e910725c0732200551a28f931a37c"/><file name="info.phtml" hash="8bfe5e62abe665b40e9de61ba7e9ac17"/><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><file name="delivery.phtml" hash="8738cedfe8f60a206d7f1ee1bf7c94dd"/><file name="survey.phtml" hash="418d398894903cfa59fa73385a67fec3"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="abserve"><dir name="shoestore"><dir name="etc"><file name="theme.xml" hash="d344d5e39682e45bebf471c3510ca65e"/><file name="widget.xml" hash="c539ce6b70ec60dd6dae3cff68f80422"/></dir><dir name="layout"><dir name="abservemegamenu"><file name="custommenu.xml" hash="1b436b4368fdd37aa655ee88d7a518d8"/></dir><file name="ajaxcart.xml" hash="35fbf55de207af960608c800210c3c19"/><file name="ajaxwishlist.xml" hash="edd5d57a449a36aac5122c9e779f41dc"/><file name="bundle.xml" hash="9647d853d1f3f81c48ee8c3c677d1cdb"/><file name="catalog.xml" hash="a0d0fabfeb49b479f3a226117a328ae2"/><file name="catalog_msrp.xml" hash="abca4b7c8cc2a576ef59a2326150230d"/><file name="catalogsearch.xml" hash="c147291945ba7b431d35d88d0aba46fe"/><file name="checkout.xml" hash="e9cbf27525f14afc0287ffacb05a911b"/><file name="cms.xml" hash="f18becaaac55614d9aa23007aa33a1b6"/><file name="configurableswatches.xml" hash="e3554c2a0d8d3a935222e3f6a9dd82ee"/><file name="contacts.xml" hash="36d1a39df879403b44c76cf7b20e6a19"/><file name="customer.xml" hash="7b41750625f51b8ac32d92b83354a0b1"/><file name="directory.xml" hash="2db8e308d17e3ffec46aa8fb909c5e2b"/><file name="downloadable.xml" hash="081c20ef5b4a2f64d3889a7bed301778"/><file name="newsletter.xml" hash="25f0084fceed66a61f721680a1f54f5e"/><file name="oauth.xml" hash="0abe4da9723e35b24dfd58157a149727"/><file name="onestepcheckout.xml" hash="84edacc61f2795d791ba64151fc7413e"/><file name="page.xml" hash="205d0354f558ef7d92aaeee25b2a6507"/><file name="paypal.xml" hash="b3ca01ae096ed3d4e5200554c78ab8a3"/><file name="persistent.xml" hash="e97225bc8d7f2129117f0c511914c3f5"/><file name="review.xml" hash="5007ce1cf72b8f77b442694ac1c1362b"/><file name="rss.xml" hash="7b08a0410fa224e8291bf69f4bb88858"/><file name="sales.xml" hash="cd208eca0e421c88949905f26515ebc2"/><file name="settings.xml" hash="8d204b701e6dbb86106ee8f0c44703d1"/><file name="wishlist.xml" hash="f602af2b0b610143b788f5171ceac0a4"/></dir><dir name="template"><dir name="abservemegamenu"><dir name="custommenu"><file name="menucontent.phtml" hash="b9c5297a09aa2c9df51cde930c0041ee"/><file name="top.phtml" hash="a41bf7f78a26a89ead760a236dd64a12"/></dir></dir><dir name="ajaxcart"><dir name="catalog"><dir name="product"><file name="list - Copy.phtml" hash="68380c3ad3a88622b3afa7b45b47449f"/><file name="list.phtml" hash="5de9cc4655c01208d5f42b207b2fbf6c"/></dir></dir></dir><dir name="ajaxwishlist"><dir name="catalog"><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="9b6d9c8039b34c02eff84439714e95dc"/></dir><file name="list.phtml" hash="79642d95a654e4e0cf0a429f9b07b15b"/><file name="list_wishlist.phtml" hash="1d145d252e105a5d9e131d3f9c2e37ba"/><dir name="view"><file name="addto.phtml" hash="95d0a507ac58dc80292cbfc55bf92da2"/></dir></dir></dir></dir><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="f7dfb245dfd620e6bee75bd18b59bba6"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="view"><dir name="type"><dir name="bundle"><file name="availability.phtml" hash="a09e5cc2ef1686dd6533be025e19c86c"/><dir name="option"><file name="select.phtml" hash="c3e6f4178d8615bf75b6df4cb7a766b0"/></dir></dir><file name="bundle.phtml" hash="806dce08fae77b0572212b0ae7a3121a"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="04833cc8f11b7cf4e9d1f4ce4f2ab1bb"/></dir><dir name="invoice"><file name="default.phtml" hash="b68643ced0e053046990bdcc6d8d9846"/></dir><dir name="order"><file name="default.phtml" hash="85e3bdb680b17c8b3975275125e93771"/></dir><dir name="shipment"><file name="default.phtml" hash="63ab65ea9f9783d723bd92cb66f5cdc6"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="items"><file name="renderer.phtml" hash="42cfdfc713ef0d208ad66e8bba38fe58"/></dir></dir></dir></dir><dir name="captcha"><file name="zend.phtml" hash="76404ebdc503e9f262110a683a42f5b1"/></dir><dir name="catalog"><dir name="layer"><file name="filter.phtml" hash="4cd90ecbb576698e4c10327e2dac5fba"/><file name="state.phtml" hash="b4519ec0ae27d635103332c98f608304"/><file name="view.phtml" hash="5d69d94e7691b2f2372c0951375e8f2d"/></dir><dir name="msrp"><file name="popup.phtml" hash="20cf471182e99a91a978e9a002000f35"/></dir><dir name="navigation"><file name="left.phtml" hash="662968c9678fae8014a671304ee70f64"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="949a3ef19d290a3117442a2f2a72287a"/><file name="sidebar.phtml" hash="82c43611103da30cc6c2edbee0fdc04d"/></dir><dir name="list"><file name="related.phtml" hash="90df786ad9ae80837998292d175f204a"/><file name="toolbar.phtml" hash="16d2f185c7be49cc23b72b1c15b6c888"/><file name="upsell.phtml" hash="96c5c6aed5288c193e6d5c89b6078782"/></dir><file name="list.phtml" hash="c00cc06c5a427aec73e737ca79ff2648"/><file name="price.phtml" hash="db26709ad4723a94695b40b717e04161"/><dir name="view"><file name="addto.phtml" hash="5fafb53df6a2a13a7a0afab4d0b7421b"/><file name="addtocart.phtml" hash="b9bf4f1c587a6aa1f38ec219d03e7760"/><file name="media.phtml" hash="4d50c65a7d2b961ffd41b5926de882a9"/><file name="sharing.phtml" hash="79f483655165d7170c7533c5eb108518"/><dir name="type"><dir name="availability"><file name="default.phtml" hash="293cbf4904ed0020c1a79ec35da15845"/><file name="grouped.phtml" hash="cc87c320d32c2bc68f28338592537203"/></dir><file name="default.phtml" hash="16039952088f60ecb30d0f866eb1371e"/><file name="grouped.phtml" hash="73c5f72b14f922ff0646a3f2137f3a0f"/><dir name="options"><file name="configurable.phtml" hash="a7d16610ca3849b7aac6b4260d8636e3"/></dir></dir></dir><file name="view - Copy.phtml" hash="df2654f11fb7ea06a1b6addf798308d9"/><file name="view.phtml" hash="85a9fd4f5734d08dbec6b8f0543b945d"/><dir name="widget"><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="a5c61600e23acfb1037a12191d280cc3"/><file name="new_images_list.phtml" hash="f72bff4ddc5546790231ad4fe4afcbe9"/><file name="new_names_list.phtml" hash="565af8de07893af772ad88c0029365e1"/></dir><dir name="content"><file name="new_grid.phtml" hash="914532cbfa676027d7528dadb830ea05"/><file name="new_list.phtml" hash="e3eae9160536b3267c7cb6ae61e44163"/></dir></dir></dir></dir></dir><dir name="cataloginventory"><dir name="stockqty"><file name="composite.phtml" hash="590df1c4b80bbbac63c9da79780b56ac"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="7d188c26d3a8918eb08863d02829f7f2"/></dir><file name="form.mini.phtml" hash="2cd2f0d385355897d1d855f03958ad8b"/><file name="result.phtml" hash="deb989bcddb215eb6d5a99db296d0d88"/></dir><dir name="centinel"><dir name="authentication"><file name="start.phtml" hash="e3c35b383b6b8f65c0fd83f90c7c868f"/></dir></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="6c0a7e9a0bb7d05ef2ccb15daef3f1a5"/><file name="crosssell.phtml" hash="1a8bb4bd7fd478d1105d17a65b5c6727"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="31212147f0b4b5dccb66d4f1e48022d2"/></dir><file name="default.phtml" hash="da10721e350c1d2fa7defad411a7aa83"/></dir><dir name="minicart"><file name="default.phtml" hash="cfcf6c38c48c520fa2a75887922b2a52"/><file name="items.phtml" hash="1274efbfbe25160126ddacda22036d40"/></dir><file name="minicart.phtml" hash="4296451c20562e5cbc52d5256f79468c"/><file name="noItems.phtml" hash="064f09a3150f7e21db8e097a1faba845"/><dir name="render"><file name="default.phtml" hash="5fc714619055669ab1bfbb12bf234c7d"/><file name="simple.phtml" hash="3a0bc4b80b779a086f9b381914262db1"/></dir><file name="shipping.phtml" hash="b46a1ac53a291fb06eb5dd386fe62329"/><dir name="sidebar"><file name="default.phtml" hash="4413299f80dd43fed5a6aff6807aef19"/></dir><file name="sidebar.phtml" hash="38422099e618114b7d4900cb5663f169"/></dir><file name="cart.phtml" hash="c29fdd24189688795db585e2d65f5d87"/><dir name="multishipping"><file name="addresses.phtml" hash="70dfa3d9f714194cba05067cbab862c4"/><file name="billing.phtml" hash="104d022214a3be22a8df8c204974b86b"/><dir name="item"><file name="default.phtml" hash="7eab166dd86140ec1b6535a5be607df7"/></dir><dir name="overview"><file name="item.phtml" hash="6b7765dbeebad9f47631a6b21814e0a5"/></dir><file name="overview.phtml" hash="cb5b8ab2a8f90dcc0a1485d97917d000"/></dir><dir name="onepage"><file name="payment.phtml" hash="9cdb8b3d26ac18a9e36996347baa9e87"/><file name="progress.phtml" hash="a170630c614567a871b01e32355e84c4"/><dir name="review"><file name="info.phtml" hash="cec1b4e38e96b4e6177f7be853ea51ea"/><file name="item.phtml" hash="ab99816f2112c6e5883edec049fe44eb"/></dir><file name="shipping.phtml" hash="c4dd01b76abed5b805548580fa4fc339"/></dir><file name="onepage.phtml" hash="503b349a975f95051a3843176055a0cb"/><file name="success.phtml" hash="7e8b16a234a852555622e44066b6e086"/></dir><dir name="configurableswatches"><dir name="catalog"><dir name="layer"><dir name="filter"><file name="swatches.phtml" hash="2f96ff1d7eb48fbc260e489c047b4bc7"/></dir><dir name="state"><file name="swatch.phtml" hash="e696b74ae734670552bcc5eb308586ef"/></dir></dir><dir name="media"><file name="js.phtml" hash="ac5f32f7b18436a323e5972849f3840c"/></dir><dir name="product"><dir name="list"><file name="swatches.phtml" hash="b5dd16faa22d4c248ce9c237918df1c9"/></dir><dir name="view"><dir name="type"><dir name="configurable"><file name="swatch-js.phtml" hash="ba64818ebe7d00c7cc6aba106f72fe39"/></dir><dir name="options"><dir name="configurable"><file name="swatches.phtml" hash="25b9919bbdbaf300d44b3425f4af5925"/></dir></dir></dir></dir></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="95683da969c48e1dd4ebac8fb9d0af30"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="a797ffd2fabd0e4d720774ef4124fd31"/></dir><file name="dashboard.phtml" hash="468ba7d1c4b82fbd2f33afce080c8cc4"/><file name="navigation.phtml" hash="c35e960137bf6646601f9413df87ea76"/></dir><dir name="address"><file name="edit.phtml" hash="39bf5cfe7835956b2e031eccfd4c02f6"/></dir><dir name="form"><file name="address.phtml" hash="ce4796c4000edec1d206acdc4290832b"/><file name="changepassword.phtml" hash="14d880bce19bdd9628fb577b0106300e"/><file name="confirmation.phtml" hash="28b601c912814018a19e1c2a5d25bcbc"/><file name="edit.phtml" hash="ce6d04cf5bf57c48422677f5006a283e"/><file name="forgotpassword.phtml" hash="e015a9338fb585a792e681769755fb33"/><file name="mini.login.phtml" hash="bb6e40137fd74d0f48e741bd766cddb1"/><file name="resetforgottenpassword.phtml" hash="d071eca826dbe1240f52f2c9c453a571"/></dir></dir><dir name="directory"><file name="currency.phtml" hash="f4ee179ff64f0d65286005c447117719"/></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="type.phtml" hash="4a712609cc735fc604c9425ada13c867"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="149ff71d43d0e2eae474928753f93367"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="192c9728619eeb9ab180b6f50a80aee9"/></dir></dir></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="78b04ba5f65d80384edb9f4029929753"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="724e1b8893031d6d84c0ff1ae3c9a018"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="e77975f4f36a5bb5f2729084e67803cc"/></dir><dir name="order"><file name="downloadable.phtml" hash="89df38407f6d5ea94ea3113255a3ef0a"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="b3792f8577423183d0dd3a44728256a7"/></dir></dir></dir></dir></dir><dir name="email"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="39fa24623896902093bd393f36cf9560"/><file name="new.phtml" hash="331c94aab173bb0b2bc46a60265539b1"/></dir></dir><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="09e36a052dcc30198faacba4b48a5831"/></dir><dir name="invoice"><file name="items.phtml" hash="4cc757de3c554b1672499281af7409be"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="3a8799f9fd7ce3a0950234bdc244ee3a"/></dir><dir name="invoice"><file name="default.phtml" hash="3a8799f9fd7ce3a0950234bdc244ee3a"/></dir><dir name="order"><file name="default.phtml" hash="1b4a5fffcddf1929c89546b0701cce83"/></dir><dir name="shipment"><file name="default.phtml" hash="662ce092e205626c8fa5ddc9e42b9691"/></dir></dir><file name="items.phtml" hash="1a33865ef3cc5f40949f2922fb5f9325"/><dir name="shipment"><file name="items.phtml" hash="4e66b2c8b72415e84fd456eb79749c68"/><file name="track.phtml" hash="4892b058edd9b33f4437deb9774773df"/></dir><dir name="totals"><file name="wrapper.phtml" hash="9437e4b26484ca34880cce00355fefa0"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="0cf7cc8ed26d62d1755da506ace5d47b"/><file name="stock.phtml" hash="7c00c14428099ce87e9e2d3a9ce62fab"/></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="324dd231230a080ed5bf03acbd49ef94"/><file name="subscribe_footer.phtml" hash="d37c28702c2fb6b1dfd1a27ca8045087"/></dir><dir name="oauth"><dir name="authorize"><dir name="form"><file name="login-simple.phtml" hash="28226fcddef83b14d42d28decc4c0e47"/></dir></dir></dir><dir name="onestepcheckout"><dir name="geoip"><file name="postcode.phtml" hash="1f1e7af5440fa61ced488ee6e0597e6a"/></dir><dir name="giftmessage"><file name="inline.phtml" hash="1636965cb934c5133ac9d9b1715817ee"/></dir><file name="head.phtml" hash="40e31ea50849c9cac2c79f91a59fcd02"/><file name="link.phtml" hash="27a7ffcfe73d9b1f6a1d7552059bd3b7"/><file name="login_popup.phtml" hash="cb44ff52864e3b8421d7607e289f5d4f"/><dir name="onestepcheckout"><file name="billing.backup-Justin.phtml" hash="1fbb7c3337bbc918311a8206f75c8034"/><file name="billing.backup_19_05.phtml" hash="aea7fcddd65b673d2b1b64ef8b10ce0b"/><file name="billing.backup_20_05.phtml" hash="2f91db1e68fd9b43db3111c3c4cf3dc7"/><file name="billing.phtml" hash="440419d2cb58acb2145a752f01c700b4"/><file name="email_onestepcheckout.phtml" hash="47cf67859e3076223fd88e5e1aaa180b"/><file name="forgotpassword.phtml" hash="5ceda6dc5e3f53d069da5f816619bcb6"/><file name="login.phtml" hash="a4d4ba4a60c27f48a684b23993a42caa"/><file name="order_onestepcheckout.phtml" hash="abc22eebbc36eb58d8b83f3a276032c9"/><file name="payment_method.phtml" hash="2fd22e48ceba02cdeaee6bbe4a4858c5"/><file name="reload_data.phtml" hash="44a577e9d2e1c1aeb40ea93d3ee8e568"/><file name="reload_payment.phtml" hash="1c5bda57ebc536c0ff5de3eb33246f4f"/><dir name="review"><file name="info.phtml" hash="7812ca2aabeffc5d4cef1ba6691750e9"/><file name="item.phtml" hash="73fb3ffe18fccf3a87c3a09594cdd999"/><file name="totals.phtml" hash="99a3c6fc9a87d88dc8d9265146f6e2a2"/></dir><file name="review.phtml" hash="2bb2c2938010790ec326352e18d007c0"/><file name="shipping.backup-Justin.phtml" hash="9695a6d97f9dfe97edf6d7d24d94933f"/><file name="shipping.backup_20_05.phtml" hash="232190708a22d302546cbea78a71ad11"/><file name="shipping.phtml" hash="31dc2a57c7b0a25d33d2f4d46f8c4a0b"/><file name="shipping_method.phtml" hash="a05df124c9890039c89956a3ab66d4f4"/></dir><file name="onestepcheckout.phtml" hash="59e9bb49efdbdf950debef1c6f848149"/><dir name="preview"><file name="preview.phtml" hash="f2e929c3b44cd928fb937f32835ec38e"/></dir><dir name="widget"><file name="dob.phtml" hash="6ba174f04a017f20db8c30665dbf9614"/></dir></dir><dir name="page"><file name="1column.phtml" hash="2aa485183fd81fdf4503211cb3c43d06"/><file name="2columns-left.phtml" hash="6d413162d4832c67046f862018cecb2e"/><file name="2columns-right.phtml" hash="462c6d8b2d7d2b207c549a2a54ab6a61"/><file name="3columns.phtml" hash="11514fb376914a48b24feb799cd3c820"/><file name="empty.phtml" hash="a10789fc8675982fa61b1497ab7c86bb"/><dir name="html"><file name="footer.phtml" hash="3ee123468c82cea51916c6a67c82ae14"/><file name="header.phtml" hash="322d8aaea3ff4ec0192d31dbaafad86c"/><file name="pager.phtml" hash="0368562ead537e0e1897eccf72b0b45a"/><file name="shoestore_footer.phtml" hash="3a0fca0f207b07e185ec10140d18bba6"/><dir name="topmenu"><file name="renderer.phtml" hash="addcfbe470c28761061ef1d1bff9d859"/></dir><file name="topmenu.phtml" hash="2edfd3f10256399e795fe7df5202cb91"/></dir><file name="popup.phtml" hash="fbb75f13871ddc732b07f5a380c0bdb1"/><file name="print.phtml" hash="d5ef6ad1901e6303d42c60497c3690a8"/><dir name="template"><file name="links.phtml" hash="0524e9d7748c1f447e3f8010f1d49dfe"/></dir></dir><dir name="payment"><dir name="form"><file name="cc.phtml" hash="aa6b20c90b6ab883431370d361d66154"/><file name="ccsave.phtml" hash="3d370d40d1c7ad1e82c9c2e12f8108ad"/></dir><dir name="info"><file name="default.phtml" hash="e3837010b3e1d8dd90b0ca4856c4aa1a"/></dir></dir><dir name="paypal"><file name="bml.phtml" hash="1bfd40191a32a97b3a330f175066ede2"/><dir name="express"><dir name="minicart"><file name="shortcut.phtml" hash="d28b02642cfec5228b0d271d7b4140bb"/></dir><dir name="product"><file name="shortcut.phtml" hash="0baf1b04b58587726beae265f4889dbe"/></dir><dir name="review"><file name="address.phtml" hash="b0ce1e61b7c2cc64ec2d8436bdb629b3"/><file name="details.phtml" hash="34c0b1f590bd299440684a12dbb81764"/><dir name="shipping"><file name="method.phtml" hash="dc85509da28da7788fce0cceff9d437b"/></dir></dir><file name="review.phtml" hash="4e2c9b15ed595e0982b12ee3f4002d66"/></dir><dir name="partner"><file name="us_logo.phtml" hash="f80346b7114b1f12ac4ea9b0fa32c2b4"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="d38359553264ca0ff5baced37bfae735"/><file name="login.phtml" hash="0216144eb8149f293cc8230a88b1c975"/></dir></dir><dir name="customer"><dir name="form"><file name="index.phtml" hash="b220cfa863324917486fa6bb9efc534b"/><file name="login.phtml" hash="803c090f0eb35187e7b4f22545ec3e03"/><file name="register.phtml" hash="2ef78c06900f39d4025af4d2d3e4c275"/></dir></dir><file name="remember_me.phtml" hash="bdd0e51d1b8c937dcf5df4e43a4f1ab8"/><file name="remember_me_tooltip.phtml" hash="1d13b81d28dbb1c4a8a4eabe3c0f632e"/></dir><dir name="rating"><file name="detailed.phtml" hash="19ea652e633785fad8486be2ee167802"/></dir><dir name="reports"><file name="product_viewed.phtml" hash="e5d2ce089259c1b38737a86b07c0c91d"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="940fba04f7cd957ac57e4ed11a1946b8"/><file name="compared_images_list.phtml" hash="2b2fc46ffe38ee7f59d7661c3859b7eb"/><file name="compared_names_list.phtml" hash="f63c037cef090cab8cd8fb900b120fbf"/></dir><dir name="content"><file name="compared_grid.phtml" hash="87226b5d935d39c6021d4cd5422edcfb"/><file name="compared_list.phtml" hash="49cde80a5bca0cf912f022a39b3f4cab"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="a94f07d839be8cf8b211e5409302d75a"/><file name="viewed_images_list.phtml" hash="da546241522e9a82fb3cd7d6cd1cc637"/><file name="viewed_names_list.phtml" hash="bda7fa14dd22a73a37b525ff375c3e4b"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="afac292fa7f1157dfa25e967f5eeb127"/><file name="viewed_list.phtml" hash="0560cf97c092b46a540a2a099244478e"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="view.phtml" hash="51a5d7006f280a1aa02cb55703bce9ba"/></dir><file name="form.phtml" hash="f2268d60d12084ee3dcfcbad97fad53c"/><dir name="product"><dir name="view"><file name="list.phtml" hash="2ad9f059f4f88e826027571bdf44242c"/></dir></dir><file name="view.phtml" hash="dd74319d4dda6195c8fb366d2d656c8a"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="77ee0e67e81ecf4feacc616ddbfddc6f"/></dir><file name="agreements.phtml" hash="e4ad8f8eabe7f77c63a6ad47ce376d5d"/></dir><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="fb5caa900a264e4fe3f2357bd1414c4d"/></dir></dir><file name="items.phtml" hash="5f911a73e7ffa7d543c551c7ab0be2df"/></dir><file name="history.phtml" hash="5298f96222dee9b3821b93be4e65bc0b"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="d448067860996e0a6df36214d20365ac"/></dir></dir><file name="items.phtml" hash="cd8879bf1ab2a917c05704dc57cfdf25"/></dir><dir name="items"><dir name="renderer"><file name="default.phtml" hash="de8794a8f89b8502cc65e891e47b1c7e"/></dir></dir><file name="items.phtml" hash="584bf90b01d4f9eaaa405647edb378d2"/><file name="recent.phtml" hash="23230fe43880bbcec950f79b688b9dcb"/><dir name="shipment"><file name="items.phtml" hash="33f0a6452ca8f682340d2bdf320dd00d"/></dir></dir><dir name="recurring"><file name="grid.phtml" hash="107b32c6e807d8d14b0fa8130108832a"/><dir name="profile"><file name="view.phtml" hash="a3dd07c603fa36cf6e4d5ce8163de860"/></dir></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="85d10144d57c0b89464031434b38fc6b"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="e7e23670c1d606ff706dc6d533eb5794"/></dir><dir name="settings"><file name="ad.phtml" hash="ed1b7713b458a20474a42ce790b4db04"/><file name="banner.phtml" hash="595f4418d7df5a40afe5f8d8337549f6"/><file name="blog.phtml" hash="721941ae843045d0824458467b2879af"/><file name="brand.phtml" hash="fc1b197548698f01de8326d530f80746"/><file name="brandproductlist.phtml" hash="e756b7dc1b9a5efd9ed60cc802baf84e"/><file name="categorylist.phtml" hash="d0b44b703913031cb800cfdacd31d26c"/><file name="categorylist_home.phtml" hash="e2370f8e9a23bde5fe166d6345a6d8ef"/><file name="delivery.phtml" hash="dd47c4da0064f3cf371e21a9e5ef8c69"/><file name="index.phtml" hash="3627e48b87c15514c962b975d7908087"/><file name="newproduct.phtml" hash="7c13fe3ff32de1d0cc4a25dc36a40d1a"/><file name="newproduct_home.phtml" hash="209379807d287be09da7cdf8da412552"/><file name="newproduct_waste.phtml" hash="7c13fe3ff32de1d0cc4a25dc36a40d1a"/><file name="tabs.phtml" hash="66b27845ca19273c73bd15b0ac1c2c1b"/></dir><dir name="wishlist"><dir name="button"><file name="update.phtml" hash="8ba68808b52caebf306902ad3883973d"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="0383427de3a81c12dd0f034a224259e1"/><file name="info.phtml" hash="197ceff8061f404cca24939a7a51eed5"/><file name="price.phtml" hash="0036a632106f0077393e9b3bc0e4e278"/><file name="quantity.phtml" hash="19f240558a2ae38095b528655bb155b8"/></dir><file name="list.phtml" hash="71e0d6e734981fffc69c26acaa797fe6"/></dir><file name="shared.phtml" hash="a79eff6bd55e403820312601f105ac04"/><file name="sidebar.phtml" hash="17d8d9f73aa7e3faec6491a90af2e4f2"/><file name="view.phtml" hash="f6de784fe0bd0946b2e096a192d85817"/></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="layout"><file name="ajaxcart.xml" hash="14885283aa1764dc7aba659ac16d73a3"/></dir><dir name="template"><dir name="ajaxcart"><file name="configurable_options.phtml" hash="b460b3489bc76785c5976679b38e7e50"/><file name="grouped_options.phtml" hash="ac72313480209ac09b88daa155801cd0"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Abserve_Ajaxcart.xml" hash="2a581b8166add2cb390cebb445e6031e"/><file name="Abserve_AjaxWishlist.xml" hash="3aff3c540338b8cd836d3d2ee3a9ac8a"/><file name="Abserve_CustomMenu.xml" hash="43fa4d53199e81eab5824fa0bb0441f6"/><file name="Abserve_Magenotification.xml" hash="ed594dd2a5de84a7d41ea2a85cbebf89"/><file name="Abserve_Onestepcheckout.xml" hash="b17acf4e9e97425a13a0e02e0b652244"/><file name="Abserve_PaypalBNCode.xml" hash="9cb0a69707aba8676be962063d46a772"/><file name="Abserve_Settings.xml" hash="819aaa2c9a3e62517d1ff7dc69035045"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Abserve_Onestepcheckout.csv" hash="ee2b6ba5d50b7030006426bba21ef841"/><dir name="template"><dir name="email"><dir name="sales"><file name="new_order_notification.html" hash="6e5a295cbd9294ad74920b3e79b79788"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="abserve"><dir name="adminhtml"><dir name="onestepcheckout"><file name="geoip.js" hash="56609a9fc6c61214401e39e500f76012"/></dir></dir><file name="geoip.js" hash="1492f91e92f8f16947b517c5c293d935"/><dir name="onestepcheckout"><dir name="colorpicker"><file name="config.js" hash="5947960e20ce76ab0a8f92474fca70d4"/><file name="prototype_colorpicker.js" hash="cad098399cbe4604c403afb1e9e0160d"/></dir></dir><file name="onestepcheckout.js" hash="2a8ff3e6580bfe677f3313a9c7b80dd1"/><dir name="responsive"><file name="jquery.mediaqueries.js" hash="6547e5b872598cc15b7ae8f161eebe88"/></dir><file name="tinybox.js" hash="fbbac0810d3bb6447740ff7e32238454"/><dir name="varien"><file name="form.js" hash="f736353e3fbe0ad1f0238037cd585613"/></dir><file name="window.js" hash="720a8314cc0fa45a475bf162223c553c"/></dir><dir name="jquery"><file name="jquery-ui.js" hash="04a4db2983450a2970c459ba87b4210a"/><file name="noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir><dir name="lib"><dir name="jquery"><file name="jquery-ui.js" hash="04a4db2983450a2970c459ba87b4210a"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="onestepcheckout"><dir name="style"><file name="black.png" hash="11520eb8eafec9d15692bd7355ed2139"/><file name="blue.png" hash="cacd8ca2975fd2480c70e69f80c93f62"/><file name="darkblue.png" hash="42a4d20b2a3f3b135e5787a5a2a79f18"/><file name="green.png" hash="2c95f767c2cb8fcfb09ca08f757f5af0"/><file name="orange.png" hash="10501058d6d7fb1827ca561df625cedb"/><file name="pink.png" hash="64542ca81ab440696ddf7ae8085f6dbc"/><file name="red.png" hash="2adf694b30017bdcc5b5da9e60a394c0"/><file name="violet.png" hash="caea9a33413538c7cd9fd7a0d5967769"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="abserve"><dir name="shoestore"><dir name="abserve"><dir name="settings"><file name="settings.css" hash="0057dd7cf7c8af8ec9835240fd30f867"/></dir></dir><dir name="ajaxcart"><file name="Thumbs.db" hash="51917ea9886ff41d145e294455c06adc"/><file name="ajaxcart.js" hash="689cbacac0e3024d5acc4f881615eeab"/><file name="growler.css" hash="3a0caf54ae6e2e098fd7caeaa9b7f610"/><file name="growler.js" hash="394bf2495b189ba6950fa0af2ca5e2a8"/><file name="modalbox.css" hash="9dfad4d258cbfe5af951f1bc7f7f82c7"/><file name="modalbox.js" hash="7aa6bdceed4379c80f47788ae21f1464"/><file name="spinner.gif" hash="58625c045f515052999e13aed5059b07"/></dir><dir name="css"><dir name="abserve"><file name="abserve.css" hash="c07bc5346dd877c9d19c7cc2e135b0a9"/><file name="mobile-sociallogin.css" hash="e2e0ab7d638ecd6117d0b9239d3ce9ae"/><file name="mobileonestepcheckout.css" hash="1d7771d591ac3ee830b0fa2c5b8acdbf"/><file name="onestepcheckout.css" hash="ca38b36707747fdcfe47a207da58f0ce"/><file name="onestepcheckout.css bk" hash="6cd883c57d1392ef2c15ab7cff653122"/><file name="tinybox.css" hash="007ee482e49e0199e7c9d237fb84440b"/><dir name="tinybox2"><dir name="images"><file name="Thumbs.db" hash="1d67b077c742492fffdbb63c56b041f2"/><file name="close.png" hash="4278a8b021acb550ad96cdddb2db6d8f"/><file name="preload.gif" hash="bf3ec68db23e93ba2ec795ef558e96da"/></dir><file name="style.css" hash="b39227d2f7eb01698da7309c063d175c"/></dir></dir><dir name="abservemegamenu"><dir name="custommenu"><file name="custommenu.css" hash="9fbe7a75fe61448d29be42496c3dc989"/><file name="custommenu_old.css" hash="46c0e7694ffb30b08092e9fac39867bd"/></dir><dir name="images"><file name="Thumbs.db" hash="23d0fa15f27240923552f7a4da9375b8"/><file name="arrow-1.png" hash="073e99226cff27c52137c55ad3cce8d0"/><file name="cat_img.png" hash="53e255f770ef509910e1ba7ac6584bf4"/></dir></dir><file name="animate.css" hash="f9ef19b8c81feae24fe5970bfadc34bb"/><dir name="fonts"><dir name="droidsans"><file name="droidsans-demo.html" hash="2180344f078e8c82f19eb820c50f3683"/><file name="droidsans-webfont.eot" hash="03657f31390db0c1db5c0b28090b611e"/><file name="droidsans-webfont.svg" hash="68cf718e66aa485b729cf0d200d2e976"/><file name="droidsans-webfont.ttf" hash="f04ba3ed7806c0d2f1842e5b1777088c"/><file name="droidsans-webfont.woff" hash="de5e199e678f7a5a3c9d355b919aef5e"/><file name="droidsans-webfont.woff2" hash="b2f4352fa2af163b0b2d86516055e2e1"/><file name="generator_config.txt" hash="2909a1c0caf748fc762241b33bf09d10"/></dir><dir name="karla"><file name="generator_config.txt" hash="2909a1c0caf748fc762241b33bf09d10"/><file name="karla-regular-demo.html" hash="c524017b5900dbd256166663faf78787"/><file name="karla-regular-webfont.eot" hash="947b95a509faeed13f3c115def26a5d3"/><file name="karla-regular-webfont.svg" hash="c2e4a81907170a84e0ef7079904653c6"/><file name="karla-regular-webfont.ttf" hash="e335e976ddee382f6b414a5985177def"/><file name="karla-regular-webfont.woff" hash="1030fef6bf95b3052c71e791f25cc216"/><file name="karla-regular-webfont.woff2" hash="1b1ec88227e9da6a5d8a963e5eac7a6a"/><dir name="specimen_files"><file name="easytabs.js" hash="ca967cf40ebb80004a08c67d53824dc4"/><file name="grid_12-825-55-15.css" hash="45e9422c89bf16e8067b6ca13c6a7405"/><file name="specimen_stylesheet.css" hash="e2cb9ea14b546a77ddd7e9dfc8c0d32f"/></dir></dir></dir><file name="madisonisland-ie8.css" hash="b2817dd906364b24c88e4c7d16ee6c34"/><file name="madisonisland.css" hash="4490919a4bca6c03c594914c7754afcb"/><file name="scaffold-forms.css" hash="5008f94ec394f87c56a3cf12e970012f"/><file name="shoestore.css" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="styles-ie8.css" hash="726beedfeb7e5bb5ee4e64c2221ba83a"/><file name="styles.css" hash="c61de6698a859ff2ae9cce38079d1eb1"/><file name="styles_old.css" hash="4e5a7b2dce6b7c15c7441b3e71e47752"/></dir><dir name="images"><dir name="New folder"><file name="Thumbs.db" hash="f1d7249e2b9691a41a6658ec15f98c01"/><file name="ajax-load.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="ajax-loader-abserve.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="ajax-loader.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="opc-ajax-loader-abserve.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="opc-ajax-loader.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/></dir><file name="Thumbs.db" hash="69eed818887df4629f56f1883e68261b"/><file name="ajax-load.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="ajax-loader-abserve.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="ajax-loader.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="bg_x.png" hash="c321c67f6929326129426c9e83207ea3"/><dir name="geoip"><file name="Thumbs.db" hash="72f1617e369240602c94d0527d2b73f5"/><file name="indicator.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/></dir><file name="icon_sprite.png" hash="e15f0103ef5ebe3baf48960bb9ccfaab"/><file name="icon_sprite@2x.png" hash="2e9c31d760a33d9f27951210f8311341"/><file name="logo.png" hash="d79df979566c5c3c73f6867366d5c1c5"/><file name="logo_email.png" hash="d79df979566c5c3c73f6867366d5c1c5"/><file name="logo_print.png" hash="d79df979566c5c3c73f6867366d5c1c5"/><dir name="media"><file name="Thumbs.db" hash="51d5f8b12d6ea68b7f9aec4631deaf2f"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="homepage_banner_1.jpg" hash="267b2827f3db118d99f7a623ee02ad8f"/><file name="homepage_banner_1@2x.jpg" hash="3baa6702111d6f5f5dd40d96f148fc60"/><file name="homepage_banner_2.jpg" hash="67f70cfb1690b5de6e185769fb55cd28"/><file name="homepage_callout_1.jpg" hash="4b8451e4e99e87b6c60a015f659d32b6"/><file name="homepage_callout_1@2x.jpg" hash="fb5e215f6cb623abf6f0365b5de1541d"/><file name="homepage_callout_2.jpg" hash="057ab6200f6ea05d4a6793969c5edac3"/><file name="homepage_callout_2@2x.jpg" hash="e923c6323d22235876fe61a9c5588c85"/><file name="homepage_callout_3.jpg" hash="b2cf1e73e87b3330df17425044d22f52"/><file name="homepage_callout_3@2x.jpg" hash="8b98dee63a61608b09c26bd60acea65e"/></dir><dir name="onestepcheckout"><file name="Thumbs.db" hash="9aba3d8ccdb9b9862a06210654c95e95"/><file name="add-icon.png" hash="cd6a2adf932717d5be2bfdf6ac181bb7"/><file name="ajax-loader.gif" hash="2ef5e9c1839462b187c93535a1670b92"/><file name="arrow-r.png" hash="eba52099034d84a4b8c38ea79ef330e4"/><file name="billing_title.png" hash="8db7729995d44d991450385ec7f9aa5e"/><file name="icon_delete.gif" hash="35efe33101eb511f8abe4bf07aba22b7"/><file name="icon_delete.png" hash="38d1c57597584acd0330c666c8f0e6d6"/><file name="invalidIcon.jpg" hash="a8b5b139df81900a73088d23b21e3216"/><file name="loading.gif" hash="94b7ff6d24d260848bdd112fdac6a3f1"/><file name="login_title.png" hash="f058985ac96735bff77eb7cdb8b48709"/><file name="method_title.png" hash="13ea3623eccb9ab9669cb76d2f194b01"/><file name="minus-1.png" hash="f4e81efc51128095d7d162dd70f41656"/><file name="onestep-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="onestepcheckout-popup-footer.gif" hash="5a6077f24809cfc33652b036157a7b4c"/><file name="onestepcheckout-popup-footer.png" hash="f52136cc9f06e55e5de1c749c97ed505"/><file name="onestepcheckout-popup-header.gif" hash="924d1941b6c3b15f55317e6af284f040"/><file name="onestepcheckout-popup-header.png" hash="aceea51c85688482504cf80e28c78840"/><file name="onestepcheckout_step_1.gif" hash="c099582959424ad776e8c54f2accfea2"/><file name="onestepcheckout_step_2.gif" hash="63230c5cae392817a0c8960f690046dc"/><file name="onestepcheckout_step_3.gif" hash="aa03a845e1c97500bf6c44cfed53e558"/><file name="onestepcheckout_step_4.gif" hash="f5cca8b36cf9dc618524a2e8c11d742a"/><file name="onestepcheckout_step_5.gif" hash="db60e6a628d54f988f618ffb907b85d7"/><file name="order_title.png" hash="1538abd02997fc2bf29876f35aac77b2"/><file name="payment_title.png" hash="6018f77570dd04ac812e4d4b7b79b4a4"/><file name="preload.gif" hash="2ef5e9c1839462b187c93535a1670b92"/><file name="term_title.png" hash="7786ed3abcdb0f47c91118e8da7a1ddd"/><file name="time_title.png" hash="9d7e50909fb570660bcdba97e5b27cab"/><file name="valid.gif" hash="4603e97bb67ba2f0c26e08eca57fd66b"/><file name="vertical_line.gif" hash="bef9df2d426124dbe3d496407219190b"/></dir><file name="opc-ajax-loader-abserve.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><file name="opc-ajax-loader.GIF" hash="a1fdd3fc45093051546b78e1563b56f9"/><dir name="shoestore"><file name="Thumbs.db" hash="3e337a7fffd72439a5472420da9dae59"/><file name="abt_banner.jpg" hash="f9308bdc386763f241b8878e1ba57f88"/><file name="arrow-hover.png" hash="180f90bec7bbffe5bb49bbd4940cb0be"/><file name="arrow.png" hash="5ee91871f56e2355100103eec618a382"/><file name="blog_1.png" hash="eabcb636c8776608a44f1591c96c2b04"/><file name="blog_2.png" hash="e61faefcb4f3a7e5b26713ebcb9c7b0d"/><file name="blog_3.png" hash="f2bd9a0b7dba49cd75a19565e590784f"/><file name="blog_4.png" hash="7b0d867d5708114e978717cd74c7c50f"/><file name="footer_bg.png" hash="b772c7dc10d5c104fb88cbdd3a55d31a"/><file name="grid_active.png" hash="d88bd988e215161b45c2475c861594d8"/><file name="grid_icon_default.jpg" hash="90665ce8c91885fcae201e576c4eebdc"/><file name="list_active.jpg" hash="4676c59dba9e7f0ea42ee2becb075d16"/><file name="list_icon_default.png" hash="d74ed935165f365a4d3c30a82bcb7d60"/><file name="select_icon.png" hash="9399c7d9fd169494a005e9e953785bdb"/></dir><file name="social_icons.png" hash="a6d0bdaea0ca0f507bd36628a6ad31a2"/><file name="social_icons@2x.png" hash="531cc696a7b949dbc8121809c1bb4d46"/></dir><dir name="js"><dir name="abservemegamenu"><dir name="custommenu"><file name="custommenu.js" hash="7f5cc213556255621f30f16305642ada"/></dir></dir><dir name="ajaxwishlist"><file name="ajaxwishlist.js" hash="655da2d44340846f5545ae2f3081925e"/></dir><file name="app.js" hash="86a9ca41d281d5734b2fcaca90450501"/><dir name="configurableswatches"><file name="product-media.js" hash="85c2a93413ab6ccd6399b300034f9944"/><file name="swatches-list.js" hash="ff35f4e497834fa25d9f1124b412f65a"/><file name="swatches-product.js" hash="87ad1b1fbaffecfba810a70c46f137e4"/></dir><file name="jquery.appear.js" hash="5a457d262e3c32d25c003ca412ee7fe6"/><dir name="lib"><dir name="elevatezoom"><file name="jquery.elevateZoom-3.0.8.min.js" hash="b8c320b245bda0ee6d6a05b1c5551a58"/><file name="jquery.elevatezoom.js" hash="85bed439e504fad4c0e631146d7a75ba"/></dir><file name="enquire.js" hash="17df503d3abac5be0bec038e4b133de1"/><file name="fastclick.js" hash="8613ebaa39dc59362c2a4b69b8669d05"/><file name="imagesloaded.js" hash="82bdcdaa438659d4cb966ab112b162f4"/><file name="jquery.cycle2.min.js" hash="eb609c79b0c3f4d32ee1ba625e4fb52e"/><file name="jquery.cycle2.swipe.min.js" hash="a1310de18f5cbbf2c91cfd2fad7e19a0"/><file name="matchMedia.addListener.js" hash="6f47448212550bd3157c4265e3ebf085"/><file name="matchMedia.js" hash="89f369588d629240d6a8d4f8788490c8"/><file name="modernizr.custom.min.js" hash="6b30635dd7d7297419bce69b3a0808e7"/><file name="selectivizr.js" hash="76618ffd6e448c796f0d2422c57a6658"/></dir><file name="minicart.js" hash="7882faeef5ec5a723bb4cdc1017a36ed"/><file name="msrp_rwd.js" hash="dbd8bdfa5161041e5ca8b3105862ff83"/><file name="opcheckout_rwd.js" hash="a7d030805978bde1272fb8dccf5e4d20"/><file name="slideshow.js" hash="4279a94ced8fa1a72cee9a43a6ed0a2a"/></dir><dir name="onestepcheckout"><dir name="js"><file name="sagePaySuite_Checkout.js" hash="f0deb367e2db5c3cff3752811c94b52f"/><file name="sagePaySuite_Checkout.js.old" hash="ff072304405450b02558fccdea006666"/></dir></dir><dir name="owl-carousel"><file name="AjaxLoader.gif" hash="5b8b06c052cac80413d62e5c45f9f37b"/><file name="Thumbs.db" hash="24d1c12a51d9048ef2a76ce83f778e3f"/><file name="grabbing.png" hash="d817e1dba5bd5d891d0504bf1715807b"/><file name="owl.carousel.css" hash="0371b5a2d50e985b09b7d337edc0dc9f"/><file name="owl.carousel.js" hash="a5f96c62d75be144282ef6cc429a6259"/><file name="owl.carousel.min.js" hash="88d0fe722f04973e2888b58a63aa0570"/><file name="owl.custom.js" hash="98dca9e11416fc5c03f47ca4dfe0f19f"/><file name="owl.theme.css" hash="f23cf727e4fcca9a5470658da5e755c9"/><file name="owl.transitions.css" hash="b1bdaeac4065bf67a7d7a06213192964"/></dir><dir name="scss"><file name="_core.scss" hash="db52c960bcd3378d58eb22a1deb5fd97"/><file name="_framework.scss" hash="a4f2996ecc09e5c5481874094e0322af"/><file name="_var.scss" hash="860e6894fb00a52a6f12ed8dcb60ddf4"/><file name="config.rb" hash="5f50b4dc5eefbab9e22abdfb80f4d689"/><dir name="content"><file name="_category.scss" hash="4f19a3deded95481220a8391230a04f6"/><file name="_home.scss" hash="f8d901657af2d5fde2a4d7cf4ac322b7"/></dir><dir name="core"><file name="_common.scss" hash="f6661f594822bfb8be9253219225c48f"/><file name="_form.scss" hash="e23acd534b44001fc950415bfb94e719"/><file name="_reset.scss" hash="c12ba4c9f58f0d11deef4355d7b61837"/><file name="_table.scss" hash="f2f95106bac4129b715908db3429dac2"/></dir><file name="email-inline.scss" hash="91aaacc9b532ffc46942601dfdbc89ac"/><file name="email-non-inline.scss" hash="22e99a847ebf574a8a6cc1c4275a663e"/><dir name="function"><file name="_black.scss" hash="10a15c9594c32fd446665f205c346587"/><file name="_white.scss" hash="370adbb0a300a54d3657a6c8f3cb3f0f"/></dir><dir name="layout"><file name="_footer.scss" hash="f0b89335e5a9843aa11e5f2444f98bee"/><file name="_global.scss" hash="7597c407b247fd35b8a10a4aa0bad0bc"/><file name="_header-account.scss" hash="18c710989834414b6e83034f3fcd4467"/><file name="_header-cart.scss" hash="06c3714f5946089bbca665d3d9df03a5"/><file name="_header-nav.scss" hash="4556c969928ce770560296f90f8e6295"/><file name="_header-search.scss" hash="4ab5a0f1564ab2a6e578bed504547d84"/><file name="_header.scss" hash="b0c83f9f8a26d0a656159bf9b48394ac"/></dir><file name="madisonisland-ie8.scss" hash="9fd2d82963d7502686d68d8fadd2335c"/><file name="madisonisland.scss" hash="bd32ff1a301615e94f0b3c792c851c0f"/><dir name="mixin"><file name="_breakpoint.scss" hash="099fbdebb53398b95e72a4a9b7a5c922"/><file name="_clearfix.scss" hash="870dd179899af929f093a4c3ff8e1920"/><file name="_if-resolution.scss" hash="41adcf5a2909e85d706912b9016e1a91"/><file name="_image-replacement.scss" hash="3b359967ac6cf0c48cf6c8ccb84cd685"/><file name="_loading-overlay.scss" hash="41fba1a35e20c994d93b4ccc6e7d27c9"/><file name="_menu.scss" hash="3c8b05c3324c20d12bccfdb17c0b88cc"/><file name="_not-selectable.scss" hash="9b38058b211d15142d7f2b32bfd764c5"/><file name="_toggle-content.scss" hash="2c60de9636e3fbd8cc3f7a1a28784ceb"/><file name="_triangle.scss" hash="ac527eeddebe2e3194cac464d57b63aa"/><file name="_typography.scss" hash="f7f02f6dc97e7b4ecbfcf92ce365da83"/></dir><dir name="module"><file name="_account-orders.scss" hash="1b6beb4f33c033022a8fa9e6f28b1791"/><file name="_account-reviews.scss" hash="f1e1c0f4a8e0653b6c68e8f0bc79384e"/><file name="_billing-agreements.scss" hash="57d6fc3c654ad016a0afe89713a6871b"/><file name="_captcha.scss" hash="8bf8547aaa8d8da0ab1c680c07acaac6"/><file name="_catalog-compare.scss" hash="0e1e95895b5390b5a79614abe8de2290"/><file name="_catalog-msrp.scss" hash="b6a4594b740ea448286bbab2b9b4a843"/><file name="_catalog-product.scss" hash="843049367cc48e477e8d3ed129c24428"/><file name="_checkout-cart-minicart.scss" hash="d3231cc5262c1ad35ebb77ea4d182c06"/><file name="_checkout-cart.scss" hash="35bd0714777558e4f78869f1ecb0b749"/><file name="_checkout-multi-address.scss" hash="7244f5eb123cd568ebd34e16d678b418"/><file name="_checkout-onepage.scss" hash="5039c5c1f1e7a6940b79f4d867879f1b"/><file name="_checkout-success.scss" hash="4bd8da613410b0132bf51f0c1bc853d1"/><file name="_cms.scss" hash="252c1b8b9d619c1ee70ef84093d51ad4"/><file name="_configurableswatches.scss" hash="03e37df69cbb45ddd594b403052105a3"/><file name="_contacts.scss" hash="a099e06cc8af4a47d81a68edf86c4eb8"/><file name="_cookies.scss" hash="e0414ba86438a143fcfae4528f7c5ecb"/><file name="_customer.scss" hash="bfbf486aff7f479dc62325b7ffce8295"/><file name="_paypal.scss" hash="4f9574601a4c353537f804dcadd1cc30"/><file name="_popular-terms.scss" hash="bd384c2060d205a66391e6810817510e"/><file name="_pricing_conditions.scss" hash="083debd5c24dc628ead4273b8091367d"/><file name="_product-list.scss" hash="7c10241cf70b5ab946b6b5f03b99ac5e"/><file name="_recurring-profiles.scss" hash="c4433e258678efdde7f6ab7f32dd1cfe"/><file name="_review.scss" hash="0b54489535ebaca32f9b7fba5cfcf164"/><file name="_search.scss" hash="2c4825a17f1f7e7391d53d693e674c40"/><file name="_slideshow.scss" hash="979848d085f96297e1a29e85efdf5e22"/><file name="_tags.scss" hash="e4e319c0f67a72d25be24194e791b771"/><file name="_widget.scss" hash="686c133bfac9f0e8b7cb637374c65312"/><file name="_wishlist.scss" hash="0d61ee366c4d8e5959792c73aa0b2458"/></dir><dir name="override"><file name="_plugin.scss" hash="c3665ab4e361971cb6942be205c1a1f0"/></dir><file name="scaffold-forms.scss" hash="72e2fa26d7c462ff2250e1fac316bb0f"/><file name="styles-ie8.scss" hash="301957f28de4fc994e6537d550c74b50"/><file name="styles.scss" hash="7014975439f2675096d7bd9332d9b2cc"/><dir name="vendor"><file name="_normalize.scss" hash="5d5355bfe851734877f4fc680efb7531"/></dir><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="tabscript"><dir name="css"><file name="component - original.css" hash="a0d63777d32e8d9629e6f89bddcc7369"/><file name="component.css" hash="d12d8f9fd050cc528df0eb9a9b3f62af"/></dir><dir name="fonts"><dir name="bpicons"><file name="bpicons.eot" hash="f504862defac56c452dfcb2b2c24c6c0"/><file name="bpicons.svg" hash="1061884daf0d0a08b462aba27e305c02"/><file name="bpicons.ttf" hash="2187bd6c90b679ef52e61f957fe49147"/><file name="bpicons.woff" hash="d5dd0c1ca5fce893f090bebe9d3d9038"/><file name="license.txt" hash="71989a368aa14fa2bee7719a8edaf654"/></dir><dir name="icomoon"><file name="icomoon.eot" hash="950f332d79bd636fbc698e98b887f81d"/><file name="icomoon.svg" hash="297a34b1b836f9e13f5081e566b3acce"/><file name="icomoon.ttf" hash="f298d3cb50c6a729d7d71ba5112964cc"/><file name="icomoon.woff" hash="006e21a20e73844d97b1fea4e497d36c"/><file name=".DS_Store" hash="11d970410ce45a8ba0c2e7ba7acf3dde"/></dir><file name=".DS_Store" hash="e5781847cb76a90f5d2ee09dd2734e88"/></dir><dir name="js"><file name="cbpFWTabs.js" hash="2a943433c19b1407085b61e7502c4ee7"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="settings"><file name="Thumbs.db" hash="2ad102aa0129236a23f8b5a508d83c35"/><file name="ad_1.jpg" hash="9c70f7e704c510477a1407c24fb7021d"/><file name="ad_2.jpg" hash="0ef9e4703824dc17ef6bf7983ae8f5fe"/><file name="adidas.png" hash="c635f92a284c53ba70fe2d6717d9713b"/><file name="balance.png" hash="a6575ef57e2d27c8260e211c5612ba99"/><file name="banner.jpg" hash="5ba56d4fde78638bdef72236558937da"/><file name="diadora.png" hash="0c5710b8f1dada7f8748de8a90e93cc9"/><file name="henrilloyd.png" hash="36da509b1f1b9da325c446f4a003b2b2"/><file name="nike.png" hash="9b4ba5f52fcfb5e7134d16ff52d3d520"/><file name="puma.png" hash="84a0fc2c5259bc91d628a83208a81fa0"/><file name="reebok.png" hash="1eaca5ea35a8e230b0769f55b67e140f"/><file name="service_1.png" hash="198ca47618e21ecfd8bacd383668e72c"/><file name="service_2.png" hash="0e5ab33dc1a48ebdd22eb0fe9d8738fd"/><file name="service_3.png" hash="bc274d3960da4d134471cb6b839ce445"/><file name="supra.png" hash="06ff21126ebe9c528d424f1b7b2e7e9f"/></dir></target></contents>
|
25 |
<compatible/>
|
26 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
27 |
</package>
|
skin/frontend/abserve/shoestore/css/abservemegamenu/custommenu/custommenu.css
CHANGED
@@ -20,10 +20,11 @@ div.menu {
|
|
20 |
div.menu a:link, div.menu a:visited {
|
21 |
display: block;
|
22 |
height: 50px;
|
23 |
-
padding-left: 53px;
|
24 |
padding-right: 53px;
|
25 |
-
|
26 |
-
|
|
|
27 |
}
|
28 |
div.menu a span {
|
29 |
display: block;
|
@@ -181,6 +182,7 @@ div.menu {
|
|
181 |
line-height: 0;
|
182 |
text-transform: uppercase;
|
183 |
border-right: 1px solid #cbcbcb;
|
|
|
184 |
}
|
185 |
a.level1:link, a.level1:visited {
|
186 |
text-transform: none;
|
@@ -230,9 +232,9 @@ a.level2:hover, a.level2.act, a.level2.actParent {
|
|
230 |
margin-left: 0px;
|
231 |
}
|
232 |
/*MOBILE MENU STYLES*/
|
233 |
-
|
234 |
display: inline-block;
|
235 |
-
}
|
236 |
html[xmlns] #menu-button, html[xmlns] .parentMenu {
|
237 |
display: block;
|
238 |
}
|
20 |
div.menu a:link, div.menu a:visited {
|
21 |
display: block;
|
22 |
height: 50px;
|
23 |
+
/* padding-left: 53px;
|
24 |
padding-right: 53px;
|
25 |
+
padding-top: 0;
|
26 |
+
padding-bottom: 0;*/
|
27 |
+
text-align: center;
|
28 |
}
|
29 |
div.menu a span {
|
30 |
display: block;
|
182 |
line-height: 0;
|
183 |
text-transform: uppercase;
|
184 |
border-right: 1px solid #cbcbcb;
|
185 |
+
width: 12.7%;
|
186 |
}
|
187 |
a.level1:link, a.level1:visited {
|
188 |
text-transform: none;
|
232 |
margin-left: 0px;
|
233 |
}
|
234 |
/*MOBILE MENU STYLES*/
|
235 |
+
/*#menu-button, .parentMenu {
|
236 |
display: inline-block;
|
237 |
+
}*/
|
238 |
html[xmlns] #menu-button, html[xmlns] .parentMenu {
|
239 |
display: block;
|
240 |
}
|
skin/frontend/abserve/shoestore/css/animate.css
ADDED
@@ -0,0 +1,3272 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@charset "UTF-8";
|
2 |
+
|
3 |
+
/*!
|
4 |
+
Animate.css - http://daneden.me/animate
|
5 |
+
Licensed under the MIT license - http://opensource.org/licenses/MIT
|
6 |
+
|
7 |
+
Copyright (c) 2015 Daniel Eden
|
8 |
+
*/
|
9 |
+
|
10 |
+
.animated {
|
11 |
+
-webkit-animation-duration: 1s;
|
12 |
+
animation-duration: 1s;
|
13 |
+
-webkit-animation-fill-mode: both;
|
14 |
+
animation-fill-mode: both;
|
15 |
+
}
|
16 |
+
|
17 |
+
.animated.infinite {
|
18 |
+
-webkit-animation-iteration-count: infinite;
|
19 |
+
animation-iteration-count: infinite;
|
20 |
+
}
|
21 |
+
|
22 |
+
.animated.hinge {
|
23 |
+
-webkit-animation-duration: 2s;
|
24 |
+
animation-duration: 2s;
|
25 |
+
}
|
26 |
+
|
27 |
+
.animated.bounceIn,
|
28 |
+
.animated.bounceOut {
|
29 |
+
-webkit-animation-duration: .75s;
|
30 |
+
animation-duration: .75s;
|
31 |
+
}
|
32 |
+
|
33 |
+
.animated.flipOutX,
|
34 |
+
.animated.flipOutY {
|
35 |
+
-webkit-animation-duration: .75s;
|
36 |
+
animation-duration: .75s;
|
37 |
+
}
|
38 |
+
|
39 |
+
@-webkit-keyframes bounce {
|
40 |
+
0%, 20%, 53%, 80%, 100% {
|
41 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
42 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
43 |
+
-webkit-transform: translate3d(0,0,0);
|
44 |
+
transform: translate3d(0,0,0);
|
45 |
+
}
|
46 |
+
|
47 |
+
40%, 43% {
|
48 |
+
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
49 |
+
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
50 |
+
-webkit-transform: translate3d(0, -30px, 0);
|
51 |
+
transform: translate3d(0, -30px, 0);
|
52 |
+
}
|
53 |
+
|
54 |
+
70% {
|
55 |
+
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
56 |
+
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
57 |
+
-webkit-transform: translate3d(0, -15px, 0);
|
58 |
+
transform: translate3d(0, -15px, 0);
|
59 |
+
}
|
60 |
+
|
61 |
+
90% {
|
62 |
+
-webkit-transform: translate3d(0,-4px,0);
|
63 |
+
transform: translate3d(0,-4px,0);
|
64 |
+
}
|
65 |
+
}
|
66 |
+
|
67 |
+
@keyframes bounce {
|
68 |
+
0%, 20%, 53%, 80%, 100% {
|
69 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
70 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
71 |
+
-webkit-transform: translate3d(0,0,0);
|
72 |
+
transform: translate3d(0,0,0);
|
73 |
+
}
|
74 |
+
|
75 |
+
40%, 43% {
|
76 |
+
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
77 |
+
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
78 |
+
-webkit-transform: translate3d(0, -30px, 0);
|
79 |
+
transform: translate3d(0, -30px, 0);
|
80 |
+
}
|
81 |
+
|
82 |
+
70% {
|
83 |
+
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
84 |
+
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
85 |
+
-webkit-transform: translate3d(0, -15px, 0);
|
86 |
+
transform: translate3d(0, -15px, 0);
|
87 |
+
}
|
88 |
+
|
89 |
+
90% {
|
90 |
+
-webkit-transform: translate3d(0,-4px,0);
|
91 |
+
transform: translate3d(0,-4px,0);
|
92 |
+
}
|
93 |
+
}
|
94 |
+
|
95 |
+
.bounce {
|
96 |
+
-webkit-animation-name: bounce;
|
97 |
+
animation-name: bounce;
|
98 |
+
-webkit-transform-origin: center bottom;
|
99 |
+
transform-origin: center bottom;
|
100 |
+
}
|
101 |
+
|
102 |
+
@-webkit-keyframes flash {
|
103 |
+
0%, 50%, 100% {
|
104 |
+
opacity: 1;
|
105 |
+
}
|
106 |
+
|
107 |
+
25%, 75% {
|
108 |
+
opacity: 0;
|
109 |
+
}
|
110 |
+
}
|
111 |
+
|
112 |
+
@keyframes flash {
|
113 |
+
0%, 50%, 100% {
|
114 |
+
opacity: 1;
|
115 |
+
}
|
116 |
+
|
117 |
+
25%, 75% {
|
118 |
+
opacity: 0;
|
119 |
+
}
|
120 |
+
}
|
121 |
+
|
122 |
+
.flash {
|
123 |
+
-webkit-animation-name: flash;
|
124 |
+
animation-name: flash;
|
125 |
+
}
|
126 |
+
|
127 |
+
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
128 |
+
|
129 |
+
@-webkit-keyframes pulse {
|
130 |
+
0% {
|
131 |
+
-webkit-transform: scale3d(1, 1, 1);
|
132 |
+
transform: scale3d(1, 1, 1);
|
133 |
+
}
|
134 |
+
|
135 |
+
50% {
|
136 |
+
-webkit-transform: scale3d(1.05, 1.05, 1.05);
|
137 |
+
transform: scale3d(1.05, 1.05, 1.05);
|
138 |
+
}
|
139 |
+
|
140 |
+
100% {
|
141 |
+
-webkit-transform: scale3d(1, 1, 1);
|
142 |
+
transform: scale3d(1, 1, 1);
|
143 |
+
}
|
144 |
+
}
|
145 |
+
|
146 |
+
@keyframes pulse {
|
147 |
+
0% {
|
148 |
+
-webkit-transform: scale3d(1, 1, 1);
|
149 |
+
transform: scale3d(1, 1, 1);
|
150 |
+
}
|
151 |
+
|
152 |
+
50% {
|
153 |
+
-webkit-transform: scale3d(1.05, 1.05, 1.05);
|
154 |
+
transform: scale3d(1.05, 1.05, 1.05);
|
155 |
+
}
|
156 |
+
|
157 |
+
100% {
|
158 |
+
-webkit-transform: scale3d(1, 1, 1);
|
159 |
+
transform: scale3d(1, 1, 1);
|
160 |
+
}
|
161 |
+
}
|
162 |
+
|
163 |
+
.pulse {
|
164 |
+
-webkit-animation-name: pulse;
|
165 |
+
animation-name: pulse;
|
166 |
+
}
|
167 |
+
|
168 |
+
@-webkit-keyframes rubberBand {
|
169 |
+
0% {
|
170 |
+
-webkit-transform: scale3d(1, 1, 1);
|
171 |
+
transform: scale3d(1, 1, 1);
|
172 |
+
}
|
173 |
+
|
174 |
+
30% {
|
175 |
+
-webkit-transform: scale3d(1.25, 0.75, 1);
|
176 |
+
transform: scale3d(1.25, 0.75, 1);
|
177 |
+
}
|
178 |
+
|
179 |
+
40% {
|
180 |
+
-webkit-transform: scale3d(0.75, 1.25, 1);
|
181 |
+
transform: scale3d(0.75, 1.25, 1);
|
182 |
+
}
|
183 |
+
|
184 |
+
50% {
|
185 |
+
-webkit-transform: scale3d(1.15, 0.85, 1);
|
186 |
+
transform: scale3d(1.15, 0.85, 1);
|
187 |
+
}
|
188 |
+
|
189 |
+
65% {
|
190 |
+
-webkit-transform: scale3d(.95, 1.05, 1);
|
191 |
+
transform: scale3d(.95, 1.05, 1);
|
192 |
+
}
|
193 |
+
|
194 |
+
75% {
|
195 |
+
-webkit-transform: scale3d(1.05, .95, 1);
|
196 |
+
transform: scale3d(1.05, .95, 1);
|
197 |
+
}
|
198 |
+
|
199 |
+
100% {
|
200 |
+
-webkit-transform: scale3d(1, 1, 1);
|
201 |
+
transform: scale3d(1, 1, 1);
|
202 |
+
}
|
203 |
+
}
|
204 |
+
|
205 |
+
@keyframes rubberBand {
|
206 |
+
0% {
|
207 |
+
-webkit-transform: scale3d(1, 1, 1);
|
208 |
+
transform: scale3d(1, 1, 1);
|
209 |
+
}
|
210 |
+
|
211 |
+
30% {
|
212 |
+
-webkit-transform: scale3d(1.25, 0.75, 1);
|
213 |
+
transform: scale3d(1.25, 0.75, 1);
|
214 |
+
}
|
215 |
+
|
216 |
+
40% {
|
217 |
+
-webkit-transform: scale3d(0.75, 1.25, 1);
|
218 |
+
transform: scale3d(0.75, 1.25, 1);
|
219 |
+
}
|
220 |
+
|
221 |
+
50% {
|
222 |
+
-webkit-transform: scale3d(1.15, 0.85, 1);
|
223 |
+
transform: scale3d(1.15, 0.85, 1);
|
224 |
+
}
|
225 |
+
|
226 |
+
65% {
|
227 |
+
-webkit-transform: scale3d(.95, 1.05, 1);
|
228 |
+
transform: scale3d(.95, 1.05, 1);
|
229 |
+
}
|
230 |
+
|
231 |
+
75% {
|
232 |
+
-webkit-transform: scale3d(1.05, .95, 1);
|
233 |
+
transform: scale3d(1.05, .95, 1);
|
234 |
+
}
|
235 |
+
|
236 |
+
100% {
|
237 |
+
-webkit-transform: scale3d(1, 1, 1);
|
238 |
+
transform: scale3d(1, 1, 1);
|
239 |
+
}
|
240 |
+
}
|
241 |
+
|
242 |
+
.rubberBand {
|
243 |
+
-webkit-animation-name: rubberBand;
|
244 |
+
animation-name: rubberBand;
|
245 |
+
}
|
246 |
+
|
247 |
+
@-webkit-keyframes shake {
|
248 |
+
0%, 100% {
|
249 |
+
-webkit-transform: translate3d(0, 0, 0);
|
250 |
+
transform: translate3d(0, 0, 0);
|
251 |
+
}
|
252 |
+
|
253 |
+
10%, 30%, 50%, 70%, 90% {
|
254 |
+
-webkit-transform: translate3d(-10px, 0, 0);
|
255 |
+
transform: translate3d(-10px, 0, 0);
|
256 |
+
}
|
257 |
+
|
258 |
+
20%, 40%, 60%, 80% {
|
259 |
+
-webkit-transform: translate3d(10px, 0, 0);
|
260 |
+
transform: translate3d(10px, 0, 0);
|
261 |
+
}
|
262 |
+
}
|
263 |
+
|
264 |
+
@keyframes shake {
|
265 |
+
0%, 100% {
|
266 |
+
-webkit-transform: translate3d(0, 0, 0);
|
267 |
+
transform: translate3d(0, 0, 0);
|
268 |
+
}
|
269 |
+
|
270 |
+
10%, 30%, 50%, 70%, 90% {
|
271 |
+
-webkit-transform: translate3d(-10px, 0, 0);
|
272 |
+
transform: translate3d(-10px, 0, 0);
|
273 |
+
}
|
274 |
+
|
275 |
+
20%, 40%, 60%, 80% {
|
276 |
+
-webkit-transform: translate3d(10px, 0, 0);
|
277 |
+
transform: translate3d(10px, 0, 0);
|
278 |
+
}
|
279 |
+
}
|
280 |
+
|
281 |
+
.shake {
|
282 |
+
-webkit-animation-name: shake;
|
283 |
+
animation-name: shake;
|
284 |
+
}
|
285 |
+
|
286 |
+
@-webkit-keyframes swing {
|
287 |
+
20% {
|
288 |
+
-webkit-transform: rotate3d(0, 0, 1, 15deg);
|
289 |
+
transform: rotate3d(0, 0, 1, 15deg);
|
290 |
+
}
|
291 |
+
|
292 |
+
40% {
|
293 |
+
-webkit-transform: rotate3d(0, 0, 1, -10deg);
|
294 |
+
transform: rotate3d(0, 0, 1, -10deg);
|
295 |
+
}
|
296 |
+
|
297 |
+
60% {
|
298 |
+
-webkit-transform: rotate3d(0, 0, 1, 5deg);
|
299 |
+
transform: rotate3d(0, 0, 1, 5deg);
|
300 |
+
}
|
301 |
+
|
302 |
+
80% {
|
303 |
+
-webkit-transform: rotate3d(0, 0, 1, -5deg);
|
304 |
+
transform: rotate3d(0, 0, 1, -5deg);
|
305 |
+
}
|
306 |
+
|
307 |
+
100% {
|
308 |
+
-webkit-transform: rotate3d(0, 0, 1, 0deg);
|
309 |
+
transform: rotate3d(0, 0, 1, 0deg);
|
310 |
+
}
|
311 |
+
}
|
312 |
+
|
313 |
+
@keyframes swing {
|
314 |
+
20% {
|
315 |
+
-webkit-transform: rotate3d(0, 0, 1, 15deg);
|
316 |
+
transform: rotate3d(0, 0, 1, 15deg);
|
317 |
+
}
|
318 |
+
|
319 |
+
40% {
|
320 |
+
-webkit-transform: rotate3d(0, 0, 1, -10deg);
|
321 |
+
transform: rotate3d(0, 0, 1, -10deg);
|
322 |
+
}
|
323 |
+
|
324 |
+
60% {
|
325 |
+
-webkit-transform: rotate3d(0, 0, 1, 5deg);
|
326 |
+
transform: rotate3d(0, 0, 1, 5deg);
|
327 |
+
}
|
328 |
+
|
329 |
+
80% {
|
330 |
+
-webkit-transform: rotate3d(0, 0, 1, -5deg);
|
331 |
+
transform: rotate3d(0, 0, 1, -5deg);
|
332 |
+
}
|
333 |
+
|
334 |
+
100% {
|
335 |
+
-webkit-transform: rotate3d(0, 0, 1, 0deg);
|
336 |
+
transform: rotate3d(0, 0, 1, 0deg);
|
337 |
+
}
|
338 |
+
}
|
339 |
+
|
340 |
+
.swing {
|
341 |
+
-webkit-transform-origin: top center;
|
342 |
+
transform-origin: top center;
|
343 |
+
-webkit-animation-name: swing;
|
344 |
+
animation-name: swing;
|
345 |
+
}
|
346 |
+
|
347 |
+
@-webkit-keyframes tada {
|
348 |
+
0% {
|
349 |
+
-webkit-transform: scale3d(1, 1, 1);
|
350 |
+
transform: scale3d(1, 1, 1);
|
351 |
+
}
|
352 |
+
|
353 |
+
10%, 20% {
|
354 |
+
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
|
355 |
+
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
|
356 |
+
}
|
357 |
+
|
358 |
+
30%, 50%, 70%, 90% {
|
359 |
+
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
|
360 |
+
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
|
361 |
+
}
|
362 |
+
|
363 |
+
40%, 60%, 80% {
|
364 |
+
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
|
365 |
+
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
|
366 |
+
}
|
367 |
+
|
368 |
+
100% {
|
369 |
+
-webkit-transform: scale3d(1, 1, 1);
|
370 |
+
transform: scale3d(1, 1, 1);
|
371 |
+
}
|
372 |
+
}
|
373 |
+
|
374 |
+
@keyframes tada {
|
375 |
+
0% {
|
376 |
+
-webkit-transform: scale3d(1, 1, 1);
|
377 |
+
transform: scale3d(1, 1, 1);
|
378 |
+
}
|
379 |
+
|
380 |
+
10%, 20% {
|
381 |
+
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
|
382 |
+
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
|
383 |
+
}
|
384 |
+
|
385 |
+
30%, 50%, 70%, 90% {
|
386 |
+
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
|
387 |
+
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
|
388 |
+
}
|
389 |
+
|
390 |
+
40%, 60%, 80% {
|
391 |
+
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
|
392 |
+
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
|
393 |
+
}
|
394 |
+
|
395 |
+
100% {
|
396 |
+
-webkit-transform: scale3d(1, 1, 1);
|
397 |
+
transform: scale3d(1, 1, 1);
|
398 |
+
}
|
399 |
+
}
|
400 |
+
|
401 |
+
.tada {
|
402 |
+
-webkit-animation-name: tada;
|
403 |
+
animation-name: tada;
|
404 |
+
}
|
405 |
+
|
406 |
+
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
407 |
+
|
408 |
+
@-webkit-keyframes wobble {
|
409 |
+
0% {
|
410 |
+
-webkit-transform: none;
|
411 |
+
transform: none;
|
412 |
+
}
|
413 |
+
|
414 |
+
15% {
|
415 |
+
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
|
416 |
+
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
|
417 |
+
}
|
418 |
+
|
419 |
+
30% {
|
420 |
+
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
|
421 |
+
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
|
422 |
+
}
|
423 |
+
|
424 |
+
45% {
|
425 |
+
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
|
426 |
+
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
|
427 |
+
}
|
428 |
+
|
429 |
+
60% {
|
430 |
+
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
|
431 |
+
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
|
432 |
+
}
|
433 |
+
|
434 |
+
75% {
|
435 |
+
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
|
436 |
+
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
|
437 |
+
}
|
438 |
+
|
439 |
+
100% {
|
440 |
+
-webkit-transform: none;
|
441 |
+
transform: none;
|
442 |
+
}
|
443 |
+
}
|
444 |
+
|
445 |
+
@keyframes wobble {
|
446 |
+
0% {
|
447 |
+
-webkit-transform: none;
|
448 |
+
transform: none;
|
449 |
+
}
|
450 |
+
|
451 |
+
15% {
|
452 |
+
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
|
453 |
+
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
|
454 |
+
}
|
455 |
+
|
456 |
+
30% {
|
457 |
+
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
|
458 |
+
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
|
459 |
+
}
|
460 |
+
|
461 |
+
45% {
|
462 |
+
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
|
463 |
+
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
|
464 |
+
}
|
465 |
+
|
466 |
+
60% {
|
467 |
+
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
|
468 |
+
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
|
469 |
+
}
|
470 |
+
|
471 |
+
75% {
|
472 |
+
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
|
473 |
+
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
|
474 |
+
}
|
475 |
+
|
476 |
+
100% {
|
477 |
+
-webkit-transform: none;
|
478 |
+
transform: none;
|
479 |
+
}
|
480 |
+
}
|
481 |
+
|
482 |
+
.wobble {
|
483 |
+
-webkit-animation-name: wobble;
|
484 |
+
animation-name: wobble;
|
485 |
+
}
|
486 |
+
|
487 |
+
@-webkit-keyframes jello {
|
488 |
+
11.1% {
|
489 |
+
-webkit-transform: none;
|
490 |
+
transform: none
|
491 |
+
}
|
492 |
+
|
493 |
+
22.2% {
|
494 |
+
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
|
495 |
+
transform: skewX(-12.5deg) skewY(-12.5deg)
|
496 |
+
}
|
497 |
+
33.3% {
|
498 |
+
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
|
499 |
+
transform: skewX(6.25deg) skewY(6.25deg)
|
500 |
+
}
|
501 |
+
44.4% {
|
502 |
+
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
|
503 |
+
transform: skewX(-3.125deg) skewY(-3.125deg)
|
504 |
+
}
|
505 |
+
55.5% {
|
506 |
+
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
|
507 |
+
transform: skewX(1.5625deg) skewY(1.5625deg)
|
508 |
+
}
|
509 |
+
66.6% {
|
510 |
+
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
|
511 |
+
transform: skewX(-0.78125deg) skewY(-0.78125deg)
|
512 |
+
}
|
513 |
+
77.7% {
|
514 |
+
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
|
515 |
+
transform: skewX(0.390625deg) skewY(0.390625deg)
|
516 |
+
}
|
517 |
+
88.8% {
|
518 |
+
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
|
519 |
+
transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
|
520 |
+
}
|
521 |
+
100% {
|
522 |
+
-webkit-transform: none;
|
523 |
+
transform: none
|
524 |
+
}
|
525 |
+
}
|
526 |
+
|
527 |
+
@keyframes jello {
|
528 |
+
11.1% {
|
529 |
+
-webkit-transform: none;
|
530 |
+
transform: none
|
531 |
+
}
|
532 |
+
|
533 |
+
22.2% {
|
534 |
+
|
535 |
+
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
|
536 |
+
transform: skewX(-12.5deg) skewY(-12.5deg)
|
537 |
+
}
|
538 |
+
33.3% {
|
539 |
+
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
|
540 |
+
transform: skewX(6.25deg) skewY(6.25deg)
|
541 |
+
}
|
542 |
+
44.4% {
|
543 |
+
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
|
544 |
+
transform: skewX(-3.125deg) skewY(-3.125deg)
|
545 |
+
}
|
546 |
+
55.5% {
|
547 |
+
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
|
548 |
+
transform: skewX(1.5625deg) skewY(1.5625deg)
|
549 |
+
}
|
550 |
+
66.6% {
|
551 |
+
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
|
552 |
+
transform: skewX(-0.78125deg) skewY(-0.78125deg)
|
553 |
+
}
|
554 |
+
77.7% {
|
555 |
+
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
|
556 |
+
transform: skewX(0.390625deg) skewY(0.390625deg)
|
557 |
+
}
|
558 |
+
88.8% {
|
559 |
+
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
|
560 |
+
transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
|
561 |
+
}
|
562 |
+
100% {
|
563 |
+
-webkit-transform: none;
|
564 |
+
transform: none
|
565 |
+
}
|
566 |
+
}
|
567 |
+
|
568 |
+
|
569 |
+
|
570 |
+
.jello{
|
571 |
+
-webkit-animation-name:jello;
|
572 |
+
animation-name:jello;
|
573 |
+
-webkit-transform-origin: center;
|
574 |
+
|
575 |
+
transform-origin: center
|
576 |
+
}
|
577 |
+
|
578 |
+
@-webkit-keyframes bounceIn {
|
579 |
+
0%, 20%, 40%, 60%, 80%, 100% {
|
580 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
581 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
582 |
+
}
|
583 |
+
|
584 |
+
0% {
|
585 |
+
opacity: 0;
|
586 |
+
-webkit-transform: scale3d(.3, .3, .3);
|
587 |
+
transform: scale3d(.3, .3, .3);
|
588 |
+
}
|
589 |
+
|
590 |
+
20% {
|
591 |
+
-webkit-transform: scale3d(1.1, 1.1, 1.1);
|
592 |
+
transform: scale3d(1.1, 1.1, 1.1);
|
593 |
+
}
|
594 |
+
|
595 |
+
40% {
|
596 |
+
-webkit-transform: scale3d(.9, .9, .9);
|
597 |
+
transform: scale3d(.9, .9, .9);
|
598 |
+
}
|
599 |
+
|
600 |
+
60% {
|
601 |
+
opacity: 1;
|
602 |
+
-webkit-transform: scale3d(1.03, 1.03, 1.03);
|
603 |
+
transform: scale3d(1.03, 1.03, 1.03);
|
604 |
+
}
|
605 |
+
|
606 |
+
80% {
|
607 |
+
-webkit-transform: scale3d(.97, .97, .97);
|
608 |
+
transform: scale3d(.97, .97, .97);
|
609 |
+
}
|
610 |
+
|
611 |
+
100% {
|
612 |
+
opacity: 1;
|
613 |
+
-webkit-transform: scale3d(1, 1, 1);
|
614 |
+
transform: scale3d(1, 1, 1);
|
615 |
+
}
|
616 |
+
}
|
617 |
+
|
618 |
+
@keyframes bounceIn {
|
619 |
+
0%, 20%, 40%, 60%, 80%, 100% {
|
620 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
621 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
622 |
+
}
|
623 |
+
|
624 |
+
0% {
|
625 |
+
opacity: 0;
|
626 |
+
-webkit-transform: scale3d(.3, .3, .3);
|
627 |
+
transform: scale3d(.3, .3, .3);
|
628 |
+
}
|
629 |
+
|
630 |
+
20% {
|
631 |
+
-webkit-transform: scale3d(1.1, 1.1, 1.1);
|
632 |
+
transform: scale3d(1.1, 1.1, 1.1);
|
633 |
+
}
|
634 |
+
|
635 |
+
40% {
|
636 |
+
-webkit-transform: scale3d(.9, .9, .9);
|
637 |
+
transform: scale3d(.9, .9, .9);
|
638 |
+
}
|
639 |
+
|
640 |
+
60% {
|
641 |
+
opacity: 1;
|
642 |
+
-webkit-transform: scale3d(1.03, 1.03, 1.03);
|
643 |
+
transform: scale3d(1.03, 1.03, 1.03);
|
644 |
+
}
|
645 |
+
|
646 |
+
80% {
|
647 |
+
-webkit-transform: scale3d(.97, .97, .97);
|
648 |
+
transform: scale3d(.97, .97, .97);
|
649 |
+
}
|
650 |
+
|
651 |
+
100% {
|
652 |
+
opacity: 1;
|
653 |
+
-webkit-transform: scale3d(1, 1, 1);
|
654 |
+
transform: scale3d(1, 1, 1);
|
655 |
+
}
|
656 |
+
}
|
657 |
+
|
658 |
+
.bounceIn {
|
659 |
+
-webkit-animation-name: bounceIn;
|
660 |
+
animation-name: bounceIn;
|
661 |
+
}
|
662 |
+
|
663 |
+
@-webkit-keyframes bounceInDown {
|
664 |
+
0%, 60%, 75%, 90%, 100% {
|
665 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
666 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
667 |
+
}
|
668 |
+
|
669 |
+
0% {
|
670 |
+
opacity: 0;
|
671 |
+
-webkit-transform: translate3d(0, -3000px, 0);
|
672 |
+
transform: translate3d(0, -3000px, 0);
|
673 |
+
}
|
674 |
+
|
675 |
+
60% {
|
676 |
+
opacity: 1;
|
677 |
+
-webkit-transform: translate3d(0, 25px, 0);
|
678 |
+
transform: translate3d(0, 25px, 0);
|
679 |
+
}
|
680 |
+
|
681 |
+
75% {
|
682 |
+
-webkit-transform: translate3d(0, -10px, 0);
|
683 |
+
transform: translate3d(0, -10px, 0);
|
684 |
+
}
|
685 |
+
|
686 |
+
90% {
|
687 |
+
-webkit-transform: translate3d(0, 5px, 0);
|
688 |
+
transform: translate3d(0, 5px, 0);
|
689 |
+
}
|
690 |
+
|
691 |
+
100% {
|
692 |
+
-webkit-transform: none;
|
693 |
+
transform: none;
|
694 |
+
}
|
695 |
+
}
|
696 |
+
|
697 |
+
@keyframes bounceInDown {
|
698 |
+
0%, 60%, 75%, 90%, 100% {
|
699 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
700 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
701 |
+
}
|
702 |
+
|
703 |
+
0% {
|
704 |
+
opacity: 0;
|
705 |
+
-webkit-transform: translate3d(0, -3000px, 0);
|
706 |
+
transform: translate3d(0, -3000px, 0);
|
707 |
+
}
|
708 |
+
|
709 |
+
60% {
|
710 |
+
opacity: 1;
|
711 |
+
-webkit-transform: translate3d(0, 25px, 0);
|
712 |
+
transform: translate3d(0, 25px, 0);
|
713 |
+
}
|
714 |
+
|
715 |
+
75% {
|
716 |
+
-webkit-transform: translate3d(0, -10px, 0);
|
717 |
+
transform: translate3d(0, -10px, 0);
|
718 |
+
}
|
719 |
+
|
720 |
+
90% {
|
721 |
+
-webkit-transform: translate3d(0, 5px, 0);
|
722 |
+
transform: translate3d(0, 5px, 0);
|
723 |
+
}
|
724 |
+
|
725 |
+
100% {
|
726 |
+
-webkit-transform: none;
|
727 |
+
transform: none;
|
728 |
+
}
|
729 |
+
}
|
730 |
+
|
731 |
+
.bounceInDown {
|
732 |
+
-webkit-animation-name: bounceInDown;
|
733 |
+
animation-name: bounceInDown;
|
734 |
+
}
|
735 |
+
|
736 |
+
@-webkit-keyframes bounceInLeft {
|
737 |
+
0%, 60%, 75%, 90%, 100% {
|
738 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
739 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
740 |
+
}
|
741 |
+
|
742 |
+
0% {
|
743 |
+
opacity: 0;
|
744 |
+
-webkit-transform: translate3d(-3000px, 0, 0);
|
745 |
+
transform: translate3d(-3000px, 0, 0);
|
746 |
+
}
|
747 |
+
|
748 |
+
60% {
|
749 |
+
opacity: 1;
|
750 |
+
-webkit-transform: translate3d(25px, 0, 0);
|
751 |
+
transform: translate3d(25px, 0, 0);
|
752 |
+
}
|
753 |
+
|
754 |
+
75% {
|
755 |
+
-webkit-transform: translate3d(-10px, 0, 0);
|
756 |
+
transform: translate3d(-10px, 0, 0);
|
757 |
+
}
|
758 |
+
|
759 |
+
90% {
|
760 |
+
-webkit-transform: translate3d(5px, 0, 0);
|
761 |
+
transform: translate3d(5px, 0, 0);
|
762 |
+
}
|
763 |
+
|
764 |
+
100% {
|
765 |
+
-webkit-transform: none;
|
766 |
+
transform: none;
|
767 |
+
}
|
768 |
+
}
|
769 |
+
|
770 |
+
@keyframes bounceInLeft {
|
771 |
+
0%, 60%, 75%, 90%, 100% {
|
772 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
773 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
774 |
+
}
|
775 |
+
|
776 |
+
0% {
|
777 |
+
opacity: 0;
|
778 |
+
-webkit-transform: translate3d(-3000px, 0, 0);
|
779 |
+
transform: translate3d(-3000px, 0, 0);
|
780 |
+
}
|
781 |
+
|
782 |
+
60% {
|
783 |
+
opacity: 1;
|
784 |
+
-webkit-transform: translate3d(25px, 0, 0);
|
785 |
+
transform: translate3d(25px, 0, 0);
|
786 |
+
}
|
787 |
+
|
788 |
+
75% {
|
789 |
+
-webkit-transform: translate3d(-10px, 0, 0);
|
790 |
+
transform: translate3d(-10px, 0, 0);
|
791 |
+
}
|
792 |
+
|
793 |
+
90% {
|
794 |
+
-webkit-transform: translate3d(5px, 0, 0);
|
795 |
+
transform: translate3d(5px, 0, 0);
|
796 |
+
}
|
797 |
+
|
798 |
+
100% {
|
799 |
+
-webkit-transform: none;
|
800 |
+
transform: none;
|
801 |
+
}
|
802 |
+
}
|
803 |
+
|
804 |
+
.bounceInLeft {
|
805 |
+
-webkit-animation-name: bounceInLeft;
|
806 |
+
animation-name: bounceInLeft;
|
807 |
+
}
|
808 |
+
|
809 |
+
@-webkit-keyframes bounceInRight {
|
810 |
+
0%, 60%, 75%, 90%, 100% {
|
811 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
812 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
813 |
+
}
|
814 |
+
|
815 |
+
0% {
|
816 |
+
opacity: 0;
|
817 |
+
-webkit-transform: translate3d(3000px, 0, 0);
|
818 |
+
transform: translate3d(3000px, 0, 0);
|
819 |
+
}
|
820 |
+
|
821 |
+
60% {
|
822 |
+
opacity: 1;
|
823 |
+
-webkit-transform: translate3d(-25px, 0, 0);
|
824 |
+
transform: translate3d(-25px, 0, 0);
|
825 |
+
}
|
826 |
+
|
827 |
+
75% {
|
828 |
+
-webkit-transform: translate3d(10px, 0, 0);
|
829 |
+
transform: translate3d(10px, 0, 0);
|
830 |
+
}
|
831 |
+
|
832 |
+
90% {
|
833 |
+
-webkit-transform: translate3d(-5px, 0, 0);
|
834 |
+
transform: translate3d(-5px, 0, 0);
|
835 |
+
}
|
836 |
+
|
837 |
+
100% {
|
838 |
+
-webkit-transform: none;
|
839 |
+
transform: none;
|
840 |
+
}
|
841 |
+
}
|
842 |
+
|
843 |
+
@keyframes bounceInRight {
|
844 |
+
0%, 60%, 75%, 90%, 100% {
|
845 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
846 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
847 |
+
}
|
848 |
+
|
849 |
+
0% {
|
850 |
+
opacity: 0;
|
851 |
+
-webkit-transform: translate3d(3000px, 0, 0);
|
852 |
+
transform: translate3d(3000px, 0, 0);
|
853 |
+
}
|
854 |
+
|
855 |
+
60% {
|
856 |
+
opacity: 1;
|
857 |
+
-webkit-transform: translate3d(-25px, 0, 0);
|
858 |
+
transform: translate3d(-25px, 0, 0);
|
859 |
+
}
|
860 |
+
|
861 |
+
75% {
|
862 |
+
-webkit-transform: translate3d(10px, 0, 0);
|
863 |
+
transform: translate3d(10px, 0, 0);
|
864 |
+
}
|
865 |
+
|
866 |
+
90% {
|
867 |
+
-webkit-transform: translate3d(-5px, 0, 0);
|
868 |
+
transform: translate3d(-5px, 0, 0);
|
869 |
+
}
|
870 |
+
|
871 |
+
100% {
|
872 |
+
-webkit-transform: none;
|
873 |
+
transform: none;
|
874 |
+
}
|
875 |
+
}
|
876 |
+
|
877 |
+
.bounceInRight {
|
878 |
+
-webkit-animation-name: bounceInRight;
|
879 |
+
animation-name: bounceInRight;
|
880 |
+
}
|
881 |
+
|
882 |
+
@-webkit-keyframes bounceInUp {
|
883 |
+
0%, 60%, 75%, 90%, 100% {
|
884 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
885 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
886 |
+
}
|
887 |
+
|
888 |
+
0% {
|
889 |
+
opacity: 0;
|
890 |
+
-webkit-transform: translate3d(0, 3000px, 0);
|
891 |
+
transform: translate3d(0, 3000px, 0);
|
892 |
+
}
|
893 |
+
|
894 |
+
60% {
|
895 |
+
opacity: 1;
|
896 |
+
-webkit-transform: translate3d(0, -20px, 0);
|
897 |
+
transform: translate3d(0, -20px, 0);
|
898 |
+
}
|
899 |
+
|
900 |
+
75% {
|
901 |
+
-webkit-transform: translate3d(0, 10px, 0);
|
902 |
+
transform: translate3d(0, 10px, 0);
|
903 |
+
}
|
904 |
+
|
905 |
+
90% {
|
906 |
+
-webkit-transform: translate3d(0, -5px, 0);
|
907 |
+
transform: translate3d(0, -5px, 0);
|
908 |
+
}
|
909 |
+
|
910 |
+
100% {
|
911 |
+
-webkit-transform: translate3d(0, 0, 0);
|
912 |
+
transform: translate3d(0, 0, 0);
|
913 |
+
}
|
914 |
+
}
|
915 |
+
|
916 |
+
@keyframes bounceInUp {
|
917 |
+
0%, 60%, 75%, 90%, 100% {
|
918 |
+
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
919 |
+
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
920 |
+
}
|
921 |
+
|
922 |
+
0% {
|
923 |
+
opacity: 0;
|
924 |
+
-webkit-transform: translate3d(0, 3000px, 0);
|
925 |
+
transform: translate3d(0, 3000px, 0);
|
926 |
+
}
|
927 |
+
|
928 |
+
60% {
|
929 |
+
opacity: 1;
|
930 |
+
-webkit-transform: translate3d(0, -20px, 0);
|
931 |
+
transform: translate3d(0, -20px, 0);
|
932 |
+
}
|
933 |
+
|
934 |
+
75% {
|
935 |
+
-webkit-transform: translate3d(0, 10px, 0);
|
936 |
+
transform: translate3d(0, 10px, 0);
|
937 |
+
}
|
938 |
+
|
939 |
+
90% {
|
940 |
+
-webkit-transform: translate3d(0, -5px, 0);
|
941 |
+
transform: translate3d(0, -5px, 0);
|
942 |
+
}
|
943 |
+
|
944 |
+
100% {
|
945 |
+
-webkit-transform: translate3d(0, 0, 0);
|
946 |
+
transform: translate3d(0, 0, 0);
|
947 |
+
}
|
948 |
+
}
|
949 |
+
|
950 |
+
.bounceInUp {
|
951 |
+
-webkit-animation-name: bounceInUp;
|
952 |
+
animation-name: bounceInUp;
|
953 |
+
}
|
954 |
+
|
955 |
+
@-webkit-keyframes bounceOut {
|
956 |
+
20% {
|
957 |
+
-webkit-transform: scale3d(.9, .9, .9);
|
958 |
+
transform: scale3d(.9, .9, .9);
|
959 |
+
}
|
960 |
+
|
961 |
+
50%, 55% {
|
962 |
+
opacity: 1;
|
963 |
+
-webkit-transform: scale3d(1.1, 1.1, 1.1);
|
964 |
+
transform: scale3d(1.1, 1.1, 1.1);
|
965 |
+
}
|
966 |
+
|
967 |
+
100% {
|
968 |
+
opacity: 0;
|
969 |
+
-webkit-transform: scale3d(.3, .3, .3);
|
970 |
+
transform: scale3d(.3, .3, .3);
|
971 |
+
}
|
972 |
+
}
|
973 |
+
|
974 |
+
@keyframes bounceOut {
|
975 |
+
20% {
|
976 |
+
-webkit-transform: scale3d(.9, .9, .9);
|
977 |
+
transform: scale3d(.9, .9, .9);
|
978 |
+
}
|
979 |
+
|
980 |
+
50%, 55% {
|
981 |
+
opacity: 1;
|
982 |
+
-webkit-transform: scale3d(1.1, 1.1, 1.1);
|
983 |
+
transform: scale3d(1.1, 1.1, 1.1);
|
984 |
+
}
|
985 |
+
|
986 |
+
100% {
|
987 |
+
opacity: 0;
|
988 |
+
-webkit-transform: scale3d(.3, .3, .3);
|
989 |
+
transform: scale3d(.3, .3, .3);
|
990 |
+
}
|
991 |
+
}
|
992 |
+
|
993 |
+
.bounceOut {
|
994 |
+
-webkit-animation-name: bounceOut;
|
995 |
+
animation-name: bounceOut;
|
996 |
+
}
|
997 |
+
|
998 |
+
@-webkit-keyframes bounceOutDown {
|
999 |
+
20% {
|
1000 |
+
-webkit-transform: translate3d(0, 10px, 0);
|
1001 |
+
transform: translate3d(0, 10px, 0);
|
1002 |
+
}
|
1003 |
+
|
1004 |
+
40%, 45% {
|
1005 |
+
opacity: 1;
|
1006 |
+
-webkit-transform: translate3d(0, -20px, 0);
|
1007 |
+
transform: translate3d(0, -20px, 0);
|
1008 |
+
}
|
1009 |
+
|
1010 |
+
100% {
|
1011 |
+
opacity: 0;
|
1012 |
+
-webkit-transform: translate3d(0, 2000px, 0);
|
1013 |
+
transform: translate3d(0, 2000px, 0);
|
1014 |
+
}
|
1015 |
+
}
|
1016 |
+
|
1017 |
+
@keyframes bounceOutDown {
|
1018 |
+
20% {
|
1019 |
+
-webkit-transform: translate3d(0, 10px, 0);
|
1020 |
+
transform: translate3d(0, 10px, 0);
|
1021 |
+
}
|
1022 |
+
|
1023 |
+
40%, 45% {
|
1024 |
+
opacity: 1;
|
1025 |
+
-webkit-transform: translate3d(0, -20px, 0);
|
1026 |
+
transform: translate3d(0, -20px, 0);
|
1027 |
+
}
|
1028 |
+
|
1029 |
+
100% {
|
1030 |
+
opacity: 0;
|
1031 |
+
-webkit-transform: translate3d(0, 2000px, 0);
|
1032 |
+
transform: translate3d(0, 2000px, 0);
|
1033 |
+
}
|
1034 |
+
}
|
1035 |
+
|
1036 |
+
.bounceOutDown {
|
1037 |
+
-webkit-animation-name: bounceOutDown;
|
1038 |
+
animation-name: bounceOutDown;
|
1039 |
+
}
|
1040 |
+
|
1041 |
+
@-webkit-keyframes bounceOutLeft {
|
1042 |
+
20% {
|
1043 |
+
opacity: 1;
|
1044 |
+
-webkit-transform: translate3d(20px, 0, 0);
|
1045 |
+
transform: translate3d(20px, 0, 0);
|
1046 |
+
}
|
1047 |
+
|
1048 |
+
100% {
|
1049 |
+
opacity: 0;
|
1050 |
+
-webkit-transform: translate3d(-2000px, 0, 0);
|
1051 |
+
transform: translate3d(-2000px, 0, 0);
|
1052 |
+
}
|
1053 |
+
}
|
1054 |
+
|
1055 |
+
@keyframes bounceOutLeft {
|
1056 |
+
20% {
|
1057 |
+
opacity: 1;
|
1058 |
+
-webkit-transform: translate3d(20px, 0, 0);
|
1059 |
+
transform: translate3d(20px, 0, 0);
|
1060 |
+
}
|
1061 |
+
|
1062 |
+
100% {
|
1063 |
+
opacity: 0;
|
1064 |
+
-webkit-transform: translate3d(-2000px, 0, 0);
|
1065 |
+
transform: translate3d(-2000px, 0, 0);
|
1066 |
+
}
|
1067 |
+
}
|
1068 |
+
|
1069 |
+
.bounceOutLeft {
|
1070 |
+
-webkit-animation-name: bounceOutLeft;
|
1071 |
+
animation-name: bounceOutLeft;
|
1072 |
+
}
|
1073 |
+
|
1074 |
+
@-webkit-keyframes bounceOutRight {
|
1075 |
+
20% {
|
1076 |
+
opacity: 1;
|
1077 |
+
-webkit-transform: translate3d(-20px, 0, 0);
|
1078 |
+
transform: translate3d(-20px, 0, 0);
|
1079 |
+
}
|
1080 |
+
|
1081 |
+
100% {
|
1082 |
+
opacity: 0;
|
1083 |
+
-webkit-transform: translate3d(2000px, 0, 0);
|
1084 |
+
transform: translate3d(2000px, 0, 0);
|
1085 |
+
}
|
1086 |
+
}
|
1087 |
+
|
1088 |
+
@keyframes bounceOutRight {
|
1089 |
+
20% {
|
1090 |
+
opacity: 1;
|
1091 |
+
-webkit-transform: translate3d(-20px, 0, 0);
|
1092 |
+
transform: translate3d(-20px, 0, 0);
|
1093 |
+
}
|
1094 |
+
|
1095 |
+
100% {
|
1096 |
+
opacity: 0;
|
1097 |
+
-webkit-transform: translate3d(2000px, 0, 0);
|
1098 |
+
transform: translate3d(2000px, 0, 0);
|
1099 |
+
}
|
1100 |
+
}
|
1101 |
+
|
1102 |
+
.bounceOutRight {
|
1103 |
+
-webkit-animation-name: bounceOutRight;
|
1104 |
+
animation-name: bounceOutRight;
|
1105 |
+
}
|
1106 |
+
|
1107 |
+
@-webkit-keyframes bounceOutUp {
|
1108 |
+
20% {
|
1109 |
+
-webkit-transform: translate3d(0, -10px, 0);
|
1110 |
+
transform: translate3d(0, -10px, 0);
|
1111 |
+
}
|
1112 |
+
|
1113 |
+
40%, 45% {
|
1114 |
+
opacity: 1;
|
1115 |
+
-webkit-transform: translate3d(0, 20px, 0);
|
1116 |
+
transform: translate3d(0, 20px, 0);
|
1117 |
+
}
|
1118 |
+
|
1119 |
+
100% {
|
1120 |
+
opacity: 0;
|
1121 |
+
-webkit-transform: translate3d(0, -2000px, 0);
|
1122 |
+
transform: translate3d(0, -2000px, 0);
|
1123 |
+
}
|
1124 |
+
}
|
1125 |
+
|
1126 |
+
@keyframes bounceOutUp {
|
1127 |
+
20% {
|
1128 |
+
-webkit-transform: translate3d(0, -10px, 0);
|
1129 |
+
transform: translate3d(0, -10px, 0);
|
1130 |
+
}
|
1131 |
+
|
1132 |
+
40%, 45% {
|
1133 |
+
opacity: 1;
|
1134 |
+
-webkit-transform: translate3d(0, 20px, 0);
|
1135 |
+
transform: translate3d(0, 20px, 0);
|
1136 |
+
}
|
1137 |
+
|
1138 |
+
100% {
|
1139 |
+
opacity: 0;
|
1140 |
+
-webkit-transform: translate3d(0, -2000px, 0);
|
1141 |
+
transform: translate3d(0, -2000px, 0);
|
1142 |
+
}
|
1143 |
+
}
|
1144 |
+
|
1145 |
+
.bounceOutUp {
|
1146 |
+
-webkit-animation-name: bounceOutUp;
|
1147 |
+
animation-name: bounceOutUp;
|
1148 |
+
}
|
1149 |
+
|
1150 |
+
@-webkit-keyframes fadeIn {
|
1151 |
+
0% {
|
1152 |
+
opacity: 0;
|
1153 |
+
}
|
1154 |
+
|
1155 |
+
100% {
|
1156 |
+
opacity: 1;
|
1157 |
+
}
|
1158 |
+
}
|
1159 |
+
|
1160 |
+
@keyframes fadeIn {
|
1161 |
+
0% {
|
1162 |
+
opacity: 0;
|
1163 |
+
}
|
1164 |
+
|
1165 |
+
100% {
|
1166 |
+
opacity: 1;
|
1167 |
+
}
|
1168 |
+
}
|
1169 |
+
|
1170 |
+
.fadeIn {
|
1171 |
+
-webkit-animation-name: fadeIn;
|
1172 |
+
animation-name: fadeIn;
|
1173 |
+
}
|
1174 |
+
|
1175 |
+
@-webkit-keyframes fadeInDown {
|
1176 |
+
0% {
|
1177 |
+
opacity: 0;
|
1178 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
1179 |
+
transform: translate3d(0, -100%, 0);
|
1180 |
+
}
|
1181 |
+
|
1182 |
+
100% {
|
1183 |
+
opacity: 1;
|
1184 |
+
-webkit-transform: none;
|
1185 |
+
transform: none;
|
1186 |
+
}
|
1187 |
+
}
|
1188 |
+
|
1189 |
+
@keyframes fadeInDown {
|
1190 |
+
0% {
|
1191 |
+
opacity: 0;
|
1192 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
1193 |
+
transform: translate3d(0, -100%, 0);
|
1194 |
+
}
|
1195 |
+
|
1196 |
+
100% {
|
1197 |
+
opacity: 1;
|
1198 |
+
-webkit-transform: none;
|
1199 |
+
transform: none;
|
1200 |
+
}
|
1201 |
+
}
|
1202 |
+
|
1203 |
+
.fadeInDown {
|
1204 |
+
-webkit-animation-name: fadeInDown;
|
1205 |
+
animation-name: fadeInDown;
|
1206 |
+
}
|
1207 |
+
|
1208 |
+
@-webkit-keyframes fadeInDownBig {
|
1209 |
+
0% {
|
1210 |
+
opacity: 0;
|
1211 |
+
-webkit-transform: translate3d(0, -2000px, 0);
|
1212 |
+
transform: translate3d(0, -2000px, 0);
|
1213 |
+
}
|
1214 |
+
|
1215 |
+
100% {
|
1216 |
+
opacity: 1;
|
1217 |
+
-webkit-transform: none;
|
1218 |
+
transform: none;
|
1219 |
+
}
|
1220 |
+
}
|
1221 |
+
|
1222 |
+
@keyframes fadeInDownBig {
|
1223 |
+
0% {
|
1224 |
+
opacity: 0;
|
1225 |
+
-webkit-transform: translate3d(0, -2000px, 0);
|
1226 |
+
transform: translate3d(0, -2000px, 0);
|
1227 |
+
}
|
1228 |
+
|
1229 |
+
100% {
|
1230 |
+
opacity: 1;
|
1231 |
+
-webkit-transform: none;
|
1232 |
+
transform: none;
|
1233 |
+
}
|
1234 |
+
}
|
1235 |
+
|
1236 |
+
.fadeInDownBig {
|
1237 |
+
-webkit-animation-name: fadeInDownBig;
|
1238 |
+
animation-name: fadeInDownBig;
|
1239 |
+
}
|
1240 |
+
|
1241 |
+
@-webkit-keyframes fadeInLeft {
|
1242 |
+
0% {
|
1243 |
+
opacity: 0;
|
1244 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
1245 |
+
transform: translate3d(-100%, 0, 0);
|
1246 |
+
}
|
1247 |
+
|
1248 |
+
100% {
|
1249 |
+
opacity: 1;
|
1250 |
+
-webkit-transform: none;
|
1251 |
+
transform: none;
|
1252 |
+
}
|
1253 |
+
}
|
1254 |
+
|
1255 |
+
@keyframes fadeInLeft {
|
1256 |
+
0% {
|
1257 |
+
opacity: 0;
|
1258 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
1259 |
+
transform: translate3d(-100%, 0, 0);
|
1260 |
+
}
|
1261 |
+
|
1262 |
+
100% {
|
1263 |
+
opacity: 1;
|
1264 |
+
-webkit-transform: none;
|
1265 |
+
transform: none;
|
1266 |
+
}
|
1267 |
+
}
|
1268 |
+
|
1269 |
+
.fadeInLeft {
|
1270 |
+
-webkit-animation-name: fadeInLeft;
|
1271 |
+
animation-name: fadeInLeft;
|
1272 |
+
}
|
1273 |
+
|
1274 |
+
@-webkit-keyframes fadeInLeftBig {
|
1275 |
+
0% {
|
1276 |
+
opacity: 0;
|
1277 |
+
-webkit-transform: translate3d(-2000px, 0, 0);
|
1278 |
+
transform: translate3d(-2000px, 0, 0);
|
1279 |
+
}
|
1280 |
+
|
1281 |
+
100% {
|
1282 |
+
opacity: 1;
|
1283 |
+
-webkit-transform: none;
|
1284 |
+
transform: none;
|
1285 |
+
}
|
1286 |
+
}
|
1287 |
+
|
1288 |
+
@keyframes fadeInLeftBig {
|
1289 |
+
0% {
|
1290 |
+
opacity: 0;
|
1291 |
+
-webkit-transform: translate3d(-2000px, 0, 0);
|
1292 |
+
transform: translate3d(-2000px, 0, 0);
|
1293 |
+
}
|
1294 |
+
|
1295 |
+
100% {
|
1296 |
+
opacity: 1;
|
1297 |
+
-webkit-transform: none;
|
1298 |
+
transform: none;
|
1299 |
+
}
|
1300 |
+
}
|
1301 |
+
|
1302 |
+
.fadeInLeftBig {
|
1303 |
+
-webkit-animation-name: fadeInLeftBig;
|
1304 |
+
animation-name: fadeInLeftBig;
|
1305 |
+
}
|
1306 |
+
|
1307 |
+
@-webkit-keyframes fadeInRight {
|
1308 |
+
0% {
|
1309 |
+
opacity: 0;
|
1310 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
1311 |
+
transform: translate3d(100%, 0, 0);
|
1312 |
+
}
|
1313 |
+
|
1314 |
+
100% {
|
1315 |
+
opacity: 1;
|
1316 |
+
-webkit-transform: none;
|
1317 |
+
transform: none;
|
1318 |
+
}
|
1319 |
+
}
|
1320 |
+
|
1321 |
+
@keyframes fadeInRight {
|
1322 |
+
0% {
|
1323 |
+
opacity: 0;
|
1324 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
1325 |
+
transform: translate3d(100%, 0, 0);
|
1326 |
+
}
|
1327 |
+
|
1328 |
+
100% {
|
1329 |
+
opacity: 1;
|
1330 |
+
-webkit-transform: none;
|
1331 |
+
transform: none;
|
1332 |
+
}
|
1333 |
+
}
|
1334 |
+
|
1335 |
+
.fadeInRight {
|
1336 |
+
-webkit-animation-name: fadeInRight;
|
1337 |
+
animation-name: fadeInRight;
|
1338 |
+
}
|
1339 |
+
|
1340 |
+
@-webkit-keyframes fadeInRightBig {
|
1341 |
+
0% {
|
1342 |
+
opacity: 0;
|
1343 |
+
-webkit-transform: translate3d(2000px, 0, 0);
|
1344 |
+
transform: translate3d(2000px, 0, 0);
|
1345 |
+
}
|
1346 |
+
|
1347 |
+
100% {
|
1348 |
+
opacity: 1;
|
1349 |
+
-webkit-transform: none;
|
1350 |
+
transform: none;
|
1351 |
+
}
|
1352 |
+
}
|
1353 |
+
|
1354 |
+
@keyframes fadeInRightBig {
|
1355 |
+
0% {
|
1356 |
+
opacity: 0;
|
1357 |
+
-webkit-transform: translate3d(2000px, 0, 0);
|
1358 |
+
transform: translate3d(2000px, 0, 0);
|
1359 |
+
}
|
1360 |
+
|
1361 |
+
100% {
|
1362 |
+
opacity: 1;
|
1363 |
+
-webkit-transform: none;
|
1364 |
+
transform: none;
|
1365 |
+
}
|
1366 |
+
}
|
1367 |
+
|
1368 |
+
.fadeInRightBig {
|
1369 |
+
-webkit-animation-name: fadeInRightBig;
|
1370 |
+
animation-name: fadeInRightBig;
|
1371 |
+
}
|
1372 |
+
|
1373 |
+
@-webkit-keyframes fadeInUp {
|
1374 |
+
0% {
|
1375 |
+
opacity: 0;
|
1376 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
1377 |
+
transform: translate3d(0, 100%, 0);
|
1378 |
+
}
|
1379 |
+
|
1380 |
+
100% {
|
1381 |
+
opacity: 1;
|
1382 |
+
-webkit-transform: none;
|
1383 |
+
transform: none;
|
1384 |
+
}
|
1385 |
+
}
|
1386 |
+
|
1387 |
+
@keyframes fadeInUp {
|
1388 |
+
0% {
|
1389 |
+
opacity: 0;
|
1390 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
1391 |
+
transform: translate3d(0, 100%, 0);
|
1392 |
+
}
|
1393 |
+
|
1394 |
+
100% {
|
1395 |
+
opacity: 1;
|
1396 |
+
-webkit-transform: none;
|
1397 |
+
transform: none;
|
1398 |
+
}
|
1399 |
+
}
|
1400 |
+
|
1401 |
+
.fadeInUp {
|
1402 |
+
-webkit-animation-name: fadeInUp;
|
1403 |
+
animation-name: fadeInUp;
|
1404 |
+
}
|
1405 |
+
|
1406 |
+
@-webkit-keyframes fadeInUpBig {
|
1407 |
+
0% {
|
1408 |
+
opacity: 0;
|
1409 |
+
-webkit-transform: translate3d(0, 2000px, 0);
|
1410 |
+
transform: translate3d(0, 2000px, 0);
|
1411 |
+
}
|
1412 |
+
|
1413 |
+
100% {
|
1414 |
+
opacity: 1;
|
1415 |
+
-webkit-transform: none;
|
1416 |
+
transform: none;
|
1417 |
+
}
|
1418 |
+
}
|
1419 |
+
|
1420 |
+
@keyframes fadeInUpBig {
|
1421 |
+
0% {
|
1422 |
+
opacity: 0;
|
1423 |
+
-webkit-transform: translate3d(0, 2000px, 0);
|
1424 |
+
transform: translate3d(0, 2000px, 0);
|
1425 |
+
}
|
1426 |
+
|
1427 |
+
100% {
|
1428 |
+
opacity: 1;
|
1429 |
+
-webkit-transform: none;
|
1430 |
+
transform: none;
|
1431 |
+
}
|
1432 |
+
}
|
1433 |
+
|
1434 |
+
.fadeInUpBig {
|
1435 |
+
-webkit-animation-name: fadeInUpBig;
|
1436 |
+
animation-name: fadeInUpBig;
|
1437 |
+
}
|
1438 |
+
|
1439 |
+
@-webkit-keyframes fadeOut {
|
1440 |
+
0% {
|
1441 |
+
opacity: 1;
|
1442 |
+
}
|
1443 |
+
|
1444 |
+
100% {
|
1445 |
+
opacity: 0;
|
1446 |
+
}
|
1447 |
+
}
|
1448 |
+
|
1449 |
+
@keyframes fadeOut {
|
1450 |
+
0% {
|
1451 |
+
opacity: 1;
|
1452 |
+
}
|
1453 |
+
|
1454 |
+
100% {
|
1455 |
+
opacity: 0;
|
1456 |
+
}
|
1457 |
+
}
|
1458 |
+
|
1459 |
+
.fadeOut {
|
1460 |
+
-webkit-animation-name: fadeOut;
|
1461 |
+
animation-name: fadeOut;
|
1462 |
+
}
|
1463 |
+
|
1464 |
+
@-webkit-keyframes fadeOutDown {
|
1465 |
+
0% {
|
1466 |
+
opacity: 1;
|
1467 |
+
}
|
1468 |
+
|
1469 |
+
100% {
|
1470 |
+
opacity: 0;
|
1471 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
1472 |
+
transform: translate3d(0, 100%, 0);
|
1473 |
+
}
|
1474 |
+
}
|
1475 |
+
|
1476 |
+
@keyframes fadeOutDown {
|
1477 |
+
0% {
|
1478 |
+
opacity: 1;
|
1479 |
+
}
|
1480 |
+
|
1481 |
+
100% {
|
1482 |
+
opacity: 0;
|
1483 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
1484 |
+
transform: translate3d(0, 100%, 0);
|
1485 |
+
}
|
1486 |
+
}
|
1487 |
+
|
1488 |
+
.fadeOutDown {
|
1489 |
+
-webkit-animation-name: fadeOutDown;
|
1490 |
+
animation-name: fadeOutDown;
|
1491 |
+
}
|
1492 |
+
|
1493 |
+
@-webkit-keyframes fadeOutDownBig {
|
1494 |
+
0% {
|
1495 |
+
opacity: 1;
|
1496 |
+
}
|
1497 |
+
|
1498 |
+
100% {
|
1499 |
+
opacity: 0;
|
1500 |
+
-webkit-transform: translate3d(0, 2000px, 0);
|
1501 |
+
transform: translate3d(0, 2000px, 0);
|
1502 |
+
}
|
1503 |
+
}
|
1504 |
+
|
1505 |
+
@keyframes fadeOutDownBig {
|
1506 |
+
0% {
|
1507 |
+
opacity: 1;
|
1508 |
+
}
|
1509 |
+
|
1510 |
+
100% {
|
1511 |
+
opacity: 0;
|
1512 |
+
-webkit-transform: translate3d(0, 2000px, 0);
|
1513 |
+
transform: translate3d(0, 2000px, 0);
|
1514 |
+
}
|
1515 |
+
}
|
1516 |
+
|
1517 |
+
.fadeOutDownBig {
|
1518 |
+
-webkit-animation-name: fadeOutDownBig;
|
1519 |
+
animation-name: fadeOutDownBig;
|
1520 |
+
}
|
1521 |
+
|
1522 |
+
@-webkit-keyframes fadeOutLeft {
|
1523 |
+
0% {
|
1524 |
+
opacity: 1;
|
1525 |
+
}
|
1526 |
+
|
1527 |
+
100% {
|
1528 |
+
opacity: 0;
|
1529 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
1530 |
+
transform: translate3d(-100%, 0, 0);
|
1531 |
+
}
|
1532 |
+
}
|
1533 |
+
|
1534 |
+
@keyframes fadeOutLeft {
|
1535 |
+
0% {
|
1536 |
+
opacity: 1;
|
1537 |
+
}
|
1538 |
+
|
1539 |
+
100% {
|
1540 |
+
opacity: 0;
|
1541 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
1542 |
+
transform: translate3d(-100%, 0, 0);
|
1543 |
+
}
|
1544 |
+
}
|
1545 |
+
|
1546 |
+
.fadeOutLeft {
|
1547 |
+
-webkit-animation-name: fadeOutLeft;
|
1548 |
+
animation-name: fadeOutLeft;
|
1549 |
+
}
|
1550 |
+
|
1551 |
+
@-webkit-keyframes fadeOutLeftBig {
|
1552 |
+
0% {
|
1553 |
+
opacity: 1;
|
1554 |
+
}
|
1555 |
+
|
1556 |
+
100% {
|
1557 |
+
opacity: 0;
|
1558 |
+
-webkit-transform: translate3d(-2000px, 0, 0);
|
1559 |
+
transform: translate3d(-2000px, 0, 0);
|
1560 |
+
}
|
1561 |
+
}
|
1562 |
+
|
1563 |
+
@keyframes fadeOutLeftBig {
|
1564 |
+
0% {
|
1565 |
+
opacity: 1;
|
1566 |
+
}
|
1567 |
+
|
1568 |
+
100% {
|
1569 |
+
opacity: 0;
|
1570 |
+
-webkit-transform: translate3d(-2000px, 0, 0);
|
1571 |
+
transform: translate3d(-2000px, 0, 0);
|
1572 |
+
}
|
1573 |
+
}
|
1574 |
+
|
1575 |
+
.fadeOutLeftBig {
|
1576 |
+
-webkit-animation-name: fadeOutLeftBig;
|
1577 |
+
animation-name: fadeOutLeftBig;
|
1578 |
+
}
|
1579 |
+
|
1580 |
+
@-webkit-keyframes fadeOutRight {
|
1581 |
+
0% {
|
1582 |
+
opacity: 1;
|
1583 |
+
}
|
1584 |
+
|
1585 |
+
100% {
|
1586 |
+
opacity: 0;
|
1587 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
1588 |
+
transform: translate3d(100%, 0, 0);
|
1589 |
+
}
|
1590 |
+
}
|
1591 |
+
|
1592 |
+
@keyframes fadeOutRight {
|
1593 |
+
0% {
|
1594 |
+
opacity: 1;
|
1595 |
+
}
|
1596 |
+
|
1597 |
+
100% {
|
1598 |
+
opacity: 0;
|
1599 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
1600 |
+
transform: translate3d(100%, 0, 0);
|
1601 |
+
}
|
1602 |
+
}
|
1603 |
+
|
1604 |
+
.fadeOutRight {
|
1605 |
+
-webkit-animation-name: fadeOutRight;
|
1606 |
+
animation-name: fadeOutRight;
|
1607 |
+
}
|
1608 |
+
|
1609 |
+
@-webkit-keyframes fadeOutRightBig {
|
1610 |
+
0% {
|
1611 |
+
opacity: 1;
|
1612 |
+
}
|
1613 |
+
|
1614 |
+
100% {
|
1615 |
+
opacity: 0;
|
1616 |
+
-webkit-transform: translate3d(2000px, 0, 0);
|
1617 |
+
transform: translate3d(2000px, 0, 0);
|
1618 |
+
}
|
1619 |
+
}
|
1620 |
+
|
1621 |
+
@keyframes fadeOutRightBig {
|
1622 |
+
0% {
|
1623 |
+
opacity: 1;
|
1624 |
+
}
|
1625 |
+
|
1626 |
+
100% {
|
1627 |
+
opacity: 0;
|
1628 |
+
-webkit-transform: translate3d(2000px, 0, 0);
|
1629 |
+
transform: translate3d(2000px, 0, 0);
|
1630 |
+
}
|
1631 |
+
}
|
1632 |
+
|
1633 |
+
.fadeOutRightBig {
|
1634 |
+
-webkit-animation-name: fadeOutRightBig;
|
1635 |
+
animation-name: fadeOutRightBig;
|
1636 |
+
}
|
1637 |
+
|
1638 |
+
@-webkit-keyframes fadeOutUp {
|
1639 |
+
0% {
|
1640 |
+
opacity: 1;
|
1641 |
+
}
|
1642 |
+
|
1643 |
+
100% {
|
1644 |
+
opacity: 0;
|
1645 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
1646 |
+
transform: translate3d(0, -100%, 0);
|
1647 |
+
}
|
1648 |
+
}
|
1649 |
+
|
1650 |
+
@keyframes fadeOutUp {
|
1651 |
+
0% {
|
1652 |
+
opacity: 1;
|
1653 |
+
}
|
1654 |
+
|
1655 |
+
100% {
|
1656 |
+
opacity: 0;
|
1657 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
1658 |
+
transform: translate3d(0, -100%, 0);
|
1659 |
+
}
|
1660 |
+
}
|
1661 |
+
|
1662 |
+
.fadeOutUp {
|
1663 |
+
-webkit-animation-name: fadeOutUp;
|
1664 |
+
animation-name: fadeOutUp;
|
1665 |
+
}
|
1666 |
+
|
1667 |
+
@-webkit-keyframes fadeOutUpBig {
|
1668 |
+
0% {
|
1669 |
+
opacity: 1;
|
1670 |
+
}
|
1671 |
+
|
1672 |
+
100% {
|
1673 |
+
opacity: 0;
|
1674 |
+
-webkit-transform: translate3d(0, -2000px, 0);
|
1675 |
+
transform: translate3d(0, -2000px, 0);
|
1676 |
+
}
|
1677 |
+
}
|
1678 |
+
|
1679 |
+
@keyframes fadeOutUpBig {
|
1680 |
+
0% {
|
1681 |
+
opacity: 1;
|
1682 |
+
}
|
1683 |
+
|
1684 |
+
100% {
|
1685 |
+
opacity: 0;
|
1686 |
+
-webkit-transform: translate3d(0, -2000px, 0);
|
1687 |
+
transform: translate3d(0, -2000px, 0);
|
1688 |
+
}
|
1689 |
+
}
|
1690 |
+
|
1691 |
+
.fadeOutUpBig {
|
1692 |
+
-webkit-animation-name: fadeOutUpBig;
|
1693 |
+
animation-name: fadeOutUpBig;
|
1694 |
+
}
|
1695 |
+
|
1696 |
+
@-webkit-keyframes flip {
|
1697 |
+
0% {
|
1698 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
|
1699 |
+
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
|
1700 |
+
-webkit-animation-timing-function: ease-out;
|
1701 |
+
animation-timing-function: ease-out;
|
1702 |
+
}
|
1703 |
+
|
1704 |
+
40% {
|
1705 |
+
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
|
1706 |
+
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
|
1707 |
+
-webkit-animation-timing-function: ease-out;
|
1708 |
+
animation-timing-function: ease-out;
|
1709 |
+
}
|
1710 |
+
|
1711 |
+
50% {
|
1712 |
+
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
|
1713 |
+
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
|
1714 |
+
-webkit-animation-timing-function: ease-in;
|
1715 |
+
animation-timing-function: ease-in;
|
1716 |
+
}
|
1717 |
+
|
1718 |
+
80% {
|
1719 |
+
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
|
1720 |
+
transform: perspective(400px) scale3d(.95, .95, .95);
|
1721 |
+
-webkit-animation-timing-function: ease-in;
|
1722 |
+
animation-timing-function: ease-in;
|
1723 |
+
}
|
1724 |
+
|
1725 |
+
100% {
|
1726 |
+
-webkit-transform: perspective(400px);
|
1727 |
+
transform: perspective(400px);
|
1728 |
+
-webkit-animation-timing-function: ease-in;
|
1729 |
+
animation-timing-function: ease-in;
|
1730 |
+
}
|
1731 |
+
}
|
1732 |
+
|
1733 |
+
@keyframes flip {
|
1734 |
+
0% {
|
1735 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
|
1736 |
+
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
|
1737 |
+
-webkit-animation-timing-function: ease-out;
|
1738 |
+
animation-timing-function: ease-out;
|
1739 |
+
}
|
1740 |
+
|
1741 |
+
40% {
|
1742 |
+
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
|
1743 |
+
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
|
1744 |
+
-webkit-animation-timing-function: ease-out;
|
1745 |
+
animation-timing-function: ease-out;
|
1746 |
+
}
|
1747 |
+
|
1748 |
+
50% {
|
1749 |
+
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
|
1750 |
+
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
|
1751 |
+
-webkit-animation-timing-function: ease-in;
|
1752 |
+
animation-timing-function: ease-in;
|
1753 |
+
}
|
1754 |
+
|
1755 |
+
80% {
|
1756 |
+
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
|
1757 |
+
transform: perspective(400px) scale3d(.95, .95, .95);
|
1758 |
+
-webkit-animation-timing-function: ease-in;
|
1759 |
+
animation-timing-function: ease-in;
|
1760 |
+
}
|
1761 |
+
|
1762 |
+
100% {
|
1763 |
+
-webkit-transform: perspective(400px);
|
1764 |
+
transform: perspective(400px);
|
1765 |
+
-webkit-animation-timing-function: ease-in;
|
1766 |
+
animation-timing-function: ease-in;
|
1767 |
+
}
|
1768 |
+
}
|
1769 |
+
|
1770 |
+
.animated.flip {
|
1771 |
+
-webkit-backface-visibility: visible;
|
1772 |
+
backface-visibility: visible;
|
1773 |
+
-webkit-animation-name: flip;
|
1774 |
+
animation-name: flip;
|
1775 |
+
}
|
1776 |
+
|
1777 |
+
@-webkit-keyframes flipInX {
|
1778 |
+
0% {
|
1779 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
1780 |
+
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
1781 |
+
-webkit-animation-timing-function: ease-in;
|
1782 |
+
animation-timing-function: ease-in;
|
1783 |
+
opacity: 0;
|
1784 |
+
}
|
1785 |
+
|
1786 |
+
40% {
|
1787 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
1788 |
+
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
1789 |
+
-webkit-animation-timing-function: ease-in;
|
1790 |
+
animation-timing-function: ease-in;
|
1791 |
+
}
|
1792 |
+
|
1793 |
+
60% {
|
1794 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
1795 |
+
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
1796 |
+
opacity: 1;
|
1797 |
+
}
|
1798 |
+
|
1799 |
+
80% {
|
1800 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
1801 |
+
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
1802 |
+
}
|
1803 |
+
|
1804 |
+
100% {
|
1805 |
+
-webkit-transform: perspective(400px);
|
1806 |
+
transform: perspective(400px);
|
1807 |
+
}
|
1808 |
+
}
|
1809 |
+
|
1810 |
+
@keyframes flipInX {
|
1811 |
+
0% {
|
1812 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
1813 |
+
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
1814 |
+
-webkit-animation-timing-function: ease-in;
|
1815 |
+
animation-timing-function: ease-in;
|
1816 |
+
opacity: 0;
|
1817 |
+
}
|
1818 |
+
|
1819 |
+
40% {
|
1820 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
1821 |
+
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
1822 |
+
-webkit-animation-timing-function: ease-in;
|
1823 |
+
animation-timing-function: ease-in;
|
1824 |
+
}
|
1825 |
+
|
1826 |
+
60% {
|
1827 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
1828 |
+
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
1829 |
+
opacity: 1;
|
1830 |
+
}
|
1831 |
+
|
1832 |
+
80% {
|
1833 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
1834 |
+
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
1835 |
+
}
|
1836 |
+
|
1837 |
+
100% {
|
1838 |
+
-webkit-transform: perspective(400px);
|
1839 |
+
transform: perspective(400px);
|
1840 |
+
}
|
1841 |
+
}
|
1842 |
+
|
1843 |
+
.flipInX {
|
1844 |
+
-webkit-backface-visibility: visible !important;
|
1845 |
+
backface-visibility: visible !important;
|
1846 |
+
-webkit-animation-name: flipInX;
|
1847 |
+
animation-name: flipInX;
|
1848 |
+
}
|
1849 |
+
|
1850 |
+
@-webkit-keyframes flipInY {
|
1851 |
+
0% {
|
1852 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
1853 |
+
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
1854 |
+
-webkit-animation-timing-function: ease-in;
|
1855 |
+
animation-timing-function: ease-in;
|
1856 |
+
opacity: 0;
|
1857 |
+
}
|
1858 |
+
|
1859 |
+
40% {
|
1860 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
|
1861 |
+
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
|
1862 |
+
-webkit-animation-timing-function: ease-in;
|
1863 |
+
animation-timing-function: ease-in;
|
1864 |
+
}
|
1865 |
+
|
1866 |
+
60% {
|
1867 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
|
1868 |
+
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
|
1869 |
+
opacity: 1;
|
1870 |
+
}
|
1871 |
+
|
1872 |
+
80% {
|
1873 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
|
1874 |
+
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
|
1875 |
+
}
|
1876 |
+
|
1877 |
+
100% {
|
1878 |
+
-webkit-transform: perspective(400px);
|
1879 |
+
transform: perspective(400px);
|
1880 |
+
}
|
1881 |
+
}
|
1882 |
+
|
1883 |
+
@keyframes flipInY {
|
1884 |
+
0% {
|
1885 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
1886 |
+
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
1887 |
+
-webkit-animation-timing-function: ease-in;
|
1888 |
+
animation-timing-function: ease-in;
|
1889 |
+
opacity: 0;
|
1890 |
+
}
|
1891 |
+
|
1892 |
+
40% {
|
1893 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
|
1894 |
+
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
|
1895 |
+
-webkit-animation-timing-function: ease-in;
|
1896 |
+
animation-timing-function: ease-in;
|
1897 |
+
}
|
1898 |
+
|
1899 |
+
60% {
|
1900 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
|
1901 |
+
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
|
1902 |
+
opacity: 1;
|
1903 |
+
}
|
1904 |
+
|
1905 |
+
80% {
|
1906 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
|
1907 |
+
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
|
1908 |
+
}
|
1909 |
+
|
1910 |
+
100% {
|
1911 |
+
-webkit-transform: perspective(400px);
|
1912 |
+
transform: perspective(400px);
|
1913 |
+
}
|
1914 |
+
}
|
1915 |
+
|
1916 |
+
.flipInY {
|
1917 |
+
-webkit-backface-visibility: visible !important;
|
1918 |
+
backface-visibility: visible !important;
|
1919 |
+
-webkit-animation-name: flipInY;
|
1920 |
+
animation-name: flipInY;
|
1921 |
+
}
|
1922 |
+
|
1923 |
+
@-webkit-keyframes flipOutX {
|
1924 |
+
0% {
|
1925 |
+
-webkit-transform: perspective(400px);
|
1926 |
+
transform: perspective(400px);
|
1927 |
+
}
|
1928 |
+
|
1929 |
+
30% {
|
1930 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
1931 |
+
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
1932 |
+
opacity: 1;
|
1933 |
+
}
|
1934 |
+
|
1935 |
+
100% {
|
1936 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
1937 |
+
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
1938 |
+
opacity: 0;
|
1939 |
+
}
|
1940 |
+
}
|
1941 |
+
|
1942 |
+
@keyframes flipOutX {
|
1943 |
+
0% {
|
1944 |
+
-webkit-transform: perspective(400px);
|
1945 |
+
transform: perspective(400px);
|
1946 |
+
}
|
1947 |
+
|
1948 |
+
30% {
|
1949 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
1950 |
+
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
1951 |
+
opacity: 1;
|
1952 |
+
}
|
1953 |
+
|
1954 |
+
100% {
|
1955 |
+
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
1956 |
+
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
1957 |
+
opacity: 0;
|
1958 |
+
}
|
1959 |
+
}
|
1960 |
+
|
1961 |
+
.flipOutX {
|
1962 |
+
-webkit-animation-name: flipOutX;
|
1963 |
+
animation-name: flipOutX;
|
1964 |
+
-webkit-backface-visibility: visible !important;
|
1965 |
+
backface-visibility: visible !important;
|
1966 |
+
}
|
1967 |
+
|
1968 |
+
@-webkit-keyframes flipOutY {
|
1969 |
+
0% {
|
1970 |
+
-webkit-transform: perspective(400px);
|
1971 |
+
transform: perspective(400px);
|
1972 |
+
}
|
1973 |
+
|
1974 |
+
30% {
|
1975 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
|
1976 |
+
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
|
1977 |
+
opacity: 1;
|
1978 |
+
}
|
1979 |
+
|
1980 |
+
100% {
|
1981 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
1982 |
+
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
1983 |
+
opacity: 0;
|
1984 |
+
}
|
1985 |
+
}
|
1986 |
+
|
1987 |
+
@keyframes flipOutY {
|
1988 |
+
0% {
|
1989 |
+
-webkit-transform: perspective(400px);
|
1990 |
+
transform: perspective(400px);
|
1991 |
+
}
|
1992 |
+
|
1993 |
+
30% {
|
1994 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
|
1995 |
+
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
|
1996 |
+
opacity: 1;
|
1997 |
+
}
|
1998 |
+
|
1999 |
+
100% {
|
2000 |
+
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
2001 |
+
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
2002 |
+
opacity: 0;
|
2003 |
+
}
|
2004 |
+
}
|
2005 |
+
|
2006 |
+
.flipOutY {
|
2007 |
+
-webkit-backface-visibility: visible !important;
|
2008 |
+
backface-visibility: visible !important;
|
2009 |
+
-webkit-animation-name: flipOutY;
|
2010 |
+
animation-name: flipOutY;
|
2011 |
+
}
|
2012 |
+
|
2013 |
+
@-webkit-keyframes lightSpeedIn {
|
2014 |
+
0% {
|
2015 |
+
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
|
2016 |
+
transform: translate3d(100%, 0, 0) skewX(-30deg);
|
2017 |
+
opacity: 0;
|
2018 |
+
}
|
2019 |
+
|
2020 |
+
60% {
|
2021 |
+
-webkit-transform: skewX(20deg);
|
2022 |
+
transform: skewX(20deg);
|
2023 |
+
opacity: 1;
|
2024 |
+
}
|
2025 |
+
|
2026 |
+
80% {
|
2027 |
+
-webkit-transform: skewX(-5deg);
|
2028 |
+
transform: skewX(-5deg);
|
2029 |
+
opacity: 1;
|
2030 |
+
}
|
2031 |
+
|
2032 |
+
100% {
|
2033 |
+
-webkit-transform: none;
|
2034 |
+
transform: none;
|
2035 |
+
opacity: 1;
|
2036 |
+
}
|
2037 |
+
}
|
2038 |
+
|
2039 |
+
@keyframes lightSpeedIn {
|
2040 |
+
0% {
|
2041 |
+
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
|
2042 |
+
transform: translate3d(100%, 0, 0) skewX(-30deg);
|
2043 |
+
opacity: 0;
|
2044 |
+
}
|
2045 |
+
|
2046 |
+
60% {
|
2047 |
+
-webkit-transform: skewX(20deg);
|
2048 |
+
transform: skewX(20deg);
|
2049 |
+
opacity: 1;
|
2050 |
+
}
|
2051 |
+
|
2052 |
+
80% {
|
2053 |
+
-webkit-transform: skewX(-5deg);
|
2054 |
+
transform: skewX(-5deg);
|
2055 |
+
opacity: 1;
|
2056 |
+
}
|
2057 |
+
|
2058 |
+
100% {
|
2059 |
+
-webkit-transform: none;
|
2060 |
+
transform: none;
|
2061 |
+
opacity: 1;
|
2062 |
+
}
|
2063 |
+
}
|
2064 |
+
|
2065 |
+
.lightSpeedIn {
|
2066 |
+
-webkit-animation-name: lightSpeedIn;
|
2067 |
+
animation-name: lightSpeedIn;
|
2068 |
+
-webkit-animation-timing-function: ease-out;
|
2069 |
+
animation-timing-function: ease-out;
|
2070 |
+
}
|
2071 |
+
|
2072 |
+
@-webkit-keyframes lightSpeedOut {
|
2073 |
+
0% {
|
2074 |
+
opacity: 1;
|
2075 |
+
}
|
2076 |
+
|
2077 |
+
100% {
|
2078 |
+
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
|
2079 |
+
transform: translate3d(100%, 0, 0) skewX(30deg);
|
2080 |
+
opacity: 0;
|
2081 |
+
}
|
2082 |
+
}
|
2083 |
+
|
2084 |
+
@keyframes lightSpeedOut {
|
2085 |
+
0% {
|
2086 |
+
opacity: 1;
|
2087 |
+
}
|
2088 |
+
|
2089 |
+
100% {
|
2090 |
+
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
|
2091 |
+
transform: translate3d(100%, 0, 0) skewX(30deg);
|
2092 |
+
opacity: 0;
|
2093 |
+
}
|
2094 |
+
}
|
2095 |
+
|
2096 |
+
.lightSpeedOut {
|
2097 |
+
-webkit-animation-name: lightSpeedOut;
|
2098 |
+
animation-name: lightSpeedOut;
|
2099 |
+
-webkit-animation-timing-function: ease-in;
|
2100 |
+
animation-timing-function: ease-in;
|
2101 |
+
}
|
2102 |
+
|
2103 |
+
@-webkit-keyframes rotateIn {
|
2104 |
+
0% {
|
2105 |
+
-webkit-transform-origin: center;
|
2106 |
+
transform-origin: center;
|
2107 |
+
-webkit-transform: rotate3d(0, 0, 1, -200deg);
|
2108 |
+
transform: rotate3d(0, 0, 1, -200deg);
|
2109 |
+
opacity: 0;
|
2110 |
+
}
|
2111 |
+
|
2112 |
+
100% {
|
2113 |
+
-webkit-transform-origin: center;
|
2114 |
+
transform-origin: center;
|
2115 |
+
-webkit-transform: none;
|
2116 |
+
transform: none;
|
2117 |
+
opacity: 1;
|
2118 |
+
}
|
2119 |
+
}
|
2120 |
+
|
2121 |
+
@keyframes rotateIn {
|
2122 |
+
0% {
|
2123 |
+
-webkit-transform-origin: center;
|
2124 |
+
transform-origin: center;
|
2125 |
+
-webkit-transform: rotate3d(0, 0, 1, -200deg);
|
2126 |
+
transform: rotate3d(0, 0, 1, -200deg);
|
2127 |
+
opacity: 0;
|
2128 |
+
}
|
2129 |
+
|
2130 |
+
100% {
|
2131 |
+
-webkit-transform-origin: center;
|
2132 |
+
transform-origin: center;
|
2133 |
+
-webkit-transform: none;
|
2134 |
+
transform: none;
|
2135 |
+
opacity: 1;
|
2136 |
+
}
|
2137 |
+
}
|
2138 |
+
|
2139 |
+
.rotateIn {
|
2140 |
+
-webkit-animation-name: rotateIn;
|
2141 |
+
animation-name: rotateIn;
|
2142 |
+
}
|
2143 |
+
|
2144 |
+
@-webkit-keyframes rotateInDownLeft {
|
2145 |
+
0% {
|
2146 |
+
-webkit-transform-origin: left bottom;
|
2147 |
+
transform-origin: left bottom;
|
2148 |
+
-webkit-transform: rotate3d(0, 0, 1, -45deg);
|
2149 |
+
transform: rotate3d(0, 0, 1, -45deg);
|
2150 |
+
opacity: 0;
|
2151 |
+
}
|
2152 |
+
|
2153 |
+
100% {
|
2154 |
+
-webkit-transform-origin: left bottom;
|
2155 |
+
transform-origin: left bottom;
|
2156 |
+
-webkit-transform: none;
|
2157 |
+
transform: none;
|
2158 |
+
opacity: 1;
|
2159 |
+
}
|
2160 |
+
}
|
2161 |
+
|
2162 |
+
@keyframes rotateInDownLeft {
|
2163 |
+
0% {
|
2164 |
+
-webkit-transform-origin: left bottom;
|
2165 |
+
transform-origin: left bottom;
|
2166 |
+
-webkit-transform: rotate3d(0, 0, 1, -45deg);
|
2167 |
+
transform: rotate3d(0, 0, 1, -45deg);
|
2168 |
+
opacity: 0;
|
2169 |
+
}
|
2170 |
+
|
2171 |
+
100% {
|
2172 |
+
-webkit-transform-origin: left bottom;
|
2173 |
+
transform-origin: left bottom;
|
2174 |
+
-webkit-transform: none;
|
2175 |
+
transform: none;
|
2176 |
+
opacity: 1;
|
2177 |
+
}
|
2178 |
+
}
|
2179 |
+
|
2180 |
+
.rotateInDownLeft {
|
2181 |
+
-webkit-animation-name: rotateInDownLeft;
|
2182 |
+
animation-name: rotateInDownLeft;
|
2183 |
+
}
|
2184 |
+
|
2185 |
+
@-webkit-keyframes rotateInDownRight {
|
2186 |
+
0% {
|
2187 |
+
-webkit-transform-origin: right bottom;
|
2188 |
+
transform-origin: right bottom;
|
2189 |
+
-webkit-transform: rotate3d(0, 0, 1, 45deg);
|
2190 |
+
transform: rotate3d(0, 0, 1, 45deg);
|
2191 |
+
opacity: 0;
|
2192 |
+
}
|
2193 |
+
|
2194 |
+
100% {
|
2195 |
+
-webkit-transform-origin: right bottom;
|
2196 |
+
transform-origin: right bottom;
|
2197 |
+
-webkit-transform: none;
|
2198 |
+
transform: none;
|
2199 |
+
opacity: 1;
|
2200 |
+
}
|
2201 |
+
}
|
2202 |
+
|
2203 |
+
@keyframes rotateInDownRight {
|
2204 |
+
0% {
|
2205 |
+
-webkit-transform-origin: right bottom;
|
2206 |
+
transform-origin: right bottom;
|
2207 |
+
-webkit-transform: rotate3d(0, 0, 1, 45deg);
|
2208 |
+
transform: rotate3d(0, 0, 1, 45deg);
|
2209 |
+
opacity: 0;
|
2210 |
+
}
|
2211 |
+
|
2212 |
+
100% {
|
2213 |
+
-webkit-transform-origin: right bottom;
|
2214 |
+
transform-origin: right bottom;
|
2215 |
+
-webkit-transform: none;
|
2216 |
+
transform: none;
|
2217 |
+
opacity: 1;
|
2218 |
+
}
|
2219 |
+
}
|
2220 |
+
|
2221 |
+
.rotateInDownRight {
|
2222 |
+
-webkit-animation-name: rotateInDownRight;
|
2223 |
+
animation-name: rotateInDownRight;
|
2224 |
+
}
|
2225 |
+
|
2226 |
+
@-webkit-keyframes rotateInUpLeft {
|
2227 |
+
0% {
|
2228 |
+
-webkit-transform-origin: left bottom;
|
2229 |
+
transform-origin: left bottom;
|
2230 |
+
-webkit-transform: rotate3d(0, 0, 1, 45deg);
|
2231 |
+
transform: rotate3d(0, 0, 1, 45deg);
|
2232 |
+
opacity: 0;
|
2233 |
+
}
|
2234 |
+
|
2235 |
+
100% {
|
2236 |
+
-webkit-transform-origin: left bottom;
|
2237 |
+
transform-origin: left bottom;
|
2238 |
+
-webkit-transform: none;
|
2239 |
+
transform: none;
|
2240 |
+
opacity: 1;
|
2241 |
+
}
|
2242 |
+
}
|
2243 |
+
|
2244 |
+
@keyframes rotateInUpLeft {
|
2245 |
+
0% {
|
2246 |
+
-webkit-transform-origin: left bottom;
|
2247 |
+
transform-origin: left bottom;
|
2248 |
+
-webkit-transform: rotate3d(0, 0, 1, 45deg);
|
2249 |
+
transform: rotate3d(0, 0, 1, 45deg);
|
2250 |
+
opacity: 0;
|
2251 |
+
}
|
2252 |
+
|
2253 |
+
100% {
|
2254 |
+
-webkit-transform-origin: left bottom;
|
2255 |
+
transform-origin: left bottom;
|
2256 |
+
-webkit-transform: none;
|
2257 |
+
transform: none;
|
2258 |
+
opacity: 1;
|
2259 |
+
}
|
2260 |
+
}
|
2261 |
+
|
2262 |
+
.rotateInUpLeft {
|
2263 |
+
-webkit-animation-name: rotateInUpLeft;
|
2264 |
+
animation-name: rotateInUpLeft;
|
2265 |
+
}
|
2266 |
+
|
2267 |
+
@-webkit-keyframes rotateInUpRight {
|
2268 |
+
0% {
|
2269 |
+
-webkit-transform-origin: right bottom;
|
2270 |
+
transform-origin: right bottom;
|
2271 |
+
-webkit-transform: rotate3d(0, 0, 1, -90deg);
|
2272 |
+
transform: rotate3d(0, 0, 1, -90deg);
|
2273 |
+
opacity: 0;
|
2274 |
+
}
|
2275 |
+
|
2276 |
+
100% {
|
2277 |
+
-webkit-transform-origin: right bottom;
|
2278 |
+
transform-origin: right bottom;
|
2279 |
+
-webkit-transform: none;
|
2280 |
+
transform: none;
|
2281 |
+
opacity: 1;
|
2282 |
+
}
|
2283 |
+
}
|
2284 |
+
|
2285 |
+
@keyframes rotateInUpRight {
|
2286 |
+
0% {
|
2287 |
+
-webkit-transform-origin: right bottom;
|
2288 |
+
transform-origin: right bottom;
|
2289 |
+
-webkit-transform: rotate3d(0, 0, 1, -90deg);
|
2290 |
+
transform: rotate3d(0, 0, 1, -90deg);
|
2291 |
+
opacity: 0;
|
2292 |
+
}
|
2293 |
+
|
2294 |
+
100% {
|
2295 |
+
-webkit-transform-origin: right bottom;
|
2296 |
+
transform-origin: right bottom;
|
2297 |
+
-webkit-transform: none;
|
2298 |
+
transform: none;
|
2299 |
+
opacity: 1;
|
2300 |
+
}
|
2301 |
+
}
|
2302 |
+
|
2303 |
+
.rotateInUpRight {
|
2304 |
+
-webkit-animation-name: rotateInUpRight;
|
2305 |
+
animation-name: rotateInUpRight;
|
2306 |
+
}
|
2307 |
+
|
2308 |
+
@-webkit-keyframes rotateOut {
|
2309 |
+
0% {
|
2310 |
+
-webkit-transform-origin: center;
|
2311 |
+
transform-origin: center;
|
2312 |
+
opacity: 1;
|
2313 |
+
}
|
2314 |
+
|
2315 |
+
100% {
|
2316 |
+
-webkit-transform-origin: center;
|
2317 |
+
transform-origin: center;
|
2318 |
+
-webkit-transform: rotate3d(0, 0, 1, 200deg);
|
2319 |
+
transform: rotate3d(0, 0, 1, 200deg);
|
2320 |
+
opacity: 0;
|
2321 |
+
}
|
2322 |
+
}
|
2323 |
+
|
2324 |
+
@keyframes rotateOut {
|
2325 |
+
0% {
|
2326 |
+
-webkit-transform-origin: center;
|
2327 |
+
transform-origin: center;
|
2328 |
+
opacity: 1;
|
2329 |
+
}
|
2330 |
+
|
2331 |
+
100% {
|
2332 |
+
-webkit-transform-origin: center;
|
2333 |
+
transform-origin: center;
|
2334 |
+
-webkit-transform: rotate3d(0, 0, 1, 200deg);
|
2335 |
+
transform: rotate3d(0, 0, 1, 200deg);
|
2336 |
+
opacity: 0;
|
2337 |
+
}
|
2338 |
+
}
|
2339 |
+
|
2340 |
+
.rotateOut {
|
2341 |
+
-webkit-animation-name: rotateOut;
|
2342 |
+
animation-name: rotateOut;
|
2343 |
+
}
|
2344 |
+
|
2345 |
+
@-webkit-keyframes rotateOutDownLeft {
|
2346 |
+
0% {
|
2347 |
+
-webkit-transform-origin: left bottom;
|
2348 |
+
transform-origin: left bottom;
|
2349 |
+
opacity: 1;
|
2350 |
+
}
|
2351 |
+
|
2352 |
+
100% {
|
2353 |
+
-webkit-transform-origin: left bottom;
|
2354 |
+
transform-origin: left bottom;
|
2355 |
+
-webkit-transform: rotate3d(0, 0, 1, 45deg);
|
2356 |
+
transform: rotate3d(0, 0, 1, 45deg);
|
2357 |
+
opacity: 0;
|
2358 |
+
}
|
2359 |
+
}
|
2360 |
+
|
2361 |
+
@keyframes rotateOutDownLeft {
|
2362 |
+
0% {
|
2363 |
+
-webkit-transform-origin: left bottom;
|
2364 |
+
transform-origin: left bottom;
|
2365 |
+
opacity: 1;
|
2366 |
+
}
|
2367 |
+
|
2368 |
+
100% {
|
2369 |
+
-webkit-transform-origin: left bottom;
|
2370 |
+
transform-origin: left bottom;
|
2371 |
+
-webkit-transform: rotate3d(0, 0, 1, 45deg);
|
2372 |
+
transform: rotate3d(0, 0, 1, 45deg);
|
2373 |
+
opacity: 0;
|
2374 |
+
}
|
2375 |
+
}
|
2376 |
+
|
2377 |
+
.rotateOutDownLeft {
|
2378 |
+
-webkit-animation-name: rotateOutDownLeft;
|
2379 |
+
animation-name: rotateOutDownLeft;
|
2380 |
+
}
|
2381 |
+
|
2382 |
+
@-webkit-keyframes rotateOutDownRight {
|
2383 |
+
0% {
|
2384 |
+
-webkit-transform-origin: right bottom;
|
2385 |
+
transform-origin: right bottom;
|
2386 |
+
opacity: 1;
|
2387 |
+
}
|
2388 |
+
|
2389 |
+
100% {
|
2390 |
+
-webkit-transform-origin: right bottom;
|
2391 |
+
transform-origin: right bottom;
|
2392 |
+
-webkit-transform: rotate3d(0, 0, 1, -45deg);
|
2393 |
+
transform: rotate3d(0, 0, 1, -45deg);
|
2394 |
+
opacity: 0;
|
2395 |
+
}
|
2396 |
+
}
|
2397 |
+
|
2398 |
+
@keyframes rotateOutDownRight {
|
2399 |
+
0% {
|
2400 |
+
-webkit-transform-origin: right bottom;
|
2401 |
+
transform-origin: right bottom;
|
2402 |
+
opacity: 1;
|
2403 |
+
}
|
2404 |
+
|
2405 |
+
100% {
|
2406 |
+
-webkit-transform-origin: right bottom;
|
2407 |
+
transform-origin: right bottom;
|
2408 |
+
-webkit-transform: rotate3d(0, 0, 1, -45deg);
|
2409 |
+
transform: rotate3d(0, 0, 1, -45deg);
|
2410 |
+
opacity: 0;
|
2411 |
+
}
|
2412 |
+
}
|
2413 |
+
|
2414 |
+
.rotateOutDownRight {
|
2415 |
+
-webkit-animation-name: rotateOutDownRight;
|
2416 |
+
animation-name: rotateOutDownRight;
|
2417 |
+
}
|
2418 |
+
|
2419 |
+
@-webkit-keyframes rotateOutUpLeft {
|
2420 |
+
0% {
|
2421 |
+
-webkit-transform-origin: left bottom;
|
2422 |
+
transform-origin: left bottom;
|
2423 |
+
opacity: 1;
|
2424 |
+
}
|
2425 |
+
|
2426 |
+
100% {
|
2427 |
+
-webkit-transform-origin: left bottom;
|
2428 |
+
transform-origin: left bottom;
|
2429 |
+
-webkit-transform: rotate3d(0, 0, 1, -45deg);
|
2430 |
+
transform: rotate3d(0, 0, 1, -45deg);
|
2431 |
+
opacity: 0;
|
2432 |
+
}
|
2433 |
+
}
|
2434 |
+
|
2435 |
+
@keyframes rotateOutUpLeft {
|
2436 |
+
0% {
|
2437 |
+
-webkit-transform-origin: left bottom;
|
2438 |
+
transform-origin: left bottom;
|
2439 |
+
opacity: 1;
|
2440 |
+
}
|
2441 |
+
|
2442 |
+
100% {
|
2443 |
+
-webkit-transform-origin: left bottom;
|
2444 |
+
transform-origin: left bottom;
|
2445 |
+
-webkit-transform: rotate3d(0, 0, 1, -45deg);
|
2446 |
+
transform: rotate3d(0, 0, 1, -45deg);
|
2447 |
+
opacity: 0;
|
2448 |
+
}
|
2449 |
+
}
|
2450 |
+
|
2451 |
+
.rotateOutUpLeft {
|
2452 |
+
-webkit-animation-name: rotateOutUpLeft;
|
2453 |
+
animation-name: rotateOutUpLeft;
|
2454 |
+
}
|
2455 |
+
|
2456 |
+
@-webkit-keyframes rotateOutUpRight {
|
2457 |
+
0% {
|
2458 |
+
-webkit-transform-origin: right bottom;
|
2459 |
+
transform-origin: right bottom;
|
2460 |
+
opacity: 1;
|
2461 |
+
}
|
2462 |
+
|
2463 |
+
100% {
|
2464 |
+
-webkit-transform-origin: right bottom;
|
2465 |
+
transform-origin: right bottom;
|
2466 |
+
-webkit-transform: rotate3d(0, 0, 1, 90deg);
|
2467 |
+
transform: rotate3d(0, 0, 1, 90deg);
|
2468 |
+
opacity: 0;
|
2469 |
+
}
|
2470 |
+
}
|
2471 |
+
|
2472 |
+
@keyframes rotateOutUpRight {
|
2473 |
+
0% {
|
2474 |
+
-webkit-transform-origin: right bottom;
|
2475 |
+
transform-origin: right bottom;
|
2476 |
+
opacity: 1;
|
2477 |
+
}
|
2478 |
+
|
2479 |
+
100% {
|
2480 |
+
-webkit-transform-origin: right bottom;
|
2481 |
+
transform-origin: right bottom;
|
2482 |
+
-webkit-transform: rotate3d(0, 0, 1, 90deg);
|
2483 |
+
transform: rotate3d(0, 0, 1, 90deg);
|
2484 |
+
opacity: 0;
|
2485 |
+
}
|
2486 |
+
}
|
2487 |
+
|
2488 |
+
.rotateOutUpRight {
|
2489 |
+
-webkit-animation-name: rotateOutUpRight;
|
2490 |
+
animation-name: rotateOutUpRight;
|
2491 |
+
}
|
2492 |
+
|
2493 |
+
@-webkit-keyframes hinge {
|
2494 |
+
0% {
|
2495 |
+
-webkit-transform-origin: top left;
|
2496 |
+
transform-origin: top left;
|
2497 |
+
-webkit-animation-timing-function: ease-in-out;
|
2498 |
+
animation-timing-function: ease-in-out;
|
2499 |
+
}
|
2500 |
+
|
2501 |
+
20%, 60% {
|
2502 |
+
-webkit-transform: rotate3d(0, 0, 1, 80deg);
|
2503 |
+
transform: rotate3d(0, 0, 1, 80deg);
|
2504 |
+
-webkit-transform-origin: top left;
|
2505 |
+
transform-origin: top left;
|
2506 |
+
-webkit-animation-timing-function: ease-in-out;
|
2507 |
+
animation-timing-function: ease-in-out;
|
2508 |
+
}
|
2509 |
+
|
2510 |
+
40%, 80% {
|
2511 |
+
-webkit-transform: rotate3d(0, 0, 1, 60deg);
|
2512 |
+
transform: rotate3d(0, 0, 1, 60deg);
|
2513 |
+
-webkit-transform-origin: top left;
|
2514 |
+
transform-origin: top left;
|
2515 |
+
-webkit-animation-timing-function: ease-in-out;
|
2516 |
+
animation-timing-function: ease-in-out;
|
2517 |
+
opacity: 1;
|
2518 |
+
}
|
2519 |
+
|
2520 |
+
100% {
|
2521 |
+
-webkit-transform: translate3d(0, 700px, 0);
|
2522 |
+
transform: translate3d(0, 700px, 0);
|
2523 |
+
opacity: 0;
|
2524 |
+
}
|
2525 |
+
}
|
2526 |
+
|
2527 |
+
@keyframes hinge {
|
2528 |
+
0% {
|
2529 |
+
-webkit-transform-origin: top left;
|
2530 |
+
transform-origin: top left;
|
2531 |
+
-webkit-animation-timing-function: ease-in-out;
|
2532 |
+
animation-timing-function: ease-in-out;
|
2533 |
+
}
|
2534 |
+
|
2535 |
+
20%, 60% {
|
2536 |
+
-webkit-transform: rotate3d(0, 0, 1, 80deg);
|
2537 |
+
transform: rotate3d(0, 0, 1, 80deg);
|
2538 |
+
-webkit-transform-origin: top left;
|
2539 |
+
transform-origin: top left;
|
2540 |
+
-webkit-animation-timing-function: ease-in-out;
|
2541 |
+
animation-timing-function: ease-in-out;
|
2542 |
+
}
|
2543 |
+
|
2544 |
+
40%, 80% {
|
2545 |
+
-webkit-transform: rotate3d(0, 0, 1, 60deg);
|
2546 |
+
transform: rotate3d(0, 0, 1, 60deg);
|
2547 |
+
-webkit-transform-origin: top left;
|
2548 |
+
transform-origin: top left;
|
2549 |
+
-webkit-animation-timing-function: ease-in-out;
|
2550 |
+
animation-timing-function: ease-in-out;
|
2551 |
+
opacity: 1;
|
2552 |
+
}
|
2553 |
+
|
2554 |
+
100% {
|
2555 |
+
-webkit-transform: translate3d(0, 700px, 0);
|
2556 |
+
transform: translate3d(0, 700px, 0);
|
2557 |
+
opacity: 0;
|
2558 |
+
}
|
2559 |
+
}
|
2560 |
+
|
2561 |
+
.hinge {
|
2562 |
+
-webkit-animation-name: hinge;
|
2563 |
+
animation-name: hinge;
|
2564 |
+
}
|
2565 |
+
|
2566 |
+
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
2567 |
+
|
2568 |
+
@-webkit-keyframes rollIn {
|
2569 |
+
0% {
|
2570 |
+
opacity: 0;
|
2571 |
+
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
|
2572 |
+
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
|
2573 |
+
}
|
2574 |
+
|
2575 |
+
100% {
|
2576 |
+
opacity: 1;
|
2577 |
+
-webkit-transform: none;
|
2578 |
+
transform: none;
|
2579 |
+
}
|
2580 |
+
}
|
2581 |
+
|
2582 |
+
@keyframes rollIn {
|
2583 |
+
0% {
|
2584 |
+
opacity: 0;
|
2585 |
+
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
|
2586 |
+
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
|
2587 |
+
}
|
2588 |
+
|
2589 |
+
100% {
|
2590 |
+
opacity: 1;
|
2591 |
+
-webkit-transform: none;
|
2592 |
+
transform: none;
|
2593 |
+
}
|
2594 |
+
}
|
2595 |
+
|
2596 |
+
.rollIn {
|
2597 |
+
-webkit-animation-name: rollIn;
|
2598 |
+
animation-name: rollIn;
|
2599 |
+
}
|
2600 |
+
|
2601 |
+
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
2602 |
+
|
2603 |
+
@-webkit-keyframes rollOut {
|
2604 |
+
0% {
|
2605 |
+
opacity: 1;
|
2606 |
+
}
|
2607 |
+
|
2608 |
+
100% {
|
2609 |
+
opacity: 0;
|
2610 |
+
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
|
2611 |
+
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
|
2612 |
+
}
|
2613 |
+
}
|
2614 |
+
|
2615 |
+
@keyframes rollOut {
|
2616 |
+
0% {
|
2617 |
+
opacity: 1;
|
2618 |
+
}
|
2619 |
+
|
2620 |
+
100% {
|
2621 |
+
opacity: 0;
|
2622 |
+
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
|
2623 |
+
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
|
2624 |
+
}
|
2625 |
+
}
|
2626 |
+
|
2627 |
+
.rollOut {
|
2628 |
+
-webkit-animation-name: rollOut;
|
2629 |
+
animation-name: rollOut;
|
2630 |
+
}
|
2631 |
+
|
2632 |
+
@-webkit-keyframes zoomIn {
|
2633 |
+
0% {
|
2634 |
+
opacity: 0;
|
2635 |
+
-webkit-transform: scale3d(.3, .3, .3);
|
2636 |
+
transform: scale3d(.3, .3, .3);
|
2637 |
+
}
|
2638 |
+
|
2639 |
+
50% {
|
2640 |
+
opacity: 1;
|
2641 |
+
}
|
2642 |
+
}
|
2643 |
+
|
2644 |
+
@keyframes zoomIn {
|
2645 |
+
0% {
|
2646 |
+
opacity: 0;
|
2647 |
+
-webkit-transform: scale3d(.3, .3, .3);
|
2648 |
+
transform: scale3d(.3, .3, .3);
|
2649 |
+
}
|
2650 |
+
|
2651 |
+
50% {
|
2652 |
+
opacity: 1;
|
2653 |
+
}
|
2654 |
+
}
|
2655 |
+
|
2656 |
+
.zoomIn {
|
2657 |
+
-webkit-animation-name: zoomIn;
|
2658 |
+
animation-name: zoomIn;
|
2659 |
+
}
|
2660 |
+
|
2661 |
+
@-webkit-keyframes zoomInDown {
|
2662 |
+
0% {
|
2663 |
+
opacity: 0;
|
2664 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
|
2665 |
+
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
|
2666 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2667 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2668 |
+
}
|
2669 |
+
|
2670 |
+
60% {
|
2671 |
+
opacity: 1;
|
2672 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
|
2673 |
+
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
|
2674 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2675 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2676 |
+
}
|
2677 |
+
}
|
2678 |
+
|
2679 |
+
@keyframes zoomInDown {
|
2680 |
+
0% {
|
2681 |
+
opacity: 0;
|
2682 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
|
2683 |
+
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
|
2684 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2685 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2686 |
+
}
|
2687 |
+
|
2688 |
+
60% {
|
2689 |
+
opacity: 1;
|
2690 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
|
2691 |
+
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
|
2692 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2693 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2694 |
+
}
|
2695 |
+
}
|
2696 |
+
|
2697 |
+
.zoomInDown {
|
2698 |
+
-webkit-animation-name: zoomInDown;
|
2699 |
+
animation-name: zoomInDown;
|
2700 |
+
}
|
2701 |
+
|
2702 |
+
@-webkit-keyframes zoomInLeft {
|
2703 |
+
0% {
|
2704 |
+
opacity: 0;
|
2705 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
|
2706 |
+
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
|
2707 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2708 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2709 |
+
}
|
2710 |
+
|
2711 |
+
60% {
|
2712 |
+
opacity: 1;
|
2713 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
|
2714 |
+
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
|
2715 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2716 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2717 |
+
}
|
2718 |
+
}
|
2719 |
+
|
2720 |
+
@keyframes zoomInLeft {
|
2721 |
+
0% {
|
2722 |
+
opacity: 0;
|
2723 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
|
2724 |
+
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
|
2725 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2726 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2727 |
+
}
|
2728 |
+
|
2729 |
+
60% {
|
2730 |
+
opacity: 1;
|
2731 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
|
2732 |
+
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
|
2733 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2734 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2735 |
+
}
|
2736 |
+
}
|
2737 |
+
|
2738 |
+
.zoomInLeft {
|
2739 |
+
-webkit-animation-name: zoomInLeft;
|
2740 |
+
animation-name: zoomInLeft;
|
2741 |
+
}
|
2742 |
+
|
2743 |
+
@-webkit-keyframes zoomInRight {
|
2744 |
+
0% {
|
2745 |
+
opacity: 0;
|
2746 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
|
2747 |
+
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
|
2748 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2749 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2750 |
+
}
|
2751 |
+
|
2752 |
+
60% {
|
2753 |
+
opacity: 1;
|
2754 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
|
2755 |
+
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
|
2756 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2757 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2758 |
+
}
|
2759 |
+
}
|
2760 |
+
|
2761 |
+
@keyframes zoomInRight {
|
2762 |
+
0% {
|
2763 |
+
opacity: 0;
|
2764 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
|
2765 |
+
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
|
2766 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2767 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2768 |
+
}
|
2769 |
+
|
2770 |
+
60% {
|
2771 |
+
opacity: 1;
|
2772 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
|
2773 |
+
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
|
2774 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2775 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2776 |
+
}
|
2777 |
+
}
|
2778 |
+
|
2779 |
+
.zoomInRight {
|
2780 |
+
-webkit-animation-name: zoomInRight;
|
2781 |
+
animation-name: zoomInRight;
|
2782 |
+
}
|
2783 |
+
|
2784 |
+
@-webkit-keyframes zoomInUp {
|
2785 |
+
0% {
|
2786 |
+
opacity: 0;
|
2787 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
|
2788 |
+
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
|
2789 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2790 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2791 |
+
}
|
2792 |
+
|
2793 |
+
60% {
|
2794 |
+
opacity: 1;
|
2795 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
|
2796 |
+
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
|
2797 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2798 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2799 |
+
}
|
2800 |
+
}
|
2801 |
+
|
2802 |
+
@keyframes zoomInUp {
|
2803 |
+
0% {
|
2804 |
+
opacity: 0;
|
2805 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
|
2806 |
+
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
|
2807 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2808 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2809 |
+
}
|
2810 |
+
|
2811 |
+
60% {
|
2812 |
+
opacity: 1;
|
2813 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
|
2814 |
+
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
|
2815 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2816 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2817 |
+
}
|
2818 |
+
}
|
2819 |
+
|
2820 |
+
.zoomInUp {
|
2821 |
+
-webkit-animation-name: zoomInUp;
|
2822 |
+
animation-name: zoomInUp;
|
2823 |
+
}
|
2824 |
+
|
2825 |
+
@-webkit-keyframes zoomOut {
|
2826 |
+
0% {
|
2827 |
+
opacity: 1;
|
2828 |
+
}
|
2829 |
+
|
2830 |
+
50% {
|
2831 |
+
opacity: 0;
|
2832 |
+
-webkit-transform: scale3d(.3, .3, .3);
|
2833 |
+
transform: scale3d(.3, .3, .3);
|
2834 |
+
}
|
2835 |
+
|
2836 |
+
100% {
|
2837 |
+
opacity: 0;
|
2838 |
+
}
|
2839 |
+
}
|
2840 |
+
|
2841 |
+
@keyframes zoomOut {
|
2842 |
+
0% {
|
2843 |
+
opacity: 1;
|
2844 |
+
}
|
2845 |
+
|
2846 |
+
50% {
|
2847 |
+
opacity: 0;
|
2848 |
+
-webkit-transform: scale3d(.3, .3, .3);
|
2849 |
+
transform: scale3d(.3, .3, .3);
|
2850 |
+
}
|
2851 |
+
|
2852 |
+
100% {
|
2853 |
+
opacity: 0;
|
2854 |
+
}
|
2855 |
+
}
|
2856 |
+
|
2857 |
+
.zoomOut {
|
2858 |
+
-webkit-animation-name: zoomOut;
|
2859 |
+
animation-name: zoomOut;
|
2860 |
+
}
|
2861 |
+
|
2862 |
+
@-webkit-keyframes zoomOutDown {
|
2863 |
+
40% {
|
2864 |
+
opacity: 1;
|
2865 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
|
2866 |
+
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
|
2867 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2868 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2869 |
+
}
|
2870 |
+
|
2871 |
+
100% {
|
2872 |
+
opacity: 0;
|
2873 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
|
2874 |
+
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
|
2875 |
+
-webkit-transform-origin: center bottom;
|
2876 |
+
transform-origin: center bottom;
|
2877 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2878 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2879 |
+
}
|
2880 |
+
}
|
2881 |
+
|
2882 |
+
@keyframes zoomOutDown {
|
2883 |
+
40% {
|
2884 |
+
opacity: 1;
|
2885 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
|
2886 |
+
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
|
2887 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2888 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2889 |
+
}
|
2890 |
+
|
2891 |
+
100% {
|
2892 |
+
opacity: 0;
|
2893 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
|
2894 |
+
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
|
2895 |
+
-webkit-transform-origin: center bottom;
|
2896 |
+
transform-origin: center bottom;
|
2897 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2898 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2899 |
+
}
|
2900 |
+
}
|
2901 |
+
|
2902 |
+
.zoomOutDown {
|
2903 |
+
-webkit-animation-name: zoomOutDown;
|
2904 |
+
animation-name: zoomOutDown;
|
2905 |
+
}
|
2906 |
+
|
2907 |
+
@-webkit-keyframes zoomOutLeft {
|
2908 |
+
40% {
|
2909 |
+
opacity: 1;
|
2910 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
|
2911 |
+
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
|
2912 |
+
}
|
2913 |
+
|
2914 |
+
100% {
|
2915 |
+
opacity: 0;
|
2916 |
+
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
|
2917 |
+
transform: scale(.1) translate3d(-2000px, 0, 0);
|
2918 |
+
-webkit-transform-origin: left center;
|
2919 |
+
transform-origin: left center;
|
2920 |
+
}
|
2921 |
+
}
|
2922 |
+
|
2923 |
+
@keyframes zoomOutLeft {
|
2924 |
+
40% {
|
2925 |
+
opacity: 1;
|
2926 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
|
2927 |
+
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
|
2928 |
+
}
|
2929 |
+
|
2930 |
+
100% {
|
2931 |
+
opacity: 0;
|
2932 |
+
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
|
2933 |
+
transform: scale(.1) translate3d(-2000px, 0, 0);
|
2934 |
+
-webkit-transform-origin: left center;
|
2935 |
+
transform-origin: left center;
|
2936 |
+
}
|
2937 |
+
}
|
2938 |
+
|
2939 |
+
.zoomOutLeft {
|
2940 |
+
-webkit-animation-name: zoomOutLeft;
|
2941 |
+
animation-name: zoomOutLeft;
|
2942 |
+
}
|
2943 |
+
|
2944 |
+
@-webkit-keyframes zoomOutRight {
|
2945 |
+
40% {
|
2946 |
+
opacity: 1;
|
2947 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
|
2948 |
+
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
|
2949 |
+
}
|
2950 |
+
|
2951 |
+
100% {
|
2952 |
+
opacity: 0;
|
2953 |
+
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
|
2954 |
+
transform: scale(.1) translate3d(2000px, 0, 0);
|
2955 |
+
-webkit-transform-origin: right center;
|
2956 |
+
transform-origin: right center;
|
2957 |
+
}
|
2958 |
+
}
|
2959 |
+
|
2960 |
+
@keyframes zoomOutRight {
|
2961 |
+
40% {
|
2962 |
+
opacity: 1;
|
2963 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
|
2964 |
+
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
|
2965 |
+
}
|
2966 |
+
|
2967 |
+
100% {
|
2968 |
+
opacity: 0;
|
2969 |
+
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
|
2970 |
+
transform: scale(.1) translate3d(2000px, 0, 0);
|
2971 |
+
-webkit-transform-origin: right center;
|
2972 |
+
transform-origin: right center;
|
2973 |
+
}
|
2974 |
+
}
|
2975 |
+
|
2976 |
+
.zoomOutRight {
|
2977 |
+
-webkit-animation-name: zoomOutRight;
|
2978 |
+
animation-name: zoomOutRight;
|
2979 |
+
}
|
2980 |
+
|
2981 |
+
@-webkit-keyframes zoomOutUp {
|
2982 |
+
40% {
|
2983 |
+
opacity: 1;
|
2984 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
|
2985 |
+
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
|
2986 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2987 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
2988 |
+
}
|
2989 |
+
|
2990 |
+
100% {
|
2991 |
+
opacity: 0;
|
2992 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
|
2993 |
+
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
|
2994 |
+
-webkit-transform-origin: center bottom;
|
2995 |
+
transform-origin: center bottom;
|
2996 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2997 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
2998 |
+
}
|
2999 |
+
}
|
3000 |
+
|
3001 |
+
@keyframes zoomOutUp {
|
3002 |
+
40% {
|
3003 |
+
opacity: 1;
|
3004 |
+
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
|
3005 |
+
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
|
3006 |
+
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
3007 |
+
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
3008 |
+
}
|
3009 |
+
|
3010 |
+
100% {
|
3011 |
+
opacity: 0;
|
3012 |
+
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
|
3013 |
+
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
|
3014 |
+
-webkit-transform-origin: center bottom;
|
3015 |
+
transform-origin: center bottom;
|
3016 |
+
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
3017 |
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
3018 |
+
}
|
3019 |
+
}
|
3020 |
+
|
3021 |
+
.zoomOutUp {
|
3022 |
+
-webkit-animation-name: zoomOutUp;
|
3023 |
+
animation-name: zoomOutUp;
|
3024 |
+
}
|
3025 |
+
|
3026 |
+
@-webkit-keyframes slideInDown {
|
3027 |
+
0% {
|
3028 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
3029 |
+
transform: translate3d(0, -100%, 0);
|
3030 |
+
visibility: visible;
|
3031 |
+
}
|
3032 |
+
|
3033 |
+
100% {
|
3034 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3035 |
+
transform: translate3d(0, 0, 0);
|
3036 |
+
}
|
3037 |
+
}
|
3038 |
+
|
3039 |
+
@keyframes slideInDown {
|
3040 |
+
0% {
|
3041 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
3042 |
+
transform: translate3d(0, -100%, 0);
|
3043 |
+
visibility: visible;
|
3044 |
+
}
|
3045 |
+
|
3046 |
+
100% {
|
3047 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3048 |
+
transform: translate3d(0, 0, 0);
|
3049 |
+
}
|
3050 |
+
}
|
3051 |
+
|
3052 |
+
.slideInDown {
|
3053 |
+
-webkit-animation-name: slideInDown;
|
3054 |
+
animation-name: slideInDown;
|
3055 |
+
}
|
3056 |
+
|
3057 |
+
@-webkit-keyframes slideInLeft {
|
3058 |
+
0% {
|
3059 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
3060 |
+
transform: translate3d(-100%, 0, 0);
|
3061 |
+
visibility: visible;
|
3062 |
+
}
|
3063 |
+
|
3064 |
+
100% {
|
3065 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3066 |
+
transform: translate3d(0, 0, 0);
|
3067 |
+
}
|
3068 |
+
}
|
3069 |
+
|
3070 |
+
@keyframes slideInLeft {
|
3071 |
+
0% {
|
3072 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
3073 |
+
transform: translate3d(-100%, 0, 0);
|
3074 |
+
visibility: visible;
|
3075 |
+
}
|
3076 |
+
|
3077 |
+
100% {
|
3078 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3079 |
+
transform: translate3d(0, 0, 0);
|
3080 |
+
}
|
3081 |
+
}
|
3082 |
+
|
3083 |
+
.slideInLeft {
|
3084 |
+
-webkit-animation-name: slideInLeft;
|
3085 |
+
animation-name: slideInLeft;
|
3086 |
+
}
|
3087 |
+
|
3088 |
+
@-webkit-keyframes slideInRight {
|
3089 |
+
0% {
|
3090 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
3091 |
+
transform: translate3d(100%, 0, 0);
|
3092 |
+
visibility: visible;
|
3093 |
+
}
|
3094 |
+
|
3095 |
+
100% {
|
3096 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3097 |
+
transform: translate3d(0, 0, 0);
|
3098 |
+
}
|
3099 |
+
}
|
3100 |
+
|
3101 |
+
@keyframes slideInRight {
|
3102 |
+
0% {
|
3103 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
3104 |
+
transform: translate3d(100%, 0, 0);
|
3105 |
+
visibility: visible;
|
3106 |
+
}
|
3107 |
+
|
3108 |
+
100% {
|
3109 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3110 |
+
transform: translate3d(0, 0, 0);
|
3111 |
+
}
|
3112 |
+
}
|
3113 |
+
|
3114 |
+
.slideInRight {
|
3115 |
+
-webkit-animation-name: slideInRight;
|
3116 |
+
animation-name: slideInRight;
|
3117 |
+
}
|
3118 |
+
|
3119 |
+
@-webkit-keyframes slideInUp {
|
3120 |
+
0% {
|
3121 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
3122 |
+
transform: translate3d(0, 100%, 0);
|
3123 |
+
visibility: visible;
|
3124 |
+
}
|
3125 |
+
|
3126 |
+
100% {
|
3127 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3128 |
+
transform: translate3d(0, 0, 0);
|
3129 |
+
}
|
3130 |
+
}
|
3131 |
+
|
3132 |
+
@keyframes slideInUp {
|
3133 |
+
0% {
|
3134 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
3135 |
+
transform: translate3d(0, 100%, 0);
|
3136 |
+
visibility: visible;
|
3137 |
+
}
|
3138 |
+
|
3139 |
+
100% {
|
3140 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3141 |
+
transform: translate3d(0, 0, 0);
|
3142 |
+
}
|
3143 |
+
}
|
3144 |
+
|
3145 |
+
.slideInUp {
|
3146 |
+
-webkit-animation-name: slideInUp;
|
3147 |
+
animation-name: slideInUp;
|
3148 |
+
}
|
3149 |
+
|
3150 |
+
@-webkit-keyframes slideOutDown {
|
3151 |
+
0% {
|
3152 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3153 |
+
transform: translate3d(0, 0, 0);
|
3154 |
+
}
|
3155 |
+
|
3156 |
+
100% {
|
3157 |
+
visibility: hidden;
|
3158 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
3159 |
+
transform: translate3d(0, 100%, 0);
|
3160 |
+
}
|
3161 |
+
}
|
3162 |
+
|
3163 |
+
@keyframes slideOutDown {
|
3164 |
+
0% {
|
3165 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3166 |
+
transform: translate3d(0, 0, 0);
|
3167 |
+
}
|
3168 |
+
|
3169 |
+
100% {
|
3170 |
+
visibility: hidden;
|
3171 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
3172 |
+
transform: translate3d(0, 100%, 0);
|
3173 |
+
}
|
3174 |
+
}
|
3175 |
+
|
3176 |
+
.slideOutDown {
|
3177 |
+
-webkit-animation-name: slideOutDown;
|
3178 |
+
animation-name: slideOutDown;
|
3179 |
+
}
|
3180 |
+
|
3181 |
+
@-webkit-keyframes slideOutLeft {
|
3182 |
+
0% {
|
3183 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3184 |
+
transform: translate3d(0, 0, 0);
|
3185 |
+
}
|
3186 |
+
|
3187 |
+
100% {
|
3188 |
+
visibility: hidden;
|
3189 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
3190 |
+
transform: translate3d(-100%, 0, 0);
|
3191 |
+
}
|
3192 |
+
}
|
3193 |
+
|
3194 |
+
@keyframes slideOutLeft {
|
3195 |
+
0% {
|
3196 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3197 |
+
transform: translate3d(0, 0, 0);
|
3198 |
+
}
|
3199 |
+
|
3200 |
+
100% {
|
3201 |
+
visibility: hidden;
|
3202 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
3203 |
+
transform: translate3d(-100%, 0, 0);
|
3204 |
+
}
|
3205 |
+
}
|
3206 |
+
|
3207 |
+
.slideOutLeft {
|
3208 |
+
-webkit-animation-name: slideOutLeft;
|
3209 |
+
animation-name: slideOutLeft;
|
3210 |
+
}
|
3211 |
+
|
3212 |
+
@-webkit-keyframes slideOutRight {
|
3213 |
+
0% {
|
3214 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3215 |
+
transform: translate3d(0, 0, 0);
|
3216 |
+
}
|
3217 |
+
|
3218 |
+
100% {
|
3219 |
+
visibility: hidden;
|
3220 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
3221 |
+
transform: translate3d(100%, 0, 0);
|
3222 |
+
}
|
3223 |
+
}
|
3224 |
+
|
3225 |
+
@keyframes slideOutRight {
|
3226 |
+
0% {
|
3227 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3228 |
+
transform: translate3d(0, 0, 0);
|
3229 |
+
}
|
3230 |
+
|
3231 |
+
100% {
|
3232 |
+
visibility: hidden;
|
3233 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
3234 |
+
transform: translate3d(100%, 0, 0);
|
3235 |
+
}
|
3236 |
+
}
|
3237 |
+
|
3238 |
+
.slideOutRight {
|
3239 |
+
-webkit-animation-name: slideOutRight;
|
3240 |
+
animation-name: slideOutRight;
|
3241 |
+
}
|
3242 |
+
|
3243 |
+
@-webkit-keyframes slideOutUp {
|
3244 |
+
0% {
|
3245 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3246 |
+
transform: translate3d(0, 0, 0);
|
3247 |
+
}
|
3248 |
+
|
3249 |
+
100% {
|
3250 |
+
visibility: hidden;
|
3251 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
3252 |
+
transform: translate3d(0, -100%, 0);
|
3253 |
+
}
|
3254 |
+
}
|
3255 |
+
|
3256 |
+
@keyframes slideOutUp {
|
3257 |
+
0% {
|
3258 |
+
-webkit-transform: translate3d(0, 0, 0);
|
3259 |
+
transform: translate3d(0, 0, 0);
|
3260 |
+
}
|
3261 |
+
|
3262 |
+
100% {
|
3263 |
+
visibility: hidden;
|
3264 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
3265 |
+
transform: translate3d(0, -100%, 0);
|
3266 |
+
}
|
3267 |
+
}
|
3268 |
+
|
3269 |
+
.slideOutUp {
|
3270 |
+
-webkit-animation-name: slideOutUp;
|
3271 |
+
animation-name: slideOutUp;
|
3272 |
+
}
|
skin/frontend/abserve/shoestore/css/styles.css
CHANGED
@@ -1,34 +1,3 @@
|
|
1 |
-
/**
|
2 |
-
* Magento
|
3 |
-
*
|
4 |
-
* NOTICE OF LICENSE
|
5 |
-
*
|
6 |
-
* This source file is subject to the Academic Free License (AFL 3.0)
|
7 |
-
* that is bundled with this package in the file LICENSE_AFL.txt.
|
8 |
-
* It is also available through the world-wide-web at this URL:
|
9 |
-
* http://opensource.org/licenses/afl-3.0.php
|
10 |
-
* If you did not receive a copy of the license and are unable to
|
11 |
-
* obtain it through the world-wide-web, please send an email
|
12 |
-
* to license@magento.com so we can send you a copy immediately.
|
13 |
-
*
|
14 |
-
* DISCLAIMER
|
15 |
-
*
|
16 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
17 |
-
* versions in the future. If you wish to customize Magento for your
|
18 |
-
* needs please refer to http://www.magento.com for more information.
|
19 |
-
*
|
20 |
-
* @category design
|
21 |
-
* @package rwd_default
|
22 |
-
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
23 |
-
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
24 |
-
*/
|
25 |
-
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
|
26 |
-
/* ==========================================================================
|
27 |
-
HTML5 display definitions
|
28 |
-
========================================================================== */
|
29 |
-
/*
|
30 |
-
* Corrects `block` display not defined in IE 8/9.
|
31 |
-
*/
|
32 |
article,
|
33 |
aside,
|
34 |
details,
|
@@ -394,6 +363,7 @@ body {
|
|
394 |
background: #FFFFFF;
|
395 |
color: #000000;
|
396 |
line-height: 1;
|
|
|
397 |
}
|
398 |
|
399 |
html,
|
@@ -1207,9 +1177,9 @@ a.button:hover {
|
|
1207 |
.main-container,
|
1208 |
.footer-container {
|
1209 |
position: relative;
|
1210 |
-
max-width:
|
1211 |
margin: 0 auto;
|
1212 |
-
padding: 30px;
|
1213 |
}
|
1214 |
.main-container:after,
|
1215 |
.footer-container:after {
|
@@ -2791,7 +2761,7 @@ form .form-instructions {
|
|
2791 |
}
|
2792 |
|
2793 |
.data-table th {
|
2794 |
-
background: #
|
2795 |
text-transform: uppercase;
|
2796 |
line-height: 1.4;
|
2797 |
white-space: nowrap;
|
@@ -3669,7 +3639,7 @@ a.skip-link {
|
|
3669 |
display: block;
|
3670 |
padding: 5px 10px;
|
3671 |
line-height: 23px;
|
3672 |
-
text-align:
|
3673 |
}
|
3674 |
|
3675 |
|
@@ -3691,6 +3661,9 @@ a.skip-link {
|
|
3691 |
padding: 0 10px 0 0;
|
3692 |
width: auto;
|
3693 |
}
|
|
|
|
|
|
|
3694 |
|
3695 |
/* #header-cart.skip-active {
|
3696 |
background: #FBFBFB;
|
@@ -5295,7 +5268,7 @@ p.product-name a:hover {
|
|
5295 |
padding: 40px 26px;
|
5296 |
border: 1px solid #cccccc;
|
5297 |
border-top: 0;
|
5298 |
-
min-height:
|
5299 |
}
|
5300 |
.product-collateral > dl > dd.current {
|
5301 |
display: block;
|
@@ -7520,12 +7493,13 @@ body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-l
|
|
7520 |
.customer-account-login .scaffold-form label:first-child {
|
7521 |
width: 115px;
|
7522 |
}
|
7523 |
-
.customer-account-login .col2-set .buttons-set {
|
7524 |
text-align: left;
|
7525 |
border-top: 0;
|
7526 |
}
|
7527 |
.customer-account-login .col2-set .buttons-set button,
|
7528 |
-
.customer-account-login .col2-set .buttons-set .button
|
|
|
7529 |
float: none;
|
7530 |
min-width: 50%;
|
7531 |
margin: 0;
|
@@ -8803,7 +8777,7 @@ div.paypal-logo span > img {
|
|
8803 |
}
|
8804 |
#wishlist-table.clean-table thead th {
|
8805 |
font-size: 15px;
|
8806 |
-
padding:
|
8807 |
text-transform: uppercase;
|
8808 |
}
|
8809 |
#wishlist-table .product-name {
|
@@ -8843,7 +8817,7 @@ div.paypal-logo span > img {
|
|
8843 |
}
|
8844 |
#wishlist-table .item-manage .button {
|
8845 |
font-size: 11px;
|
8846 |
-
padding:
|
8847 |
}
|
8848 |
#wishlist-table .cart-cell {
|
8849 |
text-align: center;
|
@@ -8864,7 +8838,7 @@ div.paypal-logo span > img {
|
|
8864 |
#wishlist-table td.customer-wishlist-item-cart .button {
|
8865 |
font-size: 12px;
|
8866 |
margin-bottom: 10px;
|
8867 |
-
padding:
|
8868 |
width: 100%;
|
8869 |
}
|
8870 |
#wishlist-table td.customer-wishlist-item-cart .truncated {
|
@@ -9142,8 +9116,7 @@ div.paypal-logo span > img {
|
|
9142 |
width: 40px;
|
9143 |
}
|
9144 |
.header-minicart .mini-products-list, .header-minicart1 .mini-products-list {
|
9145 |
-
padding: 10px;
|
9146 |
-
padding-top: 0px;
|
9147 |
}
|
9148 |
.header-minicart .mini-products-list li, .header-minicart1 .mini-products-list li {
|
9149 |
padding: 8px 5px 8px 11px;
|
@@ -9175,12 +9148,13 @@ div.paypal-logo span > img {
|
|
9175 |
line-height: 33px;
|
9176 |
}
|
9177 |
.header-minicart .info-wrapper .qty, .header-minicart1 .info-wrapper .qty {
|
|
|
|
|
|
|
9178 |
padding-left: 4px;
|
9179 |
padding-right: 4px;
|
9180 |
-
margin-right: 2px;
|
9181 |
-
width: 3.2em;
|
9182 |
text-align: center;
|
9183 |
-
|
9184 |
}
|
9185 |
.header-minicart .info-wrapper .quantity-button, .header-minicart1 .info-wrapper .quantity-button {
|
9186 |
opacity: 0;
|
@@ -9253,6 +9227,10 @@ div.paypal-logo span > img {
|
|
9253 |
float: none;
|
9254 |
text-align: center;
|
9255 |
}
|
|
|
|
|
|
|
|
|
9256 |
}
|
9257 |
@media only screen and (max-width: 479px) {
|
9258 |
.header-minicart a.skip-cart {
|
@@ -10393,21 +10371,30 @@ body {
|
|
10393 |
}
|
10394 |
|
10395 |
/* Colors */
|
10396 |
-
.product-view .add-to-cart .qty-wrapper .qty, .customer-account .my-account .dashboard .page-title h1, .cms-privacy-policy-cookie-restriction-mode h1, .cms-customer-service .page-title h1, .cms-customer-service .disc a, .cms-customer-service dl dt, .about_main > h4, .about_content h4, .services i, .catalog-product-view .product-view .availability.in-stock span, .catalog-category-view #narrow-by-list dt, a, h1, .h1, .block-title h2, .block-title h3, .block-title strong, .block-account li strong, .block-cms-menu li strong, .block-account li a:hover, .block-cms-menu li a:hover, .button2 span, .button2 span span, .breadcrumbs a:hover, .promo-msg, .btn-remove:after, .price-box .price, .price-box .minimal-price-link, .price-box .special-price, .pages a, .pages .current, #header-account a:hover, .footer .block-title, .footer address, .footer .links a:hover, h2.product-name a:hover, h3.product-name a:hover, h4.product-name a:hover, h5.product-name a:hover, p.product-name a:hover, .product-view .product-shop .product-name .h1, .product-view .product-img-box .product-name h1, .product-view .product-shop .price-box .regular-price .price, .product-view .product-shop .price-box .special-price .price, .product-view .product-shop .price-box .full-product-price .price, .grouped-items-table .name-wrapper, .crosssell h2, .opc .section.allow .step-title:hover h2, .opc .section.active .step-title h2, .product-view .product-options .swatch-attr .select-label, #customer-reviews h2, #customer-reviews h3 span, #customer-reviews dl dd .review-meta, #wishlist-table .product-name a, #wishlist-table .giftregisty-add li, #wishlist-table .truncated .details, .header-minicart .product-details .product-name a, .header-minicart .info-wrapper td, .header-minicart .subtotal .price, .search-autocomplete ul li, .product-review .product-details h2, .cms-page-view .std h1, .cms-no-route .std h1, .cms-page-view .std h2, .cms-no-route .std h2 {
|
10397 |
color: #60a9dc;
|
10398 |
}
|
|
|
|
|
|
|
10399 |
.mp_quickview_icon, .button, .cart-table .product-cart-actions .button, #co-shipping-method-form .buttons-set .button, .footer .button,.add-to-links li a {
|
10400 |
background: #60a9dc;
|
10401 |
}
|
10402 |
-
.pages li, .minicart-wrapper .block-subtitle , .buttons-set .back-link, .footer_contact_container, .blog .blog_right, .blog_row2 .blog_left, .customer-account .back-link > a, .cms-home .category_navigation > li:first-child, .offer_price, .btn-previous:hover, .opc .section .step-title .number, .opc .section.allow.active .step-title .number, .no-touch .opc .section.allow:hover .step-title .number, .search-autocomplete ul li.selected {
|
10403 |
background-color: #60a9dc;
|
10404 |
}
|
|
|
|
|
|
|
10405 |
.btn-remove:hover,.btn-remove:hover::after, .btn-previous:hover, #narrow-by-list dd .swatch-link:hover .swatch-label, .configurable-swatch-list .hover .swatch-link, .configurable-swatch-list .selected .swatch-link, .swatch-link:hover {
|
10406 |
border-color: #60a9dc;
|
10407 |
}
|
10408 |
.truncated .truncated_full_value .item-options, .pages .next:hover, .pages .previous:hover, .input-text:focus, #wishlist-table textarea:focus, .search-autocomplete ul {
|
10409 |
border: 1px solid #60a9dc;
|
10410 |
}
|
|
|
|
|
|
|
10411 |
.services i {
|
10412 |
border: 3px solid #60a9dc;
|
10413 |
}
|
@@ -10445,9 +10432,9 @@ body {
|
|
10445 |
margin: 0;
|
10446 |
padding: 15px 1px 15px 30px;
|
10447 |
border-bottom: 1px solid #ededed;
|
10448 |
-
background-color: #656464
|
10449 |
}
|
10450 |
-
.buttons-set .back-link > a, .review-product-list .back-link > a, .checkout-cart-index .cart-forms button > span span, .newsletter-manage-index .form-list .control > label, .customer-account .back-link > a, .customer-account-edit .my-account form .control > label, .customer-account h2, .catalogsearch-advanced-index h2, .sales-guest-form h1, .catalog-seo-sitemap-product h1, .catalog-seo-sitemap-category h1, .contacts-index-index h1, header #search_mini_form i, .footer_block h2, .footer_copyright, .cms-home .category_navigation > li:first-child a, .mp_quickview_icon span {
|
10451 |
color: #fff;
|
10452 |
}
|
10453 |
#narrow-by-list .title {
|
@@ -10457,7 +10444,7 @@ body {
|
|
10457 |
background-color: #f6f4f5;
|
10458 |
}
|
10459 |
.customer-account .scaffold-form, .sales-guest-form .col1-layout .col-main, .advanced-search, .catalog-seo-sitemap-category .page-sitemap, .catalog-seo-sitemap-product .page-sitemap, .contacts-index-index .col2-left-layout .col-main {
|
10460 |
-
background: #
|
10461 |
border: 1px solid #ededed;
|
10462 |
padding: 0;
|
10463 |
}
|
@@ -10490,16 +10477,19 @@ body {
|
|
10490 |
}
|
10491 |
|
10492 |
/* Hover Color */
|
10493 |
-
.product-collateral .toggle-tabs li.current > span, a:hover, .search-autocomplete ul li:hover, .services .services_link a, .header-language-container .header_left i {
|
10494 |
color: #ea4c89;
|
10495 |
text-decoration: none;
|
10496 |
}
|
10497 |
.button:hover, .cart-table .product-cart-actions .button:hover, #co-shipping-method-form .buttons-set .button:hover, .footer .button:hover,.add-to-links li a:hover {
|
10498 |
background: #ea4c89;
|
10499 |
}
|
10500 |
-
.new-products .product-carousel .item:hover .offer_price, .cms-home .category-products .category-carousel .item:hover .offer_price, .catalog-category-view li.item:hover .offer_price, header #search_mini_form .button.search-button, .block-layered-nav .block-subtitle--filter:hover, .slideshow-pager span:hover:before, .catalog-category-view .products-grid li.item:hover .offer_price {
|
10501 |
background-color: #ea4c89;
|
10502 |
}
|
|
|
|
|
|
|
10503 |
.slideshow-prev:hover:before {
|
10504 |
border-color: transparent #ea4c89 transparent transparent;
|
10505 |
}
|
@@ -10509,9 +10499,9 @@ body {
|
|
10509 |
.header-language-container .header_left i {
|
10510 |
border: 1px solid #ea4c89;
|
10511 |
}
|
10512 |
-
|
10513 |
-
border
|
10514 |
-
}
|
10515 |
|
10516 |
/*color*/
|
10517 |
.header-minicart1 .cart_icon i, .cms-home .category_navigation > li a, .new-products .product-name > a, .new-products .title > h2, .catalog-product-view .product-view .product-name .h1, .catalog-category-view .products-grid .product-name > a, .services h6, .services_link a, .catalog-category-view #products-list .product-name > a {
|
@@ -10630,8 +10620,19 @@ body {
|
|
10630 |
.header-language-container .store-language-container {
|
10631 |
float: left;
|
10632 |
}
|
10633 |
-
.header_right .store-language-container select {
|
10634 |
color: #417da7;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10635 |
}
|
10636 |
/*Header*/
|
10637 |
header #search_mini_form .button.search-button {
|
@@ -10661,8 +10662,9 @@ header #search_mini_form i {
|
|
10661 |
color: #626161;
|
10662 |
height: 35px;
|
10663 |
text-transform: capitalize;
|
10664 |
-
padding: 0 15px;
|
10665 |
float: left;
|
|
|
10666 |
}
|
10667 |
@media only screen and (max-width: 480px) {
|
10668 |
#header #search_mini_form select {
|
@@ -10699,6 +10701,9 @@ header #search_mini_form i {
|
|
10699 |
max-width: 1920px;
|
10700 |
padding: 0 45px;
|
10701 |
}
|
|
|
|
|
|
|
10702 |
.top_header {
|
10703 |
position: relative;
|
10704 |
}
|
@@ -10717,12 +10722,6 @@ header #search_mini_form i {
|
|
10717 |
.top_header #header-search1 form {
|
10718 |
padding-top: 35px;
|
10719 |
}
|
10720 |
-
/*.top_header .header-minicart1 {
|
10721 |
-
position: absolute;
|
10722 |
-
right: 50px;
|
10723 |
-
top: 35%;
|
10724 |
-
padding-right: 10px;
|
10725 |
-
}*/
|
10726 |
.top_header .header-minicart1 {
|
10727 |
padding-right: 10px;
|
10728 |
position: absolute;
|
@@ -10757,15 +10756,12 @@ body.cms-home .main-container {
|
|
10757 |
.header-minicart1 .cart_icon i {
|
10758 |
background-color: transparent;
|
10759 |
}
|
10760 |
-
/*.header-minicart1 .skip-link.skip-cart {
|
10761 |
-
border: 1px solid #dedede;
|
10762 |
-
}*/
|
10763 |
.header-minicart1 .skip-link.skip-cart {
|
10764 |
border: 1px solid #dedede;
|
10765 |
position: absolute;
|
10766 |
right: 10px;
|
10767 |
top: 0;
|
10768 |
-
min-width:
|
10769 |
}
|
10770 |
.page-header-container .header-minicart, .page-header-container .logo, .page-header-container #header-search {
|
10771 |
display: none;
|
@@ -10786,22 +10782,26 @@ body.cms-home .main-container {
|
|
10786 |
max-width: 222px;
|
10787 |
width: 232px;
|
10788 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10789 |
}
|
10790 |
@media only screen and (max-width: 1300px) {
|
10791 |
-
div.menu
|
10792 |
-
|
10793 |
}
|
10794 |
}
|
10795 |
@media only screen and (max-width: 991px) {
|
10796 |
-
div.menu a:link, div.menu a:visited {
|
10797 |
-
padding: 0 15px;
|
10798 |
-
}
|
10799 |
.top_header #header-search1 {
|
10800 |
width: 550px;
|
10801 |
}
|
10802 |
-
div.menu {
|
10803 |
-
font-size: 13px;
|
10804 |
-
}
|
10805 |
}
|
10806 |
@media only screen and (max-width: 900px) {
|
10807 |
.top_header #header-search1 {
|
@@ -10828,6 +10828,7 @@ div.menu {
|
|
10828 |
text-align: center;
|
10829 |
text-overflow: ellipsis;
|
10830 |
white-space: nowrap;
|
|
|
10831 |
}
|
10832 |
.services h6, .services_link a {
|
10833 |
font-size: 1em;
|
@@ -10855,6 +10856,8 @@ div.menu {
|
|
10855 |
font-size: 2.126em;
|
10856 |
margin: 0 auto 16px;
|
10857 |
padding: 19px;
|
|
|
|
|
10858 |
}
|
10859 |
.services_link {
|
10860 |
text-align: center;
|
@@ -11161,6 +11164,10 @@ nav::after {
|
|
11161 |
position: absolute;
|
11162 |
top: 50%;
|
11163 |
}
|
|
|
|
|
|
|
|
|
11164 |
.brands ul li:nth-child(4n) {
|
11165 |
border-right: 0 none;
|
11166 |
}
|
@@ -11220,6 +11227,13 @@ nav::after {
|
|
11220 |
}
|
11221 |
.advertisement img {
|
11222 |
max-width: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11223 |
}
|
11224 |
@media only screen and (max-width: 767px) {
|
11225 |
.advertise_container {
|
@@ -11497,6 +11511,9 @@ nav::after {
|
|
11497 |
.pages .next.i-next, .toolbar .previous.i-previous {
|
11498 |
font-size: 0;
|
11499 |
}
|
|
|
|
|
|
|
11500 |
@media only screen and (max-width: 767px) {
|
11501 |
.category-products .toolbar .sorter {
|
11502 |
width: 80%;
|
@@ -11568,7 +11585,6 @@ nav::after {
|
|
11568 |
margin: 0 auto;
|
11569 |
position: absolute;
|
11570 |
right: 0;
|
11571 |
-
width: 65%;
|
11572 |
}
|
11573 |
.catalog-category-view .products-grid .product-image, .catalogsearch-result-index .products-grid .product-image {
|
11574 |
height: 250px;
|
@@ -11828,7 +11844,7 @@ nav::after {
|
|
11828 |
.addthis_toolbox, .product-view .product-img-box .more-views h2, .breadcrumbs {
|
11829 |
display: none;
|
11830 |
}
|
11831 |
-
.new-products li .product-info .price-box .price, .catalog-product-view .product-view .price-info .price, .catalog-product-view .product-view .availability.in-stock span {
|
11832 |
font-weight: bold;
|
11833 |
}
|
11834 |
.catalog-product-view .product-view .add-to-links li a {
|
@@ -11837,7 +11853,7 @@ nav::after {
|
|
11837 |
.catalog-product-view .product-view .add-to-links li a i {
|
11838 |
font-size: 16px;
|
11839 |
}
|
11840 |
-
.catalog-product-view .product-view .product-name .h1, .catalog-product-view .product-view .price-info .price {
|
11841 |
font-size: 2em;
|
11842 |
}
|
11843 |
.catalog-product-view .product-view .price-info .price {
|
@@ -11900,6 +11916,19 @@ nav::after {
|
|
11900 |
.review-product-list .add-to-links i {
|
11901 |
font-size: 15px;
|
11902 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11903 |
/*Related Products*/
|
11904 |
.product-view .block.block-related {
|
11905 |
clear: both;
|
@@ -11908,11 +11937,6 @@ nav::after {
|
|
11908 |
width: 100%;
|
11909 |
}
|
11910 |
/*About US page*/
|
11911 |
-
/*.customer-account-forgotpassword .main-container, .cms-no-route .main-container, .review-product-list .main-container, .customer-account-create .main-container, .customer-account-login .main-container, .onestepcheckout-index-index .main-container, .checkout-cart-index .main-container, .customer-account .main-container, .catalogsearch-term-popular .main-container, .sales-guest-form .main-container, .catalogsearch-advanced-index .main-container, .catalog-seo-sitemap-category .main-container, .catalog-seo-sitemap-product .main-container, .cms-about-magento-demo-store .main-container.col1-layout, .cms-customer-service .main-container.col1-layout, .cms-privacy-policy-cookie-restriction-mode .main-container.col1-layout, .contacts-index-index .main-container.col1-layout {
|
11912 |
-
margin: 0 auto;
|
11913 |
-
max-width: 1260px;
|
11914 |
-
padding: 30px;
|
11915 |
-
}*/
|
11916 |
.cms-home .main-container, .catalog-category-view .main-container, .catalog-product-view .main-container, .catalogsearch-result-index .main-container {
|
11917 |
margin: 0 auto;
|
11918 |
max-width: 1920px;
|
@@ -11996,7 +12020,7 @@ nav::after {
|
|
11996 |
}
|
11997 |
.contacts-index-index #contactForm {
|
11998 |
padding: 30px;
|
11999 |
-
background-color: #
|
12000 |
}
|
12001 |
.contacts-index-index form p.required {
|
12002 |
float: inherit;
|
@@ -12154,9 +12178,10 @@ nav::after {
|
|
12154 |
}
|
12155 |
.block .minicart-wrapper .mini-products-list li {
|
12156 |
border-bottom: 1px solid #e2e0e0 !important;
|
|
|
12157 |
}
|
12158 |
#cart-sidebar .button.quantity-button.visible {
|
12159 |
-
margin-top:
|
12160 |
padding: 0 20px;
|
12161 |
}
|
12162 |
.minicart-wrapper li .product-name {
|
@@ -12171,7 +12196,7 @@ nav::after {
|
|
12171 |
.mini-products-list .product-image {
|
12172 |
border: 1px solid #cfd0d0;
|
12173 |
padding: 7px;
|
12174 |
-
margin-left: 15px
|
12175 |
margin-right: 20px;
|
12176 |
}
|
12177 |
.mini-products-list li .product-details .product-name > a {
|
@@ -12203,9 +12228,6 @@ nav::after {
|
|
12203 |
.product-details .remove {
|
12204 |
color: #c08144;
|
12205 |
}
|
12206 |
-
.product-details .btn-edit {
|
12207 |
-
margin-left: 35px;
|
12208 |
-
}
|
12209 |
.block-content .subtotal .label {
|
12210 |
color: #605e5e !important;
|
12211 |
font-size: 15px;
|
@@ -12233,7 +12255,7 @@ nav::after {
|
|
12233 |
margin-bottom: 10px;
|
12234 |
}
|
12235 |
/*Create User*/
|
12236 |
-
.customer-account-create .fieldset p.required, .customer-account-login .fieldset p.required {
|
12237 |
float: inherit;
|
12238 |
}
|
12239 |
.customer-account-create .buttons-set .back-link a {
|
@@ -12261,6 +12283,9 @@ nav::after {
|
|
12261 |
.customer-account-index .col-main {
|
12262 |
float: right;
|
12263 |
}
|
|
|
|
|
|
|
12264 |
.pager.pager-no-toolbar {
|
12265 |
color: #ffffff;
|
12266 |
margin-bottom: 20px;
|
@@ -12290,7 +12315,7 @@ td em, .box .box-content p, .box .box-content address {
|
|
12290 |
padding-bottom: 10px;
|
12291 |
}
|
12292 |
.sales-order-history .my-account .pager, .my-account form .fieldset h2, .my-account .box-account.box-info .box-head, .my-account .box-account.box-recent .box-head, .customer-address-index .my-account .addresses-list div > h2 {
|
12293 |
-
background-color: #656464
|
12294 |
font-weight: 600;
|
12295 |
padding: 14px;
|
12296 |
}
|
@@ -12298,9 +12323,9 @@ td em, .box .box-content p, .box .box-content address {
|
|
12298 |
margin: 0;
|
12299 |
padding: 0;
|
12300 |
width: 100%;
|
|
|
12301 |
}
|
12302 |
.sales-order-history .my-account .pager > .count-container {
|
12303 |
-
float: right;
|
12304 |
padding: 4px 10px;
|
12305 |
vertical-align: middle;
|
12306 |
}
|
@@ -12325,8 +12350,12 @@ td em, .box .box-content p, .box .box-content address {
|
|
12325 |
padding: 10px 35px;
|
12326 |
width: 425px;
|
12327 |
}
|
12328 |
-
.
|
12329 |
-
|
|
|
|
|
|
|
|
|
12330 |
}
|
12331 |
#wishlist-table .item-manage .btn-cart:hover, .aboutus-right > a, .home-new_offer, .featured-sale, .buttons-set .button.btn-update.button-secondary, button.btn-proceed-checkout.btn-checkout, .shipping-form form .buttons-set button.button, .cart-cell .button.btn-cart, .clean-table.linearize-table a.link-edit, .my-account .back-link, .block-content .actions button.button, .block-content .actions button.button:hover, .block-content .actions a, .my-account form .buttons-set .button {
|
12332 |
color: #ffffff !important;
|
@@ -12389,7 +12418,7 @@ td em, .box .box-content p, .box .box-content address {
|
|
12389 |
padding: 20px;
|
12390 |
}
|
12391 |
.sales-order-print tbody td, .sales-order-print .order-date, .sales-order-view .order-items.order-details .data-table th, .sales-order-view .order-date, .data-table.orders thead tr th {
|
12392 |
-
background: none repeat scroll 0 0 #
|
12393 |
font-size: 13px;
|
12394 |
font-weight: 600;
|
12395 |
vertical-align: middle;
|
@@ -12453,7 +12482,7 @@ td em, .box .box-content p, .box .box-content address {
|
|
12453 |
font-size: 14px;
|
12454 |
}
|
12455 |
.customer-address-index .my-account .addresses-list div > ol li h3 {
|
12456 |
-
background-color: #
|
12457 |
font-weight: 600;
|
12458 |
padding: 14px;
|
12459 |
}
|
@@ -12473,6 +12502,11 @@ td em, .box .box-content p, .box .box-content address {
|
|
12473 |
width: 100%;
|
12474 |
}
|
12475 |
}
|
|
|
|
|
|
|
|
|
|
|
12476 |
@media only screen and (max-width: 425px) {
|
12477 |
.my-account form .control > label {
|
12478 |
width: auto;
|
@@ -12542,9 +12576,6 @@ td em, .box .box-content p, .box .box-content address {
|
|
12542 |
height: 37px;
|
12543 |
width: 240px;
|
12544 |
}
|
12545 |
-
.checkout-cart-index #discount-coupon-form .discount .discount-form .field-wrapper .button-wrapper .button2, .checkout-cart-index .shipping .shipping-form .buttons-set button {
|
12546 |
-
background-color: #ce8745;
|
12547 |
-
}
|
12548 |
.checkout-cart-index .shipping .form-list .shipping-postcode {
|
12549 |
margin-right: 0;
|
12550 |
}
|
@@ -12603,6 +12634,9 @@ td em, .box .box-content p, .box .box-content address {
|
|
12603 |
.checkout-cart-index #shopping-cart-table td.a-right.cart-footer-actions.last {
|
12604 |
padding-top: 25px;
|
12605 |
}
|
|
|
|
|
|
|
12606 |
.checkout-cart-index .cart-totals-wrapper .cart-totals {
|
12607 |
padding: 25px 0 30px;
|
12608 |
}
|
@@ -12628,13 +12662,9 @@ td em, .box .box-content p, .box .box-content address {
|
|
12628 |
font-size: 16px;
|
12629 |
}
|
12630 |
.checkout-cart-index .cart-table.data-table .button2.btn-empty {
|
12631 |
-
border: 2px solid #474646;
|
12632 |
border-radius: 5px;
|
12633 |
padding: 5px 30px;
|
12634 |
}
|
12635 |
-
.checkout-cart-index .cart-table.data-table .button2.btn-empty span {
|
12636 |
-
color: #474646;
|
12637 |
-
}
|
12638 |
.checkout-cart-index .cart-table.data-table .button2.btn-empty span, .checkout-cart-index .cart-table.data-table .button2.btn-update span, .checkout-cart-index .cart-table.data-table .button2.btn-continue span {
|
12639 |
font-size: 14px;
|
12640 |
font-weight: bold;
|
@@ -12646,7 +12676,6 @@ td em, .box .box-content p, .box .box-content address {
|
|
12646 |
.checkout-cart-index .cart-table.data-table .button2.btn-update, .checkout-cart-index .cart-table.data-table .button2.btn-continue {
|
12647 |
background-position: 5% 50%;
|
12648 |
background-repeat: no-repeat;
|
12649 |
-
border: 2px solid #38b5b6;
|
12650 |
border-radius: 5px;
|
12651 |
float: left;
|
12652 |
margin: 0 auto;
|
@@ -12667,10 +12696,6 @@ td em, .box .box-content p, .box .box-content address {
|
|
12667 |
background-image: url("images/arrow-orange.png");
|
12668 |
background-size: 8% auto;
|
12669 |
float: right;
|
12670 |
-
border-color: #ce8745;
|
12671 |
-
}
|
12672 |
-
.checkout-cart-index .cart-table.data-table .button2.btn-continue span {
|
12673 |
-
color: #ce8745;
|
12674 |
}
|
12675 |
.shipping-region .validation-advice {
|
12676 |
padding-left: 10px;
|
@@ -12682,6 +12707,12 @@ td em, .box .box-content p, .box .box-content address {
|
|
12682 |
.checkout-cart-index #discount-coupon-form .field-wrapper, .checkout-cart-index .cart .giftcard .field-wrapper {
|
12683 |
padding-left: 18px;
|
12684 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
12685 |
}
|
12686 |
@media only screen and (max-width: 1250px) {
|
12687 |
.checkout-cart-index #region.input-text, .checkout-cart-index .shipping .shipping-form #shipping-zip-form ul li.shipping-postcode .input-box input, .checkout-cart-index #discount-coupon-form .discount .discount-form .field-wrapper input, .checkout-cart-index .shipping .shipping-form form ul li .input-box select {
|
@@ -12845,16 +12876,29 @@ td em, .box .box-content p, .box .box-content address {
|
|
12845 |
padding: 11px 10px;
|
12846 |
}
|
12847 |
/*Empty cart/ Empty products*/
|
12848 |
-
.empty_cart_container, .empty_product_container {
|
12849 |
min-height: 450px;
|
12850 |
}
|
12851 |
.empty_cart, .empty_product_container .note-msg {
|
12852 |
left: 50%;
|
12853 |
-
margin-left: -150px;
|
12854 |
-
margin-top: -60px;
|
12855 |
position: absolute;
|
12856 |
top: 50%;
|
12857 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12858 |
/*Chrome*/
|
12859 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
12860 |
.category-products .toolbar .sort-by select, .category-products .toolbar .limiter > select {
|
@@ -12872,10 +12916,15 @@ td em, .box .box-content p, .box .box-content address {
|
|
12872 |
}
|
12873 |
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-width: 771px) {
|
12874 |
#header #search_mini_form select {
|
12875 |
-
padding: 0;
|
12876 |
border-right: 0;
|
12877 |
}
|
12878 |
}
|
|
|
|
|
|
|
|
|
|
|
12879 |
/* Safari only override */
|
12880 |
::i-block-chrome,.catalog-category-view .add-to-links > li .link-wishlist, ::i-block-chrome,.catalog-category-view .add-to-links > li .link-compare, ::i-block-chrome,.catalog-product-view .add-to-links > li .link-wishlist, ::i-block-chrome,.catalog-product-view .add-to-links > li .link-compare {
|
12881 |
width: 50px !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
article,
|
2 |
aside,
|
3 |
details,
|
363 |
background: #FFFFFF;
|
364 |
color: #000000;
|
365 |
line-height: 1;
|
366 |
+
overflow-x: hidden;
|
367 |
}
|
368 |
|
369 |
html,
|
1177 |
.main-container,
|
1178 |
.footer-container {
|
1179 |
position: relative;
|
1180 |
+
max-width: 1920px;
|
1181 |
margin: 0 auto;
|
1182 |
+
padding: 30px 45px;
|
1183 |
}
|
1184 |
.main-container:after,
|
1185 |
.footer-container:after {
|
2761 |
}
|
2762 |
|
2763 |
.data-table th {
|
2764 |
+
background: #f6f4f5;
|
2765 |
text-transform: uppercase;
|
2766 |
line-height: 1.4;
|
2767 |
white-space: nowrap;
|
3639 |
display: block;
|
3640 |
padding: 5px 10px;
|
3641 |
line-height: 23px;
|
3642 |
+
text-align: left;
|
3643 |
}
|
3644 |
|
3645 |
|
3661 |
padding: 0 10px 0 0;
|
3662 |
width: auto;
|
3663 |
}
|
3664 |
+
#header-account {
|
3665 |
+
width: 130px !important;
|
3666 |
+
}
|
3667 |
|
3668 |
/* #header-cart.skip-active {
|
3669 |
background: #FBFBFB;
|
5268 |
padding: 40px 26px;
|
5269 |
border: 1px solid #cccccc;
|
5270 |
border-top: 0;
|
5271 |
+
min-height: 322px;
|
5272 |
}
|
5273 |
.product-collateral > dl > dd.current {
|
5274 |
display: block;
|
7493 |
.customer-account-login .scaffold-form label:first-child {
|
7494 |
width: 115px;
|
7495 |
}
|
7496 |
+
.customer-account-login .col2-set .buttons-set, .checkout-multishipping-login .col2-set .buttons-set {
|
7497 |
text-align: left;
|
7498 |
border-top: 0;
|
7499 |
}
|
7500 |
.customer-account-login .col2-set .buttons-set button,
|
7501 |
+
.customer-account-login .col2-set .buttons-set .button, .checkout-multishipping-login .col2-set .buttons-set button,
|
7502 |
+
.checkout-multishipping-login .col2-set .buttons-set .button {
|
7503 |
float: none;
|
7504 |
min-width: 50%;
|
7505 |
margin: 0;
|
8777 |
}
|
8778 |
#wishlist-table.clean-table thead th {
|
8779 |
font-size: 15px;
|
8780 |
+
padding: 15px 0;
|
8781 |
text-transform: uppercase;
|
8782 |
}
|
8783 |
#wishlist-table .product-name {
|
8817 |
}
|
8818 |
#wishlist-table .item-manage .button {
|
8819 |
font-size: 11px;
|
8820 |
+
padding: 7px 10px;
|
8821 |
}
|
8822 |
#wishlist-table .cart-cell {
|
8823 |
text-align: center;
|
8838 |
#wishlist-table td.customer-wishlist-item-cart .button {
|
8839 |
font-size: 12px;
|
8840 |
margin-bottom: 10px;
|
8841 |
+
padding: 7px 5px;
|
8842 |
width: 100%;
|
8843 |
}
|
8844 |
#wishlist-table td.customer-wishlist-item-cart .truncated {
|
9116 |
width: 40px;
|
9117 |
}
|
9118 |
.header-minicart .mini-products-list, .header-minicart1 .mini-products-list {
|
9119 |
+
padding: 0 20px 10px;
|
|
|
9120 |
}
|
9121 |
.header-minicart .mini-products-list li, .header-minicart1 .mini-products-list li {
|
9122 |
padding: 8px 5px 8px 11px;
|
9148 |
line-height: 33px;
|
9149 |
}
|
9150 |
.header-minicart .info-wrapper .qty, .header-minicart1 .info-wrapper .qty {
|
9151 |
+
float: left;
|
9152 |
+
height: 30px;
|
9153 |
+
margin-right: 2px;
|
9154 |
padding-left: 4px;
|
9155 |
padding-right: 4px;
|
|
|
|
|
9156 |
text-align: center;
|
9157 |
+
width: 3em;
|
9158 |
}
|
9159 |
.header-minicart .info-wrapper .quantity-button, .header-minicart1 .info-wrapper .quantity-button {
|
9160 |
opacity: 0;
|
9227 |
float: none;
|
9228 |
text-align: center;
|
9229 |
}
|
9230 |
+
.header-minicart .empty, .header-minicart1 .empty {
|
9231 |
+
padding: 10px 10px 50px;
|
9232 |
+
text-align: center;
|
9233 |
+
}
|
9234 |
}
|
9235 |
@media only screen and (max-width: 479px) {
|
9236 |
.header-minicart a.skip-cart {
|
10371 |
}
|
10372 |
|
10373 |
/* Colors */
|
10374 |
+
.catalogsearch-result-index .label, .catalogsearch-result-index .currently .block-subtitle, .catalogsearch-result-index #narrow-by-list dt.last, .checkout-cart-index .cart-table.data-table .button2.btn-update span, .checkout-cart-index .cart-table.data-table .button2.btn-continue span, .checkout-cart-index .cart-table.data-table .button2.btn-empty span, .product-view .add-to-cart .qty-wrapper .qty, .customer-account .my-account .dashboard .page-title h1, .cms-privacy-policy-cookie-restriction-mode h1, .cms-customer-service .page-title h1, .cms-customer-service .disc a, .cms-customer-service dl dt, .about_main > h4, .about_content h4, .services i, .catalog-product-view .product-view .availability.in-stock span, .catalog-category-view #narrow-by-list dt, a, h1, .h1, .block-title h2, .block-title h3, .block-title strong, .block-account li strong, .block-cms-menu li strong, .block-account li a:hover, .block-cms-menu li a:hover, .button2 span, .button2 span span, .breadcrumbs a:hover, .promo-msg, .btn-remove:after, .price-box .price, .price-box .minimal-price-link, .price-box .special-price, .pages a, .pages .current, #header-account a:hover, .footer .block-title, .footer address, .footer .links a:hover, h2.product-name a:hover, h3.product-name a:hover, h4.product-name a:hover, h5.product-name a:hover, p.product-name a:hover, .product-view .product-shop .product-name .h1, .product-view .product-img-box .product-name h1, .product-view .product-shop .price-box .regular-price .price, .product-view .product-shop .price-box .special-price .price, .product-view .product-shop .price-box .full-product-price .price, .grouped-items-table .name-wrapper, .crosssell h2, .opc .section.allow .step-title:hover h2, .opc .section.active .step-title h2, .product-view .product-options .swatch-attr .select-label, #customer-reviews h2, #customer-reviews h3 span, #customer-reviews dl dd .review-meta, #wishlist-table .product-name a, #wishlist-table .giftregisty-add li, #wishlist-table .truncated .details, .header-minicart .product-details .product-name a, .header-minicart .info-wrapper td, .header-minicart .subtotal .price, .search-autocomplete ul li, .product-review .product-details h2, .cms-page-view .std h1, .cms-no-route .std h1, .cms-page-view .std h2, .cms-no-route .std h2 {
|
10375 |
color: #60a9dc;
|
10376 |
}
|
10377 |
+
.onestepcheckout-index-index .onestepcheckout-login-link a, .onestepcheckout-index-index p.forgot-link a, .onestepcheckout-index-index #onestepcheckout-forgot-table li.last p a {
|
10378 |
+
color: #60a9dc !important;
|
10379 |
+
}
|
10380 |
.mp_quickview_icon, .button, .cart-table .product-cart-actions .button, #co-shipping-method-form .buttons-set .button, .footer .button,.add-to-links li a {
|
10381 |
background: #60a9dc;
|
10382 |
}
|
10383 |
+
.catalogsearch-result-index .actions > a, .sales-order-print thead th, .pager.pager-no-toolbar, .sales-order-view .table-caption, .sales-order-view .order-info, .catalogsearch-advanced-index form h2, .sales-guest-view .order-info-box .box-title h2, .sales-guest-view .order-items.order-details h2, .sales-guest-form .page-title h1, form .legend, .contacts-index-index .wrapper .col-main .page-title h1, .catalog-seo-sitemap-category .page-sitemap .page-title h1, .catalog-seo-sitemap-product .page-sitemap .page-title h1, .checkout-cart-index #discount-coupon-form .discount .discount-form .field-wrapper .button-wrapper .button2, .checkout-cart-index .shipping .shipping-form .buttons-set button, #wishlist-table.clean-table thead th, .my-account form .control > label:hover, .my-account form .control > label, .customer-account .sidebar .actions > a, .sales-order-history .my-account .pager, .my-account form .fieldset h2, .my-account .box-account.box-info .box-head, .my-account .box-account.box-recent .box-head, .customer-address-index .my-account .addresses-list div > h2, .pages li, .minicart-wrapper .block-subtitle , .buttons-set .back-link, .footer_contact_container, .blog .blog_right, .blog_row2 .blog_left, .customer-account .back-link > a, .cms-home .category_navigation > li:first-child, .offer_price, .btn-previous:hover, .opc .section .step-title .number, .opc .section.allow.active .step-title .number, .no-touch .opc .section.allow:hover .step-title .number, .search-autocomplete ul li.selected {
|
10384 |
background-color: #60a9dc;
|
10385 |
}
|
10386 |
+
.onestepcheckout-index-index #onestepcheckout-forgot-table #onestepcheckout-return-login-link span, p.forgot-link #onestepcheckout-forgot-password-link span, .onestepcheckout-index-index #onestepcheckout-login-link > span, .onestepcheckout-index-index .one-step-checkout h3, #onestepcheckout-login-popup-contents-login > h1, #onestepcheckout-login-form button#onestepcheckout-login-button, #onestepcheckout-login-popup-contents-forgot > h1, #onestepcheckout-forgot-form button#onestepcheckout-forgot-button {
|
10387 |
+
background-color: #60a9dc !important;
|
10388 |
+
}
|
10389 |
.btn-remove:hover,.btn-remove:hover::after, .btn-previous:hover, #narrow-by-list dd .swatch-link:hover .swatch-label, .configurable-swatch-list .hover .swatch-link, .configurable-swatch-list .selected .swatch-link, .swatch-link:hover {
|
10390 |
border-color: #60a9dc;
|
10391 |
}
|
10392 |
.truncated .truncated_full_value .item-options, .pages .next:hover, .pages .previous:hover, .input-text:focus, #wishlist-table textarea:focus, .search-autocomplete ul {
|
10393 |
border: 1px solid #60a9dc;
|
10394 |
}
|
10395 |
+
.checkout-cart-index .cart-table.data-table .button2.btn-empty, .checkout-cart-index .cart-table.data-table .button2.btn-update, .checkout-cart-index .cart-table.data-table .button2.btn-continue {
|
10396 |
+
border: 2px solid #60a9dc;
|
10397 |
+
}
|
10398 |
.services i {
|
10399 |
border: 3px solid #60a9dc;
|
10400 |
}
|
10432 |
margin: 0;
|
10433 |
padding: 15px 1px 15px 30px;
|
10434 |
border-bottom: 1px solid #ededed;
|
10435 |
+
/*background-color: #656464;*/
|
10436 |
}
|
10437 |
+
#wishlist-table.clean-table thead th, .customer-account .box-head > a, .cms-home .parentMenu.menu0 > a, .buttons-set .back-link > a, .review-product-list .back-link > a, .checkout-cart-index .cart-forms button > span span, .newsletter-manage-index .form-list .control > label, .customer-account .back-link > a, .customer-account-edit .my-account form .control > label, .customer-account h2, .catalogsearch-advanced-index h2, .sales-guest-form h1, .catalog-seo-sitemap-product h1, .catalog-seo-sitemap-category h1, .contacts-index-index h1, header #search_mini_form i, .footer_block h2, .footer_copyright, .cms-home .category_navigation > li:first-child a, .mp_quickview_icon span {
|
10438 |
color: #fff;
|
10439 |
}
|
10440 |
#narrow-by-list .title {
|
10444 |
background-color: #f6f4f5;
|
10445 |
}
|
10446 |
.customer-account .scaffold-form, .sales-guest-form .col1-layout .col-main, .advanced-search, .catalog-seo-sitemap-category .page-sitemap, .catalog-seo-sitemap-product .page-sitemap, .contacts-index-index .col2-left-layout .col-main {
|
10447 |
+
background: #f6f4f5 none repeat scroll 0 0;
|
10448 |
border: 1px solid #ededed;
|
10449 |
padding: 0;
|
10450 |
}
|
10477 |
}
|
10478 |
|
10479 |
/* Hover Color */
|
10480 |
+
.checkout-cart-index .cart-table.data-table .button2.btn-continue:hover span, .checkout-cart-index .cart-table.data-table .button2.btn-update:hover span, .checkout-cart-index .cart-table.data-table .button2.btn-empty:hover span, .customer-account .box-head > a:hover, .product-collateral .toggle-tabs li.current > span, a:hover, .search-autocomplete ul li:hover, .services .services_link a, .header-language-container .header_left i {
|
10481 |
color: #ea4c89;
|
10482 |
text-decoration: none;
|
10483 |
}
|
10484 |
.button:hover, .cart-table .product-cart-actions .button:hover, #co-shipping-method-form .buttons-set .button:hover, .footer .button:hover,.add-to-links li a:hover {
|
10485 |
background: #ea4c89;
|
10486 |
}
|
10487 |
+
.catalogsearch-result-index .actions > a:hover, .customer-account .actions > a:hover, .buttons-set .back-link:hover, .buttons-set .back-link:hover a, .cms-home .parentMenu.menu0 a, .new-products .product-carousel .item:hover .offer_price, .cms-home .category-products .category-carousel .item:hover .offer_price, .catalog-category-view li.item:hover .offer_price, header #search_mini_form .button.search-button, .block-layered-nav .block-subtitle--filter:hover, .slideshow-pager span:hover:before, .catalog-category-view .products-grid li.item:hover .offer_price {
|
10488 |
background-color: #ea4c89;
|
10489 |
}
|
10490 |
+
.checkout-cart-index #discount-coupon-form button:hover, .checkout-cart-index .shipping button:hover {
|
10491 |
+
background-color: #ea4c89 !important;
|
10492 |
+
}
|
10493 |
.slideshow-prev:hover:before {
|
10494 |
border-color: transparent #ea4c89 transparent transparent;
|
10495 |
}
|
10499 |
.header-language-container .header_left i {
|
10500 |
border: 1px solid #ea4c89;
|
10501 |
}
|
10502 |
+
.checkout-cart-index .cart-table.data-table .button2.btn-empty:hover, .checkout-cart-index .cart-table.data-table .button2.btn-update:hover, .checkout-cart-index .cart-table.data-table .button2.btn-continue:hover {
|
10503 |
+
border: 2px solid #ea4c89;
|
10504 |
+
}
|
10505 |
|
10506 |
/*color*/
|
10507 |
.header-minicart1 .cart_icon i, .cms-home .category_navigation > li a, .new-products .product-name > a, .new-products .title > h2, .catalog-product-view .product-view .product-name .h1, .catalog-category-view .products-grid .product-name > a, .services h6, .services_link a, .catalog-category-view #products-list .product-name > a {
|
10620 |
.header-language-container .store-language-container {
|
10621 |
float: left;
|
10622 |
}
|
10623 |
+
.header_right .store-language-container select:hover, .header_right .currency-switcher select:hover, .header_right a.skip-link:hover {
|
10624 |
color: #417da7;
|
10625 |
+
background-image: url("../images/shoestore/arrow-hover.png");
|
10626 |
+
}
|
10627 |
+
.header_right .store-language-container select, .header_right .currency-switcher select, .header_right a.skip-link, #header-search1 #cat {
|
10628 |
+
background-image: url("../images/shoestore/arrow.png");
|
10629 |
+
background-position: 100% 50%;
|
10630 |
+
background-repeat: no-repeat;
|
10631 |
+
padding-right: 15px;
|
10632 |
+
}
|
10633 |
+
.header-language-container .header_right a.skip-link.skip-account {
|
10634 |
+
background-position: 90% 50%;
|
10635 |
+
padding-right: 25px;
|
10636 |
}
|
10637 |
/*Header*/
|
10638 |
header #search_mini_form .button.search-button {
|
10662 |
color: #626161;
|
10663 |
height: 35px;
|
10664 |
text-transform: capitalize;
|
10665 |
+
padding: 0 22px 0 15px;
|
10666 |
float: left;
|
10667 |
+
background-position: 93% 50%;
|
10668 |
}
|
10669 |
@media only screen and (max-width: 480px) {
|
10670 |
#header #search_mini_form select {
|
10701 |
max-width: 1920px;
|
10702 |
padding: 0 45px;
|
10703 |
}
|
10704 |
+
div.menu a i {
|
10705 |
+
padding-left: 5px;
|
10706 |
+
}
|
10707 |
.top_header {
|
10708 |
position: relative;
|
10709 |
}
|
10722 |
.top_header #header-search1 form {
|
10723 |
padding-top: 35px;
|
10724 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
10725 |
.top_header .header-minicart1 {
|
10726 |
padding-right: 10px;
|
10727 |
position: absolute;
|
10756 |
.header-minicart1 .cart_icon i {
|
10757 |
background-color: transparent;
|
10758 |
}
|
|
|
|
|
|
|
10759 |
.header-minicart1 .skip-link.skip-cart {
|
10760 |
border: 1px solid #dedede;
|
10761 |
position: absolute;
|
10762 |
right: 10px;
|
10763 |
top: 0;
|
10764 |
+
min-width: 187px;
|
10765 |
}
|
10766 |
.page-header-container .header-minicart, .page-header-container .logo, .page-header-container #header-search {
|
10767 |
display: none;
|
10782 |
max-width: 222px;
|
10783 |
width: 232px;
|
10784 |
}
|
10785 |
+
.header_right .store-language-container select, .header_right .currency-switcher select, .header_right a.skip-link span {
|
10786 |
+
font-size: 10px;
|
10787 |
+
}
|
10788 |
+
#custommenu-mobile > #menu-button {
|
10789 |
+
display: block;
|
10790 |
+
}
|
10791 |
+
#custommenu-mobile #menu-button > a {
|
10792 |
+
background-color: #60a9dc;
|
10793 |
+
padding: 10px 30px;
|
10794 |
+
}
|
10795 |
}
|
10796 |
@media only screen and (max-width: 1300px) {
|
10797 |
+
div.menu {
|
10798 |
+
font-size: 0.8em;
|
10799 |
}
|
10800 |
}
|
10801 |
@media only screen and (max-width: 991px) {
|
|
|
|
|
|
|
10802 |
.top_header #header-search1 {
|
10803 |
width: 550px;
|
10804 |
}
|
|
|
|
|
|
|
10805 |
}
|
10806 |
@media only screen and (max-width: 900px) {
|
10807 |
.top_header #header-search1 {
|
10828 |
text-align: center;
|
10829 |
text-overflow: ellipsis;
|
10830 |
white-space: nowrap;
|
10831 |
+
font-weight: normal;
|
10832 |
}
|
10833 |
.services h6, .services_link a {
|
10834 |
font-size: 1em;
|
10856 |
font-size: 2.126em;
|
10857 |
margin: 0 auto 16px;
|
10858 |
padding: 19px;
|
10859 |
+
animation-duration: 3s;
|
10860 |
+
animation-iteration-count: infinite;
|
10861 |
}
|
10862 |
.services_link {
|
10863 |
text-align: center;
|
11164 |
position: absolute;
|
11165 |
top: 50%;
|
11166 |
}
|
11167 |
+
.brand_img > a img:hover {
|
11168 |
+
transform: scale(1.1);
|
11169 |
+
transition: all 1s ease-in-out 0s;
|
11170 |
+
}
|
11171 |
.brands ul li:nth-child(4n) {
|
11172 |
border-right: 0 none;
|
11173 |
}
|
11227 |
}
|
11228 |
.advertisement img {
|
11229 |
max-width: 100%;
|
11230 |
+
transition: all 1s ease-in-out 0s;
|
11231 |
+
}
|
11232 |
+
.advertisement_block2 img {
|
11233 |
+
margin-bottom: 1px;
|
11234 |
+
}
|
11235 |
+
.advertisement img:hover {
|
11236 |
+
transform: scale(0.9);
|
11237 |
}
|
11238 |
@media only screen and (max-width: 767px) {
|
11239 |
.advertise_container {
|
11511 |
.pages .next.i-next, .toolbar .previous.i-previous {
|
11512 |
font-size: 0;
|
11513 |
}
|
11514 |
+
.catalogsearch-result-index .block-content .actions a {
|
11515 |
+
padding: 5px 20px;
|
11516 |
+
}
|
11517 |
@media only screen and (max-width: 767px) {
|
11518 |
.category-products .toolbar .sorter {
|
11519 |
width: 80%;
|
11585 |
margin: 0 auto;
|
11586 |
position: absolute;
|
11587 |
right: 0;
|
|
|
11588 |
}
|
11589 |
.catalog-category-view .products-grid .product-image, .catalogsearch-result-index .products-grid .product-image {
|
11590 |
height: 250px;
|
11844 |
.addthis_toolbox, .product-view .product-img-box .more-views h2, .breadcrumbs {
|
11845 |
display: none;
|
11846 |
}
|
11847 |
+
.review-product-list .product-view .price-info .price, .new-products li .product-info .price-box .price, .catalog-product-view .product-view .price-info .price, .catalog-product-view .product-view .availability.in-stock span {
|
11848 |
font-weight: bold;
|
11849 |
}
|
11850 |
.catalog-product-view .product-view .add-to-links li a {
|
11853 |
.catalog-product-view .product-view .add-to-links li a i {
|
11854 |
font-size: 16px;
|
11855 |
}
|
11856 |
+
.review-product-list .product-view .product-name .h1, .catalog-product-view .product-view .product-name .h1, .catalog-product-view .product-view .price-info .price {
|
11857 |
font-size: 2em;
|
11858 |
}
|
11859 |
.catalog-product-view .product-view .price-info .price {
|
11916 |
.review-product-list .add-to-links i {
|
11917 |
font-size: 15px;
|
11918 |
}
|
11919 |
+
.review-product-list .product-view .product-image.product-image-zoom {
|
11920 |
+
width: 100%;
|
11921 |
+
}
|
11922 |
+
.review-product-list .buttons-set a {
|
11923 |
+
padding: 0 38px;
|
11924 |
+
}
|
11925 |
+
@media only screen and (max-width: 770px) {
|
11926 |
+
.review-product-list .product-view .product-image.product-image-zoom {
|
11927 |
+
float: none;
|
11928 |
+
margin: 0 auto;
|
11929 |
+
width: 70%;
|
11930 |
+
}
|
11931 |
+
}
|
11932 |
/*Related Products*/
|
11933 |
.product-view .block.block-related {
|
11934 |
clear: both;
|
11937 |
width: 100%;
|
11938 |
}
|
11939 |
/*About US page*/
|
|
|
|
|
|
|
|
|
|
|
11940 |
.cms-home .main-container, .catalog-category-view .main-container, .catalog-product-view .main-container, .catalogsearch-result-index .main-container {
|
11941 |
margin: 0 auto;
|
11942 |
max-width: 1920px;
|
12020 |
}
|
12021 |
.contacts-index-index #contactForm {
|
12022 |
padding: 30px;
|
12023 |
+
background-color: #f6f4f5;
|
12024 |
}
|
12025 |
.contacts-index-index form p.required {
|
12026 |
float: inherit;
|
12178 |
}
|
12179 |
.block .minicart-wrapper .mini-products-list li {
|
12180 |
border-bottom: 1px solid #e2e0e0 !important;
|
12181 |
+
padding-bottom: 30px;
|
12182 |
}
|
12183 |
#cart-sidebar .button.quantity-button.visible {
|
12184 |
+
margin-top: 8px;
|
12185 |
padding: 0 20px;
|
12186 |
}
|
12187 |
.minicart-wrapper li .product-name {
|
12196 |
.mini-products-list .product-image {
|
12197 |
border: 1px solid #cfd0d0;
|
12198 |
padding: 7px;
|
12199 |
+
/*margin-left: 15px;*/
|
12200 |
margin-right: 20px;
|
12201 |
}
|
12202 |
.mini-products-list li .product-details .product-name > a {
|
12228 |
.product-details .remove {
|
12229 |
color: #c08144;
|
12230 |
}
|
|
|
|
|
|
|
12231 |
.block-content .subtotal .label {
|
12232 |
color: #605e5e !important;
|
12233 |
font-size: 15px;
|
12255 |
margin-bottom: 10px;
|
12256 |
}
|
12257 |
/*Create User*/
|
12258 |
+
.customer-account-create .fieldset p.required, .customer-account-login .fieldset p.required, .checkout-multishipping-login .fieldset p.required {
|
12259 |
float: inherit;
|
12260 |
}
|
12261 |
.customer-account-create .buttons-set .back-link a {
|
12283 |
.customer-account-index .col-main {
|
12284 |
float: right;
|
12285 |
}
|
12286 |
+
.customer-account .actions button.button {
|
12287 |
+
margin-bottom: 10px;
|
12288 |
+
}
|
12289 |
.pager.pager-no-toolbar {
|
12290 |
color: #ffffff;
|
12291 |
margin-bottom: 20px;
|
12315 |
padding-bottom: 10px;
|
12316 |
}
|
12317 |
.sales-order-history .my-account .pager, .my-account form .fieldset h2, .my-account .box-account.box-info .box-head, .my-account .box-account.box-recent .box-head, .customer-address-index .my-account .addresses-list div > h2 {
|
12318 |
+
/*background-color: #656464;*/
|
12319 |
font-weight: 600;
|
12320 |
padding: 14px;
|
12321 |
}
|
12323 |
margin: 0;
|
12324 |
padding: 0;
|
12325 |
width: 100%;
|
12326 |
+
position: inherit;
|
12327 |
}
|
12328 |
.sales-order-history .my-account .pager > .count-container {
|
|
|
12329 |
padding: 4px 10px;
|
12330 |
vertical-align: middle;
|
12331 |
}
|
12350 |
padding: 10px 35px;
|
12351 |
width: 425px;
|
12352 |
}
|
12353 |
+
.sales-order-history .pager .limiter {
|
12354 |
+
float: none;
|
12355 |
+
text-align: right;
|
12356 |
+
}
|
12357 |
+
.sales-order-history .pager .limiter > select {
|
12358 |
+
padding: 0 10px;
|
12359 |
}
|
12360 |
#wishlist-table .item-manage .btn-cart:hover, .aboutus-right > a, .home-new_offer, .featured-sale, .buttons-set .button.btn-update.button-secondary, button.btn-proceed-checkout.btn-checkout, .shipping-form form .buttons-set button.button, .cart-cell .button.btn-cart, .clean-table.linearize-table a.link-edit, .my-account .back-link, .block-content .actions button.button, .block-content .actions button.button:hover, .block-content .actions a, .my-account form .buttons-set .button {
|
12361 |
color: #ffffff !important;
|
12418 |
padding: 20px;
|
12419 |
}
|
12420 |
.sales-order-print tbody td, .sales-order-print .order-date, .sales-order-view .order-items.order-details .data-table th, .sales-order-view .order-date, .data-table.orders thead tr th {
|
12421 |
+
background: none repeat scroll 0 0 #f6f4f5;
|
12422 |
font-size: 13px;
|
12423 |
font-weight: 600;
|
12424 |
vertical-align: middle;
|
12482 |
font-size: 14px;
|
12483 |
}
|
12484 |
.customer-address-index .my-account .addresses-list div > ol li h3 {
|
12485 |
+
background-color: #f6f4f5;
|
12486 |
font-weight: 600;
|
12487 |
padding: 14px;
|
12488 |
}
|
12502 |
width: 100%;
|
12503 |
}
|
12504 |
}
|
12505 |
+
@media only screen and (max-width: 480px) {
|
12506 |
+
.sales-order-history .pager .limiter > select {
|
12507 |
+
display: block;
|
12508 |
+
}
|
12509 |
+
}
|
12510 |
@media only screen and (max-width: 425px) {
|
12511 |
.my-account form .control > label {
|
12512 |
width: auto;
|
12576 |
height: 37px;
|
12577 |
width: 240px;
|
12578 |
}
|
|
|
|
|
|
|
12579 |
.checkout-cart-index .shipping .form-list .shipping-postcode {
|
12580 |
margin-right: 0;
|
12581 |
}
|
12634 |
.checkout-cart-index #shopping-cart-table td.a-right.cart-footer-actions.last {
|
12635 |
padding-top: 25px;
|
12636 |
}
|
12637 |
+
.checkout-cart-index #shopping-cart-table td.a-right {
|
12638 |
+
position: relative;
|
12639 |
+
}
|
12640 |
.checkout-cart-index .cart-totals-wrapper .cart-totals {
|
12641 |
padding: 25px 0 30px;
|
12642 |
}
|
12662 |
font-size: 16px;
|
12663 |
}
|
12664 |
.checkout-cart-index .cart-table.data-table .button2.btn-empty {
|
|
|
12665 |
border-radius: 5px;
|
12666 |
padding: 5px 30px;
|
12667 |
}
|
|
|
|
|
|
|
12668 |
.checkout-cart-index .cart-table.data-table .button2.btn-empty span, .checkout-cart-index .cart-table.data-table .button2.btn-update span, .checkout-cart-index .cart-table.data-table .button2.btn-continue span {
|
12669 |
font-size: 14px;
|
12670 |
font-weight: bold;
|
12676 |
.checkout-cart-index .cart-table.data-table .button2.btn-update, .checkout-cart-index .cart-table.data-table .button2.btn-continue {
|
12677 |
background-position: 5% 50%;
|
12678 |
background-repeat: no-repeat;
|
|
|
12679 |
border-radius: 5px;
|
12680 |
float: left;
|
12681 |
margin: 0 auto;
|
12696 |
background-image: url("images/arrow-orange.png");
|
12697 |
background-size: 8% auto;
|
12698 |
float: right;
|
|
|
|
|
|
|
|
|
12699 |
}
|
12700 |
.shipping-region .validation-advice {
|
12701 |
padding-left: 10px;
|
12707 |
.checkout-cart-index #discount-coupon-form .field-wrapper, .checkout-cart-index .cart .giftcard .field-wrapper {
|
12708 |
padding-left: 18px;
|
12709 |
}
|
12710 |
+
.checkout-cart-index .cart-table.data-table .button2.btn-update {
|
12711 |
+
left: 0;
|
12712 |
+
margin: 0 auto;
|
12713 |
+
position: absolute;
|
12714 |
+
right: 0;
|
12715 |
+
}
|
12716 |
}
|
12717 |
@media only screen and (max-width: 1250px) {
|
12718 |
.checkout-cart-index #region.input-text, .checkout-cart-index .shipping .shipping-form #shipping-zip-form ul li.shipping-postcode .input-box input, .checkout-cart-index #discount-coupon-form .discount .discount-form .field-wrapper input, .checkout-cart-index .shipping .shipping-form form ul li .input-box select {
|
12876 |
padding: 11px 10px;
|
12877 |
}
|
12878 |
/*Empty cart/ Empty products*/
|
12879 |
+
.empty_cart_container, .empty_product_container, .order_success_container {
|
12880 |
min-height: 450px;
|
12881 |
}
|
12882 |
.empty_cart, .empty_product_container .note-msg {
|
12883 |
left: 50%;
|
|
|
|
|
12884 |
position: absolute;
|
12885 |
top: 50%;
|
12886 |
}
|
12887 |
+
.empty_cart, .empty_product_container .note-msg {
|
12888 |
+
margin-left: -150px;
|
12889 |
+
margin-top: -60px;
|
12890 |
+
}
|
12891 |
+
.checkout-onepage-success .page-title {
|
12892 |
+
text-align: left;
|
12893 |
+
}
|
12894 |
+
.order_success {
|
12895 |
+
padding-top: 160px;
|
12896 |
+
}
|
12897 |
+
@media only screen and (max-width: 520px) {
|
12898 |
+
.order_success {
|
12899 |
+
padding-top: 80px;
|
12900 |
+
}
|
12901 |
+
}
|
12902 |
/*Chrome*/
|
12903 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
12904 |
.category-products .toolbar .sort-by select, .category-products .toolbar .limiter > select {
|
12916 |
}
|
12917 |
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-width: 771px) {
|
12918 |
#header #search_mini_form select {
|
12919 |
+
padding: 0 19px 0 12px;
|
12920 |
border-right: 0;
|
12921 |
}
|
12922 |
}
|
12923 |
+
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-width: 1250px) {
|
12924 |
+
.checkout-cart-index .cart-table.data-table .button2.btn-update {
|
12925 |
+
left: 34%;
|
12926 |
+
}
|
12927 |
+
}
|
12928 |
/* Safari only override */
|
12929 |
::i-block-chrome,.catalog-category-view .add-to-links > li .link-wishlist, ::i-block-chrome,.catalog-category-view .add-to-links > li .link-compare, ::i-block-chrome,.catalog-product-view .add-to-links > li .link-wishlist, ::i-block-chrome,.catalog-product-view .add-to-links > li .link-compare {
|
12930 |
width: 50px !important;
|
skin/frontend/abserve/shoestore/images/shoestore/Thumbs.db
CHANGED
Binary file
|
skin/frontend/abserve/shoestore/images/shoestore/arrow-hover.png
ADDED
Binary file
|
skin/frontend/abserve/shoestore/images/shoestore/arrow.png
ADDED
Binary file
|
skin/frontend/abserve/shoestore/js/ajaxwishlist/ajaxwishlist.js
CHANGED
@@ -9,14 +9,18 @@ function ajaxCompare(url,id){
|
|
9 |
jQuery('#ajax_loading'+id).hide();
|
10 |
if(data.status == 'ERROR'){
|
11 |
jQuery("body").append('<ul class="messages msg_notification fixedmsg" style="margin-top: -30px ; left: 50% ; margin-left: -195px ; text-align: center ; top: 50% ; width: 100% ; max-width: 406px ; position: fixed;"><li class="notice-msg"><ul><li><span>'+data.message+'.</span></li></ul></li></ul>');
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
jQuery(".msg_notification").hide()
|
18 |
jQuery('.msg_notification').fadeOut(1000);
|
19 |
-
}, 1000)
|
20 |
|
21 |
}else{
|
22 |
jQuery("body").append('<ul class="messages msg_notification fixedmsg" style="margin-top: -30px ; left: 50% ; margin-left: -195px ; text-align: center ; top: 50% ; width: 100% ; max-width: 406px ; position: fixed;"><li class="success-msg"><ul><li><span>'+data.message+'.</span></li></ul></li></ul>');
|
@@ -31,9 +35,13 @@ function ajaxCompare(url,id){
|
|
31 |
// jQuery(".msg_notification").hide('blind', {}, 3000)
|
32 |
// }, 1000);
|
33 |
|
34 |
-
setTimeout(function() {
|
35 |
jQuery(".msg_notification").hide()
|
36 |
jQuery('.msg_notification').fadeOut(1000);
|
|
|
|
|
|
|
|
|
37 |
}, 1000);
|
38 |
|
39 |
}
|
@@ -55,9 +63,12 @@ function ajaxWishlist(url,id){
|
|
55 |
// jQuery(".msg_notification").hide('blind', {}, 3000)
|
56 |
// }, 1000);
|
57 |
|
58 |
-
setTimeout(function() {
|
59 |
jQuery(".msg_notification").hide()
|
60 |
jQuery('.msg_notification').fadeOut(1000);
|
|
|
|
|
|
|
61 |
}, 1000);
|
62 |
|
63 |
}else{
|
@@ -70,9 +81,12 @@ function ajaxWishlist(url,id){
|
|
70 |
jQuery('.col-right').prepend(data.sidebar);
|
71 |
}
|
72 |
}
|
73 |
-
setTimeout(function() {
|
74 |
jQuery(".msg_notification").hide()
|
75 |
jQuery('.msg_notification').fadeOut(1000);
|
|
|
|
|
|
|
76 |
}, 1000);
|
77 |
|
78 |
}
|
9 |
jQuery('#ajax_loading'+id).hide();
|
10 |
if(data.status == 'ERROR'){
|
11 |
jQuery("body").append('<ul class="messages msg_notification fixedmsg" style="margin-top: -30px ; left: 50% ; margin-left: -195px ; text-align: center ; top: 50% ; width: 100% ; max-width: 406px ; position: fixed;"><li class="notice-msg"><ul><li><span>'+data.message+'.</span></li></ul></li></ul>');
|
12 |
+
/*setTimeout(function() {
|
13 |
+
jQuery(".msg_notification").hide('blind', {}, 3000)
|
14 |
+
}, 1000);*/
|
15 |
|
16 |
+
setTimeout(function() {
|
17 |
+
jQuery(".msg_notification").hide()
|
18 |
+
}, 1000);
|
19 |
+
|
20 |
+
/*setTimeout(function() {
|
21 |
jQuery(".msg_notification").hide()
|
22 |
jQuery('.msg_notification').fadeOut(1000);
|
23 |
+
}, 1000);*/
|
24 |
|
25 |
}else{
|
26 |
jQuery("body").append('<ul class="messages msg_notification fixedmsg" style="margin-top: -30px ; left: 50% ; margin-left: -195px ; text-align: center ; top: 50% ; width: 100% ; max-width: 406px ; position: fixed;"><li class="success-msg"><ul><li><span>'+data.message+'.</span></li></ul></li></ul>');
|
35 |
// jQuery(".msg_notification").hide('blind', {}, 3000)
|
36 |
// }, 1000);
|
37 |
|
38 |
+
/*setTimeout(function() {
|
39 |
jQuery(".msg_notification").hide()
|
40 |
jQuery('.msg_notification').fadeOut(1000);
|
41 |
+
}, 1000);*/
|
42 |
+
|
43 |
+
setTimeout(function() {
|
44 |
+
jQuery(".msg_notification").hide()
|
45 |
}, 1000);
|
46 |
|
47 |
}
|
63 |
// jQuery(".msg_notification").hide('blind', {}, 3000)
|
64 |
// }, 1000);
|
65 |
|
66 |
+
/*setTimeout(function() {
|
67 |
jQuery(".msg_notification").hide()
|
68 |
jQuery('.msg_notification').fadeOut(1000);
|
69 |
+
}, 1000);*/
|
70 |
+
setTimeout(function() {
|
71 |
+
jQuery(".msg_notification").hide()
|
72 |
}, 1000);
|
73 |
|
74 |
}else{
|
81 |
jQuery('.col-right').prepend(data.sidebar);
|
82 |
}
|
83 |
}
|
84 |
+
/*setTimeout(function() {
|
85 |
jQuery(".msg_notification").hide()
|
86 |
jQuery('.msg_notification').fadeOut(1000);
|
87 |
+
}, 1000);*/
|
88 |
+
setTimeout(function() {
|
89 |
+
jQuery(".msg_notification").hide()
|
90 |
}, 1000);
|
91 |
|
92 |
}
|
skin/frontend/abserve/shoestore/js/jquery.appear.js
ADDED
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* jQuery.appear
|
3 |
+
* https://github.com/bas2k/jquery.appear/
|
4 |
+
* http://code.google.com/p/jquery-appear/
|
5 |
+
* http://bas2k.ru/
|
6 |
+
*
|
7 |
+
* Copyright (c) 2009 Michael Hixson
|
8 |
+
* Copyright (c) 2012-2014 Alexander Brovikov
|
9 |
+
* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
|
10 |
+
*/
|
11 |
+
(function($) {
|
12 |
+
$.fn.appear = function(fn, options) {
|
13 |
+
|
14 |
+
var settings = $.extend({
|
15 |
+
|
16 |
+
//arbitrary data to pass to fn
|
17 |
+
data: undefined,
|
18 |
+
|
19 |
+
//call fn only on the first appear?
|
20 |
+
one: true,
|
21 |
+
|
22 |
+
// X & Y accuracy
|
23 |
+
accX: 0,
|
24 |
+
accY: 0
|
25 |
+
|
26 |
+
}, options);
|
27 |
+
|
28 |
+
return this.each(function() {
|
29 |
+
|
30 |
+
var t = $(this);
|
31 |
+
|
32 |
+
//whether the element is currently visible
|
33 |
+
t.appeared = false;
|
34 |
+
|
35 |
+
if (!fn) {
|
36 |
+
|
37 |
+
//trigger the custom event
|
38 |
+
t.trigger('appear', settings.data);
|
39 |
+
return;
|
40 |
+
}
|
41 |
+
|
42 |
+
var w = $(window);
|
43 |
+
|
44 |
+
//fires the appear event when appropriate
|
45 |
+
var check = function() {
|
46 |
+
|
47 |
+
//is the element hidden?
|
48 |
+
if (!t.is(':visible')) {
|
49 |
+
|
50 |
+
//it became hidden
|
51 |
+
t.appeared = false;
|
52 |
+
return;
|
53 |
+
}
|
54 |
+
|
55 |
+
//is the element inside the visible window?
|
56 |
+
var a = w.scrollLeft();
|
57 |
+
var b = w.scrollTop();
|
58 |
+
var o = t.offset();
|
59 |
+
var x = o.left;
|
60 |
+
var y = o.top;
|
61 |
+
|
62 |
+
var ax = settings.accX;
|
63 |
+
var ay = settings.accY;
|
64 |
+
var th = t.height();
|
65 |
+
var wh = w.height();
|
66 |
+
var tw = t.width();
|
67 |
+
var ww = w.width();
|
68 |
+
|
69 |
+
if (y + th + ay >= b &&
|
70 |
+
y <= b + wh + ay &&
|
71 |
+
x + tw + ax >= a &&
|
72 |
+
x <= a + ww + ax) {
|
73 |
+
|
74 |
+
//trigger the custom event
|
75 |
+
if (!t.appeared) t.trigger('appear', settings.data);
|
76 |
+
|
77 |
+
} else {
|
78 |
+
|
79 |
+
//it scrolled out of view
|
80 |
+
t.appeared = false;
|
81 |
+
}
|
82 |
+
};
|
83 |
+
|
84 |
+
//create a modified fn with some additional logic
|
85 |
+
var modifiedFn = function() {
|
86 |
+
|
87 |
+
//mark the element as visible
|
88 |
+
t.appeared = true;
|
89 |
+
|
90 |
+
//is this supposed to happen only once?
|
91 |
+
if (settings.one) {
|
92 |
+
|
93 |
+
//remove the check
|
94 |
+
w.unbind('scroll', check);
|
95 |
+
var i = $.inArray(check, $.fn.appear.checks);
|
96 |
+
if (i >= 0) $.fn.appear.checks.splice(i, 1);
|
97 |
+
}
|
98 |
+
|
99 |
+
//trigger the original fn
|
100 |
+
fn.apply(this, arguments);
|
101 |
+
};
|
102 |
+
|
103 |
+
//bind the modified fn to the element
|
104 |
+
if (settings.one) t.one('appear', settings.data, modifiedFn);
|
105 |
+
else t.bind('appear', settings.data, modifiedFn);
|
106 |
+
|
107 |
+
//check whenever the window scrolls
|
108 |
+
w.scroll(check);
|
109 |
+
|
110 |
+
//check whenever the dom changes
|
111 |
+
$.fn.appear.checks.push(check);
|
112 |
+
|
113 |
+
//check now
|
114 |
+
(check)();
|
115 |
+
});
|
116 |
+
};
|
117 |
+
|
118 |
+
//keep a queue of appearance checks
|
119 |
+
$.extend($.fn.appear, {
|
120 |
+
|
121 |
+
checks: [],
|
122 |
+
timeout: null,
|
123 |
+
|
124 |
+
//process the queue
|
125 |
+
checkAll: function() {
|
126 |
+
var length = $.fn.appear.checks.length;
|
127 |
+
if (length > 0) while (length--) ($.fn.appear.checks[length])();
|
128 |
+
},
|
129 |
+
|
130 |
+
//check the queue asynchronously
|
131 |
+
run: function() {
|
132 |
+
if ($.fn.appear.timeout) clearTimeout($.fn.appear.timeout);
|
133 |
+
$.fn.appear.timeout = setTimeout($.fn.appear.checkAll, 20);
|
134 |
+
}
|
135 |
+
});
|
136 |
+
|
137 |
+
//run checks when these methods are called
|
138 |
+
$.each(['append', 'prepend', 'after', 'before', 'attr',
|
139 |
+
'removeAttr', 'addClass', 'removeClass', 'toggleClass',
|
140 |
+
'remove', 'css', 'show', 'hide'], function(i, n) {
|
141 |
+
var old = $.fn[n];
|
142 |
+
if (old) {
|
143 |
+
$.fn[n] = function() {
|
144 |
+
var r = old.apply(this, arguments);
|
145 |
+
$.fn.appear.run();
|
146 |
+
return r;
|
147 |
+
}
|
148 |
+
}
|
149 |
+
});
|
150 |
+
|
151 |
+
})(jQuery);
|
skin/frontend/abserve/shoestore/owl-carousel/Thumbs.db
CHANGED
Binary file
|
skin/frontend/abserve/shoestore/owl-carousel/owl.custom.js
CHANGED
@@ -53,4 +53,88 @@ jQuery(document).ready(function() {
|
|
53 |
|
54 |
// ********* End Banner ********* //
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
});
|
53 |
|
54 |
// ********* End Banner ********* //
|
55 |
|
56 |
+
jQuery('.new-products .title h2').appear(function() {
|
57 |
+
jQuery('.new-products .title h2').addClass('animated rotateIn');
|
58 |
+
});
|
59 |
+
|
60 |
+
jQuery('.category-products .title h2').appear(function() {
|
61 |
+
jQuery('.category-products .title h2').addClass('animated rotateIn');
|
62 |
+
});
|
63 |
+
|
64 |
+
jQuery('.blog_container .title h2').appear(function() {
|
65 |
+
jQuery('.blog_container .title h2').addClass('animated rotateIn');
|
66 |
+
});
|
67 |
+
|
68 |
+
jQuery('.brand-products .title h2').appear(function() {
|
69 |
+
jQuery('.brand-products .title h2').addClass('animated rotateIn');
|
70 |
+
});
|
71 |
+
|
72 |
+
jQuery('.new-products .title p').appear(function() {
|
73 |
+
jQuery('.new-products .title p').addClass('animated zoomIn');
|
74 |
+
});
|
75 |
+
|
76 |
+
jQuery('.category-products .title p').appear(function() {
|
77 |
+
jQuery('.category-products .title p').addClass('animated zoomIn');
|
78 |
+
});
|
79 |
+
|
80 |
+
jQuery('.blog_container .title p').appear(function() {
|
81 |
+
jQuery('.blog_container .title p').addClass('animated zoomIn');
|
82 |
+
});
|
83 |
+
|
84 |
+
jQuery('.brand-products .title p').appear(function() {
|
85 |
+
jQuery('.brand-products .title p').addClass('animated zoomIn');
|
86 |
+
});
|
87 |
+
|
88 |
+
jQuery('.new-products .products-grid .item').appear(function() {
|
89 |
+
jQuery('.new-products .products-grid .item').addClass('animated flipInY');
|
90 |
+
});
|
91 |
+
|
92 |
+
jQuery('.brand_img').appear(function() {
|
93 |
+
jQuery('.brand_img').addClass('animated flipInY');
|
94 |
+
});
|
95 |
+
|
96 |
+
jQuery('.category-products .products-grid .item').appear(function() {
|
97 |
+
jQuery('.category-products .products-grid .item').addClass('animated flipInY');
|
98 |
+
});
|
99 |
+
|
100 |
+
jQuery('.blog_left').appear(function() {
|
101 |
+
jQuery('.blog_left').addClass('animated bounceInLeft');
|
102 |
+
});
|
103 |
+
|
104 |
+
jQuery('.blog_right').appear(function() {
|
105 |
+
jQuery('.blog_right').addClass('animated bounceInRight');
|
106 |
+
});
|
107 |
+
|
108 |
+
jQuery('.call').appear(function() {
|
109 |
+
jQuery('.call').addClass('animated slideInLeft');
|
110 |
+
});
|
111 |
+
|
112 |
+
jQuery('.subscribe').appear(function() {
|
113 |
+
jQuery('.subscribe').addClass('animated slideInRight');
|
114 |
+
});
|
115 |
+
|
116 |
+
jQuery('.chat').appear(function() {
|
117 |
+
jQuery('.chat').addClass('animated zoomIn');
|
118 |
+
});
|
119 |
+
|
120 |
+
jQuery('.advertisement_block1').appear(function() {
|
121 |
+
jQuery('.advertisement_block1').addClass('animated slideInLeft');
|
122 |
+
});
|
123 |
+
|
124 |
+
jQuery('.advertisement_block3').appear(function() {
|
125 |
+
jQuery('.advertisement_block3').addClass('animated slideInRight');
|
126 |
+
});
|
127 |
+
|
128 |
+
jQuery('.advertisement_block2').appear(function() {
|
129 |
+
jQuery('.advertisement_block2').addClass('animated zoomIn');
|
130 |
+
});
|
131 |
+
|
132 |
+
jQuery('#tabs li').appear(function() {
|
133 |
+
jQuery('#tabs li').addClass('animated zoomIn');
|
134 |
+
});
|
135 |
+
|
136 |
+
jQuery('.services i').appear(function() {
|
137 |
+
jQuery('.services i').addClass('animated tada');
|
138 |
+
});
|
139 |
+
|
140 |
});
|