diff --git a/theme_fasion/README.rst b/theme_fasion/README.rst new file mode 100644 index 000000000..6149e4076 --- /dev/null +++ b/theme_fasion/README.rst @@ -0,0 +1,45 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Theme Fashion +============= +* Design Web Pages with theme fashion + +Configuration +============= + - www.odoo.com/documentation/16.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions: `__ + +Credits +------- +Developer: (V17) Developer ADVAITH BG, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com +This module is maintained by Cybrosys Technologies. +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/theme_fasion/__init__.py b/theme_fasion/__init__.py new file mode 100644 index 000000000..9b4ada7a5 --- /dev/null +++ b/theme_fasion/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import controllers +from . import models +from . import wizard diff --git a/theme_fasion/__manifest__.py b/theme_fasion/__manifest__.py new file mode 100644 index 000000000..17c9b06c2 --- /dev/null +++ b/theme_fasion/__manifest__.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Theme Fashion', + "version": "17.0.1.0.0", + 'category': 'Theme/eCommerce', + 'summary': 'Design Web Pages with Theme Fashion.', + 'description': 'Theme Fashion is a attractive and unique front-end theme' + ' mainly suitable for eCommerce website', + "author": "Cybrosys Techno Solutions", + "company": "Cybrosys Techno Solutions", + "maintainer": "Cybrosys Techno Solutions", + "website": "https://www.cybrosys.com", + 'depends': ['website_sale','website_blog'], + 'data': [ + 'security/ir.model.access.csv', + 'wizard/theme_fasion_wizard_views.xml', + 'views/layout_templates.xml', + 'views/header_templates.xml', + 'views/footer_templates.xml', + 'views/blog_templates.xml', + 'views/contact_us_templates.xml', + 'views/products_templates.xml', + 'views/snippets/s_service_templates.xml', + 'views/snippets/s_category_templates.xml', + 'views/snippets/s_smart_clothing_templates.xml', + 'views/snippets/s_insta_shopping_templates.xml', + 'views/snippets/s_banner_templates.xml', + ], + 'assets': { + 'web.assets_frontend': [ + 'theme_fasion/static/src/css/animate.min.css', + 'theme_fasion/static/src/css/easyzoom.css', + 'theme_fasion/static/src/css/owl.carousel.min.css', + 'theme_fasion/static/src/css/owl.theme.default.min.css', + 'theme_fasion/static/src/css/pygments.css', + 'theme_fasion/static/src/css/style.css', + 'theme_fasion/static/src/css/custom.css', + 'theme_fasion/static/src/js/owl.carousel.js', + 'theme_fasion/static/src/js/owl.carousel.min.js', + 'theme_fasion/static/src/js/categories_snippet.js', + 'theme_fasion/static/src/js/smart_clothing_snippet.js', + 'theme_fasion/static/src/js/insta_shopping_snippet.js', + 'theme_fasion/static/src/js/custom.js', + ], + }, + 'images': [ + 'static/description/banner.png', + 'static/description/theme_screenshot.jpg', + ], + "license": "LGPL-3", + "installable": True, + "auto_install": False, + "application": False, +} diff --git a/theme_fasion/controllers/__init__.py b/theme_fasion/controllers/__init__.py new file mode 100644 index 000000000..29767300a --- /dev/null +++ b/theme_fasion/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import theme_fasion diff --git a/theme_fasion/controllers/theme_fasion.py b/theme_fasion/controllers/theme_fasion.py new file mode 100644 index 000000000..3aab4347a --- /dev/null +++ b/theme_fasion/controllers/theme_fasion.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import http + + +class ThemeFasion(http.Controller): + """ + To get data of dynamic snippets + """ + @http.route('/get_categories', auth='public', type='json', + website=True) + def get_categories(self): + """ + Data of categories snippet + """ + category_ids = http.request.env['website'].sudo().browse( + http.request.website.id + ).category_ids + values = { + 'categories': category_ids + } + response = http.Response( + template='theme_fasion.categories_snippet', qcontext=values) + return response.render() + + @http.route('/get_smart_clothing', auth='public', type='json', + website=True) + def get_smart_clothing(self, **kw): + """ + Data of smart clothing snippet + """ + smart_clothing_ids = http.request.env['website'].sudo().browse( + http.request.website.id + ).smart_clothing_ids + values = {} + if smart_clothing_ids: + values.update({ + "categories": smart_clothing_ids, + "current_category": smart_clothing_ids[ + kw.get('current_id') - 1] if + kw.get('current_id') else smart_clothing_ids[0], + }) + response = http.Response( + template='theme_fasion.smart_clothing_snippet', qcontext=values) + return response.render() + + @http.route('/get_insta_shopping', auth='public', type='json', + website=True) + def get_insta_shopping(self): + """ + Data of insta shopping snippet + """ + insta_shopping_ids = http.request.env['website'].sudo().browse( + http.request.website.id + ).insta_shopping_ids + values = {} + if insta_shopping_ids: + values.update({ + "posts": insta_shopping_ids, + }) + response = http.Response( + template='theme_fasion.insta_shopping_snippet', qcontext=values) + return response.render() diff --git a/theme_fasion/doc/RELEASE_NOTES.md b/theme_fasion/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..b6476a76a --- /dev/null +++ b/theme_fasion/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 21.06.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Theme Fashion diff --git a/theme_fasion/models/__init__.py b/theme_fasion/models/__init__.py new file mode 100644 index 000000000..29767300a --- /dev/null +++ b/theme_fasion/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import theme_fasion diff --git a/theme_fasion/models/theme_fasion.py b/theme_fasion/models/theme_fasion.py new file mode 100644 index 000000000..c1cff2f91 --- /dev/null +++ b/theme_fasion/models/theme_fasion.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class ThemeFashion(models.AbstractModel): + """Inherit the model theme.utils for adding new header file""" + _inherit = 'theme.utils' + + def _theme_fasion_post_copy(self, mod): + """For viewing default header""" + self.enable_view( + 'theme_fasion.template_header_hamburger_oe_structure_header_fasions') + self.disable_view('website.template_header_default') + + +class Website(models.Model): + """ + To add a field in website model to save the values. + """ + _inherit = 'website' + + category_ids = fields.Many2many('product.public.category', + help="Category ids") + smart_clothing_ids = fields.One2many("smart.clothing", + "website_id", + help="Smart clothing ids") + insta_shopping_ids = fields.One2many("insta.shopping", + "website_id", + help="Insta shopping ids") + + +class SmartClothing(models.Model): + """ + To create model for smart clothing + """ + _name = 'smart.clothing' + _description = "Smart Clothing" + + theme_fasion_wizard_id = fields.Many2one("theme.fasion.wizard", + "Theme Fasion Wizard", + help="Theme fasion wizard id") + website_id = fields.Many2one("website", "Website", + help="Website id") + category_id = fields.Many2one("product.public.category", + string="Category", help="Category id") + product_ids = fields.Many2many("product.template", + string="Products", help="Products") + dynamic_category_id = fields.Integer(string="Dynamic Category", + help="Dynamic category id") + + # Onchange Methods + @api.onchange("category_id") + def _onchange_category_id(self): + """ + Used to make dynamic domain for product_ids + """ + if self.category_id: + self.dynamic_category_id = self.category_id.id + + +class InstaShopping(models.Model): + """ + To create model for insta shopping + """ + _name = 'insta.shopping' + _description = "Insta Shopping" + + theme_fasion_wizard_id = fields.Many2one("theme.fasion.wizard", + "Theme Fasion Wizard", + help="Theme fasion wizard id") + + website_id = fields.Many2one("website", "Website", + help="Website id") + image_1920 = fields.Binary(string="Upload Image", help="Image") + insta_link = fields.Char(string="Instagram Link", help="Instagram post link") diff --git a/theme_fasion/security/ir.model.access.csv b/theme_fasion/security/ir.model.access.csv new file mode 100644 index 000000000..cbcb93c39 --- /dev/null +++ b/theme_fasion/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_theme_fasion_wizard,access.theme.fasion.wizard,model_theme_fasion_wizard,base.group_user,1,1,1,1 +access_smart_clothing,access.smart.clothing,model_smart_clothing,base.group_user,1,1,1,1 +access_insta_shopping,access.insta.shopping,model_insta_shopping,base.group_user,1,1,1,1 diff --git a/theme_fasion/static/description/banner.png b/theme_fasion/static/description/banner.png new file mode 100644 index 000000000..bb0414109 Binary files /dev/null and b/theme_fasion/static/description/banner.png differ diff --git a/theme_fasion/static/description/icon.png b/theme_fasion/static/description/icon.png new file mode 100644 index 000000000..07a6d8028 Binary files /dev/null and b/theme_fasion/static/description/icon.png differ diff --git a/theme_fasion/static/description/images/1.jpg b/theme_fasion/static/description/images/1.jpg new file mode 100644 index 000000000..4693f9323 Binary files /dev/null and b/theme_fasion/static/description/images/1.jpg differ diff --git a/theme_fasion/static/description/images/11.jpg b/theme_fasion/static/description/images/11.jpg new file mode 100644 index 000000000..0d4a838e7 Binary files /dev/null and b/theme_fasion/static/description/images/11.jpg differ diff --git a/theme_fasion/static/description/images/12.jpg b/theme_fasion/static/description/images/12.jpg new file mode 100644 index 000000000..f46e3d930 Binary files /dev/null and b/theme_fasion/static/description/images/12.jpg differ diff --git a/theme_fasion/static/description/images/2.jpg b/theme_fasion/static/description/images/2.jpg new file mode 100644 index 000000000..2221e5b76 Binary files /dev/null and b/theme_fasion/static/description/images/2.jpg differ diff --git a/theme_fasion/static/description/images/3.jpg b/theme_fasion/static/description/images/3.jpg new file mode 100644 index 000000000..1179f093e Binary files /dev/null and b/theme_fasion/static/description/images/3.jpg differ diff --git a/theme_fasion/static/description/images/Cybrosys R.png b/theme_fasion/static/description/images/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/theme_fasion/static/description/images/Cybrosys R.png differ diff --git a/theme_fasion/static/description/images/Cybrosys.png b/theme_fasion/static/description/images/Cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/theme_fasion/static/description/images/Cybrosys.png differ diff --git a/theme_fasion/static/description/images/blog.jpg b/theme_fasion/static/description/images/blog.jpg new file mode 100644 index 000000000..e7212663f Binary files /dev/null and b/theme_fasion/static/description/images/blog.jpg differ diff --git a/theme_fasion/static/description/images/cogs.png b/theme_fasion/static/description/images/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/theme_fasion/static/description/images/cogs.png differ diff --git a/theme_fasion/static/description/images/consultation.png b/theme_fasion/static/description/images/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/theme_fasion/static/description/images/consultation.png differ diff --git a/theme_fasion/static/description/images/contactUs.jpg b/theme_fasion/static/description/images/contactUs.jpg new file mode 100644 index 000000000..cfcc73252 Binary files /dev/null and b/theme_fasion/static/description/images/contactUs.jpg differ diff --git a/theme_fasion/static/description/images/cybro-logo-oca-no-text.png b/theme_fasion/static/description/images/cybro-logo-oca-no-text.png new file mode 100644 index 000000000..180d15dd6 Binary files /dev/null and b/theme_fasion/static/description/images/cybro-logo-oca-no-text.png differ diff --git a/theme_fasion/static/description/images/cybro-logo-oca.png b/theme_fasion/static/description/images/cybro-logo-oca.png new file mode 100644 index 000000000..90e4c9cb9 Binary files /dev/null and b/theme_fasion/static/description/images/cybro-logo-oca.png differ diff --git a/theme_fasion/static/description/images/demo-1.png b/theme_fasion/static/description/images/demo-1.png new file mode 100644 index 000000000..7cb3d9146 Binary files /dev/null and b/theme_fasion/static/description/images/demo-1.png differ diff --git a/theme_fasion/static/description/images/demo-2.png b/theme_fasion/static/description/images/demo-2.png new file mode 100644 index 000000000..97b2e5092 Binary files /dev/null and b/theme_fasion/static/description/images/demo-2.png differ diff --git a/theme_fasion/static/description/images/demo-3.png b/theme_fasion/static/description/images/demo-3.png new file mode 100644 index 000000000..fc6e38fa7 Binary files /dev/null and b/theme_fasion/static/description/images/demo-3.png differ diff --git a/theme_fasion/static/description/images/demo-4.png b/theme_fasion/static/description/images/demo-4.png new file mode 100644 index 000000000..d563f5ee1 Binary files /dev/null and b/theme_fasion/static/description/images/demo-4.png differ diff --git a/theme_fasion/static/description/images/demo-5.png b/theme_fasion/static/description/images/demo-5.png new file mode 100644 index 000000000..7308bf5e2 Binary files /dev/null and b/theme_fasion/static/description/images/demo-5.png differ diff --git a/theme_fasion/static/description/images/ecom-black.png b/theme_fasion/static/description/images/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/theme_fasion/static/description/images/ecom-black.png differ diff --git a/theme_fasion/static/description/images/education-black.png b/theme_fasion/static/description/images/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/theme_fasion/static/description/images/education-black.png differ diff --git a/theme_fasion/static/description/images/hero.png b/theme_fasion/static/description/images/hero.png new file mode 100644 index 000000000..60302bb9f Binary files /dev/null and b/theme_fasion/static/description/images/hero.png differ diff --git a/theme_fasion/static/description/images/hotel-black.png b/theme_fasion/static/description/images/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/theme_fasion/static/description/images/hotel-black.png differ diff --git a/theme_fasion/static/description/images/laptop-screenshots.jpg b/theme_fasion/static/description/images/laptop-screenshots.jpg new file mode 100644 index 000000000..ef775400f Binary files /dev/null and b/theme_fasion/static/description/images/laptop-screenshots.jpg differ diff --git a/theme_fasion/static/description/images/license.png b/theme_fasion/static/description/images/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/theme_fasion/static/description/images/license.png differ diff --git a/theme_fasion/static/description/images/lifebuoy.png b/theme_fasion/static/description/images/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/theme_fasion/static/description/images/lifebuoy.png differ diff --git a/theme_fasion/static/description/images/manufacturing-black.png b/theme_fasion/static/description/images/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/theme_fasion/static/description/images/manufacturing-black.png differ diff --git a/theme_fasion/static/description/images/phone-screenshots.jpg b/theme_fasion/static/description/images/phone-screenshots.jpg new file mode 100644 index 000000000..99fd3483c Binary files /dev/null and b/theme_fasion/static/description/images/phone-screenshots.jpg differ diff --git a/theme_fasion/static/description/images/phone.svg b/theme_fasion/static/description/images/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/theme_fasion/static/description/images/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_fasion/static/description/images/pos-black.png b/theme_fasion/static/description/images/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/theme_fasion/static/description/images/pos-black.png differ diff --git a/theme_fasion/static/description/images/puzzle.png b/theme_fasion/static/description/images/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/theme_fasion/static/description/images/puzzle.png differ diff --git a/theme_fasion/static/description/images/restaurant-black.png b/theme_fasion/static/description/images/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/theme_fasion/static/description/images/restaurant-black.png differ diff --git a/theme_fasion/static/description/images/service-black.png b/theme_fasion/static/description/images/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/theme_fasion/static/description/images/service-black.png differ diff --git a/theme_fasion/static/description/images/shop.jpg b/theme_fasion/static/description/images/shop.jpg new file mode 100644 index 000000000..e4e1826c6 Binary files /dev/null and b/theme_fasion/static/description/images/shop.jpg differ diff --git a/theme_fasion/static/description/images/snippet.png b/theme_fasion/static/description/images/snippet.png new file mode 100644 index 000000000..4d0cdd9e6 Binary files /dev/null and b/theme_fasion/static/description/images/snippet.png differ diff --git a/theme_fasion/static/description/images/support (1) 1.svg b/theme_fasion/static/description/images/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/theme_fasion/static/description/images/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/theme_fasion/static/description/images/support-email.svg b/theme_fasion/static/description/images/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/theme_fasion/static/description/images/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/theme_fasion/static/description/images/template.jpg b/theme_fasion/static/description/images/template.jpg new file mode 100644 index 000000000..dcf61e86c Binary files /dev/null and b/theme_fasion/static/description/images/template.jpg differ diff --git a/theme_fasion/static/description/images/template.png b/theme_fasion/static/description/images/template.png new file mode 100644 index 000000000..2e0bc2797 Binary files /dev/null and b/theme_fasion/static/description/images/template.png differ diff --git a/theme_fasion/static/description/images/trading-black.png b/theme_fasion/static/description/images/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/theme_fasion/static/description/images/trading-black.png differ diff --git a/theme_fasion/static/description/images/training.png b/theme_fasion/static/description/images/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/theme_fasion/static/description/images/training.png differ diff --git a/theme_fasion/static/description/images/update.png b/theme_fasion/static/description/images/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/theme_fasion/static/description/images/update.png differ diff --git a/theme_fasion/static/description/images/user.png b/theme_fasion/static/description/images/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/theme_fasion/static/description/images/user.png differ diff --git a/theme_fasion/static/description/images/whatsapp 1.svg b/theme_fasion/static/description/images/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/theme_fasion/static/description/images/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/theme_fasion/static/description/images/wrench.png b/theme_fasion/static/description/images/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/theme_fasion/static/description/images/wrench.png differ diff --git a/theme_fasion/static/description/index.html b/theme_fasion/static/description/index.html new file mode 100644 index 000000000..f56dd8dd3 --- /dev/null +++ b/theme_fasion/static/description/index.html @@ -0,0 +1,1338 @@ + + + + + + + + + + + Document + + + + + + + + diff --git a/theme_fasion/static/description/theme_screenshot.jpg b/theme_fasion/static/description/theme_screenshot.jpg new file mode 100644 index 000000000..7f8224f70 Binary files /dev/null and b/theme_fasion/static/description/theme_screenshot.jpg differ diff --git a/theme_fasion/static/src/css/animate.min.css b/theme_fasion/static/src/css/animate.min.css new file mode 100644 index 000000000..76d2fe1a8 --- /dev/null +++ b/theme_fasion/static/src/css/animate.min.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * animate.css - https://animate.style/ + * Version - 4.1.1 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2020 Animate.css + */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp} \ No newline at end of file diff --git a/theme_fasion/static/src/css/custom.css b/theme_fasion/static/src/css/custom.css new file mode 100644 index 000000000..d6f9b3be1 --- /dev/null +++ b/theme_fasion/static/src/css/custom.css @@ -0,0 +1,29 @@ +/* Header */ +header .top_nav .first_nav .top_nav_right { + width: auto; +} +header .top_nav .first_nav .top_nav_right div.input-group { + background-color: transparent !important; + color: #888787; + border-radius: 0; + margin-top: 8px; + border: 1px solid !important; + height: 40px; +} +header .top_nav .first_nav .top_nav_right div.input-group input.search-query { + background: white !important; +} +header .top_nav .first_nav .top_nav_right div.input-group button.oe_search_button { + background: white !important; +} +@media screen and (max-width: 678px) { + header .top_nav .first_nav .top_nav_right form.o_searchbar_form { + width: 50%; + } +} +div#cart_total tr div.coupon_form a { + line-height: 2; +} +section.banner ol.carousel-indicators li { + background-color: aqua; +} diff --git a/theme_fasion/static/src/css/easyzoom.css b/theme_fasion/static/src/css/easyzoom.css new file mode 100644 index 000000000..56937fa6f --- /dev/null +++ b/theme_fasion/static/src/css/easyzoom.css @@ -0,0 +1,65 @@ +/** + * EasyZoom core styles + */ +.easyzoom { + position: relative; + + /* 'Shrink-wrap' the element */ + display: inline-block; + *display: inline; + *zoom: 1; +} + +.easyzoom img { + vertical-align: bottom; +} + +.easyzoom.is-loading img { + cursor: progress; +} + +.easyzoom.is-ready img { + cursor: crosshair; +} + +.easyzoom.is-error img { + cursor: not-allowed; +} + +.easyzoom-notice { + position: absolute; + top: 50%; + left: 50%; + z-index: 150; + width: 10em; + margin: -1em 0 0 -5em; + line-height: 2em; + text-align: center; + background: #FFF; + box-shadow: 0 0 10px #888; +} + +.easyzoom-flyout { + position:absolute; + z-index: 100; + overflow: hidden; + background: #FFF; +} + +/** + * EasyZoom layout variations + */ +.easyzoom--overlay .easyzoom-flyout { + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.easyzoom--adjacent .easyzoom-flyout { + top: 0; + left: 100%; + width: 100%; + height: 100%; + margin-left: 20px; +} diff --git a/theme_fasion/static/src/css/example.css b/theme_fasion/static/src/css/example.css new file mode 100644 index 000000000..b2ba9966d --- /dev/null +++ b/theme_fasion/static/src/css/example.css @@ -0,0 +1,167 @@ +html, body { + height: 100%; + margin: 0; + padding: 0; +} + +body { + font: normal 16px/1.5 Arial, sans-serif; + color: #111; + background: #eee; +} + +h1, h2, h3, h4, header > p { + text-align: center; + color: #555; +} + +h1 { + margin: 0 0 .2em; + font-size: 2.5em; + letter-spacing: -.075em; +} + +h2, h1 + p { + margin: 0 0 .5em; + font-size: 1.5em; +} + +h3, h4 { + margin: 0 0 .5em; + font-size: 1.25em; +} + +* + h3 { + margin-top: 1em; +} + +header > h1 { + margin-bottom: 0; +} + +header > p { + margin-bottom: 1em; +} + +p, dl, ul, ol { + margin: 0 0 1.5em; +} + +dt { + font-weight: bold; +} + +dd { + margin: 0 0 1em; + font-size: .8125em; + color: #555; +} + +ul, ol { + padding-left: 1.5em; +} + +button, +a.button { + font-size: 1.2em; + line-height: 1; + padding: .25em .5em; + border: none; + text-decoration: none; + color: #fff; + background: #333; + border-radius: 7px; +} + +button:hover, +a.button:hover { + background-color: #111; +} + +a img { + border: 0; +} + +figure { + margin: 0; +} + +pre, code, var, tt { + font-size: 15px; + font-style: normal; + font-family: Consolas, "Lucida Console", Monaco, monospace; +} + +pre { + overflow: auto; + padding: 1em .5em; + border: 1px solid #333; + line-height: 1.25; + text-align: left; + border-radius: 5px; +} + +table { + border: 1px solid #ddd; + border-collapse: collapse; +} + +tr > * { + border-right: 1px solid #ddd; +} + +tr > :last-child { + border-right: 0; +} + +th, td { + padding: 5px; + text-align: left; + min-width: 150px; +} + +th { + background: #fafafa; +} + +td { + border-top: 1px solid #ddd; +} + +.container { + width: 640px; + margin: 0 auto; + padding: 2em 2em 4em; + background: #fff; + box-shadow: 0 0 5em rgba(0, 0, 0, .1); +} + +.container section + section { + margin-top: 3em; + border-top: 1px solid #ccc; + padding-top: 1em; +} + +.thumbnails { + overflow: hidden; + margin: 1em 0; + padding: 0; + text-align: center; +} + +.thumbnails li { + display: inline-block; + width: 140px; + margin: 0 5px; +} + +.thumbnails img { + display: block; + min-width: 100%; + max-width: 100%; +} + +.toggle { + display: block; + margin: 10px auto 1.5em; +} diff --git a/theme_fasion/static/src/css/owl.carousel.min.css b/theme_fasion/static/src/css/owl.carousel.min.css new file mode 100644 index 000000000..a71df11c0 --- /dev/null +++ b/theme_fasion/static/src/css/owl.carousel.min.css @@ -0,0 +1,6 @@ +/** + * Owl Carousel v2.3.4 + * Copyright 2013-2018 David Deutsch + * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE + */ +.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file diff --git a/theme_fasion/static/src/css/owl.theme.default.min.css b/theme_fasion/static/src/css/owl.theme.default.min.css new file mode 100644 index 000000000..487088d2e --- /dev/null +++ b/theme_fasion/static/src/css/owl.theme.default.min.css @@ -0,0 +1,6 @@ +/** + * Owl Carousel v2.3.4 + * Copyright 2013-2018 David Deutsch + * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE + */ +.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} \ No newline at end of file diff --git a/theme_fasion/static/src/css/pygments.css b/theme_fasion/static/src/css/pygments.css new file mode 100644 index 000000000..f3c0094a0 --- /dev/null +++ b/theme_fasion/static/src/css/pygments.css @@ -0,0 +1,66 @@ +/* Tomorrow Night - Eighties */ +.highlight .hll { background-color: #515151 } +.highlight { background: #2d2d2d; color: #cccccc } +.highlight .c { color: #999999 } /* Comment */ +.highlight .err { color: #f2777a } /* Error */ +.highlight .k { color: #cc99cc } /* Keyword */ +.highlight .l { color: #f99157 } /* Literal */ +.highlight .n { color: #cccccc } /* Name */ +.highlight .o { color: #66cccc } /* Operator */ +.highlight .p { color: #cccccc } /* Punctuation */ +.highlight .cm { color: #999999 } /* Comment.Multiline */ +.highlight .cp { color: #999999 } /* Comment.Preproc */ +.highlight .c1 { color: #999999 } /* Comment.Single */ +.highlight .cs { color: #999999 } /* Comment.Special */ +.highlight .gd { color: #f2777a } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gh { color: #cccccc; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #99cc99 } /* Generic.Inserted */ +.highlight .gp { color: #999999; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #66cccc; font-weight: bold } /* Generic.Subheading */ +.highlight .kc { color: #cc99cc } /* Keyword.Constant */ +.highlight .kd { color: #cc99cc } /* Keyword.Declaration */ +.highlight .kn { color: #66cccc } /* Keyword.Namespace */ +.highlight .kp { color: #cc99cc } /* Keyword.Pseudo */ +.highlight .kr { color: #cc99cc } /* Keyword.Reserved */ +.highlight .kt { color: #ffcc66 } /* Keyword.Type */ +.highlight .ld { color: #99cc99 } /* Literal.Date */ +.highlight .m { color: #f99157 } /* Literal.Number */ +.highlight .s { color: #99cc99 } /* Literal.String */ +.highlight .na { color: #6699cc } /* Name.Attribute */ +.highlight .nb { color: #cccccc } /* Name.Builtin */ +.highlight .nc { color: #ffcc66 } /* Name.Class */ +.highlight .no { color: #f2777a } /* Name.Constant */ +.highlight .nd { color: #66cccc } /* Name.Decorator */ +.highlight .ni { color: #cccccc } /* Name.Entity */ +.highlight .ne { color: #f2777a } /* Name.Exception */ +.highlight .nf { color: #6699cc } /* Name.Function */ +.highlight .nl { color: #cccccc } /* Name.Label */ +.highlight .nn { color: #ffcc66 } /* Name.Namespace */ +.highlight .nx { color: #6699cc } /* Name.Other */ +.highlight .py { color: #cccccc } /* Name.Property */ +.highlight .nt { color: #66cccc } /* Name.Tag */ +.highlight .nv { color: #f2777a } /* Name.Variable */ +.highlight .ow { color: #66cccc } /* Operator.Word */ +.highlight .w { color: #cccccc } /* Text.Whitespace */ +.highlight .mf { color: #f99157 } /* Literal.Number.Float */ +.highlight .mh { color: #f99157 } /* Literal.Number.Hex */ +.highlight .mi { color: #f99157 } /* Literal.Number.Integer */ +.highlight .mo { color: #f99157 } /* Literal.Number.Oct */ +.highlight .sb { color: #99cc99 } /* Literal.String.Backtick */ +.highlight .sc { color: #cccccc } /* Literal.String.Char */ +.highlight .sd { color: #999999 } /* Literal.String.Doc */ +.highlight .s2 { color: #99cc99 } /* Literal.String.Double */ +.highlight .se { color: #f99157 } /* Literal.String.Escape */ +.highlight .sh { color: #99cc99 } /* Literal.String.Heredoc */ +.highlight .si { color: #f99157 } /* Literal.String.Interpol */ +.highlight .sx { color: #99cc99 } /* Literal.String.Other */ +.highlight .sr { color: #99cc99 } /* Literal.String.Regex */ +.highlight .s1 { color: #99cc99 } /* Literal.String.Single */ +.highlight .ss { color: #99cc99 } /* Literal.String.Symbol */ +.highlight .bp { color: #cccccc } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #f2777a } /* Name.Variable.Class */ +.highlight .vg { color: #f2777a } /* Name.Variable.Global */ +.highlight .vi { color: #f2777a } /* Name.Variable.Instance */ +.highlight .il { color: #f99157 } /* Literal.Number.Integer.Long */ diff --git a/theme_fasion/static/src/css/style.css b/theme_fasion/static/src/css/style.css new file mode 100644 index 000000000..ab47f1758 --- /dev/null +++ b/theme_fasion/static/src/css/style.css @@ -0,0 +1,3603 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ +/* Document + ========================================================================== */ +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ +html { + line-height: 1.15; + /* 1 */ + -webkit-text-size-adjust: 100%; + /* 2 */ +} + +/* Sections + ========================================================================== */ +/** + * Remove the margin in all browsers. + */ +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ +hr { + box-sizing: content-box; + /* 1 */ + height: 0; + /* 1 */ + overflow: visible; + /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +pre { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ +/** + * Remove the gray background on active links in IE 10. + */ +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ +abbr[title] { + border-bottom: none; + /* 1 */ + text-decoration: underline; + /* 2 */ + text-decoration: underline dotted; + /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +code, +kbd, +samp { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ +/** + * Remove the border on images inside links in IE 10. + */ +img { + border-style: none; +} + +/* Forms + ========================================================================== */ +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ +button, +input, +optgroup, +select, +textarea { + font-family: inherit; + /* 1 */ + font-size: 100%; + /* 1 */ + line-height: 1.15; + /* 1 */ + margin: 0; + /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ +button, +input { + /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ +button, +select { + /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ +legend { + box-sizing: border-box; + /* 1 */ + color: inherit; + /* 2 */ + display: table; + /* 1 */ + max-width: 100%; + /* 1 */ + padding: 0; + /* 3 */ + white-space: normal; + /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ +[type="search"] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ +::-webkit-file-upload-button { + -webkit-appearance: button; + /* 1 */ + font: inherit; + /* 2 */ +} + +/* Interactive + =========================================== +=============================== */ +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ +/** + * Add the correct display in IE 10+. + */ +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ +[hidden] { + display: none; +} + +*:focus { + outline: 0 !important; +} + +*button:focus { + border: none; + outline: none; + box-shadow: none; +} + +* { + list-style-type: none; + font-family: "Baloo Tamma 2", cursive; + font-size: 14px; +} + +*:focus, *:active { + outline: none !important; +} + +.text { + font-size: 14px; + line-height: 29px; + letter-spacing: 2px; +} + +*:hover { + transition: 0.5s; +} + +*::selection { + color: #1c849e; +} + +*a, +a:visited { + color: #990000; + text-decoration: none; +} + +body { + color: #888787; + /* dark gray */ +} + +.affix { + top: 0; + width: 100%; + z-index: 9999 !important; +} + +.gap { + padding-top: 100px; + padding-bottom: 50px; +} + +@media screen and (max-width: 768px) { + .gap { + padding-top: 50px; + } +} + +.gap2 { + padding-bottom: 50px; +} + +.gap3 { + padding-top: 50px; + padding-bottom: 50px; +} + +.gap4 { + padding-top: 50px; +} + +html { + scroll-behavior: smooth; +} + +.main_heading { + text-align: center; + color: #000000; + font-size: 50px; + text-transform: capitalize; +} + +@media screen and (max-width: 768px) { + .main_heading { + font-size: 40px; + } +} + +.main_heading:first-letter { + color: #f24360; + font-size: 60px; + font-family: "Lobster Two", cursive; + font-weight: 700; +} + +@media screen and (max-width: 768px) { + .main_heading:first-letter { + font-size: 50px; + } +} + +.btn { + border: none !important; + outline: none !important; + box-shadow: none !important; +} + +.btn-primary { + background-color: #f24360 !important; + border-radius: 0; + padding: 8px 25px; +} + +.btn-primary:hover { + background-color: #ef1338 !important; + border: none; +} + +.btn-shop_more { + background-color: #f24360 !important; + padding: 9px 24px; + font-size: 20px; + letter-spacing: 0.5px; + text-transform: uppercase; + color: #fff; + border-radius: 0; +} + +.btn-shop_more:hover { + background-color: #ef1338 !important; + border: none; + color: #fff; +} + +.btn-black { + background-color: #eaca94 !important; + padding: 9px 24px; + font-size: 16px; + letter-spacing: 0.5px; + text-transform: uppercase; + color: #fff; +} + +.btn-black:hover { + background-color: #ef1338 !important; + border: none; + color: #fff; +} + +.btn-search { + background-color: transparent !important; + border-color: #b8b8b8; + color: #888787; + border-radius: 0; + padding: 10px 16px; + margin-top: 15px; + border: 1px solid !important; + height: 40px; +} + +.btn-search:hover { + background-color: #e6bf7f !important; + border: none; + color: #F5FCF0; +} + +.btn-shop { + background-color: transparent !important; + border-color: #fff; + padding: 12px 36px; + color: #fff !important; + font-size: 12px; + font-weight: 600; + border-radius: 0; + border: 1px solid !important; +} + +.btn-shop:hover { + border-color: #eaca94 !important; + color: #fff !important; + box-shadow: 0 0 5px #fff !important; +} + +.modal { + box-shadow: 0px 0px 9px 0px #8b8888; + -webkit-box-shadow: 0px 0px 9px 0px #8b8888; + -moz-box-shadow: 0px 0px 9px 0px #8b8888; +} + +.modal .modal-dialog { + max-width: 700px; + margin: 7.75em auto; +} + +@media screen and (max-width: 768px) { + .modal .modal-dialog { + width: 70vw; + } +} + +.modal .modal-dialog .modal-content { + border: none; + border-radius: 0; +} + +.modal .modal-dialog .modclass="fa fa-shopping-cart fa-stack"al-content .modal-title { + color: #000000; + font-size: 25px; + font-weight: 600; + font-family: 'Lobster Two', cursive !important; +} + +.modal .modal-dialog .modal-content .modal-body { + background-color: #eaca94; +} + +.modal .modal-dialog .modal-content .modal-body .login_img { + display: flex; + width: 100%; + height: 50vh; + justify-content: center; + align-items: center; +} + +.modal .modal-dialog .modal-content .modal-body .login_img img { + width: 100%; +} + +@media screen and (max-width: 768px) { + .modal .modal-dialog .modal-content .modal-body .login_img { + display: none; + } +} + +.modal .modal-dialog .modal-content .modal-body .wrapper { + display: flex; + width: 100%; + height: 50vh; + justify-content: center; + align-items: center; +} + +@media screen and (max-width: 768px) { + .modal .modal-dialog .modal-content .modal-body .wrapper { + height: 100%; + } +} + +.modal .modal-dialog .modal-content .modal-body .wrapper .form-check { + margin-top: 20px; +} + +.modal .modal-dialog .modal-content .modal-body .wrapper .form-check .form-check-input { + margin-top: 0.1rem; +} + +.modal .modal-dialog .modal-content .modal-body .wrapper .member { + color: #000000; +} + +.modal .modal-dialog .modal-content .modal-body .wrapper .member a { + color: #888787; +} + +.modal .modal-dialog .modal-content .modal-body .wrapper .member a:hover { + color: #242452; +} + +.top_nav .first_nav { + padding-top: 10px; + margin-bottom: 10px; +} + +.top_nav .first_nav .top_nav_right { + display: flex; + margin-left: auto; +} + +@media screen and (max-width: 576px) { + .top_nav .first_nav .top_nav_right { + margin-left: 20px; + } +} + +.top_nav .first_nav .logo { + color: #242452 !important; + font-family: "Lobster Two", cursive; + font-size: 40px; + font-weight: 900; + text-decoration: none; +} + +.top_nav .first_nav .logo span { + color: #f24360; + font-family: "Lobster Two", cursive; + font-size: 40px; + font-weight: 900; +} + +.top_nav .first_nav .selectbox .selectpicker { + padding: 8px 16px; + margin-top: 15px; + margin-right: 15px; + text-align: left; +} + +.top_nav .first_nav .nav_icons { + margin-left: 30px; +} + +@media screen and (max-width: 768px) { + .top_nav .first_nav .nav_icons { + margin-left: 0; + } +} + +.top_nav .first_nav .nav_icons a { + text-decoration: none; +} + +.top_nav .first_nav .nav_icons a:hover { + color: #f24360; +} + +.top_nav .first_nav .nav_icons a span { + color: #f24360; + font-size: 25px; + margin: 15px; + margin-right: 0; + text-align: center; +} + +@media screen and (max-width: 768px) { + .top_nav .first_nav .nav_icons a span { + margin-left: 0; + } +} + +.top_nav .first_nav .nav_icons a span:hover { + color: #f24360, 5% !important; +} + +.top_nav .main_nav .navbar-dark .navbar-toggler { + background-color: #f24360; + margin: auto; +} + +.top_nav .main_nav .navbar-dark .navbar-nav { + margin: auto; +} + +@media screen and (max-width: 996px) { + .top_nav .main_nav .navbar-dark .navbar-nav { + padding-top: 20px; + } +} + +.top_nav .main_nav .navbar-dark .navbar-nav .nav-item { + margin: 0px 15px; +} + +@media screen and (max-width: 996px) { + .top_nav .main_nav .navbar-dark .navbar-nav .nav-item { + text-align: center; + margin: 5px 15px; + } +} + +.top_nav .main_nav .navbar-dark .navbar-nav .nav-item:hover .dropdown-menu { + display: block !important; +} + +.top_nav .main_nav .navbar-dark .navbar-nav .nav-link { + color: #000000; +} + +@media screen and (max-width: 996px) { + .top_nav .main_nav .navbar-dark .navbar-nav .nav-link { + text-align: center; + } +} + +.top_nav .main_nav .navbar-dark .navbar-nav .nav-link:hover { + color: #b8b8b8; +} + +.top_nav .main_nav .navbar-dark .navbar-nav .active, +.top_nav .main_nav .navbar-dark .navbar-nav .nav-link:hover { + background-color: #f24360; + color: white; +} + +.navbar-toggler span { + display: block; + background-color: #ffffff; + height: 3px; + width: 25px; + margin-top: 5px; + margin-bottom: 5px; + position: relative; + left: 0; + opacity: 1; + transition: all 0.35s ease-out; + transform-origin: center left; +} + +/* top line needs a little padding */ +.navbar-toggler span:nth-child(1) { + margin-top: 0.3em; +} + +/** + * Animate collapse into X. + */ +/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */ +.navbar-toggler:not(.collapsed) span:nth-child(1) { + transform: translate(15%, -33%) rotate(45deg); +} + +/* center line goes transparent */ +.navbar-toggler:not(.collapsed) span:nth-child(2) { + opacity: 0; +} + +/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button */ +.navbar-toggler:not(.collapsed) span:nth-child(3) { + transform: translate(15%, 33%) rotate(-45deg); +} + +/** + * Animate collapse open into hamburger menu + */ +/* top line moves back to initial position and rotates back to 0 degrees */ +.navbar-toggler span:nth-child(1) { + transform: translate(0%, 0%) rotate(0deg); +} + +/* middle line goes back to regular color and opacity */ +.navbar-toggler span:nth-child(2) { + opacity: 1; +} + +/* bottom line goes back to initial position and rotates back to 0 degrees */ +.navbar-toggler span:nth-child(3) { + transform: translate(0%, 0%) rotate(0deg); +} + +header .breadcrumb { + background-color: #b8b8b8; + justify-content: end; + align-items: last baseline; + padding-right: 50px; + border-radius: 0; +} + +header .breadcrumb .active { + color: #333333; +} + +header .breadcrumb .breadcrumb-item { + display: flex; + align-items: center; +} + +header .breadcrumb .breadcrumb-item a { + color: black; + text-decoration: none; +} + +header .breadcrumb .breadcrumb-item:before { + display: none; + padding-right: 0.5rem; + color: #1b80da; + content: ""; +} + +header .breadcrumb .breadcrumb-item .material-icons { + padding-top: 0px; + padding-left: 8px; + padding-right: 8px; +} + +.banner { + padding-top: 20px; + padding-left: 0px; +} + +@media screen and (max-width: 996px) { + .banner { + background-image: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%), url(./../img/banner/slider-2.jpg); + } +} + +.banner .slider { + margin-top: 40px; + position: relative; +} + +@media screen and (max-width: 577px) { + .banner .slider .slider_1 .banner_left { + padding-left: 25px; + } +} + +.banner .slider .slider_1 .banner_left .banner_heading { + font-size: 50px; + color: #000000; + font-weight: 500; + letter-spacing: 2px; + text-transform: uppercase; + font-family: "Baloo Tamma 2", cursive; +} + +@media screen and (max-width: 996px) { + .banner .slider .slider_1 .banner_left .banner_heading { + color: #fff; + } +} + +@media screen and (max-width: 768px) { + .banner .slider .slider_1 .banner_left .banner_heading { + font-size: 35px; + } +} + +@media screen and (max-width: 577px) { + .banner .slider .slider_1 .banner_left .banner_heading { + font-size: 35px; + } +} + +.banner .slider .slider_1 .banner_left .banner_heading span { + font-size: 100px; + font-family: "Lobster Two", cursive; + color: #f24360; +} + +@media screen and (max-width: 768px) { + .banner .slider .slider_1 .banner_left .banner_heading span { + font-size: 70px; + } +} + +@media screen and (max-width: 577px) { + .banner .slider .slider_1 .banner_left .banner_heading span { + font-size: 60px; + } +} + +.banner .slider .slider_1 .banner_left .banner_sub_heading { + text-align: center; + margin-top: -15px; +} + +@media screen and (max-width: 996px) { + .banner .slider .slider_1 .banner_left .banner_sub_heading { + text-align: start; + padding-left: 20px; + } +} + +@media screen and (max-width: 577px) { + .banner .slider .slider_1 .banner_left .banner_sub_heading { + margin-top: 0; + } +} + +.banner .slider .slider_1 .banner_left .banner_sub_heading span { + font-size: 21px; + padding-right: 16px; + letter-spacing: 2px; + color: #242452 !important; + font-family: "Baloo Tamma 2", cursive; +} + +@media screen and (max-width: 996px) { + .banner .slider .slider_1 .banner_left .banner_sub_heading span { + color: #fff !important; + } +} + +.banner .slider .slider_1 .banner_left h3 { + font-size: 25px; + color: #000000; + font-weight: 500; + letter-spacing: 2px; + text-transform: uppercase; + font-family: "Baloo Tamma 2", cursive; + text-align: end; +} + +@media screen and (max-width: 996px) { + .banner .slider .slider_1 .banner_left h3 { + text-align: start; + padding-left: 20px; + } +} + +@media screen and (max-width: 996px) { + .banner .slider .slider_1 .banner_left h3 { + color: #fff; + } +} + +@media screen and (max-width: 577px) { + .banner .slider .slider_1 .banner_left h3 { + font-size: 20px; + } +} + +.banner .slider .slider_1 .banner_left h3 span { + font-size: 50px; + font-family: "Lobster Two", cursive; + color: #000000; +} + +@media screen and (max-width: 996px) { + .banner .slider .slider_1 .banner_left h3 span { + color: #fff; + } +} + +@media screen and (max-width: 577px) { + .banner .slider .slider_1 .banner_left h3 span { + font-size: 35px; + } +} + +.banner .slider .slider_1 .banner_left .box { + margin-top: 40px; + width: 500px; + height: 258px; + padding: 20px 30px; + clip-path: polygon(13px 22px, 100% 0%, 100% 58%, 3% 109%); + background: #eaca94; +} + +@media screen and (max-width: 577px) { + .banner .slider .slider_1 .banner_left .box { + clip-path: none; + width: 90vw; + height: auto; + } +} + +.banner .slider .slider_1 .banner_left .box .offer { + font-size: 30px; + font-weight: 900; + letter-spacing: 2px; + text-transform: uppercase; + color: #000000; +} + +@media screen and (max-width: 510px) { + .banner .slider .slider_1 .banner_left .box .offer { + font-size: 25px; + } +} + +@media screen and (max-width: 431px) { + .banner .slider .slider_1 .banner_left .box .offer { + font-size: 22px; + } +} + +@media screen and (max-width: 410px) { + .banner .slider .slider_1 .banner_left .box .offer { + font-size: 18px; + } +} + +.banner .slider .slider_1 .banner_left .box .offer span { + color: #f24360; + font-size: 70px; + font-weight: 900; + padding-left: 15px; +} + +@media screen and (max-width: 510px) { + .banner .slider .slider_1 .banner_left .box .offer span { + font-size: 50px; + } +} + +@media screen and (max-width: 431px) { + .banner .slider .slider_1 .banner_left .box .offer span { + font-size: 50px; + padding-left: 5px; + } +} + +@media screen and (max-width: 410px) { + .banner .slider .slider_1 .banner_left .box .offer span { + font-size: 45px; + } +} + +.banner .slider .slider_1 .banner_left .box .offer .off { + background-color: #88B5B6; + font-size: 20px; + font-weight: 900; + padding: 2px 11px; + color: #000000; + transform: rotate(90deg); + display: inline-block; +} + +@media screen and (max-width: 431px) { + .banner .slider .slider_1 .banner_left .box .offer .off { + font-size: 18px; + } +} + +.banner .slider .slider_1 .banner_left .box .special { + font-size: 18px; + text-transform: uppercase; + letter-spacing: 4px; + font-weight: lighter; + color: #000000; + text-align: center; + font-size: 21px; + text-transform: uppercase; + letter-spacing: 13px; + font-weight: lighter; + color: #000000; + text-align: center; + margin-top: 8px; + border: 1px solid; + padding: 4px 0px; + border-right-color: currentcolor; + border-right-style: solid; + border-right-width: 1px; + border-left-color: currentcolor; + border-left-style: solid; + border-left-width: 1px; + border-left: transparent; + border-right: transparent; + margin-bottom: 20px; +} + +@media screen and (max-width: 500px) { + .banner .slider .slider_1 .banner_left .box .special { + font-size: 16px; + letter-spacing: 10px; + margin-top: 33px; + } +} + +@media screen and (max-width: 996px) { + .banner .slider .slider_1 .banner_right { + display: none; + } +} + +.banner .slider .slider_1 .banner_right img { + width: 100%; +} + +.banner .slider .owl-carousel button.owl-dot span { + height: 10px; + width: 20px; + color: #000000; + background-color: #88B5B6; + display: block; + font-weight: 700; + margin: 7px; +} + +.banner .slider .owl-carousel button.owl-dot.active span { + background-color: transparent; + border: 1px solid; + border-color: #88B5B6; + height: 10px; + width: 20px; +} + +.banner .slider .owl-carousel .owl-dots { + position: absolute; + bottom: 150px; + left: -60px; + transform: rotate(89deg); + background-color: #09050500; +} + +@media screen and (max-width: 1050px) { + .banner .slider .owl-carousel .owl-dots { + position: unset; + transform: rotate(0); + } +} + +@media screen and (max-width: 768px) { + .banner .slider .owl-carousel .owl-dots { + margin-left: 31px; + margin-top: 10px; + } +} + +.banner_about { + background-size: cover; + width: 100%; + background-image: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%), url(./../img/banner/bg1.jpg); + background-repeat: no-repeat; + background-position: center; + margin-top: 20px; + padding: 100px 0; + height: auto; + display: flex; + justify-content: center; +} + +.banner_about .banner_heading { + font-size: 50px; + color: #fff; + font-weight: 500; + letter-spacing: 2px; + text-transform: uppercase; + font-family: "Baloo Tamma 2", cursive; + text-decoration: none; +} + +@media screen and (max-width: 577px) { + .banner_about .banner_heading { + font-size: 35px; + } +} + +.banner_about .banner_heading span { + font-size: 100px; + font-family: "Lobster Two", cursive; + color: #f24360; +} + +@media screen and (max-width: 577px) { + .banner_about .banner_heading span { + font-size: 70px; + } +} + +.footer { + background: #F5FCF0; +} + +.footer .footer_top { + padding: 20px; +} + +@media screen and (max-width: 996px) { + .footer .footer_top .cc { + margin-top: 20px; + } +} + +@media screen and (max-width: 577px) { + .footer .footer_top .warpper { + margin-bottom: 20px; + } +} + +.footer .footer_top .warpper .heading { + color: #000000; + letter-spacing: 2px; + border: 1px solid; + border-top-color: currentcolor; + border-right-color: currentcolor; + border-bottom-color: currentcolor; + border-left-color: currentcolor; + border-color: transparent; + border-bottom-color: transparent; + border-bottom-color: #ccc; + padding-bottom: 15px; + font-size: 23px; + text-transform: uppercase; +} + +@media screen and (max-width: 1450px) { + .footer .footer_top .warpper .heading { + font-size: 19px; + letter-spacing: 1px; + } +} + +@media screen and (max-width: 768px) { + .footer .footer_top .warpper .heading { + margin-bottom: 20px; + } +} + +.footer .footer_top .warpper .list-group .list-group-item { + padding-left: 0; + border: none; + background-color: transparent; +} + +.footer .footer_top .warpper .list-group .list-group-item:hover { + animation-name: pulse; + animation-duration: 1s; + animation-fill-mode: both; +} + +@keyframes pulse { + 0% { + transform: scale3d(1, 1, 1); + } + 50% { + transform: scale3d(1.05, 1.05, 1.05); + } + 100% { + transform: scale3d(1, 1, 1); + } +} + +.footer .footer_top .warpper .list-group .list-group-item a { + text-decoration: none; + color: #888787; + font-size: 14px; +} + +.footer .footer_top .warpper .list-group .list-group-item a:hover { + color: #000000; +} + +.footer .footer_top .warpper .latest { + display: flex; + justify-content: space-between; + text-decoration: none; + margin-bottom: 12px; +} + +.footer .footer_top .warpper .latest:last-child { + margin-bottom: 0; +} + +.footer .footer_top .warpper .latest .img_wrapper { + max-width: 70px; +} + +.footer .footer_top .warpper .latest .img_wrapper img { + width: 100%; +} + +.footer .footer_top .warpper .latest .blog_name { + color: #888787; + text-decoration: none; + padding-left: 20px; +} + +.footer .footer_top .warpper .pinterest .img_wrapper img { + width: 100%; +} + +.footer .footer_top .warpper .wrapper_t .tt { + display: flex; + padding-left: 0; + flex-flow: wrap; +} + +.footer .footer_top .warpper .wrapper_t .tt .inner { + padding: 5px; + margin-bottom: 15px; +} + +.footer .footer_top .warpper .wrapper_t .tt .inner a { + color: #fff; + text-decoration: none; + background-color: #242452; + padding: 5px 20px; + text-transform: uppercase; +} + +@media screen and (max-width: 1400px) { + .footer .footer_top .warpper .wrapper_t .tt .inner a { + font-size: 13px !important; + padding: 5PX 11PX; + } +} + +.footer .footer_middle { + background-color: #88B5B6; + padding: 0px 50px; +} + +@media screen and (max-width: 577px) { + .footer .footer_middle { + padding: 0px 40px; + } +} + +.footer .footer_middle .footer_links { + margin: 50px 0; + padding: 40px 0; + justify-content: center; + border: 1px solid; + border-color: transparent; + border-top-color: #b8b8b8 !important; + border-bottom-color: #b8b8b8 !important; + display: flex; +} + +@media screen and (max-width: 768px) { + .footer .footer_middle .footer_links { + margin: 0; + margin-bottom: 40px; + } +} + +@media screen and (max-width: 768px) { + .footer .footer_middle .footer_links { + display: grid; + grid-row-gap: 30px; + } +} + +@media screen and (max-width: 577px) { + .footer .footer_middle .footer_links { + display: grid; + justify-content: start !important; + } +} + +.footer .footer_middle .footer_links li { + padding: 0px 50px; +} + +@media screen and (max-width: 577px) { + .footer .footer_middle .footer_links li { + padding: 0; + } +} + +.footer .footer_middle .footer_links li a { + text-decoration: none; + color: #000000; + text-transform: uppercase; + font-size: 18px; +} + +.footer .footer_middle .footer_links li a:hover { + color: #f24360; +} + +.footer .footer_middle .social_links h3 { + color: #000000; + letter-spacing: 2px; + padding-bottom: 15px; + font-size: 30px; + text-transform: uppercase; + text-align: center; +} + +@media screen and (max-width: 577px) { + .footer .footer_middle .social_links h3 { + text-align: start; + } +} + +.footer .footer_middle .social_links .footer_icon { + padding-top: 30px; + text-align: center; + display: flex; + justify-content: center; +} + +@media screen and (max-width: 768px) { + .footer .footer_middle .social_links .footer_icon { + justify-content: center; + padding-top: 0px; + } +} + +@media screen and (max-width: 577px) { + .footer .footer_middle .social_links .footer_icon { + justify-content: start !important; + } +} + +.footer .footer_middle .social_links .footer_icon a { + display: block; + color: #000000; + margin-right: 15px; +} + +.footer .footer_middle .social_links .footer_icon a span { + height: 37px; + width: 37px; + color: #fff; + font-size: 19px; + padding-top: 9px; + border-radius: 50%; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(1) span { + color: white !important; + background: #37b4e6 !important; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(1) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(2) span { + background: #ff3434 !important; + color: white !important; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(2) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(3) span { + background: #803e12 !important; + color: white !important; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(3) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(4) span { + background: #055597 !important; + color: white !important; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(4) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(5) span { + background: rgba(202, 40, 129, 0.801) !important; + color: white !important; +} + +.footer .footer_middle .social_links .footer_icon a:nth-child(5) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .footer_bottom { + background: #94cad7; + padding: 0px 50px; +} + +.footer .footer_bottom .bottom_content { + margin-top: 50px; + justify-content: space-between; + display: flex; +} + +@media screen and (max-width: 768px) { + .footer .footer_bottom .bottom_content { + display: grid; + justify-content: center; + } +} + +@media screen and (max-width: 577px) { + .footer .footer_bottom .bottom_content { + margin-left: -70px; + } +} + +@media screen and (max-width: 510px) { + .footer .footer_bottom .bottom_content { + margin-left: 0px; + } +} + +.footer .footer_bottom .bottom_content .left .heading { + color: #000000; + letter-spacing: 2px; + padding-bottom: 0px; + margin-bottom: 0px; + font-size: 22px; + text-transform: uppercase; + text-align: start; +} + +@media screen and (max-width: 996px) { + .footer .footer_bottom .bottom_content .left .heading { + text-align: center; + } +} + +@media screen and (max-width: 577px) { + .footer .footer_bottom .bottom_content .left .heading { + text-align: start; + } +} + +@media screen and (max-width: 996px) { + .footer .footer_bottom .bottom_content .right { + text-align: center; + } +} + +@media screen and (max-width: 577px) { + .footer .footer_bottom .bottom_content .right { + text-align: start; + } +} + +.footer .footer_bottom .bottom_content .right .banner_heading { + font-size: 40px; + color: #000000; + font-weight: 500; + letter-spacing: 2px; + text-transform: uppercase; + font-family: "Baloo Tamma 2", cursive; + text-decoration: none; +} + +@media screen and (max-width: 996px) { + .footer .footer_bottom .bottom_content .right .banner_heading { + font-size: 30px; + } +} + +.footer .footer_bottom .bottom_content .right .banner_heading span { + font-size: 70px; + font-family: "Lobster Two", cursive; + color: #f24360; +} + +@media screen and (max-width: 996px) { + .footer .footer_bottom .bottom_content .right .banner_heading span { + font-size: 55px; + } +} + +.footer .footer_bottom .bottom_content .right .copy_right { + text-align: center; + font-size: 18px; + letter-spacing: 1px; +} + +.footer .footer_bottom .bottom_content .right .copy_right a { + color: #f24360; +} + +.payment { + display: flex; + background: transparent; +} + +@media screen and (max-width: 996px) { + .payment { + justify-content: center; + } +} + +@media screen and (max-width: 577px) { + .payment { + justify-content: start !important; + } +} + +.payment .cc { + width: 50px; + margin: 15px; +} + +@media screen and (max-width: 996px) { + .payment .cc { + width: 40px; + margin-right: 5px; + } +} + +.payment .cc img { + width: 100%; +} + +.sidebar { + background-color: #F5FCF0 !important; + padding: 15px; +} + +@media screen and (max-width: 768px) { + .sidebar { + margin-bottom: 40px; + } +} + +.sidebar .wrapper .filter_category { + padding-bottom: 20px; +} + +.sidebar .wrapper .filter_category .filter_heading { + color: #000000; + background-color: #fff !important; + padding: 10px; +} + +.sidebar .wrapper .filter_category .filter { + padding: 20px; + padding-bottom: 0; +} + +.sidebar .wrapper .filter_category .filter .form-check { + padding-bottom: 5px; +} + +.sidebar .wrapper .filter_category .filter .form-check .form-check-input { + position: unset; + margin-top: 0.3rem; + margin-left: -1.25rem; + margin-right: 10px; +} + +.sidebar .wrapper .filter_category .filter .form-check .form-check-input input[type="checkbox"]:checked { + opacity: 1; + color: red; + font-size: 5px; +} + +.sidebar .wrapper .filter_category .filter .form-check .form-check-label { + margin-bottom: 5px; + color: black; + font-size: 17px; +} + +.sidebar .wrapper .filter_category .Search_brand .navbar-light { + padding: 10px 0px; +} + +@media screen and (max-width: 768px) { + .sidebar .wrapper .filter_category .Search_brand .navbar-light .form-inline { + width: 100%; + } +} + +.sidebar .wrapper .filter_category .Search_brand .navbar-light .form-inline .form-control { + width: 100%; + margin-right: 0px; + padding: 0.375rem 0.75rem; + font-size: 1.1rem; + line-height: 2.2; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da00; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.sidebar .wrapper .filter_category .Search_brand .navbar-light .form-inline .form-control:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0); + border-color: red; +} + +.sidebar .wrapper .filter_category .Search_brand .navbar-light .form-inline .btn-outline-success { + width: 100%; + border-radius: 0px; + background: #eaca94; + color: #fff; + line-height: 2; + font-weight: 500; + font-size: 16px; + letter-spacing: 1px; +} + +.sidebar .wrapper .filter_category .range { + /* Budget */ +} + +.sidebar .wrapper .filter_category .range *, .sidebar .wrapper .filter_category .range :after, .sidebar .wrapper .filter_category .range :before { + box-sizing: border-box; +} + +.sidebar .wrapper .filter_category .range .pull-left { + float: left; +} + +.sidebar .wrapper .filter_category .range .pull-right { + float: right; +} + +.sidebar .wrapper .filter_category .range .clearfix:after, .sidebar .wrapper .filter_category .range .clearfix:before { + content: ''; + display: table; +} + +.sidebar .wrapper .filter_category .range .clearfix:after { + clear: both; + display: block; +} + +.sidebar .wrapper .filter_category .range .rangeslider, +.sidebar .wrapper .filter_category .range .rangeslider__fill { + display: block; + border-radius: 10px; +} + +.sidebar .wrapper .filter_category .range .rangeslider { + position: relative; +} + +.sidebar .wrapper .filter_category .range .rangeslider:after { + top: 50%; + left: 0; + right: 0; + content: ''; + width: 100%; + height: 5px; + margin-top: -2.5px; + border-radius: 5px; + position: absolute; + background: #212131; +} + +.sidebar .wrapper .filter_category .range .rangeslider--horizontal { + width: 100%; + height: 28px; +} + +.sidebar .wrapper .filter_category .range .rangeslider--vertical { + width: 5px; + min-height: 150px; + max-height: 100%; +} + +.sidebar .wrapper .filter_category .range .rangeslider--disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40); + opacity: 0.4; +} + +.sidebar .wrapper .filter_category .range .rangeslider__fill { + position: absolute; + background: #f24360; +} + +.sidebar .wrapper .filter_category .range .rangeslider--horizontal .rangeslider__fill { + top: 0; + height: 100%; +} + +.sidebar .wrapper .filter_category .range .rangeslider--vertical .rangeslider__fill { + bottom: 0; + width: 100%; +} + +.sidebar .wrapper .filter_category .range .rangeslider__handle { + top: 50%; + width: 28px; + height: 28px; + cursor: pointer; + margin-top: -14px; + background: white; + position: absolute; + background: #f24360; + border-radius: 50%; + display: inline-block; +} + +.sidebar .wrapper .filter_category .range .rangeslider__handle:active { + background: #ff5a7b; +} + +.sidebar .wrapper .filter_category .range .rangeslider__fill, +.sidebar .wrapper .filter_category .range .rangeslider__handle { + z-index: 1; +} + +.sidebar .wrapper .filter_category .range .rangeslider--horizontal .rangeslider__fill { + top: 50%; + height: 5px; + margin-top: -2.5px; +} + +.sidebar .wrapper .filter_category .range .budget-wrap { + padding: 40px; + background: #94cad7; +} + +.sidebar .wrapper .filter_category .range .budget-wrap .header .title { + color: #fff; + font-size: 18px; + margin-bottom: 30px; +} + +.sidebar .wrapper .filter_category .range .budget-wrap .header .title .pull-right { + color: #f24360; + font-size: 24px; + font-weight: 400; +} + +.sidebar .wrapper .filter_category .range .budget-wrap .range_button { + margin-top: 30px; +} + +.sidebar .wrapper .filter_category .range .budget-wrap .range_button .btn { + color: inherit; + padding: 12px 24px; + border-radius: 50px; + display: inline-block; + text-decoration: none; +} + +.sidebar .wrapper .filter_category .range .budget-wrap .range_button .btn.btn-def { + color: #525263; +} + +.sidebar .wrapper .filter_category .range .budget-wrap .range_button .btn.btn-pri { + color: #eee; + background: #f24360; +} + +.sidebar .wrapper .filter_category .range .budget-wrap .range_button .btn.btn-pri:hover { + background-color: #ef1338 !important; + border: none; + color: #fff; +} + +.sidebar .wrapper .filter_category .card-rating { + padding-left: 0px; + padding-top: 7px; + align-items: baseline; +} + +.sidebar .wrapper .filter_category .card-rating .card-link { + color: #94cad7; +} + +.sidebar .wrapper .filter_category .card-rating .card-link span { + font-size: 17px; +} + +.sidebar .wrapper .filter_category .card-rating p { + margin: auto; + color: #000000; + font-size: 14px; + font-weight: 500; +} + +.service { + display: grid; + grid-template-columns: 1fr 1fr 1fr 1fr; +} + +@media screen and (max-width: 996px) { + .service { + grid-template-columns: 2fr 2fr; + } +} + +@media screen and (max-width: 577px) { + .service { + grid-template-columns: 1fr; + } +} + +.service .service_type1 { + text-align: center; + background-color: #88B5B6; + color: #000000; + padding: 40px 20px; +} + +.service .service_type1 span { + font-size: 70px; + margin-top: 40px; + margin-bottom: 20px; + margin-bottom: 30px; + color: #242452 !important; +} + +@media screen and (max-width: 577px) { + .service .service_type1 span { + font-size: 50px; + } +} + +.service .service_type1 h4 { + font-size: 25px; + font-weight: 600; + letter-spacing: 2px; +} + +@media screen and (max-width: 577px) { + .service .service_type1 h4 { + font-size: 22x; + } +} + +.service .service_type2 { + text-align: center; + background-color: #94cad7; + color: #000000; + padding: 40px 20px; +} + +.service .service_type2 span { + font-size: 70px; + margin-top: 40px; + margin-bottom: 20px; + margin-bottom: 30px; + color: #242452 !important; +} + +@media screen and (max-width: 577px) { + .service .service_type2 span { + font-size: 50px; + } +} + +.service .service_type2 h4 { + font-size: 25px; + font-weight: 600; + letter-spacing: 2px; +} + +@media screen and (max-width: 577px) { + .service .service_type2 h4 { + font-size: 22px; + } +} + +.service .service_type2 h4:hover { + animation: slide-top 0.5s linear reverse forwards; +} + +.categories .content { + overflow: hidden; + position: relative; +} + +.categories .content aside { + display: block !important; + z-index: 999; + position: absolute; + padding-top: 150px; + color: #fff; + font-size: 25px; + font-weight: 400; + text-align: center; + text-transform: uppercase; + letter-spacing: 2px; + height: 40%; + width: 100%; + background-color: #00000079; + top: -370px; + transition: 0.6s all; +} + +.categories .content .top { + display: flex; +} + +.categories .content:hover .top { + top: 0px; +} + +.categories .content .top { + display: none; +} + +.categories .content .wrapper { + position: relative; +} + +.categories .content .wrapper:hover .button_show { + position: absolute; + display: block; + bottom: 35%; + z-index: 3; + left: 39%; +} + +@media screen and (max-width: 996px) { + .categories .content .wrapper:hover .button_show { + position: absolute; + display: block; + bottom: 23%; + z-index: 3; + left: 31%; + } +} + +@media screen and (max-width: 768px) { + .categories .content .wrapper:hover .button_show { + position: absolute; + display: block; + bottom: 23%; + z-index: 3; + left: 40%; + } +} + +@media screen and (max-width: 577px) { + .categories .content .wrapper:hover .button_show { + position: absolute; + display: block; + bottom: 23%; + z-index: 3; + left: 35%; + } +} + +@media screen and (max-width: 768px) { + .categories .content .wrapper:hover .button_show { + position: absolute; + display: block; + bottom: 23%; + z-index: 3; + left: 32%; + } +} + +.categories .content .wrapper:hover:after { + position: absolute; + content: " "; + height: 100%; + width: 100%; + top: 0; + left: 0; + background: #00000054 !important; + opacity: 1; + transition: 0.5s ease; +} + +.categories .content .wrapper .button_show { + display: none; +} + +.categories .content .wrapper img { + width: 100%; +} + +.categories .see { + transform: scale(1); + transition: 0.5s ease-in-out; +} + +.categories .content:hover .see { + transform: scale(1.3); + border-radius: 6px 6px 0px 0px; +} + +@media screen and (max-width: 768px) { + .smart_cloath .wrapper { + padding-bottom: 0 !important; + } +} + +.smart_cloath .wrapper .tab_part .nav-tabs { + display: flex; + justify-content: center; + border-bottom: transparent; +} + +.smart_cloath .wrapper .tab_part .nav-tabs .nav-link { + font-size: 22px; + font-weight: 500; + letter-spacing: 1px; + padding: 10px 30px; + text-transform: uppercase; + border: 1px solid; + border-color: transparent; + border-bottom-color: #f24360 !important; + color: #888787; + background: transparent; +} + +.smart_cloath .wrapper .tab_part .nav-tabs .active, +.smart_cloath .wrapper .tab_part .nav-tabs .nav-link:hover { + border: 1px solid; + border-color: transparent; + border-bottom-color: #f24360 !important; + color: #eaca94; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper { + margin: 0px 39px; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .img_wrapper { + max-width: 300px; + position: relative; + margin: auto; +} + +@media screen and (max-width: 600px) { + .smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .img_wrapper { + max-width: 100%; + } +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .img_wrapper img { + width: 100%; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .img_wrapper .inner { + width: 100%; + height: 100%; + background-color: #00000300; + position: absolute; + top: 0; + display: flex; + justify-content: center; + align-items: center; + z-index: 3; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .img_wrapper .inner:hover { + background-color: #0000036c; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .sp_name { + text-align: center; + margin-top: 20px; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .sp_name a { + text-decoration: none; + font-weight: normal; + font-size: 20px; + color: #000000; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .sp_name a:hover { + color: #242452; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .price { + display: flex; + justify-content: space-around; + font-weight: 600; + padding: 15px 0px; + border: 1px solid transparent; + border-bottom-color: #e4b0b0; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .price .new { + color: #000000; + font-size: 22px; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .price .old { + color: #888787; + font-size: 22px; + font-weight: lighter; + text-decoration: line-through; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper span { + color: #94cad7; + font-size: 30px; + padding: 20px 10px; + display: block; + text-align: end; + margin-right: 43px; +} + +@media screen and (max-width: 996px) { + .smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper span { + margin-right: 30px; + } +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .quick_view { + color: white; + font-size: 16px; + background-color: #242452; + padding: 8px 23px; + display: none; + text-decoration: none; + font-weight: 500; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .quick_view:hover { + background-color: #94cad7; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper .outof_stock { + color: white; + font-size: 15px; + background-color: #b8b8b8; + padding: 7px 18px; + display: block; + text-decoration: none; + font-weight: normal; + letter-spacing: 1px; + cursor: not-allowed; +} + +.smart_cloath .wrapper .tab_part .tab-content .sliding_product .wrapper:hover .quick_view { + display: block; +} + +.smart_cloath .owl-nav { + display: none; +} + +.zoomIn { + animation-name: zoomIn; + animation-duration: 1s; + animation-fill-mode: both; +} + +@keyframes zoomIn { + 0% { + opacity: 0; + transform: scale3d(0.3, 0.3, 0.3); + } + 50% { + opacity: 1; + } +} + +.insta_shopping .wrapper .insta_product .wrapper { + position: relative; + margin: 5px 5px; +} + +.insta_shopping .wrapper .insta_product .wrapper:hover .hide { + display: block !important; +} + +.insta_shopping .wrapper .insta_product .wrapper:hover:after { + position: absolute; + content: " "; + height: 100%; + width: 100%; + background-color: #00000073; + top: 0; + left: 0; + animation-name: fadeIn; + animation-duration: 1s; + animation-fill-mode: both; +} + +@keyframes fadeIn { + 0% { + opacity: 0; + } + 50% { + opacity: 0.5; + } + 100% { + opacity: 1; + } +} + +.insta_shopping .wrapper .insta_product .wrapper img { + width: 100%; +} + +.insta_shopping .wrapper .insta_product .wrapper .insta_icons { + position: absolute; + width: 100%; + text-align: center; + top: 50%; + z-index: 1; + display: none; +} + +.insta_shopping .wrapper .insta_product .wrapper .insta_icons a { + font-size: 30px; + padding: 10px; + color: #fff; + text-decoration: none; +} + +.insta_shopping .wrapper .insta_product .wrapper .insta_icons a:hover { + color: #eaca94; +} + +.insta_shopping .wrapper .insta_product .wrapper .hide { + display: none; +} + +.shopie .category_heading { + padding: 50px 0px; +} + +.shopie .category_heading h4 { + color: #f24360; + font-size: 28px; + border: 1px solid; + border-color: transparent; + border-bottom-color: #ccc; +} + +.shopie .shop_content .sliding_product .wrapper { + position: relative; + padding: 10px; + border: 1px solid; + border-color: #ccc; +} + +@media screen and (max-width: 768px) { + .shopie .shop_content .sliding_product .wrapper { + margin-bottom: 30px; + } +} + +.shopie .shop_content .sliding_product .wrapper .img_wrapper { + max-width: 500px; + position: relative; + margin: auto; +} + +.shopie .shop_content .sliding_product .wrapper .img_wrapper img { + width: 100%; +} + +.shopie .shop_content .sliding_product .wrapper .img_wrapper .inner { + width: 100%; + height: 100%; + background-color: #00000300; + position: absolute; + top: 0; + display: flex; + justify-content: center; + align-items: center; + z-index: 3; +} + +.shopie .shop_content .sliding_product .wrapper .img_wrapper .inner:hover { + background-color: #0000036c; +} + +.shopie .shop_content .sliding_product .wrapper .sp_name { + text-align: center; + font-weight: normal; + font-size: 20px; + color: #000000; + margin-top: 20px; +} + +.shopie .shop_content .sliding_product .wrapper .price { + display: flex; + justify-content: space-around; + font-weight: 600; + padding: 15px 0px; + border: 1px solid transparent; + border-bottom-color: #e4b0b0; +} + +.shopie .shop_content .sliding_product .wrapper .price .new { + color: #000000; + font-size: 22px; +} + +.shopie .shop_content .sliding_product .wrapper .price .old { + color: #888787; + font-size: 22px; + font-weight: lighter; + text-decoration: line-through; +} + +.shopie .shop_content .sliding_product .wrapper a { + display: block; + background: aliceblue; + text-decoration: none; + text-align: end; +} + +.shopie .shop_content .sliding_product .wrapper a span { + color: #94cad7; + font-size: 16px; + padding: 10px 18px; + text-align: end; + background-color: #d7edf1; + margin: 10px; +} + +.shopie .shop_content .sliding_product .wrapper .quick_view { + color: white; + font-size: 16px; + background-color: #242452; + padding: 8px 23px; + display: none; + text-decoration: none; + font-weight: 500; +} + +.shopie .shop_content .sliding_product .wrapper .quick_view:hover { + background-color: #94cad7; +} + +.shopie .shop_content .sliding_product .wrapper .outof_stock { + color: white; + font-size: 15px; + background-color: #b8b8b8; + padding: 7px 18px; + display: block; + text-decoration: none; + font-weight: normal; + letter-spacing: 1px; + cursor: not-allowed; +} + +.shopie .shop_content .sliding_product .wrapper:hover .quick_view { + display: block; +} + +.shopie .shop_content .view_more { + display: flex; + justify-content: center; + align-items: center; +} + +.shopie .shop_content .view_more .wrapper { + margin-bottom: 100px; +} + +@media screen and (max-width: 768px) { + .shopie .shop_content .view_more .wrapper { + margin-top: 50px; + margin-bottom: 0; + } +} + +@media screen and (max-width: 577px) { + .shopie .shop_content .view_more .wrapper { + margin-top: 30px; + margin-bottom: 0; + } +} + +.product { + padding: 40px; +} + +@media screen and (max-width: 768px) { + .product { + padding: 40px 0px; + } +} + +.product .shop .category_heading { + padding: 50px 0px; +} + +.product .shop .category_heading h4 { + color: #f24360; + font-size: 28px; + border: 1px solid; + border-color: transparent; + border-bottom-color: #ccc; +} + +@media screen and (max-width: 768px) { + .product .shop .shop_content { + padding: 0px 15px; + } +} + +.product .shop .shop_content .sliding_product .wrapper { + padding: 10px; + border: 1px solid; + border-color: #ccc; +} + +.product .shop .shop_content .sliding_product .wrapper .img_wrapper { + max-width: 500px; + position: relative; + margin: auto; +} + +.product .shop .shop_content .sliding_product .wrapper .img_wrapper img { + width: 100%; +} + +.product .shop .shop_content .sliding_product .wrapper .img_wrapper .inner { + width: 100%; + height: 100%; + background-color: #00000300; + position: absolute; + top: 0; + display: flex; + justify-content: center; + align-items: center; + z-index: 3; +} + +.product .shop .shop_content .sliding_product .wrapper .img_wrapper .inner:hover { + background-color: #0000036c; +} + +.product .shop .shop_content .sliding_product .wrapper .sp_name { + margin-top: 20px; +} + +.product .shop .shop_content .sliding_product .wrapper .sp_name a { + text-align: center; + text-decoration: none; + font-weight: normal; + font-size: 20px; + color: #000000; + background-color: transparent; +} + +.product .shop .shop_content .sliding_product .wrapper .sp_name a:hover { + color: #242452; +} + +.product .shop .shop_content .sliding_product .wrapper .price { + display: flex; + justify-content: space-around; + font-weight: 600; + padding: 10px 0px; + border: 1px solid transparent; + border-bottom-color: #e4b0b0; +} + +.product .shop .shop_content .sliding_product .wrapper .price .new { + color: #000000; + font-size: 22px; +} + +.product .shop .shop_content .sliding_product .wrapper .price .old { + color: #888787; + font-size: 22px; + font-weight: lighter; + text-decoration: line-through; +} + +.product .shop .shop_content .sliding_product .wrapper a { + display: block; + background: aliceblue; + text-decoration: none; + text-align: end; +} + +.product .shop .shop_content .sliding_product .wrapper a span { + color: #94cad7; + font-size: 16px; + padding: 10px 18px; + text-align: end; + background-color: #d7edf1; + margin: 10px; +} + +.product .shop .shop_content .sliding_product .wrapper .quick_view { + color: white; + font-size: 16px; + background-color: #242452; + padding: 8px 23px; + display: none; + text-decoration: none; + font-weight: 500; +} + +.product .shop .shop_content .sliding_product .wrapper .quick_view:hover { + background-color: #94cad7; +} + +.product .shop .shop_content .sliding_product .wrapper .outof_stock { + color: white; + font-size: 15px; + background-color: #b8b8b8; + padding: 7px 18px; + display: block; + text-decoration: none; + font-weight: normal; + letter-spacing: 1px; + cursor: not-allowed; +} + +.product .shop .shop_content .sliding_product .wrapper:hover .quick_view { + display: block; +} + +.product .shop .shop_content .view_more { + display: flex; + justify-content: center; + align-items: center; +} + +.product .shop .shop_content .view_more .wrapper { + margin-bottom: 100px; +} + +.preview { + /* Shrink wrap strategy 1 */ + /* Shrink wrap strategy 2 */ +} + +@media screen and (max-width: 768px) { + .preview { + padding-bottom: 0 !important; + } +} + +@media screen and (max-width: 577px) { + .preview { + padding: 0px 20px !important; + } +} + +.preview .preview_product #big { + padding: 10px; + border: 1px solid; + margin-bottom: 10px; + border-color: #ccc; +} + +.preview .preview_product #thumbs .item { + background: #644f4f00; + max-width: 170px; + display: block; + line-height: 70px; + color: #fff; + border-radius: 3px; + text-align: center; + cursor: pointer; + padding: 10px; + border: 1px solid; + margin-bottom: 10px; + border-color: #ccc; +} + +.preview .preview_product #thumbs .item h1 { + font-size: 18px; +} + +.preview .preview_product .owl-theme .owl-nav [class*="owl-"] { + transition: all 0.3s ease; +} + +.preview .preview_product .owl-theme .owl-nav [class*="owl-"].disabled:hover { + background-color: #d6d6d6; +} + +.preview .preview_product #big.owl-theme { + position: relative; +} + +.preview .preview_product #big.owl-theme .owl-next, +.preview .preview_product #big.owl-theme .owl-prev { + background: transparent; + width: 22px; + line-height: 40px; + height: 40px; + margin-top: -20px; + position: absolute; + text-align: center; + top: 50%; +} + +.preview .preview_product #big.owl-theme .owl-prev { + left: 10px; +} + +.preview .preview_product #big.owl-theme .owl-next { + right: 10px; +} + +.preview .easyzoom { + float: left; +} + +.preview .easyzoom img { + display: block; +} + +.preview .easyzoom { + display: inline-block; +} + +.preview .easyzoom img { + vertical-align: bottom; +} + +@media screen and (max-width: 768px) { + .preview .preview_details { + margin-top: 50px !important; + } +} + +.preview .preview_details .wrapper h4 { + color: #000000; + letter-spacing: 1px; + border: 1px solid; + border-top-color: currentcolor; + border-right-color: currentcolor; + border-bottom-color: currentcolor; + border-left-color: currentcolor; + border-color: transparent; + border-bottom-color: transparent; + border-bottom-color: #ccc; + padding-bottom: 15px; + font-size: 20px; + text-transform: uppercase; +} + +.preview .preview_details .wrapper .preview_rating .card-rating { + padding-left: 0px; + padding-top: 10px; + align-items: baseline; +} + +.preview .preview_details .wrapper .preview_rating .card-rating .card-link { + color: #f24360; +} + +.preview .preview_details .wrapper .preview_rating .card-rating .card-link span { + font-size: 15px; + margin-right: 5px; +} + +.preview .preview_details .wrapper .preview_price { + font-size: 33px; + font-weight: normal; + margin-top: 15px; + color: #000000; +} + +.preview .preview_details .wrapper .desc h5 { + font-size: 18px; + font-weight: 500; + letter-spacing: 1px; + margin-top: 15px; + color: #000000; +} + +.preview .preview_details .wrapper .desc p { + padding-top: 5px; + letter-spacing: 0.1em; + line-height: 1.8rem; +} + +.preview .preview_details .wrapper .others { + margin-top: 20px; + display: flex; + justify-content: space-between; + padding-right: 40px; +} + +.preview .preview_details .wrapper .others .highlights h5 { + font-size: 18px; + font-weight: 500; + letter-spacing: 1px; + margin-top: 20px; + color: #000000; +} + +.preview .preview_details .wrapper .others .highlights ul { + padding-left: 0; + margin-top: 10px; + padding-top: 15px; + color: #000000; +} + +.preview .preview_details .wrapper .others .highlights ul li { + margin-bottom: 15px; +} + +.preview .preview_details .wrapper .others .highlights ul li span { + color: #888787; +} + +.preview .preview_details .wrapper .others .services h5 { + font-size: 18px; + font-weight: 500; + letter-spacing: 1px; + margin-top: 20px; + color: #000000; +} + +.preview .preview_details .wrapper .others .services ul { + padding-left: 0; + padding-top: 15px; +} + +.preview .preview_details .wrapper .others .services ul li { + margin-bottom: 15px; + font-size: 18px; + color: #000000; +} + +.preview .preview_details .wrapper .Search_brand p { + letter-spacing: 1px; + padding-top: 20px; +} + +.preview .preview_details .wrapper .Search_brand .navbar { + width: 100%; +} + +@media screen and (max-width: 577px) { + .preview .preview_details .wrapper .Search_brand .navbar { + width: 70%; + } +} + +.preview .preview_details .wrapper .Search_brand .navbar-light { + padding: 10px 0px; +} + +.preview .preview_details .wrapper .Search_brand .navbar-light .cc { + display: -webkit-box; +} + +.preview .preview_details .wrapper .Search_brand .navbar-light .cc .form-control { + width: 100%; + margin-right: 0px; + padding: 0.375rem 0.75rem; + font-size: 1.1rem; + line-height: 2; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da00; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media screen and (max-width: 340px) { + .preview .preview_details .wrapper .Search_brand .navbar-light .cc .form-control { + width: 70%; + } +} + +.preview .preview_details .wrapper .Search_brand .navbar-light .cc .form-control:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0); + border-color: red; +} + +.preview .preview_details .wrapper .Search_brand .navbar-light .cc .btn-outline-success { + width: 100%; + border-radius: 0px; + background: #eaca94; + color: #fff; + line-height: 2; + font-weight: 500; + font-size: 16px; + letter-spacing: 1px; +} + +.contact { + margin-bottom: 100px; +} + +@media screen and (max-width: 768px) { + .contact { + margin-bottom: 50px; + } +} + +.contact .wrapper { + padding-top: 50px; +} + +@media screen and (max-width: 768px) { + .contact .wrapper { + margin: 0px 20px; + } +} + +.contact .wrapper .post_replay { + padding-right: 50px; +} + +@media screen and (max-width: 768px) { + .contact .wrapper .post_replay { + padding-right: 0; + } +} + +.contact .wrapper .post_replay form .form-group { + margin-bottom: 20px; +} + +.contact .wrapper .post_replay form .form-group .form-control { + border-radius: 0; + padding: 0.575rem 0.75rem; + box-shadow: none !important; +} + +.contact .wrapper .post_replay form .form-group .form-control:focus { + color: #5f5f5f; + background-color: #fff; + border-color: #eaca94; + outline: 0; +} + +.contact .wrapper .post_replay form textarea { + padding: 30px 20px; +} + +.contact .wrapper .post_replay form .txt { + border: 1px solid; + border-color: transparent; + border-top-color: #ccc !important; + border-right-color: #ccc !important; + border-bottom-color: #ccc !important; + border-left-color: #ccc !important; +} + +.contact .wrapper .post_replay form .txt:focus { + color: #5f5f5f; + background-color: #fff; + border-color: #fa3737 !important; + outline: 0; +} + +@media screen and (max-width: 768px) { + .contact .wrapper .address_wrapper { + margin-top: 50px; + } +} + +.contact .wrapper .address_wrapper .address, .contact .wrapper .address_wrapper .Number { + padding-bottom: 50px; +} + +.contact .wrapper .address_wrapper .address h4, .contact .wrapper .address_wrapper .Number h4 { + color: #eaca94; + text-transform: uppercase; + font-weight: 600; + padding-bottom: 5px; +} + +.contact .wrapper .address_wrapper .address p, .contact .wrapper .address_wrapper .Number p { + font-size: 18px; + margin-bottom: 5px; +} + +.contact .wrapper .address_wrapper .address p a, .contact .wrapper .address_wrapper .Number p a { + color: #94cad7; +} + +.contact .wrapper .address_wrapper .address p a:hover, .contact .wrapper .address_wrapper .Number p a:hover { + color: #f24360; + text-decoration: none; +} + +.contact .wrapper .social h4 { + color: #eaca94; + text-transform: uppercase; + font-weight: 600; + padding-bottom: 5px; +} + +.contact .wrapper .social .social_icon { + margin-left: auto; + padding-top: 15px; + display: flex; +} + +@media screen and (max-width: 992px) { + .contact .wrapper .social .social_icon { + margin: auto; + } +} + +.contact .wrapper .social .social_icon a { + width: auto; + display: block; + padding: 6px 6px; + background: black; + border-radius: 7px; + color: #fff; + margin-right: 15px; +} + +.contact .wrapper .social .social_icon a:hover { + color: #94cad7; +} + +.contact .wrapper .social .social_icon a span { + font-size: 20px; +} + +.contact .wrapper .map_area { + margin-top: 70px; + border: 8px solid #eaca94; +} + +.contact .wrapper .map_area h1, +.contact .wrapper .map_area p { + margin: 0; + padding: 0; +} + +.blog .wrapper .card { + margin: 30px 0px 0px 5px; +} + +.blog .wrapper .card .blockquote p { + font-size: 20px; +} + +.blog .wrapper .card .card-body a { + color: #88B5B6; + text-decoration: none; + font-size: 25px; + letter-spacing: 1px; +} + +.blog .wrapper .card .card-body .card-text { + padding-top: 15px; + font-size: 16px; +} + +.blog_details .wrapper .card_wrap .card .card-body .card-title { + color: #88B5B6; + text-decoration: none; + font-size: 25px; + letter-spacing: 1px; +} + +.blog_details .wrapper .card_wrap .card .card-body .card-text { + padding-top: 5px; + font-size: 16px; + line-height: 2; + margin-bottom: 0; +} + +.blog_details .wrapper .card_wrap .share { + margin-top: 20px; +} + +.blog_details .wrapper .card_wrap .share h5 { + color: #000000; + margin-bottom: 15px; +} + +.blog_details .wrapper .card_wrap .share .wrapper { + display: block ruby; +} + +.blog_details .wrapper .card_wrap .share .sh1 { + background-color: #242452; + padding: 8px; + margin-left: 20px; + margin-right: 5px; +} + +.blog_details .wrapper .card_wrap .share .sh1:last-child { + margin: 0; +} + +.blog_details .wrapper .card_wrap .share .sh1:hover { + background-color: #88B5B6; +} + +.blog_details .wrapper .card_wrap .share .sh1 a { + color: #F5FCF0; + text-decoration: none; +} + +.blog_details .wrapper .blog_comment { + margin-top: 50px; + border: 1px solid #ccc; +} + +.blog_details .wrapper .blog_comment .wrapper { + padding: 20px 60px; +} + +@media screen and (max-width: 577px) { + .blog_details .wrapper .blog_comment .wrapper { + padding: 20px; + } +} + +.blog_details .wrapper .blog_comment .wrapper h4 { + margin-top: 40px; + color: #000000; + font-weight: normal; +} + +.blog_details .wrapper .blog_comment .wrapper form { + margin-top: 40px; +} + +.blog_details .wrapper .blog_comment .wrapper form .form-group label { + color: #000000; + font-size: 16px; + letter-spacing: 1px; +} + +.blog_details .wrapper .blog_comment .wrapper form .form-group .form-control { + line-height: 2.8; + border-radius: 0; +} + +.blog_details .wrapper .blog_comment .wrapper form .form-group .form-control:focus { + color: #5f5f5f; + background-color: #fff; + border-color: #eaca94; + outline: 0; + box-shadow: none; +} + +.blog_details .wrapper .blog_comment .wrapper form .form-group .txt { + border: 1px solid; + border-color: transparent; + border-top-color: #ccc !important; + border-right-color: #ccc !important; + border-bottom-color: #ccc !important; + border-left-color: #ccc !important; +} + +.blog_details .wrapper .blog_comment .wrapper form .form-group .txt:focus { + color: #5f5f5f; + background-color: #fff; + border-color: #eaca94 !important; + outline: 0; +} + +.blog_details .wrapper .blog_comment .wrapper .replay { + margin-top: 30px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay h6 { + font-size: 16px; + font-weight: 700; + text-transform: uppercase; + letter-spacing: 1px; + color: #f24360; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment { + padding: 20px; + display: flex; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .img_wrapper { + width: 150px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .img_wrapper img { + width: 100%; + border-radius: 50%; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .comment_details { + padding-top: 10px; + padding-left: 20px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .comment_details p { + color: black !important; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .comment_details .top { + display: flex; + justify-content: space-between; + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .comment_details .top span { + color: #000000; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .comment_details .top span a { + color: #94cad7; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .comment_details .top span a:hover { + color: #f24360; + text-decoration: none; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .comment_details .date { + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment .comment_details p { + font-size: 14px; + line-height: 2rem; + letter-spacing: 1px; + color: #f24360; + margin-bottom: 10px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 { + padding: 20px; + margin-top: 30px; + display: flex; +} + +@media screen and (max-width: 577px) { + .blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 { + margin-top: 0; + } +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .img_wrapper { + width: 150px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .img_wrapper img { + width: 100%; + border-radius: 50%; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .comment_details { + padding-top: 10px; + padding-left: 20px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .comment_details p { + color: black !important; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .comment_details .top { + display: flex; + justify-content: space-between; + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .comment_details .top span { + color: #f24360; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .comment_details .top span a { + color: #94cad7; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .comment_details .top span a:hover { + color: #f24360; + text-decoration: none; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .comment_details .date { + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_1 .comment_details p { + font-size: 14px; + line-height: 2rem; + letter-spacing: 1px; + color: #f24360; + margin-bottom: 10px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 { + padding: 20px; + margin-top: 30px; + display: flex; + margin-left: 75px; +} + +@media screen and (max-width: 577px) { + .blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 { + margin: 0; + } +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .img_wrapper { + width: 150px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .img_wrapper img { + width: 100%; + border-radius: 50%; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .comment_details { + padding-top: 10px; + padding-left: 20px; + border: 1px solid; + border-color: transparent; + border-bottom-color: #b8b8b8; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .comment_details p { + color: black !important; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .comment_details .top { + display: flex; + justify-content: space-between; + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .comment_details .top span { + color: #f24360; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .comment_details .top span a { + color: #94cad7; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .comment_details .top span a:hover { + color: #f24360; + text-decoration: none; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .comment_details .date { + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_2 .comment_details p { + font-size: 14px; + line-height: 2rem; + letter-spacing: 1px; + color: #f24360; + margin-bottom: 10px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 { + padding: 20px; + margin-top: 30px; + display: flex; + margin-left: 125px; +} + +@media screen and (max-width: 577px) { + .blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 { + margin: 0; + } +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .img_wrapper { + width: 150px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .img_wrapper img { + width: 100%; + border-radius: 50%; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .comment_details { + padding-top: 10px; + padding-left: 20px; + border: 1px solid; + border-color: transparent; + border-bottom-color: #b8b8b8; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .comment_details p { + color: black !important; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .comment_details .top { + display: flex; + justify-content: space-between; + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .comment_details .top span { + color: #f24360; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .comment_details .top span a { + color: #94cad7; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .comment_details .top span a:hover { + color: #f24360; + text-decoration: none; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .comment_details .date { + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_3 .comment_details p { + font-size: 14px; + line-height: 2rem; + letter-spacing: 1px; + color: #f24360; + margin-bottom: 10px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 { + padding: 20px; + margin-top: 30px; + display: flex; + margin-left: 50px; +} + +@media screen and (max-width: 577px) { + .blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 { + margin: 0; + } +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .img_wrapper { + max-width: 100px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .img_wrapper img { + width: 100%; + border-radius: 50%; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .comment_details { + padding-top: 10px; + padding-left: 20px; + border: 1px solid; + border-color: transparent; + border-bottom-color: #b8b8b8; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .comment_details p { + color: black !important; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .comment_details .top { + display: flex; + justify-content: space-between; + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .comment_details .top span { + color: #f24360; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .comment_details .top span a { + color: #94cad7; + font-size: 14px; + font-weight: 700; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .comment_details .top span a:hover { + color: #f24360; + text-decoration: none; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .comment_details .date { + padding-bottom: 15px; +} + +.blog_details .wrapper .blog_comment .wrapper .replay .top_comment_4 .comment_details p { + font-size: 14px; + line-height: 2rem; + letter-spacing: 1px; + color: #f24360; + margin-bottom: 10px; +} + +@media screen and (max-width: 768px) { + .blog_details .wrapper .blog_sidebar { + margin-top: 50px; + } +} + +.blog_details .wrapper .blog_sidebar .wrapper .search { + border: 1px solid #ccc; + padding-bottom: 15px; + margin-bottom: 20px; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search h5 { + color: #000000; + padding: 15px; + background-color: #F5FCF0; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search .navbar-light { + margin-top: 10px; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search .navbar-light .cc { + display: flex; + margin: auto; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search .navbar-light .cc .form-control { + width: 100%; + margin-right: 0px; + padding: 0.375rem 0.75rem; + font-size: 1.1rem; + line-height: 2; + color: #495057; + background-color: #e9e9e9; + background-clip: padding-box; + border: 1px solid #ced4da00; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search .navbar-light .cc .form-control:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0); + border-color: red; + background-color: transparent; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search .navbar-light .cc .btn-outline-success2 { + border-radius: 0px; + background: #eaca94; + color: #fff; + line-height: 2; + font-weight: 500; + font-size: 16px; + letter-spacing: 1px; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search .wrapper_t { + padding: 15px; + padding-bottom: 0; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search .wrapper_t .tt { + display: flex; + padding-left: 0; + flex-flow: wrap; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search .wrapper_t .tt .inner { + padding: 5px; + margin-bottom: 15px; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search .wrapper_t .tt .inner a { + color: #fff; + text-decoration: none; + background-color: #242452; + padding: 5px 20px; + text-transform: uppercase; +} + +.blog_details .wrapper .blog_sidebar .wrapper .search p { + color: #000000; + font-size: 16px; + line-height: 2; + letter-spacing: 1px; + padding: 20px; + margin-bottom: 0; + padding-bottom: 0; +} +/*# sourceMappingURL=style.css.map */ +div.first_nav .top_nav_right li.o_wsale_my_cart { + margin-left: 13px; +} +div.first_nav .top_nav_right li.o_wsale_my_cart i.fa { + width: 0.6em; + font-size: 20px; + line-height: 3em; + color: #f24360; +} +div.first_nav .top_nav_right li.o_no_autohide_item .dropdown-toggle::after { + display: none; +} +div.first_nav .top_nav_right li.o_no_autohide_item i.fa-user { + margin-top: 13px; + font-size: 20px; + color: #f24360; +} diff --git a/theme_fasion/static/src/css/style.css.map b/theme_fasion/static/src/css/style.css.map new file mode 100644 index 000000000..f05e2de90 --- /dev/null +++ b/theme_fasion/static/src/css/style.css.map @@ -0,0 +1,35 @@ +{ + "version": 3, + "mappings": "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", + "sources": [ + "../scss/style.scss", + "../scss/_variables.scss", + "../scss/_normalize.scss", + "../scss/_common.scss", + "../scss/_elements.scss", + "../scss/components/_components.scss", + "../scss/components/_buttons.scss", + "../scss/components/_model.scss", + "../scss/layouts/_layouts.scss", + "../scss/layouts/_navigation.scss", + "../scss/layouts/_header.scss", + "../scss/layouts/_banner.scss", + "../scss/layouts/_footer.scss", + "../scss/layouts/_sidebar.scss", + "../scss/pages/_pages.scss", + "../scss/pages/home/_home.scss", + "../scss/pages/home/_service.scss", + "../scss/pages/home/_categories.scss", + "../scss/pages/home/_smart_cloath.scss", + "../scss/pages/home/_insta_shopping.scss", + "../scss/pages/_about.scss", + "../scss/pages/_shop.scss", + "../scss/pages/_product.scss", + "../scss/pages/_peview.scss", + "../scss/pages/_contact.scss", + "../scss/pages/_blog.scss", + "../scss/pages/_blog-details.scss" + ], + "names": [], + "file": "style.css" +} \ No newline at end of file diff --git a/theme_fasion/static/src/img/Banner/bg1.jpg b/theme_fasion/static/src/img/Banner/bg1.jpg new file mode 100644 index 000000000..d29732051 Binary files /dev/null and b/theme_fasion/static/src/img/Banner/bg1.jpg differ diff --git a/theme_fasion/static/src/img/Banner/slider-1.jpg b/theme_fasion/static/src/img/Banner/slider-1.jpg new file mode 100644 index 000000000..68e6b4af3 Binary files /dev/null and b/theme_fasion/static/src/img/Banner/slider-1.jpg differ diff --git a/theme_fasion/static/src/img/Banner/slider-2.jpg b/theme_fasion/static/src/img/Banner/slider-2.jpg new file mode 100644 index 000000000..3e4f22b36 Binary files /dev/null and b/theme_fasion/static/src/img/Banner/slider-2.jpg differ diff --git a/theme_fasion/static/src/img/Banner/slider-3.jpg b/theme_fasion/static/src/img/Banner/slider-3.jpg new file mode 100644 index 000000000..db32ec96e Binary files /dev/null and b/theme_fasion/static/src/img/Banner/slider-3.jpg differ diff --git a/theme_fasion/static/src/img/blog/1.jpg b/theme_fasion/static/src/img/blog/1.jpg new file mode 100644 index 000000000..59c82662a Binary files /dev/null and b/theme_fasion/static/src/img/blog/1.jpg differ diff --git a/theme_fasion/static/src/img/blog/2.jpg b/theme_fasion/static/src/img/blog/2.jpg new file mode 100644 index 000000000..486352983 Binary files /dev/null and b/theme_fasion/static/src/img/blog/2.jpg differ diff --git a/theme_fasion/static/src/img/blog/3.jpg b/theme_fasion/static/src/img/blog/3.jpg new file mode 100644 index 000000000..aa1b667c2 Binary files /dev/null and b/theme_fasion/static/src/img/blog/3.jpg differ diff --git a/theme_fasion/static/src/img/blog/4.jpg b/theme_fasion/static/src/img/blog/4.jpg new file mode 100644 index 000000000..f93d7c5c2 Binary files /dev/null and b/theme_fasion/static/src/img/blog/4.jpg differ diff --git a/theme_fasion/static/src/img/blog/5.jpg b/theme_fasion/static/src/img/blog/5.jpg new file mode 100644 index 000000000..852aa8b8e Binary files /dev/null and b/theme_fasion/static/src/img/blog/5.jpg differ diff --git a/theme_fasion/static/src/img/blog/blog-detail/1 (1).jpg b/theme_fasion/static/src/img/blog/blog-detail/1 (1).jpg new file mode 100644 index 000000000..8bef42310 Binary files /dev/null and b/theme_fasion/static/src/img/blog/blog-detail/1 (1).jpg differ diff --git a/theme_fasion/static/src/img/blog/blog-detail/1 (2).jpg b/theme_fasion/static/src/img/blog/blog-detail/1 (2).jpg new file mode 100644 index 000000000..d776358fe Binary files /dev/null and b/theme_fasion/static/src/img/blog/blog-detail/1 (2).jpg differ diff --git a/theme_fasion/static/src/img/blog/blog-detail/1 (3).jpg b/theme_fasion/static/src/img/blog/blog-detail/1 (3).jpg new file mode 100644 index 000000000..b046025a3 Binary files /dev/null and b/theme_fasion/static/src/img/blog/blog-detail/1 (3).jpg differ diff --git a/theme_fasion/static/src/img/blog/blog-detail/1 (4).jpg b/theme_fasion/static/src/img/blog/blog-detail/1 (4).jpg new file mode 100644 index 000000000..89f2ebf81 Binary files /dev/null and b/theme_fasion/static/src/img/blog/blog-detail/1 (4).jpg differ diff --git a/theme_fasion/static/src/img/blog/blog-detail/1 (5).jpg b/theme_fasion/static/src/img/blog/blog-detail/1 (5).jpg new file mode 100644 index 000000000..2ba80af62 Binary files /dev/null and b/theme_fasion/static/src/img/blog/blog-detail/1 (5).jpg differ diff --git a/theme_fasion/static/src/img/categories/1.jpg b/theme_fasion/static/src/img/categories/1.jpg new file mode 100644 index 000000000..3e5dfd80b Binary files /dev/null and b/theme_fasion/static/src/img/categories/1.jpg differ diff --git a/theme_fasion/static/src/img/categories/2.jpg b/theme_fasion/static/src/img/categories/2.jpg new file mode 100644 index 000000000..88653fe50 Binary files /dev/null and b/theme_fasion/static/src/img/categories/2.jpg differ diff --git a/theme_fasion/static/src/img/categories/3.jpg b/theme_fasion/static/src/img/categories/3.jpg new file mode 100644 index 000000000..056a42ab6 Binary files /dev/null and b/theme_fasion/static/src/img/categories/3.jpg differ diff --git a/theme_fasion/static/src/img/footer/1.jpg b/theme_fasion/static/src/img/footer/1.jpg new file mode 100644 index 000000000..21931842b Binary files /dev/null and b/theme_fasion/static/src/img/footer/1.jpg differ diff --git a/theme_fasion/static/src/img/footer/2.jpg b/theme_fasion/static/src/img/footer/2.jpg new file mode 100644 index 000000000..50d46440e Binary files /dev/null and b/theme_fasion/static/src/img/footer/2.jpg differ diff --git a/theme_fasion/static/src/img/footer/3.jpg b/theme_fasion/static/src/img/footer/3.jpg new file mode 100644 index 000000000..efb293982 Binary files /dev/null and b/theme_fasion/static/src/img/footer/3.jpg differ diff --git a/theme_fasion/static/src/img/footer/icon/cash-on-delivery.svg b/theme_fasion/static/src/img/footer/icon/cash-on-delivery.svg new file mode 100644 index 000000000..f5221e62f --- /dev/null +++ b/theme_fasion/static/src/img/footer/icon/cash-on-delivery.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_fasion/static/src/img/footer/icon/discover.svg b/theme_fasion/static/src/img/footer/icon/discover.svg new file mode 100644 index 000000000..20af3f20a --- /dev/null +++ b/theme_fasion/static/src/img/footer/icon/discover.svg @@ -0,0 +1,29 @@ + \ No newline at end of file diff --git a/theme_fasion/static/src/img/footer/icon/loan.svg b/theme_fasion/static/src/img/footer/icon/loan.svg new file mode 100644 index 000000000..79ca2ae96 --- /dev/null +++ b/theme_fasion/static/src/img/footer/icon/loan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme_fasion/static/src/img/footer/icon/maestro.svg b/theme_fasion/static/src/img/footer/icon/maestro.svg new file mode 100644 index 000000000..410964298 --- /dev/null +++ b/theme_fasion/static/src/img/footer/icon/maestro.svg @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/theme_fasion/static/src/img/footer/icon/master-card.svg b/theme_fasion/static/src/img/footer/icon/master-card.svg new file mode 100644 index 000000000..953811dc1 --- /dev/null +++ b/theme_fasion/static/src/img/footer/icon/master-card.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_fasion/static/src/img/footer/icon/phone.svg b/theme_fasion/static/src/img/footer/icon/phone.svg new file mode 100644 index 000000000..06ffc1dfe --- /dev/null +++ b/theme_fasion/static/src/img/footer/icon/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (1).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (1).jpg new file mode 100644 index 000000000..96bb07aaf Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (1).jpg differ diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (10).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (10).jpg new file mode 100644 index 000000000..6b6f56e18 Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (10).jpg differ diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (2).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (2).jpg new file mode 100644 index 000000000..0da54b5c7 Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (2).jpg differ diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (3).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (3).jpg new file mode 100644 index 000000000..d33049f88 Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (3).jpg differ diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (4).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (4).jpg new file mode 100644 index 000000000..93f2d8f52 Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (4).jpg differ diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (5).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (5).jpg new file mode 100644 index 000000000..efd6321b8 Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (5).jpg differ diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (6).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (6).jpg new file mode 100644 index 000000000..317de7abe Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (6).jpg differ diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (7).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (7).jpg new file mode 100644 index 000000000..600454ae6 Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (7).jpg differ diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (8).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (8).jpg new file mode 100644 index 000000000..97ae687b4 Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (8).jpg differ diff --git a/theme_fasion/static/src/img/footer/pintrest/1 (9).jpg b/theme_fasion/static/src/img/footer/pintrest/1 (9).jpg new file mode 100644 index 000000000..2a316c373 Binary files /dev/null and b/theme_fasion/static/src/img/footer/pintrest/1 (9).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (1).jpg b/theme_fasion/static/src/img/instagram product/1 (1).jpg new file mode 100644 index 000000000..e4f4570e8 Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (1).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (10).jpg b/theme_fasion/static/src/img/instagram product/1 (10).jpg new file mode 100644 index 000000000..e4e3d96e6 Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (10).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (11).jpg b/theme_fasion/static/src/img/instagram product/1 (11).jpg new file mode 100644 index 000000000..b577f6bf8 Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (11).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (12).jpg b/theme_fasion/static/src/img/instagram product/1 (12).jpg new file mode 100644 index 000000000..4a9adeafa Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (12).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (2).jpg b/theme_fasion/static/src/img/instagram product/1 (2).jpg new file mode 100644 index 000000000..0b52ab0d9 Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (2).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (3).jpg b/theme_fasion/static/src/img/instagram product/1 (3).jpg new file mode 100644 index 000000000..4d0244d31 Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (3).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (4).jpg b/theme_fasion/static/src/img/instagram product/1 (4).jpg new file mode 100644 index 000000000..e68cbfbcb Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (4).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (5).jpg b/theme_fasion/static/src/img/instagram product/1 (5).jpg new file mode 100644 index 000000000..60eaaca2e Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (5).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (6).jpg b/theme_fasion/static/src/img/instagram product/1 (6).jpg new file mode 100644 index 000000000..c885eb951 Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (6).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (7).jpg b/theme_fasion/static/src/img/instagram product/1 (7).jpg new file mode 100644 index 000000000..23fb993ba Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (7).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (8).jpg b/theme_fasion/static/src/img/instagram product/1 (8).jpg new file mode 100644 index 000000000..90870bfb4 Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (8).jpg differ diff --git a/theme_fasion/static/src/img/instagram product/1 (9).jpg b/theme_fasion/static/src/img/instagram product/1 (9).jpg new file mode 100644 index 000000000..2a4a87332 Binary files /dev/null and b/theme_fasion/static/src/img/instagram product/1 (9).jpg differ diff --git a/theme_fasion/static/src/img/login/Mobile-login.jpg b/theme_fasion/static/src/img/login/Mobile-login.jpg new file mode 100644 index 000000000..8908e1df0 Binary files /dev/null and b/theme_fasion/static/src/img/login/Mobile-login.jpg differ diff --git a/theme_fasion/static/src/img/preview/1.jpg b/theme_fasion/static/src/img/preview/1.jpg new file mode 100644 index 000000000..19fd53f88 Binary files /dev/null and b/theme_fasion/static/src/img/preview/1.jpg differ diff --git a/theme_fasion/static/src/img/preview/2.jpg b/theme_fasion/static/src/img/preview/2.jpg new file mode 100644 index 000000000..a6d1d79ad Binary files /dev/null and b/theme_fasion/static/src/img/preview/2.jpg differ diff --git a/theme_fasion/static/src/img/preview/3.jpg b/theme_fasion/static/src/img/preview/3.jpg new file mode 100644 index 000000000..1655ed664 Binary files /dev/null and b/theme_fasion/static/src/img/preview/3.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/1.jpg b/theme_fasion/static/src/img/smart-cloths/1.jpg new file mode 100644 index 000000000..56cda7055 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/1.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/10.jpg b/theme_fasion/static/src/img/smart-cloths/10.jpg new file mode 100644 index 000000000..e871dcb49 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/10.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/11.jpg b/theme_fasion/static/src/img/smart-cloths/11.jpg new file mode 100644 index 000000000..1c24b4841 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/11.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/12.jpg b/theme_fasion/static/src/img/smart-cloths/12.jpg new file mode 100644 index 000000000..042b1fb6f Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/12.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/13.jpg b/theme_fasion/static/src/img/smart-cloths/13.jpg new file mode 100644 index 000000000..9b5834b85 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/13.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/14.jpg b/theme_fasion/static/src/img/smart-cloths/14.jpg new file mode 100644 index 000000000..73f3ec5c3 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/14.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/15.jpg b/theme_fasion/static/src/img/smart-cloths/15.jpg new file mode 100644 index 000000000..443de8eb1 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/15.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/16.jpg b/theme_fasion/static/src/img/smart-cloths/16.jpg new file mode 100644 index 000000000..99bd82828 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/16.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/17.jpg b/theme_fasion/static/src/img/smart-cloths/17.jpg new file mode 100644 index 000000000..cf2cda54c Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/17.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/18.jpg b/theme_fasion/static/src/img/smart-cloths/18.jpg new file mode 100644 index 000000000..46d1f22fd Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/18.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/19.jpg b/theme_fasion/static/src/img/smart-cloths/19.jpg new file mode 100644 index 000000000..1f395885d Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/19.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/2.jpg b/theme_fasion/static/src/img/smart-cloths/2.jpg new file mode 100644 index 000000000..0e5c488ab Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/2.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/20.jpg b/theme_fasion/static/src/img/smart-cloths/20.jpg new file mode 100644 index 000000000..077284582 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/20.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/21.jpg b/theme_fasion/static/src/img/smart-cloths/21.jpg new file mode 100644 index 000000000..b94b82a1e Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/21.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/22.jpg b/theme_fasion/static/src/img/smart-cloths/22.jpg new file mode 100644 index 000000000..4e8ab919b Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/22.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/23.jpg b/theme_fasion/static/src/img/smart-cloths/23.jpg new file mode 100644 index 000000000..08cf206e5 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/23.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/24.jpg b/theme_fasion/static/src/img/smart-cloths/24.jpg new file mode 100644 index 000000000..9306482bd Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/24.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/25.jpg b/theme_fasion/static/src/img/smart-cloths/25.jpg new file mode 100644 index 000000000..0be70c67a Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/25.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/3.jpg b/theme_fasion/static/src/img/smart-cloths/3.jpg new file mode 100644 index 000000000..6c1e29305 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/3.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/4.jpg b/theme_fasion/static/src/img/smart-cloths/4.jpg new file mode 100644 index 000000000..8a3b05068 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/4.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/5.jpg b/theme_fasion/static/src/img/smart-cloths/5.jpg new file mode 100644 index 000000000..a9eb43dbb Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/5.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/6.jpg b/theme_fasion/static/src/img/smart-cloths/6.jpg new file mode 100644 index 000000000..55310bdcb Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/6.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/8.jpg b/theme_fasion/static/src/img/smart-cloths/8.jpg new file mode 100644 index 000000000..b4c463d66 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/8.jpg differ diff --git a/theme_fasion/static/src/img/smart-cloths/9.jpg b/theme_fasion/static/src/img/smart-cloths/9.jpg new file mode 100644 index 000000000..b432500e4 Binary files /dev/null and b/theme_fasion/static/src/img/smart-cloths/9.jpg differ diff --git a/theme_fasion/static/src/img/snippets/categories.jpg b/theme_fasion/static/src/img/snippets/categories.jpg new file mode 100644 index 000000000..5fee21680 Binary files /dev/null and b/theme_fasion/static/src/img/snippets/categories.jpg differ diff --git a/theme_fasion/static/src/img/snippets/index-banner-block.jpg b/theme_fasion/static/src/img/snippets/index-banner-block.jpg new file mode 100644 index 000000000..2017e484a Binary files /dev/null and b/theme_fasion/static/src/img/snippets/index-banner-block.jpg differ diff --git a/theme_fasion/static/src/img/snippets/insta_shopping.jpg b/theme_fasion/static/src/img/snippets/insta_shopping.jpg new file mode 100644 index 000000000..b9180868c Binary files /dev/null and b/theme_fasion/static/src/img/snippets/insta_shopping.jpg differ diff --git a/theme_fasion/static/src/img/snippets/services.jpg b/theme_fasion/static/src/img/snippets/services.jpg new file mode 100644 index 000000000..58f093d93 Binary files /dev/null and b/theme_fasion/static/src/img/snippets/services.jpg differ diff --git a/theme_fasion/static/src/img/snippets/smart-clothing.jpg b/theme_fasion/static/src/img/snippets/smart-clothing.jpg new file mode 100644 index 000000000..2897e7d14 Binary files /dev/null and b/theme_fasion/static/src/img/snippets/smart-clothing.jpg differ diff --git a/theme_fasion/static/src/js/categories_snippet.js b/theme_fasion/static/src/js/categories_snippet.js new file mode 100644 index 000000000..150b1ddfe --- /dev/null +++ b/theme_fasion/static/src/js/categories_snippet.js @@ -0,0 +1,18 @@ +/** @odoo-module **/ +import { jsonrpc } from "@web/core/network/rpc_service"; +import publicWidget from "@web/legacy/js/public/public_widget"; +import animations from "@website/js/content/snippets.animation"; + +publicWidget.registry.Categories = animations.Animation.extend({ + // To extend public widget + selector: '._fasion_categories', + start: async function () { + // To get data from controller. + var self = this; + await jsonrpc('/get_categories', {}).then(function(data) { + if(data){ + self.$target.html(data) + } + }) + } +}) diff --git a/theme_fasion/static/src/js/custom.js b/theme_fasion/static/src/js/custom.js new file mode 100644 index 000000000..85368806f --- /dev/null +++ b/theme_fasion/static/src/js/custom.js @@ -0,0 +1,34 @@ +/** @odoo-module */ +import PublicWidget from "@web/legacy/js/public/public_widget" + +export const customFasion = PublicWidget.Widget.extend({ + selector: "#wrapwrap", + /* Start function for calling slider function */ + start() { +// this.banner() + }, + /* Function for carousel slider */ + + banner() { + if(this.$el.find("#banner")){ + this.$el.find("#banner").owlCarousel( + { + items: 1, + loop: true, + margin: 40, + stagePadding: 0, + smartSpeed: 450, + autoplay: false, + autoPlaySpeed: 1000, + autoPlayTimeout: 1000, + autoplayHoverPause: true, + dots: true, + nav: false, + animateOut: 'fadeOut' + } + ) + } + }, +}) + +PublicWidget.registry.customFasion = customFasion diff --git a/theme_fasion/static/src/js/easyzoom.js b/theme_fasion/static/src/js/easyzoom.js new file mode 100644 index 000000000..a909f94cf --- /dev/null +++ b/theme_fasion/static/src/js/easyzoom.js @@ -0,0 +1,342 @@ +(function (root, factory) { + 'use strict'; + if(typeof define === 'function' && define.amd) { + define(['jquery'], function($){ + factory($); + }); + } else if(typeof module === 'object' && module.exports) { + module.exports = (root.EasyZoom = factory(require('jquery'))); + } else { + root.EasyZoom = factory(root.jQuery); + } +}(this, function ($) { + + 'use strict'; + + var zoomImgOverlapX; + var zoomImgOverlapY; + var ratioX; + var ratioY; + var pointerPositionX; + var pointerPositionY; + + var defaults = { + + // The text to display within the notice box while loading the zoom image. + loadingNotice: 'Loading image', + + // The text to display within the notice box if an error occurs when loading the zoom image. + errorNotice: 'The image could not be loaded', + + // The time (in milliseconds) to display the error notice. + errorDuration: 2500, + + // Attribute to retrieve the zoom image URL from. + linkAttribute: 'href', + + // Prevent clicks on the zoom image link. + preventClicks: true, + + // Callback function to execute before the flyout is displayed. + beforeShow: $.noop, + + // Callback function to execute before the flyout is removed. + beforeHide: $.noop, + + // Callback function to execute when the flyout is displayed. + onShow: $.noop, + + // Callback function to execute when the flyout is removed. + onHide: $.noop, + + // Callback function to execute when the cursor is moved while over the image. + onMove: $.noop + + }; + + /** + * EasyZoom + * @constructor + * @param {Object} target + * @param {Object} options (Optional) + */ + function EasyZoom(target, options) { + this.$target = $(target); + this.opts = $.extend({}, defaults, options, this.$target.data()); + + this.isOpen === undefined && this._init(); + } + + /** + * Init + * @private + */ + EasyZoom.prototype._init = function() { + this.$link = this.$target.find('a'); + this.$image = this.$target.find('img'); + + this.$flyout = $('
'); + this.$notice = $('
'); + + this.$target.on({ + 'mousemove.easyzoom touchmove.easyzoom': $.proxy(this._onMove, this), + 'mouseleave.easyzoom touchend.easyzoom': $.proxy(this._onLeave, this), + 'mouseenter.easyzoom touchstart.easyzoom': $.proxy(this._onEnter, this) + }); + + this.opts.preventClicks && this.$target.on('click.easyzoom', function(e) { + e.preventDefault(); + }); + }; + + /** + * Show + * @param {MouseEvent|TouchEvent} e + * @param {Boolean} testMouseOver (Optional) + */ + EasyZoom.prototype.show = function(e, testMouseOver) { + var self = this; + + if (this.opts.beforeShow.call(this) === false) return; + + if (!this.isReady) { + return this._loadImage(this.$link.attr(this.opts.linkAttribute), function() { + if (self.isMouseOver || !testMouseOver) { + self.show(e); + } + }); + } + + this.$target.append(this.$flyout); + + var targetWidth = this.$target.outerWidth(); + var targetHeight = this.$target.outerHeight(); + + var flyoutInnerWidth = this.$flyout.width(); + var flyoutInnerHeight = this.$flyout.height(); + + var zoomImgWidth = this.$zoom.width(); + var zoomImgHeight = this.$zoom.height(); + + zoomImgOverlapX = Math.ceil(zoomImgWidth - flyoutInnerWidth); + zoomImgOverlapY = Math.ceil(zoomImgHeight - flyoutInnerHeight); + + // For when the zoom image is smaller than the flyout element. + if (zoomImgOverlapX < 0) zoomImgOverlapX = 0; + if (zoomImgOverlapY < 0) zoomImgOverlapY = 0; + + ratioX = zoomImgOverlapX / targetWidth; + ratioY = zoomImgOverlapY / targetHeight; + + this.isOpen = true; + + this.opts.onShow.call(this); + + e && this._move(e); + }; + + /** + * On enter + * @private + * @param {Event} e + */ + EasyZoom.prototype._onEnter = function(e) { + var touches = e.originalEvent.touches; + + this.isMouseOver = true; + + if (!touches || touches.length == 1) { + e.preventDefault(); + this.show(e, true); + } + }; + + /** + * On move + * @private + * @param {Event} e + */ + EasyZoom.prototype._onMove = function(e) { + if (!this.isOpen) return; + + e.preventDefault(); + this._move(e); + }; + + /** + * On leave + * @private + */ + EasyZoom.prototype._onLeave = function() { + this.isMouseOver = false; + this.isOpen && this.hide(); + }; + + /** + * On load + * @private + * @param {Event} e + */ + EasyZoom.prototype._onLoad = function(e) { + // IE may fire a load event even on error so test the image dimensions + if (!e.currentTarget.width) return; + + this.isReady = true; + + this.$notice.detach(); + this.$flyout.html(this.$zoom); + this.$target.removeClass('is-loading').addClass('is-ready'); + + e.data.call && e.data(); + }; + + /** + * On error + * @private + */ + EasyZoom.prototype._onError = function() { + var self = this; + + this.$notice.text(this.opts.errorNotice); + this.$target.removeClass('is-loading').addClass('is-error'); + + this.detachNotice = setTimeout(function() { + self.$notice.detach(); + self.detachNotice = null; + }, this.opts.errorDuration); + }; + + /** + * Load image + * @private + * @param {String} href + * @param {Function} callback + */ + EasyZoom.prototype._loadImage = function(href, callback) { + var zoom = new Image(); + + this.$target + .addClass('is-loading') + .append(this.$notice.text(this.opts.loadingNotice)); + + this.$zoom = $(zoom) + .on('error', $.proxy(this._onError, this)) + .on('load', callback, $.proxy(this._onLoad, this)); + + zoom.style.position = 'absolute'; + zoom.src = href; + }; + + /** + * Move + * @private + * @param {Event} e + */ + EasyZoom.prototype._move = function(e) { + + if (e.type.indexOf('touch') === 0) { + var touchlist = e.touches || e.originalEvent.touches; + pointerPositionX = touchlist[0].pageX; + pointerPositionY = touchlist[0].pageY; + } else { + pointerPositionX = e.pageX || pointerPositionX; + pointerPositionY = e.pageY || pointerPositionY; + } + + var targetOffset = this.$target.offset(); + var relativePositionX = pointerPositionX - targetOffset.left; + var relativePositionY = pointerPositionY - targetOffset.top; + var moveX = Math.ceil(relativePositionX * ratioX); + var moveY = Math.ceil(relativePositionY * ratioY); + + // Close if outside + if (moveX < 0 || moveY < 0 || moveX > zoomImgOverlapX || moveY > zoomImgOverlapY) { + this.hide(); + } else { + var top = moveY * -1; + var left = moveX * -1; + + this.$zoom.css({ + top: top, + left: left + }); + + this.opts.onMove.call(this, top, left); + } + + }; + + /** + * Hide + */ + EasyZoom.prototype.hide = function() { + if (!this.isOpen) return; + if (this.opts.beforeHide.call(this) === false) return; + + this.$flyout.detach(); + this.isOpen = false; + + this.opts.onHide.call(this); + }; + + /** + * Swap + * @param {String} standardSrc + * @param {String} zoomHref + * @param {String|Array} srcset (Optional) + */ + EasyZoom.prototype.swap = function(standardSrc, zoomHref, srcset) { + this.hide(); + this.isReady = false; + + this.detachNotice && clearTimeout(this.detachNotice); + + this.$notice.parent().length && this.$notice.detach(); + + this.$target.removeClass('is-loading is-ready is-error'); + + this.$image.attr({ + src: standardSrc, + srcset: $.isArray(srcset) ? srcset.join() : srcset + }); + + this.$link.attr(this.opts.linkAttribute, zoomHref); + }; + + /** + * Teardown + */ + EasyZoom.prototype.teardown = function() { + this.hide(); + + this.$target + .off('.easyzoom') + .removeClass('is-loading is-ready is-error'); + + this.detachNotice && clearTimeout(this.detachNotice); + + delete this.$link; + delete this.$zoom; + delete this.$image; + delete this.$notice; + delete this.$flyout; + + delete this.isOpen; + delete this.isReady; + }; + + // jQuery plugin wrapper + $.fn.easyZoom = function(options) { + return this.each(function() { + var api = $.data(this, 'easyZoom'); + + if (!api) { + $.data(this, 'easyZoom', new EasyZoom(this, options)); + } else if (api.isOpen === undefined) { + api._init(); + } + }); + }; + + return EasyZoom; +})); diff --git a/theme_fasion/static/src/js/insta_shopping_snippet.js b/theme_fasion/static/src/js/insta_shopping_snippet.js new file mode 100644 index 000000000..f77768db4 --- /dev/null +++ b/theme_fasion/static/src/js/insta_shopping_snippet.js @@ -0,0 +1,18 @@ +/** @odoo-module **/ +import { jsonrpc } from "@web/core/network/rpc_service"; +import publicWidget from "@web/legacy/js/public/public_widget"; +import animations from "@website/js/content/snippets.animation"; + +publicWidget.registry.insta_shopping = animations.Animation.extend({ + // To extend public widget + selector: '._insta_shopping', + start: async function () { + // To get data from controller. + var self = this; + await jsonrpc('/get_insta_shopping', {}).then(function(data) { + if(data){ + self.$target.html(data) + } + }) + } +}) diff --git a/theme_fasion/static/src/js/owl.carousel.js b/theme_fasion/static/src/js/owl.carousel.js new file mode 100644 index 000000000..66c67ebe0 --- /dev/null +++ b/theme_fasion/static/src/js/owl.carousel.js @@ -0,0 +1,3448 @@ +/** + * Owl Carousel v2.3.4 + * Copyright 2013-2018 David Deutsch + * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE + */ +/** + * Owl carousel + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + * @todo Lazy Load Icon + * @todo prevent animationend bubling + * @todo itemsScaleUp + * @todo Test Zepto + * @todo stagePadding calculate wrong active classes + */ +;(function($, window, document, undefined) { + + /** + * Creates a carousel. + * @class The Owl Carousel. + * @public + * @param {HTMLElement|jQuery} element - The element to create the carousel for. + * @param {Object} [options] - The options + */ + function Owl(element, options) { + + /** + * Current settings for the carousel. + * @public + */ + this.settings = null; + + /** + * Current options set by the caller including defaults. + * @public + */ + this.options = $.extend({}, Owl.Defaults, options); + + /** + * Plugin element. + * @public + */ + this.$element = $(element); + + /** + * Proxied event handlers. + * @protected + */ + this._handlers = {}; + + /** + * References to the running plugins of this carousel. + * @protected + */ + this._plugins = {}; + + /** + * Currently suppressed events to prevent them from being retriggered. + * @protected + */ + this._supress = {}; + + /** + * Absolute current position. + * @protected + */ + this._current = null; + + /** + * Animation speed in milliseconds. + * @protected + */ + this._speed = null; + + /** + * Coordinates of all items in pixel. + * @todo The name of this member is missleading. + * @protected + */ + this._coordinates = []; + + /** + * Current breakpoint. + * @todo Real media queries would be nice. + * @protected + */ + this._breakpoint = null; + + /** + * Current width of the plugin element. + */ + this._width = null; + + /** + * All real items. + * @protected + */ + this._items = []; + + /** + * All cloned items. + * @protected + */ + this._clones = []; + + /** + * Merge values of all items. + * @todo Maybe this could be part of a plugin. + * @protected + */ + this._mergers = []; + + /** + * Widths of all items. + */ + this._widths = []; + + /** + * Invalidated parts within the update process. + * @protected + */ + this._invalidated = {}; + + /** + * Ordered list of workers for the update process. + * @protected + */ + this._pipe = []; + + /** + * Current state information for the drag operation. + * @todo #261 + * @protected + */ + this._drag = { + time: null, + target: null, + pointer: null, + stage: { + start: null, + current: null + }, + direction: null + }; + + /** + * Current state information and their tags. + * @type {Object} + * @protected + */ + this._states = { + current: {}, + tags: { + 'initializing': [ 'busy' ], + 'animating': [ 'busy' ], + 'dragging': [ 'interacting' ] + } + }; + + $.each([ 'onResize', 'onThrottledResize' ], $.proxy(function(i, handler) { + this._handlers[handler] = $.proxy(this[handler], this); + }, this)); + + $.each(Owl.Plugins, $.proxy(function(key, plugin) { + this._plugins[key.charAt(0).toLowerCase() + key.slice(1)] + = new plugin(this); + }, this)); + + $.each(Owl.Workers, $.proxy(function(priority, worker) { + this._pipe.push({ + 'filter': worker.filter, + 'run': $.proxy(worker.run, this) + }); + }, this)); + + this.setup(); + this.initialize(); + } + + /** + * Default options for the carousel. + * @public + */ + Owl.Defaults = { + items: 3, + loop: false, + center: false, + rewind: false, + checkVisibility: true, + + mouseDrag: true, + touchDrag: true, + pullDrag: true, + freeDrag: false, + + margin: 0, + stagePadding: 0, + + merge: false, + mergeFit: true, + autoWidth: false, + + startPosition: 0, + rtl: false, + + smartSpeed: 250, + fluidSpeed: false, + dragEndSpeed: false, + + responsive: {}, + responsiveRefreshRate: 200, + responsiveBaseElement: window, + + fallbackEasing: 'swing', + slideTransition: '', + + info: false, + + nestedItemSelector: false, + itemElement: 'div', + stageElement: 'div', + + refreshClass: 'owl-refresh', + loadedClass: 'owl-loaded', + loadingClass: 'owl-loading', + rtlClass: 'owl-rtl', + responsiveClass: 'owl-responsive', + dragClass: 'owl-drag', + itemClass: 'owl-item', + stageClass: 'owl-stage', + stageOuterClass: 'owl-stage-outer', + grabClass: 'owl-grab' + }; + + /** + * Enumeration for width. + * @public + * @readonly + * @enum {String} + */ + Owl.Width = { + Default: 'default', + Inner: 'inner', + Outer: 'outer' + }; + + /** + * Enumeration for types. + * @public + * @readonly + * @enum {String} + */ + Owl.Type = { + Event: 'event', + State: 'state' + }; + + /** + * Contains all registered plugins. + * @public + */ + Owl.Plugins = {}; + + /** + * List of workers involved in the update process. + */ + Owl.Workers = [ { + filter: [ 'width', 'settings' ], + run: function() { + this._width = this.$element.width(); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + cache.current = this._items && this._items[this.relative(this._current)]; + } + }, { + filter: [ 'items', 'settings' ], + run: function() { + this.$stage.children('.cloned').remove(); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + var margin = this.settings.margin || '', + grid = !this.settings.autoWidth, + rtl = this.settings.rtl, + css = { + 'width': 'auto', + 'margin-left': rtl ? margin : '', + 'margin-right': rtl ? '' : margin + }; + + !grid && this.$stage.children().css(css); + + cache.css = css; + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + var width = (this.width() / this.settings.items).toFixed(3) - this.settings.margin, + merge = null, + iterator = this._items.length, + grid = !this.settings.autoWidth, + widths = []; + + cache.items = { + merge: false, + width: width + }; + + while (iterator--) { + merge = this._mergers[iterator]; + merge = this.settings.mergeFit && Math.min(merge, this.settings.items) || merge; + + cache.items.merge = merge > 1 || cache.items.merge; + + widths[iterator] = !grid ? this._items[iterator].width() : width * merge; + } + + this._widths = widths; + } + }, { + filter: [ 'items', 'settings' ], + run: function() { + var clones = [], + items = this._items, + settings = this.settings, + // TODO: Should be computed from number of min width items in stage + view = Math.max(settings.items * 2, 4), + size = Math.ceil(items.length / 2) * 2, + repeat = settings.loop && items.length ? settings.rewind ? view : Math.max(view, size) : 0, + append = '', + prepend = ''; + + repeat /= 2; + + while (repeat > 0) { + // Switch to only using appended clones + clones.push(this.normalize(clones.length / 2, true)); + append = append + items[clones[clones.length - 1]][0].outerHTML; + clones.push(this.normalize(items.length - 1 - (clones.length - 1) / 2, true)); + prepend = items[clones[clones.length - 1]][0].outerHTML + prepend; + repeat -= 1; + } + + this._clones = clones; + + $(append).addClass('cloned').appendTo(this.$stage); + $(prepend).addClass('cloned').prependTo(this.$stage); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function() { + var rtl = this.settings.rtl ? 1 : -1, + size = this._clones.length + this._items.length, + iterator = -1, + previous = 0, + current = 0, + coordinates = []; + + while (++iterator < size) { + previous = coordinates[iterator - 1] || 0; + current = this._widths[this.relative(iterator)] + this.settings.margin; + coordinates.push(previous + current * rtl); + } + + this._coordinates = coordinates; + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function() { + var padding = this.settings.stagePadding, + coordinates = this._coordinates, + css = { + 'width': Math.ceil(Math.abs(coordinates[coordinates.length - 1])) + padding * 2, + 'padding-left': padding || '', + 'padding-right': padding || '' + }; + + this.$stage.css(css); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + var iterator = this._coordinates.length, + grid = !this.settings.autoWidth, + items = this.$stage.children(); + + if (grid && cache.items.merge) { + while (iterator--) { + cache.css.width = this._widths[this.relative(iterator)]; + items.eq(iterator).css(cache.css); + } + } else if (grid) { + cache.css.width = cache.items.width; + items.css(cache.css); + } + } + }, { + filter: [ 'items' ], + run: function() { + this._coordinates.length < 1 && this.$stage.removeAttr('style'); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + cache.current = cache.current ? this.$stage.children().index(cache.current) : 0; + cache.current = Math.max(this.minimum(), Math.min(this.maximum(), cache.current)); + this.reset(cache.current); + } + }, { + filter: [ 'position' ], + run: function() { + this.animate(this.coordinates(this._current)); + } + }, { + filter: [ 'width', 'position', 'items', 'settings' ], + run: function() { + var rtl = this.settings.rtl ? 1 : -1, + padding = this.settings.stagePadding * 2, + begin = this.coordinates(this.current()) + padding, + end = begin + this.width() * rtl, + inner, outer, matches = [], i, n; + + for (i = 0, n = this._coordinates.length; i < n; i++) { + inner = this._coordinates[i - 1] || 0; + outer = Math.abs(this._coordinates[i]) + padding * rtl; + + if ((this.op(inner, '<=', begin) && (this.op(inner, '>', end))) + || (this.op(outer, '<', begin) && this.op(outer, '>', end))) { + matches.push(i); + } + } + + this.$stage.children('.active').removeClass('active'); + this.$stage.children(':eq(' + matches.join('), :eq(') + ')').addClass('active'); + + this.$stage.children('.center').removeClass('center'); + if (this.settings.center) { + this.$stage.children().eq(this.current()).addClass('center'); + } + } + } ]; + + /** + * Create the stage DOM element + */ + Owl.prototype.initializeStage = function() { + this.$stage = this.$element.find('.' + this.settings.stageClass); + + // if the stage is already in the DOM, grab it and skip stage initialization + if (this.$stage.length) { + return; + } + + this.$element.addClass(this.options.loadingClass); + + // create stage + this.$stage = $('<' + this.settings.stageElement + '>', { + "class": this.settings.stageClass + }).wrap( $( '
', { + "class": this.settings.stageOuterClass + })); + + // append stage + this.$element.append(this.$stage.parent()); + }; + + /** + * Create item DOM elements + */ + Owl.prototype.initializeItems = function() { + var $items = this.$element.find('.owl-item'); + + // if the items are already in the DOM, grab them and skip item initialization + if ($items.length) { + this._items = $items.get().map(function(item) { + return $(item); + }); + + this._mergers = this._items.map(function() { + return 1; + }); + + this.refresh(); + + return; + } + + // append content + this.replace(this.$element.children().not(this.$stage.parent())); + + // check visibility + if (this.isVisible()) { + // update view + this.refresh(); + } else { + // invalidate width + this.invalidate('width'); + } + + this.$element + .removeClass(this.options.loadingClass) + .addClass(this.options.loadedClass); + }; + + /** + * Initializes the carousel. + * @protected + */ + Owl.prototype.initialize = function() { + this.enter('initializing'); + this.trigger('initialize'); + + this.$element.toggleClass(this.settings.rtlClass, this.settings.rtl); + + if (this.settings.autoWidth && !this.is('pre-loading')) { + var imgs, nestedSelector, width; + imgs = this.$element.find('img'); + nestedSelector = this.settings.nestedItemSelector ? '.' + this.settings.nestedItemSelector : undefined; + width = this.$element.children(nestedSelector).width(); + + if (imgs.length && width <= 0) { + this.preloadAutoWidthImages(imgs); + } + } + + this.initializeStage(); + this.initializeItems(); + + // register event handlers + this.registerEventHandlers(); + + this.leave('initializing'); + this.trigger('initialized'); + }; + + /** + * @returns {Boolean} visibility of $element + * if you know the carousel will always be visible you can set `checkVisibility` to `false` to + * prevent the expensive browser layout forced reflow the $element.is(':visible') does + */ + Owl.prototype.isVisible = function() { + return this.settings.checkVisibility + ? this.$element.is(':visible') + : true; + }; + + /** + * Setups the current settings. + * @todo Remove responsive classes. Why should adaptive designs be brought into IE8? + * @todo Support for media queries by using `matchMedia` would be nice. + * @public + */ + Owl.prototype.setup = function() { + var viewport = this.viewport(), + overwrites = this.options.responsive, + match = -1, + settings = null; + + if (!overwrites) { + settings = $.extend({}, this.options); + } else { + $.each(overwrites, function(breakpoint) { + if (breakpoint <= viewport && breakpoint > match) { + match = Number(breakpoint); + } + }); + + settings = $.extend({}, this.options, overwrites[match]); + if (typeof settings.stagePadding === 'function') { + settings.stagePadding = settings.stagePadding(); + } + delete settings.responsive; + + // responsive class + if (settings.responsiveClass) { + this.$element.attr('class', + this.$element.attr('class').replace(new RegExp('(' + this.options.responsiveClass + '-)\\S+\\s', 'g'), '$1' + match) + ); + } + } + + this.trigger('change', { property: { name: 'settings', value: settings } }); + this._breakpoint = match; + this.settings = settings; + this.invalidate('settings'); + this.trigger('changed', { property: { name: 'settings', value: this.settings } }); + }; + + /** + * Updates option logic if necessery. + * @protected + */ + Owl.prototype.optionsLogic = function() { + if (this.settings.autoWidth) { + this.settings.stagePadding = false; + this.settings.merge = false; + } + }; + + /** + * Prepares an item before add. + * @todo Rename event parameter `content` to `item`. + * @protected + * @returns {jQuery|HTMLElement} - The item container. + */ + Owl.prototype.prepare = function(item) { + var event = this.trigger('prepare', { content: item }); + + if (!event.data) { + event.data = $('<' + this.settings.itemElement + '/>') + .addClass(this.options.itemClass).append(item) + } + + this.trigger('prepared', { content: event.data }); + + return event.data; + }; + + /** + * Updates the view. + * @public + */ + Owl.prototype.update = function() { + var i = 0, + n = this._pipe.length, + filter = $.proxy(function(p) { return this[p] }, this._invalidated), + cache = {}; + + while (i < n) { + if (this._invalidated.all || $.grep(this._pipe[i].filter, filter).length > 0) { + this._pipe[i].run(cache); + } + i++; + } + + this._invalidated = {}; + + !this.is('valid') && this.enter('valid'); + }; + + /** + * Gets the width of the view. + * @public + * @param {Owl.Width} [dimension=Owl.Width.Default] - The dimension to return. + * @returns {Number} - The width of the view in pixel. + */ + Owl.prototype.width = function(dimension) { + dimension = dimension || Owl.Width.Default; + switch (dimension) { + case Owl.Width.Inner: + case Owl.Width.Outer: + return this._width; + default: + return this._width - this.settings.stagePadding * 2 + this.settings.margin; + } + }; + + /** + * Refreshes the carousel primarily for adaptive purposes. + * @public + */ + Owl.prototype.refresh = function() { + this.enter('refreshing'); + this.trigger('refresh'); + + this.setup(); + + this.optionsLogic(); + + this.$element.addClass(this.options.refreshClass); + + this.update(); + + this.$element.removeClass(this.options.refreshClass); + + this.leave('refreshing'); + this.trigger('refreshed'); + }; + + /** + * Checks window `resize` event. + * @protected + */ + Owl.prototype.onThrottledResize = function() { + window.clearTimeout(this.resizeTimer); + this.resizeTimer = window.setTimeout(this._handlers.onResize, this.settings.responsiveRefreshRate); + }; + + /** + * Checks window `resize` event. + * @protected + */ + Owl.prototype.onResize = function() { + if (!this._items.length) { + return false; + } + + if (this._width === this.$element.width()) { + return false; + } + + if (!this.isVisible()) { + return false; + } + + this.enter('resizing'); + + if (this.trigger('resize').isDefaultPrevented()) { + this.leave('resizing'); + return false; + } + + this.invalidate('width'); + + this.refresh(); + + this.leave('resizing'); + this.trigger('resized'); + }; + + /** + * Registers event handlers. + * @todo Check `msPointerEnabled` + * @todo #261 + * @protected + */ + Owl.prototype.registerEventHandlers = function() { + if ($.support.transition) { + this.$stage.on($.support.transition.end + '.owl.core', $.proxy(this.onTransitionEnd, this)); + } + + if (this.settings.responsive !== false) { + this.on(window, 'resize', this._handlers.onThrottledResize); + } + + if (this.settings.mouseDrag) { + this.$element.addClass(this.options.dragClass); + this.$stage.on('mousedown.owl.core', $.proxy(this.onDragStart, this)); + this.$stage.on('dragstart.owl.core selectstart.owl.core', function() { return false }); + } + + if (this.settings.touchDrag){ + this.$stage.on('touchstart.owl.core', $.proxy(this.onDragStart, this)); + this.$stage.on('touchcancel.owl.core', $.proxy(this.onDragEnd, this)); + } + }; + + /** + * Handles `touchstart` and `mousedown` events. + * @todo Horizontal swipe threshold as option + * @todo #261 + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragStart = function(event) { + var stage = null; + + if (event.which === 3) { + return; + } + + if ($.support.transform) { + stage = this.$stage.css('transform').replace(/.*\(|\)| /g, '').split(','); + stage = { + x: stage[stage.length === 16 ? 12 : 4], + y: stage[stage.length === 16 ? 13 : 5] + }; + } else { + stage = this.$stage.position(); + stage = { + x: this.settings.rtl ? + stage.left + this.$stage.width() - this.width() + this.settings.margin : + stage.left, + y: stage.top + }; + } + + if (this.is('animating')) { + $.support.transform ? this.animate(stage.x) : this.$stage.stop() + this.invalidate('position'); + } + + this.$element.toggleClass(this.options.grabClass, event.type === 'mousedown'); + + this.speed(0); + + this._drag.time = new Date().getTime(); + this._drag.target = $(event.target); + this._drag.stage.start = stage; + this._drag.stage.current = stage; + this._drag.pointer = this.pointer(event); + + $(document).on('mouseup.owl.core touchend.owl.core', $.proxy(this.onDragEnd, this)); + + $(document).one('mousemove.owl.core touchmove.owl.core', $.proxy(function(event) { + var delta = this.difference(this._drag.pointer, this.pointer(event)); + + $(document).on('mousemove.owl.core touchmove.owl.core', $.proxy(this.onDragMove, this)); + + if (Math.abs(delta.x) < Math.abs(delta.y) && this.is('valid')) { + return; + } + + event.preventDefault(); + + this.enter('dragging'); + this.trigger('drag'); + }, this)); + }; + + /** + * Handles the `touchmove` and `mousemove` events. + * @todo #261 + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragMove = function(event) { + var minimum = null, + maximum = null, + pull = null, + delta = this.difference(this._drag.pointer, this.pointer(event)), + stage = this.difference(this._drag.stage.start, delta); + + if (!this.is('dragging')) { + return; + } + + event.preventDefault(); + + if (this.settings.loop) { + minimum = this.coordinates(this.minimum()); + maximum = this.coordinates(this.maximum() + 1) - minimum; + stage.x = (((stage.x - minimum) % maximum + maximum) % maximum) + minimum; + } else { + minimum = this.settings.rtl ? this.coordinates(this.maximum()) : this.coordinates(this.minimum()); + maximum = this.settings.rtl ? this.coordinates(this.minimum()) : this.coordinates(this.maximum()); + pull = this.settings.pullDrag ? -1 * delta.x / 5 : 0; + stage.x = Math.max(Math.min(stage.x, minimum + pull), maximum + pull); + } + + this._drag.stage.current = stage; + + this.animate(stage.x); + }; + + /** + * Handles the `touchend` and `mouseup` events. + * @todo #261 + * @todo Threshold for click event + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragEnd = function(event) { + var delta = this.difference(this._drag.pointer, this.pointer(event)), + stage = this._drag.stage.current, + direction = delta.x > 0 ^ this.settings.rtl ? 'left' : 'right'; + + $(document).off('.owl.core'); + + this.$element.removeClass(this.options.grabClass); + + if (delta.x !== 0 && this.is('dragging') || !this.is('valid')) { + this.speed(this.settings.dragEndSpeed || this.settings.smartSpeed); + this.current(this.closest(stage.x, delta.x !== 0 ? direction : this._drag.direction)); + this.invalidate('position'); + this.update(); + + this._drag.direction = direction; + + if (Math.abs(delta.x) > 3 || new Date().getTime() - this._drag.time > 300) { + this._drag.target.one('click.owl.core', function() { return false; }); + } + } + + if (!this.is('dragging')) { + return; + } + + this.leave('dragging'); + this.trigger('dragged'); + }; + + /** + * Gets absolute position of the closest item for a coordinate. + * @todo Setting `freeDrag` makes `closest` not reusable. See #165. + * @protected + * @param {Number} coordinate - The coordinate in pixel. + * @param {String} direction - The direction to check for the closest item. Ether `left` or `right`. + * @return {Number} - The absolute position of the closest item. + */ + Owl.prototype.closest = function(coordinate, direction) { + var position = -1, + pull = 30, + width = this.width(), + coordinates = this.coordinates(); + + if (!this.settings.freeDrag) { + // check closest item + $.each(coordinates, $.proxy(function(index, value) { + // on a left pull, check on current index + if (direction === 'left' && coordinate > value - pull && coordinate < value + pull) { + position = index; + // on a right pull, check on previous index + // to do so, subtract width from value and set position = index + 1 + } else if (direction === 'right' && coordinate > value - width - pull && coordinate < value - width + pull) { + position = index + 1; + } else if (this.op(coordinate, '<', value) + && this.op(coordinate, '>', coordinates[index + 1] !== undefined ? coordinates[index + 1] : value - width)) { + position = direction === 'left' ? index + 1 : index; + } + return position === -1; + }, this)); + } + + if (!this.settings.loop) { + // non loop boundries + if (this.op(coordinate, '>', coordinates[this.minimum()])) { + position = coordinate = this.minimum(); + } else if (this.op(coordinate, '<', coordinates[this.maximum()])) { + position = coordinate = this.maximum(); + } + } + + return position; + }; + + /** + * Animates the stage. + * @todo #270 + * @public + * @param {Number} coordinate - The coordinate in pixels. + */ + Owl.prototype.animate = function(coordinate) { + var animate = this.speed() > 0; + + this.is('animating') && this.onTransitionEnd(); + + if (animate) { + this.enter('animating'); + this.trigger('translate'); + } + + if ($.support.transform3d && $.support.transition) { + this.$stage.css({ + transform: 'translate3d(' + coordinate + 'px,0px,0px)', + transition: (this.speed() / 1000) + 's' + ( + this.settings.slideTransition ? ' ' + this.settings.slideTransition : '' + ) + }); + } else if (animate) { + this.$stage.animate({ + left: coordinate + 'px' + }, this.speed(), this.settings.fallbackEasing, $.proxy(this.onTransitionEnd, this)); + } else { + this.$stage.css({ + left: coordinate + 'px' + }); + } + }; + + /** + * Checks whether the carousel is in a specific state or not. + * @param {String} state - The state to check. + * @returns {Boolean} - The flag which indicates if the carousel is busy. + */ + Owl.prototype.is = function(state) { + return this._states.current[state] && this._states.current[state] > 0; + }; + + /** + * Sets the absolute position of the current item. + * @public + * @param {Number} [position] - The new absolute position or nothing to leave it unchanged. + * @returns {Number} - The absolute position of the current item. + */ + Owl.prototype.current = function(position) { + if (position === undefined) { + return this._current; + } + + if (this._items.length === 0) { + return undefined; + } + + position = this.normalize(position); + + if (this._current !== position) { + var event = this.trigger('change', { property: { name: 'position', value: position } }); + + if (event.data !== undefined) { + position = this.normalize(event.data); + } + + this._current = position; + + this.invalidate('position'); + + this.trigger('changed', { property: { name: 'position', value: this._current } }); + } + + return this._current; + }; + + /** + * Invalidates the given part of the update routine. + * @param {String} [part] - The part to invalidate. + * @returns {Array.} - The invalidated parts. + */ + Owl.prototype.invalidate = function(part) { + if ($.type(part) === 'string') { + this._invalidated[part] = true; + this.is('valid') && this.leave('valid'); + } + return $.map(this._invalidated, function(v, i) { return i }); + }; + + /** + * Resets the absolute position of the current item. + * @public + * @param {Number} position - The absolute position of the new item. + */ + Owl.prototype.reset = function(position) { + position = this.normalize(position); + + if (position === undefined) { + return; + } + + this._speed = 0; + this._current = position; + + this.suppress([ 'translate', 'translated' ]); + + this.animate(this.coordinates(position)); + + this.release([ 'translate', 'translated' ]); + }; + + /** + * Normalizes an absolute or a relative position of an item. + * @public + * @param {Number} position - The absolute or relative position to normalize. + * @param {Boolean} [relative=false] - Whether the given position is relative or not. + * @returns {Number} - The normalized position. + */ + Owl.prototype.normalize = function(position, relative) { + var n = this._items.length, + m = relative ? 0 : this._clones.length; + + if (!this.isNumeric(position) || n < 1) { + position = undefined; + } else if (position < 0 || position >= n + m) { + position = ((position - m / 2) % n + n) % n + m / 2; + } + + return position; + }; + + /** + * Converts an absolute position of an item into a relative one. + * @public + * @param {Number} position - The absolute position to convert. + * @returns {Number} - The converted position. + */ + Owl.prototype.relative = function(position) { + position -= this._clones.length / 2; + return this.normalize(position, true); + }; + + /** + * Gets the maximum position for the current item. + * @public + * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position. + * @returns {Number} + */ + Owl.prototype.maximum = function(relative) { + var settings = this.settings, + maximum = this._coordinates.length, + iterator, + reciprocalItemsWidth, + elementWidth; + + if (settings.loop) { + maximum = this._clones.length / 2 + this._items.length - 1; + } else if (settings.autoWidth || settings.merge) { + iterator = this._items.length; + if (iterator) { + reciprocalItemsWidth = this._items[--iterator].width(); + elementWidth = this.$element.width(); + while (iterator--) { + reciprocalItemsWidth += this._items[iterator].width() + this.settings.margin; + if (reciprocalItemsWidth > elementWidth) { + break; + } + } + } + maximum = iterator + 1; + } else if (settings.center) { + maximum = this._items.length - 1; + } else { + maximum = this._items.length - settings.items; + } + + if (relative) { + maximum -= this._clones.length / 2; + } + + return Math.max(maximum, 0); + }; + + /** + * Gets the minimum position for the current item. + * @public + * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position. + * @returns {Number} + */ + Owl.prototype.minimum = function(relative) { + return relative ? 0 : this._clones.length / 2; + }; + + /** + * Gets an item at the specified relative position. + * @public + * @param {Number} [position] - The relative position of the item. + * @return {jQuery|Array.} - The item at the given position or all items if no position was given. + */ + Owl.prototype.items = function(position) { + if (position === undefined) { + return this._items.slice(); + } + + position = this.normalize(position, true); + return this._items[position]; + }; + + /** + * Gets an item at the specified relative position. + * @public + * @param {Number} [position] - The relative position of the item. + * @return {jQuery|Array.} - The item at the given position or all items if no position was given. + */ + Owl.prototype.mergers = function(position) { + if (position === undefined) { + return this._mergers.slice(); + } + + position = this.normalize(position, true); + return this._mergers[position]; + }; + + /** + * Gets the absolute positions of clones for an item. + * @public + * @param {Number} [position] - The relative position of the item. + * @returns {Array.} - The absolute positions of clones for the item or all if no position was given. + */ + Owl.prototype.clones = function(position) { + var odd = this._clones.length / 2, + even = odd + this._items.length, + map = function(index) { return index % 2 === 0 ? even + index / 2 : odd - (index + 1) / 2 }; + + if (position === undefined) { + return $.map(this._clones, function(v, i) { return map(i) }); + } + + return $.map(this._clones, function(v, i) { return v === position ? map(i) : null }); + }; + + /** + * Sets the current animation speed. + * @public + * @param {Number} [speed] - The animation speed in milliseconds or nothing to leave it unchanged. + * @returns {Number} - The current animation speed in milliseconds. + */ + Owl.prototype.speed = function(speed) { + if (speed !== undefined) { + this._speed = speed; + } + + return this._speed; + }; + + /** + * Gets the coordinate of an item. + * @todo The name of this method is missleanding. + * @public + * @param {Number} position - The absolute position of the item within `minimum()` and `maximum()`. + * @returns {Number|Array.} - The coordinate of the item in pixel or all coordinates. + */ + Owl.prototype.coordinates = function(position) { + var multiplier = 1, + newPosition = position - 1, + coordinate; + + if (position === undefined) { + return $.map(this._coordinates, $.proxy(function(coordinate, index) { + return this.coordinates(index); + }, this)); + } + + if (this.settings.center) { + if (this.settings.rtl) { + multiplier = -1; + newPosition = position + 1; + } + + coordinate = this._coordinates[position]; + coordinate += (this.width() - coordinate + (this._coordinates[newPosition] || 0)) / 2 * multiplier; + } else { + coordinate = this._coordinates[newPosition] || 0; + } + + coordinate = Math.ceil(coordinate); + + return coordinate; + }; + + /** + * Calculates the speed for a translation. + * @protected + * @param {Number} from - The absolute position of the start item. + * @param {Number} to - The absolute position of the target item. + * @param {Number} [factor=undefined] - The time factor in milliseconds. + * @returns {Number} - The time in milliseconds for the translation. + */ + Owl.prototype.duration = function(from, to, factor) { + if (factor === 0) { + return 0; + } + + return Math.min(Math.max(Math.abs(to - from), 1), 6) * Math.abs((factor || this.settings.smartSpeed)); + }; + + /** + * Slides to the specified item. + * @public + * @param {Number} position - The position of the item. + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.to = function(position, speed) { + var current = this.current(), + revert = null, + distance = position - this.relative(current), + direction = (distance > 0) - (distance < 0), + items = this._items.length, + minimum = this.minimum(), + maximum = this.maximum(); + + if (this.settings.loop) { + if (!this.settings.rewind && Math.abs(distance) > items / 2) { + distance += direction * -1 * items; + } + + position = current + distance; + revert = ((position - minimum) % items + items) % items + minimum; + + if (revert !== position && revert - distance <= maximum && revert - distance > 0) { + current = revert - distance; + position = revert; + this.reset(current); + } + } else if (this.settings.rewind) { + maximum += 1; + position = (position % maximum + maximum) % maximum; + } else { + position = Math.max(minimum, Math.min(maximum, position)); + } + + this.speed(this.duration(current, position, speed)); + this.current(position); + + if (this.isVisible()) { + this.update(); + } + }; + + /** + * Slides to the next item. + * @public + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.next = function(speed) { + speed = speed || false; + this.to(this.relative(this.current()) + 1, speed); + }; + + /** + * Slides to the previous item. + * @public + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.prev = function(speed) { + speed = speed || false; + this.to(this.relative(this.current()) - 1, speed); + }; + + /** + * Handles the end of an animation. + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onTransitionEnd = function(event) { + + // if css2 animation then event object is undefined + if (event !== undefined) { + event.stopPropagation(); + + // Catch only owl-stage transitionEnd event + if ((event.target || event.srcElement || event.originalTarget) !== this.$stage.get(0)) { + return false; + } + } + + this.leave('animating'); + this.trigger('translated'); + }; + + /** + * Gets viewport width. + * @protected + * @return {Number} - The width in pixel. + */ + Owl.prototype.viewport = function() { + var width; + if (this.options.responsiveBaseElement !== window) { + width = $(this.options.responsiveBaseElement).width(); + } else if (window.innerWidth) { + width = window.innerWidth; + } else if (document.documentElement && document.documentElement.clientWidth) { + width = document.documentElement.clientWidth; + } else { + console.warn('Can not detect viewport width.'); + } + return width; + }; + + /** + * Replaces the current content. + * @public + * @param {HTMLElement|jQuery|String} content - The new content. + */ + Owl.prototype.replace = function(content) { + this.$stage.empty(); + this._items = []; + + if (content) { + content = (content instanceof jQuery) ? content : $(content); + } + + if (this.settings.nestedItemSelector) { + content = content.find('.' + this.settings.nestedItemSelector); + } + + content.filter(function() { + return this.nodeType === 1; + }).each($.proxy(function(index, item) { + item = this.prepare(item); + this.$stage.append(item); + this._items.push(item); + this._mergers.push(item.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1); + }, this)); + + this.reset(this.isNumeric(this.settings.startPosition) ? this.settings.startPosition : 0); + + this.invalidate('items'); + }; + + /** + * Adds an item. + * @todo Use `item` instead of `content` for the event arguments. + * @public + * @param {HTMLElement|jQuery|String} content - The item content to add. + * @param {Number} [position] - The relative position at which to insert the item otherwise the item will be added to the end. + */ + Owl.prototype.add = function(content, position) { + var current = this.relative(this._current); + + position = position === undefined ? this._items.length : this.normalize(position, true); + content = content instanceof jQuery ? content : $(content); + + this.trigger('add', { content: content, position: position }); + + content = this.prepare(content); + + if (this._items.length === 0 || position === this._items.length) { + this._items.length === 0 && this.$stage.append(content); + this._items.length !== 0 && this._items[position - 1].after(content); + this._items.push(content); + this._mergers.push(content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1); + } else { + this._items[position].before(content); + this._items.splice(position, 0, content); + this._mergers.splice(position, 0, content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1); + } + + this._items[current] && this.reset(this._items[current].index()); + + this.invalidate('items'); + + this.trigger('added', { content: content, position: position }); + }; + + /** + * Removes an item by its position. + * @todo Use `item` instead of `content` for the event arguments. + * @public + * @param {Number} position - The relative position of the item to remove. + */ + Owl.prototype.remove = function(position) { + position = this.normalize(position, true); + + if (position === undefined) { + return; + } + + this.trigger('remove', { content: this._items[position], position: position }); + + this._items[position].remove(); + this._items.splice(position, 1); + this._mergers.splice(position, 1); + + this.invalidate('items'); + + this.trigger('removed', { content: null, position: position }); + }; + + /** + * Preloads images with auto width. + * @todo Replace by a more generic approach + * @protected + */ + Owl.prototype.preloadAutoWidthImages = function(images) { + images.each($.proxy(function(i, element) { + this.enter('pre-loading'); + element = $(element); + $(new Image()).one('load', $.proxy(function(e) { + element.attr('src', e.target.src); + element.css('opacity', 1); + this.leave('pre-loading'); + !this.is('pre-loading') && !this.is('initializing') && this.refresh(); + }, this)).attr('src', element.attr('src') || element.attr('data-src') || element.attr('data-src-retina')); + }, this)); + }; + + /** + * Destroys the carousel. + * @public + */ + Owl.prototype.destroy = function() { + + this.$element.off('.owl.core'); + this.$stage.off('.owl.core'); + $(document).off('.owl.core'); + + if (this.settings.responsive !== false) { + window.clearTimeout(this.resizeTimer); + this.off(window, 'resize', this._handlers.onThrottledResize); + } + + for (var i in this._plugins) { + this._plugins[i].destroy(); + } + + this.$stage.children('.cloned').remove(); + + this.$stage.unwrap(); + this.$stage.children().contents().unwrap(); + this.$stage.children().unwrap(); + this.$stage.remove(); + this.$element + .removeClass(this.options.refreshClass) + .removeClass(this.options.loadingClass) + .removeClass(this.options.loadedClass) + .removeClass(this.options.rtlClass) + .removeClass(this.options.dragClass) + .removeClass(this.options.grabClass) + .attr('class', this.$element.attr('class').replace(new RegExp(this.options.responsiveClass + '-\\S+\\s', 'g'), '')) + .removeData('owl.carousel'); + }; + + /** + * Operators to calculate right-to-left and left-to-right. + * @protected + * @param {Number} [a] - The left side operand. + * @param {String} [o] - The operator. + * @param {Number} [b] - The right side operand. + */ + Owl.prototype.op = function(a, o, b) { + var rtl = this.settings.rtl; + switch (o) { + case '<': + return rtl ? a > b : a < b; + case '>': + return rtl ? a < b : a > b; + case '>=': + return rtl ? a <= b : a >= b; + case '<=': + return rtl ? a >= b : a <= b; + default: + break; + } + }; + + /** + * Attaches to an internal event. + * @protected + * @param {HTMLElement} element - The event source. + * @param {String} event - The event name. + * @param {Function} listener - The event handler to attach. + * @param {Boolean} capture - Wether the event should be handled at the capturing phase or not. + */ + Owl.prototype.on = function(element, event, listener, capture) { + if (element.addEventListener) { + element.addEventListener(event, listener, capture); + } else if (element.attachEvent) { + element.attachEvent('on' + event, listener); + } + }; + + /** + * Detaches from an internal event. + * @protected + * @param {HTMLElement} element - The event source. + * @param {String} event - The event name. + * @param {Function} listener - The attached event handler to detach. + * @param {Boolean} capture - Wether the attached event handler was registered as a capturing listener or not. + */ + Owl.prototype.off = function(element, event, listener, capture) { + if (element.removeEventListener) { + element.removeEventListener(event, listener, capture); + } else if (element.detachEvent) { + element.detachEvent('on' + event, listener); + } + }; + + /** + * Triggers a public event. + * @todo Remove `status`, `relatedTarget` should be used instead. + * @protected + * @param {String} name - The event name. + * @param {*} [data=null] - The event data. + * @param {String} [namespace=carousel] - The event namespace. + * @param {String} [state] - The state which is associated with the event. + * @param {Boolean} [enter=false] - Indicates if the call enters the specified state or not. + * @returns {Event} - The event arguments. + */ + Owl.prototype.trigger = function(name, data, namespace, state, enter) { + var status = { + item: { count: this._items.length, index: this.current() } + }, handler = $.camelCase( + $.grep([ 'on', name, namespace ], function(v) { return v }) + .join('-').toLowerCase() + ), event = $.Event( + [ name, 'owl', namespace || 'carousel' ].join('.').toLowerCase(), + $.extend({ relatedTarget: this }, status, data) + ); + + if (!this._supress[name]) { + $.each(this._plugins, function(name, plugin) { + if (plugin.onTrigger) { + plugin.onTrigger(event); + } + }); + + this.register({ type: Owl.Type.Event, name: name }); + this.$element.trigger(event); + + if (this.settings && typeof this.settings[handler] === 'function') { + this.settings[handler].call(this, event); + } + } + + return event; + }; + + /** + * Enters a state. + * @param name - The state name. + */ + Owl.prototype.enter = function(name) { + $.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) { + if (this._states.current[name] === undefined) { + this._states.current[name] = 0; + } + + this._states.current[name]++; + }, this)); + }; + + /** + * Leaves a state. + * @param name - The state name. + */ + Owl.prototype.leave = function(name) { + $.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) { + this._states.current[name]--; + }, this)); + }; + + /** + * Registers an event or state. + * @public + * @param {Object} object - The event or state to register. + */ + Owl.prototype.register = function(object) { + if (object.type === Owl.Type.Event) { + if (!$.event.special[object.name]) { + $.event.special[object.name] = {}; + } + + if (!$.event.special[object.name].owl) { + var _default = $.event.special[object.name]._default; + $.event.special[object.name]._default = function(e) { + if (_default && _default.apply && (!e.namespace || e.namespace.indexOf('owl') === -1)) { + return _default.apply(this, arguments); + } + return e.namespace && e.namespace.indexOf('owl') > -1; + }; + $.event.special[object.name].owl = true; + } + } else if (object.type === Owl.Type.State) { + if (!this._states.tags[object.name]) { + this._states.tags[object.name] = object.tags; + } else { + this._states.tags[object.name] = this._states.tags[object.name].concat(object.tags); + } + + this._states.tags[object.name] = $.grep(this._states.tags[object.name], $.proxy(function(tag, i) { + return $.inArray(tag, this._states.tags[object.name]) === i; + }, this)); + } + }; + + /** + * Suppresses events. + * @protected + * @param {Array.} events - The events to suppress. + */ + Owl.prototype.suppress = function(events) { + $.each(events, $.proxy(function(index, event) { + this._supress[event] = true; + }, this)); + }; + + /** + * Releases suppressed events. + * @protected + * @param {Array.} events - The events to release. + */ + Owl.prototype.release = function(events) { + $.each(events, $.proxy(function(index, event) { + delete this._supress[event]; + }, this)); + }; + + /** + * Gets unified pointer coordinates from event. + * @todo #261 + * @protected + * @param {Event} - The `mousedown` or `touchstart` event. + * @returns {Object} - Contains `x` and `y` coordinates of current pointer position. + */ + Owl.prototype.pointer = function(event) { + var result = { x: null, y: null }; + + event = event.originalEvent || event || window.event; + + event = event.touches && event.touches.length ? + event.touches[0] : event.changedTouches && event.changedTouches.length ? + event.changedTouches[0] : event; + + if (event.pageX) { + result.x = event.pageX; + result.y = event.pageY; + } else { + result.x = event.clientX; + result.y = event.clientY; + } + + return result; + }; + + /** + * Determines if the input is a Number or something that can be coerced to a Number + * @protected + * @param {Number|String|Object|Array|Boolean|RegExp|Function|Symbol} - The input to be tested + * @returns {Boolean} - An indication if the input is a Number or can be coerced to a Number + */ + Owl.prototype.isNumeric = function(number) { + return !isNaN(parseFloat(number)); + }; + + /** + * Gets the difference of two vectors. + * @todo #261 + * @protected + * @param {Object} - The first vector. + * @param {Object} - The second vector. + * @returns {Object} - The difference. + */ + Owl.prototype.difference = function(first, second) { + return { + x: first.x - second.x, + y: first.y - second.y + }; + }; + + /** + * The jQuery Plugin for the Owl Carousel + * @todo Navigation plugin `next` and `prev` + * @public + */ + $.fn.owlCarousel = function(option) { + var args = Array.prototype.slice.call(arguments, 1); + + return this.each(function() { + var $this = $(this), + data = $this.data('owl.carousel'); + + if (!data) { + data = new Owl(this, typeof option == 'object' && option); + $this.data('owl.carousel', data); + + $.each([ + 'next', 'prev', 'to', 'destroy', 'refresh', 'replace', 'add', 'remove' + ], function(i, event) { + data.register({ type: Owl.Type.Event, name: event }); + data.$element.on(event + '.owl.carousel.core', $.proxy(function(e) { + if (e.namespace && e.relatedTarget !== this) { + this.suppress([ event ]); + data[event].apply(this, [].slice.call(arguments, 1)); + this.release([ event ]); + } + }, data)); + }); + } + + if (typeof option == 'string' && option.charAt(0) !== '_') { + data[option].apply(data, args); + } + }); + }; + + /** + * The constructor for the jQuery Plugin + * @public + */ + $.fn.owlCarousel.Constructor = Owl; + +})(window.Zepto || window.jQuery, window, document); + +/** + * AutoRefresh Plugin + * @version 2.3.4 + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the auto refresh plugin. + * @class The Auto Refresh Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var AutoRefresh = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Refresh interval. + * @protected + * @type {number} + */ + this._interval = null; + + /** + * Whether the element is currently visible or not. + * @protected + * @type {Boolean} + */ + this._visible = null; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoRefresh) { + this.watch(); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, AutoRefresh.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + */ + AutoRefresh.Defaults = { + autoRefresh: true, + autoRefreshInterval: 500 + }; + + /** + * Watches the element. + */ + AutoRefresh.prototype.watch = function() { + if (this._interval) { + return; + } + + this._visible = this._core.isVisible(); + this._interval = window.setInterval($.proxy(this.refresh, this), this._core.settings.autoRefreshInterval); + }; + + /** + * Refreshes the element. + */ + AutoRefresh.prototype.refresh = function() { + if (this._core.isVisible() === this._visible) { + return; + } + + this._visible = !this._visible; + + this._core.$element.toggleClass('owl-hidden', !this._visible); + + this._visible && (this._core.invalidate('width') && this._core.refresh()); + }; + + /** + * Destroys the plugin. + */ + AutoRefresh.prototype.destroy = function() { + var handler, property; + + window.clearInterval(this._interval); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.AutoRefresh = AutoRefresh; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Lazy Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the lazy plugin. + * @class The Lazy Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Lazy = function(carousel) { + + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Already loaded items. + * @protected + * @type {Array.} + */ + this._loaded = []; + + /** + * Event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel change.owl.carousel resized.owl.carousel': $.proxy(function(e) { + if (!e.namespace) { + return; + } + + if (!this._core.settings || !this._core.settings.lazyLoad) { + return; + } + + if ((e.property && e.property.name == 'position') || e.type == 'initialized') { + var settings = this._core.settings, + n = (settings.center && Math.ceil(settings.items / 2) || settings.items), + i = ((settings.center && n * -1) || 0), + position = (e.property && e.property.value !== undefined ? e.property.value : this._core.current()) + i, + clones = this._core.clones().length, + load = $.proxy(function(i, v) { this.load(v) }, this); + //TODO: Need documentation for this new option + if (settings.lazyLoadEager > 0) { + n += settings.lazyLoadEager; + // If the carousel is looping also preload images that are to the "left" + if (settings.loop) { + position -= settings.lazyLoadEager; + n++; + } + } + + while (i++ < n) { + this.load(clones / 2 + this._core.relative(position)); + clones && $.each(this._core.clones(this._core.relative(position)), load); + position++; + } + } + }, this) + }; + + // set the default options + this._core.options = $.extend({}, Lazy.Defaults, this._core.options); + + // register event handler + this._core.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + */ + Lazy.Defaults = { + lazyLoad: false, + lazyLoadEager: 0 + }; + + /** + * Loads all resources of an item at the specified position. + * @param {Number} position - The absolute position of the item. + * @protected + */ + Lazy.prototype.load = function(position) { + var $item = this._core.$stage.children().eq(position), + $elements = $item && $item.find('.owl-lazy'); + + if (!$elements || $.inArray($item.get(0), this._loaded) > -1) { + return; + } + + $elements.each($.proxy(function(index, element) { + var $element = $(element), image, + url = (window.devicePixelRatio > 1 && $element.attr('data-src-retina')) || $element.attr('data-src') || $element.attr('data-srcset'); + + this._core.trigger('load', { element: $element, url: url }, 'lazy'); + + if ($element.is('img')) { + $element.one('load.owl.lazy', $.proxy(function() { + $element.css('opacity', 1); + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this)).attr('src', url); + } else if ($element.is('source')) { + $element.one('load.owl.lazy', $.proxy(function() { + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this)).attr('srcset', url); + } else { + image = new Image(); + image.onload = $.proxy(function() { + $element.css({ + 'background-image': 'url("' + url + '")', + 'opacity': '1' + }); + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this); + image.src = url; + } + }, this)); + + this._loaded.push($item.get(0)); + }; + + /** + * Destroys the plugin. + * @public + */ + Lazy.prototype.destroy = function() { + var handler, property; + + for (handler in this.handlers) { + this._core.$element.off(handler, this.handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Lazy = Lazy; + +})(window.Zepto || window.jQuery, window, document); + +/** + * AutoHeight Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the auto height plugin. + * @class The Auto Height Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var AutoHeight = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + this._previousHeight = null; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoHeight) { + this.update(); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoHeight && e.property.name === 'position'){ + this.update(); + } + }, this), + 'loaded.owl.lazy': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoHeight + && e.element.closest('.' + this._core.settings.itemClass).index() === this._core.current()) { + this.update(); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, AutoHeight.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + this._intervalId = null; + var refThis = this; + + // These changes have been taken from a PR by gavrochelegnou proposed in #1575 + // and have been made compatible with the latest jQuery version + $(window).on('load', function() { + if (refThis._core.settings.autoHeight) { + refThis.update(); + } + }); + + // Autoresize the height of the carousel when window is resized + // When carousel has images, the height is dependent on the width + // and should also change on resize + $(window).resize(function() { + if (refThis._core.settings.autoHeight) { + if (refThis._intervalId != null) { + clearTimeout(refThis._intervalId); + } + + refThis._intervalId = setTimeout(function() { + refThis.update(); + }, 250); + } + }); + + }; + + /** + * Default options. + * @public + */ + AutoHeight.Defaults = { + autoHeight: false, + autoHeightClass: 'owl-height' + }; + + /** + * Updates the view. + */ + AutoHeight.prototype.update = function() { + var start = this._core._current, + end = start + this._core.settings.items, + lazyLoadEnabled = this._core.settings.lazyLoad, + visible = this._core.$stage.children().toArray().slice(start, end), + heights = [], + maxheight = 0; + + $.each(visible, function(index, item) { + heights.push($(item).height()); + }); + + maxheight = Math.max.apply(null, heights); + + if (maxheight <= 1 && lazyLoadEnabled && this._previousHeight) { + maxheight = this._previousHeight; + } + + this._previousHeight = maxheight; + + this._core.$stage.parent() + .height(maxheight) + .addClass(this._core.settings.autoHeightClass); + }; + + AutoHeight.prototype.destroy = function() { + var handler, property; + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] !== 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.AutoHeight = AutoHeight; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Video Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the video plugin. + * @class The Video Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Video = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Cache all video URLs. + * @protected + * @type {Object} + */ + this._videos = {}; + + /** + * Current playing item. + * @protected + * @type {jQuery} + */ + this._playing = null; + + /** + * All event handlers. + * @todo The cloned content removale is too late + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace) { + this._core.register({ type: 'state', name: 'playing', tags: [ 'interacting' ] }); + } + }, this), + 'resize.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.video && this.isInFullScreen()) { + e.preventDefault(); + } + }, this), + 'refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.is('resizing')) { + this._core.$stage.find('.cloned .owl-video-frame').remove(); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name === 'position' && this._playing) { + this.stop(); + } + }, this), + 'prepared.owl.carousel': $.proxy(function(e) { + if (!e.namespace) { + return; + } + + var $element = $(e.content).find('.owl-video'); + + if ($element.length) { + $element.css('display', 'none'); + this.fetch($element, $(e.content)); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, Video.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + + this._core.$element.on('click.owl.video', '.owl-video-play-icon', $.proxy(function(e) { + this.play(e); + }, this)); + }; + + /** + * Default options. + * @public + */ + Video.Defaults = { + video: false, + videoHeight: false, + videoWidth: false + }; + + /** + * Gets the video ID and the type (YouTube/Vimeo/vzaar only). + * @protected + * @param {jQuery} target - The target containing the video data. + * @param {jQuery} item - The item containing the video. + */ + Video.prototype.fetch = function(target, item) { + var type = (function() { + if (target.attr('data-vimeo-id')) { + return 'vimeo'; + } else if (target.attr('data-vzaar-id')) { + return 'vzaar' + } else { + return 'youtube'; + } + })(), + id = target.attr('data-vimeo-id') || target.attr('data-youtube-id') || target.attr('data-vzaar-id'), + width = target.attr('data-width') || this._core.settings.videoWidth, + height = target.attr('data-height') || this._core.settings.videoHeight, + url = target.attr('href'); + + if (url) { + + /* + Parses the id's out of the following urls (and probably more): + https://www.youtube.com/watch?v=:id + https://youtu.be/:id + https://vimeo.com/:id + https://vimeo.com/channels/:channel/:id + https://vimeo.com/groups/:group/videos/:id + https://app.vzaar.com/videos/:id + + Visual example: https://regexper.com/#(http%3A%7Chttps%3A%7C)%5C%2F%5C%2F(player.%7Cwww.%7Capp.)%3F(vimeo%5C.com%7Cyoutu(be%5C.com%7C%5C.be%7Cbe%5C.googleapis%5C.com)%7Cvzaar%5C.com)%5C%2F(video%5C%2F%7Cvideos%5C%2F%7Cembed%5C%2F%7Cchannels%5C%2F.%2B%5C%2F%7Cgroups%5C%2F.%2B%5C%2F%7Cwatch%5C%3Fv%3D%7Cv%5C%2F)%3F(%5BA-Za-z0-9._%25-%5D*)(%5C%26%5CS%2B)%3F + */ + + id = url.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com|be\-nocookie\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/); + + if (id[3].indexOf('youtu') > -1) { + type = 'youtube'; + } else if (id[3].indexOf('vimeo') > -1) { + type = 'vimeo'; + } else if (id[3].indexOf('vzaar') > -1) { + type = 'vzaar'; + } else { + throw new Error('Video URL not supported.'); + } + id = id[6]; + } else { + throw new Error('Missing video URL.'); + } + + this._videos[url] = { + type: type, + id: id, + width: width, + height: height + }; + + item.attr('data-video', url); + + this.thumbnail(target, this._videos[url]); + }; + + /** + * Creates video thumbnail. + * @protected + * @param {jQuery} target - The target containing the video data. + * @param {Object} info - The video info object. + * @see `fetch` + */ + Video.prototype.thumbnail = function(target, video) { + var tnLink, + icon, + path, + dimensions = video.width && video.height ? 'width:' + video.width + 'px;height:' + video.height + 'px;' : '', + customTn = target.find('img'), + srcType = 'src', + lazyClass = '', + settings = this._core.settings, + create = function(path) { + icon = '
'; + + if (settings.lazyLoad) { + tnLink = $('
',{ + "class": 'owl-video-tn ' + lazyClass, + "srcType": path + }); + } else { + tnLink = $( '
', { + "class": "owl-video-tn", + "style": 'opacity:1;background-image:url(' + path + ')' + }); + } + target.after(tnLink); + target.after(icon); + }; + + // wrap video content into owl-video-wrapper div + target.wrap( $( '
', { + "class": "owl-video-wrapper", + "style": dimensions + })); + + if (this._core.settings.lazyLoad) { + srcType = 'data-src'; + lazyClass = 'owl-lazy'; + } + + // custom thumbnail + if (customTn.length) { + create(customTn.attr(srcType)); + customTn.remove(); + return false; + } + + if (video.type === 'youtube') { + path = "//img.youtube.com/vi/" + video.id + "/hqdefault.jpg"; + create(path); + } else if (video.type === 'vimeo') { + $.ajax({ + type: 'GET', + url: '//vimeo.com/api/v2/video/' + video.id + '.json', + jsonp: 'callback', + dataType: 'jsonp', + success: function(data) { + path = data[0].thumbnail_large; + create(path); + } + }); + } else if (video.type === 'vzaar') { + $.ajax({ + type: 'GET', + url: '//vzaar.com/api/videos/' + video.id + '.json', + jsonp: 'callback', + dataType: 'jsonp', + success: function(data) { + path = data.framegrab_url; + create(path); + } + }); + } + }; + + /** + * Stops the current video. + * @public + */ + Video.prototype.stop = function() { + this._core.trigger('stop', null, 'video'); + this._playing.find('.owl-video-frame').remove(); + this._playing.removeClass('owl-video-playing'); + this._playing = null; + this._core.leave('playing'); + this._core.trigger('stopped', null, 'video'); + }; + + /** + * Starts the current video. + * @public + * @param {Event} event - The event arguments. + */ + Video.prototype.play = function(event) { + var target = $(event.target), + item = target.closest('.' + this._core.settings.itemClass), + video = this._videos[item.attr('data-video')], + width = video.width || '100%', + height = video.height || this._core.$stage.height(), + html, + iframe; + + if (this._playing) { + return; + } + + this._core.enter('playing'); + this._core.trigger('play', null, 'video'); + + item = this._core.items(this._core.relative(item.index())); + + this._core.reset(item.index()); + + html = $( '' ); + html.attr( 'height', height ); + html.attr( 'width', width ); + if (video.type === 'youtube') { + html.attr( 'src', '//www.youtube.com/embed/' + video.id + '?autoplay=1&rel=0&v=' + video.id ); + } else if (video.type === 'vimeo') { + html.attr( 'src', '//player.vimeo.com/video/' + video.id + '?autoplay=1' ); + } else if (video.type === 'vzaar') { + html.attr( 'src', '//view.vzaar.com/' + video.id + '/player?autoplay=true' ); + } + + iframe = $(html).wrap( '
' ).insertAfter(item.find('.owl-video')); + + this._playing = item.addClass('owl-video-playing'); + }; + + /** + * Checks whether an video is currently in full screen mode or not. + * @todo Bad style because looks like a readonly method but changes members. + * @protected + * @returns {Boolean} + */ + Video.prototype.isInFullScreen = function() { + var element = document.fullscreenElement || document.mozFullScreenElement || + document.webkitFullscreenElement; + + return element && $(element).parent().hasClass('owl-video-frame'); + }; + + /** + * Destroys the plugin. + */ + Video.prototype.destroy = function() { + var handler, property; + + this._core.$element.off('click.owl.video'); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Video = Video; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Animate Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the animate plugin. + * @class The Navigation Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Animate = function(scope) { + this.core = scope; + this.core.options = $.extend({}, Animate.Defaults, this.core.options); + this.swapping = true; + this.previous = undefined; + this.next = undefined; + + this.handlers = { + 'change.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name == 'position') { + this.previous = this.core.current(); + this.next = e.property.value; + } + }, this), + 'drag.owl.carousel dragged.owl.carousel translated.owl.carousel': $.proxy(function(e) { + if (e.namespace) { + this.swapping = e.type == 'translated'; + } + }, this), + 'translate.owl.carousel': $.proxy(function(e) { + if (e.namespace && this.swapping && (this.core.options.animateOut || this.core.options.animateIn)) { + this.swap(); + } + }, this) + }; + + this.core.$element.on(this.handlers); + }; + + /** + * Default options. + * @public + */ + Animate.Defaults = { + animateOut: false, + animateIn: false + }; + + /** + * Toggles the animation classes whenever an translations starts. + * @protected + * @returns {Boolean|undefined} + */ + Animate.prototype.swap = function() { + + if (this.core.settings.items !== 1) { + return; + } + + if (!$.support.animation || !$.support.transition) { + return; + } + + this.core.speed(0); + + var left, + clear = $.proxy(this.clear, this), + previous = this.core.$stage.children().eq(this.previous), + next = this.core.$stage.children().eq(this.next), + incoming = this.core.settings.animateIn, + outgoing = this.core.settings.animateOut; + + if (this.core.current() === this.previous) { + return; + } + + if (outgoing) { + left = this.core.coordinates(this.previous) - this.core.coordinates(this.next); + previous.one($.support.animation.end, clear) + .css( { 'left': left + 'px' } ) + .addClass('animated owl-animated-out') + .addClass(outgoing); + } + + if (incoming) { + next.one($.support.animation.end, clear) + .addClass('animated owl-animated-in') + .addClass(incoming); + } + }; + + Animate.prototype.clear = function(e) { + $(e.target).css( { 'left': '' } ) + .removeClass('animated owl-animated-out owl-animated-in') + .removeClass(this.core.settings.animateIn) + .removeClass(this.core.settings.animateOut); + this.core.onTransitionEnd(); + }; + + /** + * Destroys the plugin. + * @public + */ + Animate.prototype.destroy = function() { + var handler, property; + + for (handler in this.handlers) { + this.core.$element.off(handler, this.handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Animate = Animate; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Autoplay Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author Artus Kolanowski + * @author David Deutsch + * @author Tom De Caluwé + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the autoplay plugin. + * @class The Autoplay Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Autoplay = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * The autoplay timeout id. + * @type {Number} + */ + this._call = null; + + /** + * Depending on the state of the plugin, this variable contains either + * the start time of the timer or the current timer value if it's + * paused. Since we start in a paused state we initialize the timer + * value. + * @type {Number} + */ + this._time = 0; + + /** + * Stores the timeout currently used. + * @type {Number} + */ + this._timeout = 0; + + /** + * Indicates whenever the autoplay is paused. + * @type {Boolean} + */ + this._paused = true; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name === 'settings') { + if (this._core.settings.autoplay) { + this.play(); + } else { + this.stop(); + } + } else if (e.namespace && e.property.name === 'position' && this._paused) { + // Reset the timer. This code is triggered when the position + // of the carousel was changed through user interaction. + this._time = 0; + } + }, this), + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoplay) { + this.play(); + } + }, this), + 'play.owl.autoplay': $.proxy(function(e, t, s) { + if (e.namespace) { + this.play(t, s); + } + }, this), + 'stop.owl.autoplay': $.proxy(function(e) { + if (e.namespace) { + this.stop(); + } + }, this), + 'mouseover.owl.autoplay': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.pause(); + } + }, this), + 'mouseleave.owl.autoplay': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.play(); + } + }, this), + 'touchstart.owl.core': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.pause(); + } + }, this), + 'touchend.owl.core': $.proxy(function() { + if (this._core.settings.autoplayHoverPause) { + this.play(); + } + }, this) + }; + + // register event handlers + this._core.$element.on(this._handlers); + + // set default options + this._core.options = $.extend({}, Autoplay.Defaults, this._core.options); + }; + + /** + * Default options. + * @public + */ + Autoplay.Defaults = { + autoplay: false, + autoplayTimeout: 5000, + autoplayHoverPause: false, + autoplaySpeed: false + }; + + /** + * Transition to the next slide and set a timeout for the next transition. + * @private + * @param {Number} [speed] - The animation speed for the animations. + */ + Autoplay.prototype._next = function(speed) { + this._call = window.setTimeout( + $.proxy(this._next, this, speed), + this._timeout * (Math.round(this.read() / this._timeout) + 1) - this.read() + ); + + if (this._core.is('interacting') || document.hidden) { + return; + } + this._core.next(speed || this._core.settings.autoplaySpeed); + } + + /** + * Reads the current timer value when the timer is playing. + * @public + */ + Autoplay.prototype.read = function() { + return new Date().getTime() - this._time; + }; + + /** + * Starts the autoplay. + * @public + * @param {Number} [timeout] - The interval before the next animation starts. + * @param {Number} [speed] - The animation speed for the animations. + */ + Autoplay.prototype.play = function(timeout, speed) { + var elapsed; + + if (!this._core.is('rotating')) { + this._core.enter('rotating'); + } + + timeout = timeout || this._core.settings.autoplayTimeout; + + // Calculate the elapsed time since the last transition. If the carousel + // wasn't playing this calculation will yield zero. + elapsed = Math.min(this._time % (this._timeout || timeout), timeout); + + if (this._paused) { + // Start the clock. + this._time = this.read(); + this._paused = false; + } else { + // Clear the active timeout to allow replacement. + window.clearTimeout(this._call); + } + + // Adjust the origin of the timer to match the new timeout value. + this._time += this.read() % timeout - elapsed; + + this._timeout = timeout; + this._call = window.setTimeout($.proxy(this._next, this, speed), timeout - elapsed); + }; + + /** + * Stops the autoplay. + * @public + */ + Autoplay.prototype.stop = function() { + if (this._core.is('rotating')) { + // Reset the clock. + this._time = 0; + this._paused = true; + + window.clearTimeout(this._call); + this._core.leave('rotating'); + } + }; + + /** + * Pauses the autoplay. + * @public + */ + Autoplay.prototype.pause = function() { + if (this._core.is('rotating') && !this._paused) { + // Pause the clock. + this._time = this.read(); + this._paused = true; + + window.clearTimeout(this._call); + } + }; + + /** + * Destroys the plugin. + */ + Autoplay.prototype.destroy = function() { + var handler, property; + + this.stop(); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.autoplay = Autoplay; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Navigation Plugin + * @version 2.3.4 + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + 'use strict'; + + /** + * Creates the navigation plugin. + * @class The Navigation Plugin + * @param {Owl} carousel - The Owl Carousel. + */ + var Navigation = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Indicates whether the plugin is initialized or not. + * @protected + * @type {Boolean} + */ + this._initialized = false; + + /** + * The current paging indexes. + * @protected + * @type {Array} + */ + this._pages = []; + + /** + * All DOM elements of the user interface. + * @protected + * @type {Object} + */ + this._controls = {}; + + /** + * Markup for an indicator. + * @protected + * @type {Array.} + */ + this._templates = []; + + /** + * The carousel element. + * @type {jQuery} + */ + this.$element = this._core.$element; + + /** + * Overridden methods of the carousel. + * @protected + * @type {Object} + */ + this._overrides = { + next: this._core.next, + prev: this._core.prev, + to: this._core.to + }; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'prepared.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.push('
' + + $(e.content).find('[data-dot]').addBack('[data-dot]').attr('data-dot') + '
'); + } + }, this), + 'added.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.splice(e.position, 0, this._templates.pop()); + } + }, this), + 'remove.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.splice(e.position, 1); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name == 'position') { + this.draw(); + } + }, this), + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && !this._initialized) { + this._core.trigger('initialize', null, 'navigation'); + this.initialize(); + this.update(); + this.draw(); + this._initialized = true; + this._core.trigger('initialized', null, 'navigation'); + } + }, this), + 'refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._initialized) { + this._core.trigger('refresh', null, 'navigation'); + this.update(); + this.draw(); + this._core.trigger('refreshed', null, 'navigation'); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, Navigation.Defaults, this._core.options); + + // register event handlers + this.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + * @todo Rename `slideBy` to `navBy` + */ + Navigation.Defaults = { + nav: false, + navText: [ + '', + '' + ], + navSpeed: false, + navElement: 'button type="button" role="presentation"', + navContainer: false, + navContainerClass: 'owl-nav', + navClass: [ + 'owl-prev', + 'owl-next' + ], + slideBy: 1, + dotClass: 'owl-dot', + dotsClass: 'owl-dots', + dots: true, + dotsEach: false, + dotsData: false, + dotsSpeed: false, + dotsContainer: false + }; + + /** + * Initializes the layout of the plugin and extends the carousel. + * @protected + */ + Navigation.prototype.initialize = function() { + var override, + settings = this._core.settings; + + // create DOM structure for relative navigation + this._controls.$relative = (settings.navContainer ? $(settings.navContainer) + : $('
').addClass(settings.navContainerClass).appendTo(this.$element)).addClass('disabled'); + + this._controls.$previous = $('<' + settings.navElement + '>') + .addClass(settings.navClass[0]) + .html(settings.navText[0]) + .prependTo(this._controls.$relative) + .on('click', $.proxy(function(e) { + this.prev(settings.navSpeed); + }, this)); + this._controls.$next = $('<' + settings.navElement + '>') + .addClass(settings.navClass[1]) + .html(settings.navText[1]) + .appendTo(this._controls.$relative) + .on('click', $.proxy(function(e) { + this.next(settings.navSpeed); + }, this)); + + // create DOM structure for absolute navigation + if (!settings.dotsData) { + this._templates = [ $('