diff --git a/theme_xtream/__init__.py b/theme_xtream/__init__.py new file mode 100644 index 000000000..54752ce10 --- /dev/null +++ b/theme_xtream/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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 models +from . import controllers diff --git a/theme_xtream/__manifest__.py b/theme_xtream/__manifest__.py new file mode 100644 index 000000000..46c33c243 --- /dev/null +++ b/theme_xtream/__manifest__.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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 Xtream Fashion', + 'description': """Design eCommerce Website with Theme Xtream Fashion""", + 'summary': 'Theme Xtream Fashion', + 'category': 'Theme/eCommerce', + 'version': '14.0.1.0.0', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['website_sale'], + 'data': [ + 'views/assets.xml', + 'views/categories.xml', + 'views/clear_cart.xml', + 'views/contact_us.xml', + 'views/footer.xml', + 'views/header.xml', + 'views/layout.xml', + 'views/price_filter.xml', + 'views/product_view.xml', + 'views/shop.xml', + 'views/snippets/amazing.xml', + 'views/snippets/arrivals_demo.xml', + 'views/snippets/new_arrivals.xml', + 'views/snippets/discount.xml', + 'views/snippets/main_banner.xml', + 'views/snippets/main_product.xml', + 'views/snippets/map.xml', + 'views/snippets/testimonial.xml', + ], + 'images': [ + 'static/description/banner.jpg', + 'static/description/theme_screenshot.jpg', + ], + 'license': 'LGPL-3', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/theme_xtream/controllers/__init__.py b/theme_xtream/controllers/__init__.py new file mode 100644 index 000000000..0cdabcead --- /dev/null +++ b/theme_xtream/controllers/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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 main diff --git a/theme_xtream/controllers/main.py b/theme_xtream/controllers/main.py new file mode 100644 index 000000000..bb359a314 --- /dev/null +++ b/theme_xtream/controllers/main.py @@ -0,0 +1,178 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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 werkzeug.exceptions import NotFound +from odoo.addons.http_routing.models.ir_http import slug +from odoo.addons.website.controllers.main import QueryURL +from odoo.addons.website_sale.controllers.main import TableCompute, WebsiteSale +from odoo import http, fields +from odoo.http import request + + +class ClearCart(http.Controller): + + @http.route(['/shop/clear_cart'], type='json', auth="public", methods=['POST'], website=True) + def clear_cart(self): + order = request.website.sale_get_order(force_create=1) + order_line = request.env['sale.order.line'].sudo() + line_ids = order_line.search([('order_id', '=', order.id)]) + for line in line_ids: + line_obj = order_line.browse([int(line)]) + if line_obj: + line_obj.unlink() + + +class WebsiteProduct(http.Controller): + + @http.route('/get_arrival_product', auth="public", type='json', website=True) + def get_arrival_product(self): + + product_ids = request.env['product.template'].sudo().search([('website_published', '=', True)], + order='create_date desc', limit=6) + + values = {'product_ids': product_ids} + response = http.Response(template='theme_xtream.new_arrivals', qcontext=values) + return response.render() + + +class PriceFilter(WebsiteSale): + + @http.route() + def shop(self, page=0, category=None, search='', ppg=False, **post): + """Override WebsiteSale shop for Price Filter""" + maximum = minimum = 0 + add_qty = int(post.get('add_qty', 1)) + Category = request.env['product.public.category'] + if category: + category = Category.search([('id', '=', int(category))], limit=1) + if not category or not category.can_access_from_current_website(): + raise NotFound() + else: + category = Category + + if ppg: + try: + ppg = int(ppg) + post['ppg'] = ppg + except ValueError: + ppg = False + if not ppg: + ppg = request.env['website'].get_current_website().shop_ppg or 20 + + ppr = request.env['website'].get_current_website().shop_ppr or 4 + + product_ids = request.env['product.template'].search(['&', ('sale_ok', '=', True), ('active', '=', True)]) + + if product_ids and product_ids.ids: + request.cr.execute( + 'select min(list_price),max(list_price) from product_template where id in %s', + (tuple(product_ids.ids),)) + list_prices = request.cr.fetchall() + + minimum = list_prices[0][0] + maximum = list_prices[0][1] + + + attrib_list = request.httprequest.args.getlist('attrib') + attrib_values = [[int(x) for x in v.split("-")] for v in attrib_list if v] + attributes_ids = {v[0] for v in attrib_values} + attrib_set = {v[1] for v in attrib_values} + + domain = self._get_search_domain(search, category, attrib_values) + + if post.get('minimum') and post.get('maximum'): + domain = domain + [('list_price', '>=', float(post.get('minimum'))), + ('list_price', '<=', float(post.get('maximum')))] + + keep = QueryURL('/shop', category=category and int(category), search=search, attrib=attrib_list, + order=post.get('order'), minimum=post.get('minimum'), maximum=post.get('maximum')) + + pricelist_context, pricelist = self._get_pricelist_context() + + request.context = dict(request.context, pricelist=pricelist.id, partner=request.env.user.partner_id) + + url = "/shop" + if search: + post["search"] = search + if attrib_list: + post['attrib'] = attrib_list + + Product = request.env['product.template'].with_context(bin_size=True) + + search_product = Product.search(domain, order=self._get_search_order(post)) + website_domain = request.website.website_domain() + categs_domain = [('parent_id', '=', False)] + website_domain + if search: + search_categories = Category.search( + [('product_tmpl_ids', 'in', search_product.ids)] + website_domain).parents_and_self + categs_domain.append(('id', 'in', search_categories.ids)) + else: + search_categories = Category + categs = Category.search(categs_domain) + + if category: + url = "/shop/category/%s" % slug(category) + + product_count = len(search_product) + pager = request.website.pager(url=url, total=product_count, page=page, step=ppg, scope=7, url_args=post) + offset = pager['offset'] + products = search_product[offset: offset + ppg] + + ProductAttribute = request.env['product.attribute'] + if products: + # get all products without limit + attributes = ProductAttribute.search([('product_tmpl_ids', 'in', search_product.ids)]) + else: + attributes = ProductAttribute.browse(attributes_ids) + + layout_mode = request.session.get('website_sale_shop_layout_mode') + if not layout_mode: + if request.website.viewref('website_sale.products_list_view').active: + layout_mode = 'list' + else: + layout_mode = 'grid' + + values = { + 'search': search, + 'category': category, + 'attrib_values': attrib_values, + 'attrib_set': attrib_set, + 'pager': pager, + 'pricelist': pricelist, + 'add_qty': add_qty, + 'products': products, + 'search_count': product_count, # common for all searchbox + 'bins': TableCompute().process(products, ppg, ppr), + 'ppg': ppg, + 'ppr': ppr, + 'categories': categs, + 'attributes': attributes, + 'keep': keep, + 'search_categories_ids': search_categories.ids, + 'layout_mode': layout_mode, + 'minimum': minimum, + 'maximum': maximum, + + } + if category: + values['main_object'] = category + return request.render("website_sale.products", values) diff --git a/theme_xtream/models/__init__.py b/theme_xtream/models/__init__.py new file mode 100644 index 000000000..f3a601be2 --- /dev/null +++ b/theme_xtream/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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_xtream diff --git a/theme_xtream/models/theme_xtream.py b/theme_xtream/models/theme_xtream.py new file mode 100644 index 000000000..d84907c52 --- /dev/null +++ b/theme_xtream/models/theme_xtream.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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 models + + +class ThemeXtream(models.AbstractModel): + _inherit = 'theme.utils' + + def _theme_xtream_post_copy(self, mod): + + self.enable_view('website.template_header_slogan') + self.disable_view('website.template_header_default') + self.disable_view('website.template_header_slogan_oe_structure_header_slogan_1') diff --git a/theme_xtream/static/description/banner.jpg b/theme_xtream/static/description/banner.jpg new file mode 100644 index 000000000..281248cea Binary files /dev/null and b/theme_xtream/static/description/banner.jpg differ diff --git a/theme_xtream/static/description/icon.png b/theme_xtream/static/description/icon.png new file mode 100644 index 000000000..7be99fa85 Binary files /dev/null and b/theme_xtream/static/description/icon.png differ diff --git a/theme_xtream/static/description/images/Cybrosys.png b/theme_xtream/static/description/images/Cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/theme_xtream/static/description/images/Cybrosys.png differ diff --git a/theme_xtream/static/description/images/cybro-logo-oca-no-text.png b/theme_xtream/static/description/images/cybro-logo-oca-no-text.png new file mode 100644 index 000000000..180d15dd6 Binary files /dev/null and b/theme_xtream/static/description/images/cybro-logo-oca-no-text.png differ diff --git a/theme_xtream/static/description/images/cybro-logo-oca.png b/theme_xtream/static/description/images/cybro-logo-oca.png new file mode 100644 index 000000000..90e4c9cb9 Binary files /dev/null and b/theme_xtream/static/description/images/cybro-logo-oca.png differ diff --git a/theme_xtream/static/description/images/hero.png b/theme_xtream/static/description/images/hero.png new file mode 100644 index 000000000..f39f62ca9 Binary files /dev/null and b/theme_xtream/static/description/images/hero.png differ diff --git a/theme_xtream/static/description/images/laptop-screenshots.jpg b/theme_xtream/static/description/images/laptop-screenshots.jpg new file mode 100644 index 000000000..a332bf4be Binary files /dev/null and b/theme_xtream/static/description/images/laptop-screenshots.jpg differ diff --git a/theme_xtream/static/description/images/phone-screenshots.jpg b/theme_xtream/static/description/images/phone-screenshots.jpg new file mode 100644 index 000000000..0f48f5494 Binary files /dev/null and b/theme_xtream/static/description/images/phone-screenshots.jpg differ diff --git a/theme_xtream/static/description/index.html b/theme_xtream/static/description/index.html new file mode 100644 index 000000000..63b7b5c10 --- /dev/null +++ b/theme_xtream/static/description/index.html @@ -0,0 +1,152 @@ + +
+
+
+ Cybrosys Logo +
+
+
+
+
+ Theme Screenshot +
+
+

Theme Xtream

+

+ Theme Xtream is a attractive and unique front end theme mainly suitable for eCommerce website. Many custom + designed snippets facilitates to add better user experience. Contains best deals with new arrival products + slider, testimonial slider that are configured from the backend. This theme fully customized the eCommerce website, shop view, custom categories view, product view, contact us page...etc. it contains price filter and clear cart options by default. +

+
+
+
+ +
+ + +
+
+

Desktop View

+

+ It is easy to customize and use. Just drag and drop the building blocks to make attractive webpages. +

+
+
+ Theme Screenshot +
+
+ + +
+
+ Theme Screenshot +
+
+

Mobile View

+

+ User friendly and modern looking makes your page more Stylist And Beautiful. +

+
+
+ + + +
+
+

Features

+
+
+
+
+
+ +
Responsive
+
+ +
+ +
Modern
+
+ +
+ +
E-com Ready
+
+ +
+ +
Built-in Slider
+
+
+ + + +
+
+

Get Help

+
+

If you have anything to share with us based on + your use of this module, please let us know. We are ready to offer our support.

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+

A Quality Theme From

+
+
+ +
+
+ +
diff --git a/theme_xtream/static/description/theme_screenshot.jpg b/theme_xtream/static/description/theme_screenshot.jpg new file mode 100644 index 000000000..820b40cb1 Binary files /dev/null and b/theme_xtream/static/description/theme_screenshot.jpg differ diff --git a/theme_xtream/static/src/css/animate.min.css b/theme_xtream/static/src/css/animate.min.css new file mode 100644 index 000000000..76d2fe1a8 --- /dev/null +++ b/theme_xtream/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_xtream/static/src/css/owl.carousel.min.css b/theme_xtream/static/src/css/owl.carousel.min.css new file mode 100644 index 000000000..a71df11c0 --- /dev/null +++ b/theme_xtream/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_xtream/static/src/css/owl.theme.default.min.css b/theme_xtream/static/src/css/owl.theme.default.min.css new file mode 100644 index 000000000..487088d2e --- /dev/null +++ b/theme_xtream/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_xtream/static/src/css/style.css b/theme_xtream/static/src/css/style.css new file mode 100644 index 000000000..53b56c230 --- /dev/null +++ b/theme_xtream/static/src/css/style.css @@ -0,0 +1,4026 @@ +/*! 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; +} + +.badge-primary { + background-color: #5FED83 !important; +} + +/** + * 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; + font-family: "Poppins", sans-serif; +} + +/* 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; +} + +* { + list-style-type: none; + font-family: "Poppins", sans-serif; + font-size: 14px; +} + +*:focus, *:active { + outline: none !important; +} + +*:hover { + transition: 0.5s; +} + +.banner_main .banner_bg { + background-image: linear-gradient(#11111191, #11111191), url(/theme_xtream/static/src/img/bg-img/bg-1.jpg); + justify-content: center; + height: 100vh; + background-size: cover; + width: 100%; + background-repeat: no-repeat; +} + +.banner_main .card-body { + background-color: transparent !important; +} + +@media screen and (max-width: 768px) { + .banner_main .banner_bg { + height: 70vh; + } +} + +.banner_main .banner_bg .card { + background: transparent; + padding-top: 175px; + padding-bottom: 100px; + border: none !important; +} + +@media screen and (max-width: 600px) { + .banner_main .banner_bg .card { + padding-left: 40px; + } +} + +@media screen and (max-width: 768px) { + .banner_main .banner_bg .card { + padding-top: 100px; + } +} + +.banner_main .banner_bg .card .card-title { + color: #fff; + font-size: 7vw; + font-weight: bold; + padding-bottom: 20px; +} + +.banner_main .banner_bg .card .card-text { + color: #fff; + font-weight: 700; + font-size: 15px; +} + +.banner_main .banner_bg2 { + background-image: linear-gradient(#11111191, #11111191), url(/theme_xtream/static/src/img/bg-img/bg-2.jpg); + justify-content: center; + height: 100vh; + background-size: cover; + width: 100%; + background-repeat: no-repeat; +} + +@media screen and (max-width: 768px) { + .banner_main .banner_bg2 { + height: 70vh; + } +} + +.banner_main .banner_bg2 .card { + background: transparent; + padding-top: 175px; + padding-bottom: 100px; + border: none !important; +} + +@media screen and (max-width: 600px) { + .banner_main .banner_bg2 .card { + padding-left: 40px; + } +} + +@media screen and (max-width: 768px) { + .banner_main .banner_bg2 .card { + padding-top: 100px; + padding-bottom: 0; + } +} + +.banner_main .banner_bg2 .card .card-title { + color: #fff; + font-size: 7vw; + font-weight: bold; + padding-bottom: 20px; +} + +.banner_main .banner_bg2 .card .card-text { + color: #fff; + font-weight: 700; + font-size: 15px; +} + +.banner_main .banner_bg3 { + background-image: linear-gradient(#11111191, #11111191), url(/theme_xtream/static/src/img/bg-img/bg-4.jpg); + justify-content: center; + height: 100vh; + background-size: cover; + width: 100%; + background-repeat: no-repeat; +} + +@media screen and (max-width: 768px) { + .banner_main .banner_bg3 { + height: 70vh; + } +} + +.banner_main .banner_bg3 .card { + background: transparent; + padding-top: 175px; + padding-bottom: 100px; + border: none !important; + animation-name: fadeInOut; + animation-delay: 1s; + animation-duration: 3s; +} + +@media screen and (max-width: 600px) { + .banner_main .banner_bg3 .card { + padding-left: 40px; + } +} + +@media screen and (max-width: 768px) { + .banner_main .banner_bg3 .card { + padding-top: 50px; + padding-bottom: 100px; + } +} + +.banner_main .banner_bg3 .card .card-title { + color: #fff; + font-size: 5vw; + font-weight: bold; + padding-bottom: 20px; + text-transform: uppercase; +} + +.banner_main .banner_bg3 .card .card-text { + color: #fff; + padding-bottom: 30px; + font-size: 14px; +} + +.banner_main .banner_bg3 .breadcrumb { + background: transparent; + padding-top: 110px; + padding-bottom: 110px; +} + +.banner_main .banner_bg3 .breadcrumb .breadcrumb-item { + color: #e9c939; +} + +.banner_main .banner_bg3 .breadcrumb .breadcrumb-item:first-child::before { + display: none; +} + +.banner_main .banner_bg3 .breadcrumb .breadcrumb-item::before { + display: inline-block; + padding-right: 1.5rem; + color: #fff; + content: "/"; +} + +.banner_main .banner_bg3 .breadcrumb .breadcrumb-item a { + color: #fff; + text-decoration: none; +} + +.banner_main .banner_bg3 .breadcrumb .breadcrumb-item a:hover { + color: #e9c939; +} + +.banner_main .banner_bg4 { + background-image: url(/theme_xtream/static/src/images/banner/home.jpg); + justify-content: center; + max-width: 1400px; + margin: auto; + background-size: cover; + width: 100%; + background-repeat: no-repeat; + background-position: center; + margin-top: 134px; +} + +.banner_main .banner_bg4 .breadcrumb { + background: transparent; + padding-top: 110px; + padding-bottom: 110px; +} + +.banner_main .banner_bg4 .breadcrumb .breadcrumb-item { + color: #e9c939; +} + +.banner_main .banner_bg4 .breadcrumb .breadcrumb-item:first-child::before { + display: none; +} + +.banner_main .banner_bg4 .breadcrumb .breadcrumb-item::before { + display: inline-block; + padding-right: 1.5rem; + color: #fff; + content: "/"; +} + +.banner_main .banner_bg4 .breadcrumb .breadcrumb-item a { + color: #fff; + text-decoration: none; +} + +.banner_main .banner_bg4 .breadcrumb .breadcrumb-item a:hover { + color: #e9c939; +} + +.banner_main .owl-carousel button.owl-dot span { + height: 10px; + width: 10px; + color: #fff; + background-color: #fff; + border-radius: 50%; + display: block; + font-weight: 700; + margin: 5px; +} + +.banner_main .owl-carousel button.owl-dot.active span { + background-color: #5FED83; +} + +.banner_main .owl-carousel .owl-dots { + position: absolute; + bottom: 250px; + left: 40px; + transform: rotate(89deg); + background-color: transparent; +} + +@media screen and (max-width: 1150px) { + .banner_main .owl-carousel .owl-dots { + left: 0 !important; + } +} + +.slideInDown { + animation-name: slideInDown; + animation-duration: 1s; + animation-fill-mode: both; +} + +@keyframes slideInDown { + 0% { + transform: translateY(-100%); + visibility: visible; + } + 100% { + transform: translateY(0); + } +} + +.tada { + animation-name: tada; + animation-duration: 1s; + animation-fill-mode: both; +} + +@keyframes tada { + 0% { + transform: scale3d(1, 1, 1); + } + 10%, 20% { + transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + } + 30%, 50%, 70%, 90% { + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + 40%, 60%, 80% { + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + 100% { + transform: scale3d(1, 1, 1); + } +} + +.slideInUp { + animation-name: slideInUp; + animation-duration: 1s; + animation-fill-mode: both; +} + +@keyframes slideInUp { + 0% { + transform: translateY(100%); + visibility: visible; + } + 100% { + transform: translateY(0); + } +} + +.slideInLeft { + animation-name: slideInLeft; + animation-duration: 1s; + animation-fill-mode: both; +} + +@keyframes slideInLeft { + 0% { + transform: translateX(-100%); + visibility: visible; + } + 100% { + transform: translateX(0); + } +} + +.fadeInDownBig { + animation-name: fadeInDownBig; + animation-duration: 1s; + animation-fill-mode: both; +} + +@keyframes fadeInDownBig { + 0% { + opacity: 0; + transform: translate3d(0, -2000px, 0); + } + 100% { + opacity: 1; + transform: none; + } +} + +.fadeInLeftBig { + animation-name: fadeInLeftBig; + animation-duration: 1s; + animation-fill-mode: both; +} + +@keyframes fadeInLeftBig { + 0% { + opacity: 0; + transform: translate3d(-2000px, 0, 0); + } + 100% { + opacity: 1; + transform: none; + } +} + +.btn { + border: none !important; + outline: 0 !important; + transition: 0.5s; + box-shadow: none !important; + font-weight: 400; + font-family: "Poppins", sans-serif; +} + +.btn-primary { + background-color: transparent !important; + color: #5FED83 !important; + border-radius: 0 !important; + border-color: #5FED83 !important; + padding: 12px 36px; + font-size: 16px; + font-weight: 600; + border: 3px solid !important; +} + +.btn-primary:hover { + border-color: #5FED83 !important; + color: #fff !important; + background: #5FED83 !important; +} + +.btn-secondary{ + background-color: white !important; + color: #031B09 !important; + border-radius: 0 !important; + border: 2px solid !important; + border-color: grey !important; +} + +#special { + background-color: transparent !important; + border-color: #fff; + padding: 12px 36px; + color: #fff !important; + font-size: 16px; + font-weight: 600; + border-radius: 0; + border: 3px solid !important; +} + +#special:hover { + border-color: #5FED83 !important; + color: #fff !important; + background: #5FED83 !important; +} + +.container .row #o_cart_summary .card .card-body .btn-secondary{ + background-color: #5FED83 !important; + color: #fff !important; + border: 0px solid !important; +} + +.container .row #o_cart_summary .card .card-body .btn-secondary:hover{ + border: 0px solid !important; + color: #fff !important; + background: #031B09 !important; +} + + +.btn:focus, .btn.focus { + outline: 0; +} + +.btn-cart { + background-color: #031B09 !important; + margin-right: 5px; + padding: 2px 9px; + color: #fff !important; + font-size: 13px; + border-radius: 0 !important; + border: none; +} + +.btn-checkout { + background-color: #5FED83 !important; + padding: 2px 9px; + color: #fff !important; + font-size: 13px; + border-radius: 0 !important; + border: none; +} + +.btn-details { + background-color: transparent !important; + padding: 2px 9px; + color: #fff !important; + font-size: 13px; + border-radius: 0 !important; + border: 1px solid !important; + border-color: #fff !important; + border-radius: 50% !important; +} + +.btn-checkout_m { + background-color: #5FED83 !important; + text-decoration: none !important; + padding: 7px 12px; + color: #fff !important; + font-size: 13px; + border-radius: 0 !important; + border: none; +} + +.btn-cart_p { + background-color: #5FED83 !important; + color: #fff !important; + font-size: 13px; + border-radius: 0 !important; + border: none; + padding: 13px 40px; + margin-left: 33px; +} + +.btn-shopping { + background-color: transparent !important; + color: #031B09 !important; + font-size: 20px; + font-weight: 700; + border-radius: 0 !important; + border: 2px solid !important; + border-color: #031B09 !important; + padding: 13px 40px; + margin-left: 33px; +} + +@media screen and (max-width: 768px) { + .btn-shopping { + padding: 8px 15px; + font-size: 2vw; + } +} + +.btn-clear { + background-color: transparent !important; + color: #9f9f9f !important; + font-size: 20px; + font-weight: 700; + border-radius: 0 !important; + border: 2px solid !important; + border-color: #dedede !important; + padding: 13px 40px; + margin-left: 33px; +} + +@media screen and (max-width: 768px) { + .btn-clear { + padding: 8px 15px; + margin-bottom: 10px; + font-size: 2vw; + } +} + +.btn-update { + background-color: #f4f2f8 !important; + color: #9f9f9f !important; + font-size: 20px; + font-weight: 700; + border-radius: 0 !important; + border: 2px solid !important; + border-color: #f4f2f8 !important; + padding: 13px 40px; + margin-left: 33px; +} + +@media screen and (max-width: 768px) { + .btn-update { + padding: 8px 15px; + font-size: 2vw; + } +} + +.btn-checkout_c { + text-transform: uppercase; + background-color: #5FED83 !important; + text-decoration: none !important; + width: 100%; + height: 60px; + color: #fff !important; + font-size: 16px; + font-weight: 700; + border-radius: 0 !important; + border: none; + line-height: 50px; + height: 60px; +} + +.btn-checkout_c:hover { + background-color: #031B09 !important; +} + +.btn-contact { + margin-top: 5px; + text-transform: uppercase; + background-color: #5FED83 !important; + text-decoration: none !important; + width: 100%; + height: 40px !important; + color: #fff !important; + font-size: 16px !important; + font-weight: 700 !important; + border-radius: 0 !important; + border: none; + line-height: 0px; +} + +.btn-contact:hover { + background-color: #031B09 !important; +} + +.product { + margin-top: 0px; + /* Add padding BETWEEN each column */ + /* Create three equal columns that floats next to each other */ + /* Clear floats after rows */ + /* Content */ + /* The "show" class is added to the filtered elements */ + /* Style the buttons */ +} + +.product .main { + padding-top: 30px; + margin: auto; +} + +.product .main h2 { + text-align: center; + font-size: 60px; + font-weight: 700; + color: #031B09; + text-transform: uppercase; + padding-bottom: 30px; +} + +@media screen and (max-width: 768px) { + .product .main h2 { + font-size: 30px; + } +} + +.product .main .categories { + display: flex; + justify-content: center; +} + +@media screen and (max-width: 768px) { + .product .main .categories { + display: block; + } +} + +.product h1 { + font-size: 50px; + word-break: break-all; +} + +.product .row { + margin: 10px -16px; +} + +.product .row, +.product .row > .column { + padding: 8px; +} + +.product .column { + float: left; + width: 33.33%; + display: none; + /* Hide all elements by default */ +} +.product .row .product_column { + float: left; + width: 33.33%; + /* Hide all elements by default */ +} + +.product .row:after { + content: ""; + display: table; + clear: both; +} + +.product .content { + padding: 50px 0; +} + +.product .content .img_zoom { + overflow: hidden; +} + +.product .content .wrapper { + max-width: 330px; + position: relative; +} + +.product .content .wrapper:hover .img_details { + position: absolute; + left: 44%; + display: block; + bottom: 45%; + z-index: 3; +} + +@media screen and (max-width: 992px) { + .product .content .wrapper:hover{ + left: 35%; + bottom: 43%; + } +} + +@media screen and (max-width: 992px) { + .product .content .wrapper{ + left: 25%; + bottom: 43%; + max-width: 80%; + height: 270px; + } +} +@media screen and (max-width: 992px) { + .product .content .wrapper:hover{ + left: 44%; + bottom: 43%; + } +} +@media screen and (max-width: 992px) { + .product .content .wrapper:hover{ + font-size: 12px; + } +} +@media screen and (max-width: 576px) { + .product .content .wrapper { + max-width: 60%; + height: 250px; + } +} +.product .content .wrapper_product { + max-width: 330px; + position: relative; + height: 330px; +} + + + +@media screen and (max-width: 992px) { + .product .content .wrapper:hover .img_details { + left: 44%; + bottom: 43%; + } +} + +.product .content .wrapper:hover .img_details i { + font-size: 25px; + color: #fff; + padding: 4px 2px; +} + +@media screen and (max-width: 992px) { + .product .content .wrapper:hover .img_details i { + font-size: 12px; + } +} + +.product .content .wrapper:hover:after { + position: absolute; + content: " "; + height: 100%; + width: 100%; + top: 0; + left: 0; + background: #00000054 !important; +} + +.product .content .wrapper:before { + position: absolute; + content: " "; + display: block; + top: 50%; + left: 50%; +} + +@media screen and (max-width: 576px) { + .product .content .wrapper { + max-width: none; + } +} + +.product .content .wrapper .img_details { + display: none; +} + +.product .content .wrapper img { + width: 100%; +} + +.product .content p { + color: #9f9f9f; + font-size: 25px; + font-weight: lighter; + margin-top: 20px; + margin-bottom: 5px; +} + +.product .content h6 { + color: #031B09; + line-height: 1.5; + font-weight: 400; + font-size: 15px; + letter-spacing: 1px; + margin-bottom: 40px; +} + +.product .content a { + font-size: 13px; + font-weight: 700; + color: #5FED83; + text-decoration: none; +} + +.product .content a:hover { + color: #031B09; +} + +.product .content #zoomIn { + transform: scale(1); + transition: .3s ease-in-out; + transform: scale(1); +} + +.product .content #zoomIn:hover { + transform: scale(1.05); + border-radius: 6px 6px 0px 0px; +} + +#zoomIn:hover { + transform: scale(1.05); + border-radius: 6px 6px 0px 0px; +} + +.product .show { + display: block; +} + +.product .btn { + border: none; + outline: none; + padding: 12px 16px; + background-color: white; + cursor: pointer; + color: #9f9f9f; + font-weight: 700; +} + +.product .btn:hover { + background-color: #ddd; +} + +/*.product .btn.active { + color: #031B09; +}*/ + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0; + outline: 0; + margin: auto; +} + +@media screen and (max-width: 768px) { + .modal-content { + margin: auto; + max-width: 65%; + } +} + +@media screen and (max-width: 576px) { + .modal-content { + margin: auto; + max-width: 80%; + } +} + +.modal-dialog { + max-width: 660px; + margin: 1.75rem auto; +} + +@media screen and (max-width: 768px) { + .modal-dialog { + margin: 50px 50px; + } +} + +.modal .model-body { + padding: 20px 25px; +} + +.modal .wrapper { + max-width: 100% !important; +} + +.modal .wrapper img { + width: 100%; +} + +.modal .model_details h4 { + color: #031B09; + font-size: 22px; + font-weight: 700; + padding-bottom: 10px; +} + +.modal .model_details .model_rate ul { + padding-left: 0; + display: flex; +} + +.modal .model_details .model_rate ul span { + color: #ffcd07; +} + +.modal .model_details .price { + color: #031B09; + font-size: 20px; + font-weight: 700; +} + +.modal .model_details .price span { + margin-left: 5px; + font-weight: 700; + font-size: 16; + color: #6c6a74; + text-decoration: line-through; +} + +.modal .model_details p { + color: #031B09; + line-height: 24px; +} + +.modal .model_details a { + text-decoration: underline; +} + +.modal .model_details .product_count { + margin-top: 30px; + display: flex; +} + +@media screen and (max-width: 412px) { + .modal .model_details .product_count { + display: grid !important; + grid-row-gap: 20px !important; + } +} + +.modal .model_details .product_count #myform { + margin-right: 10px; + text-align: center; + display: flex; + width: 100px; +} + +.modal .model_details .product_count .qty { + width: 40px; + height: 25px; + text-align: center; + border: none; +} + +.modal .model_details .product_count input.qtyplus { + width: 25px; + height: 25px; + background-color: transparent; + border: none; +} + +.modal .model_details .product_count input.qtyminus { + width: 25px; + height: 25px; + background-color: transparent; + border: none; +} + +.modal .model_details .product_count .icons { + margin-left: 15px; +} + +.modal .model_details .product_count .icons span { + background: #5FED83; + color: #fff; + font-size: 16px; + padding: 9px 10px; +} + +.modal .model_details .product_count .icons span:hover { + background-color: #000000; +} + +.modal .model_details .product_count .icons span:last-child { + background-color: #00bcd4 !important; + margin-left: 15px; +} + +.modal .model_details .share { + font-size: 14px; + font-weight: 400; + padding-top: 20px; +} + +.modal .model_details .footer_icon { + padding-top: 5px; +} + +.modal .model_details .footer_icon a { + color: #9f9f9f; + margin-right: 15px; +} + +.modal .model_details .footer_icon a:hover { + color: #000000; +} + +.top_nav { + margin: 0px 0; +} + +.top_nav .wrapper { + display: flex; + justify-content: space-between; + padding-top: 20px; + align-items: center; +} + +@media screen and (max-width: 572px) { + .top_nav .wrapper { + display: block; + } +} + +.top_nav .wrapper .nav_center { + margin: auto; +} + +@media screen and (max-width: 992px) { + .top_nav .wrapper .nav_center { + margin: 0; + } +} + +.top_nav .wrapper .nav_center a { + text-decoration: none; +} + +.heading { + color: #031B09; + font-size: 30px; + font-weight: 700; + letter-spacing: 12px; + /*padding-left: 450px; + padding-right: 450px;*/ +} +@media screen and (max-width: 572px) { + .heading { + text-align: center; + } +} + +@media screen and (max-width: 768px) { + .heading { + font-size: 3vw; + } +} + +.heading::first-letter { + color: #5FED83; +} + +.heading hr { + background: #9f9f9f; + margin: 3px 7px; + padding-right: 5px; +} + +.heading p { + color: #9f9f9f; + font-weight: normal; + text-align: center; +} + +@media screen and (max-width: 572px) { + .heading p { + font-size: 12px; + } +} + +/*.top_nav .wrapper .nav_center .heading { + color: #031B09; + font-size: 30px; + font-weight: 700; + letter-spacing: 12px; + padding-left: 450px; + padding-right: 450px; +}*/ + + +.top_nav .wrapper .nav_right { + display: flex; + align-items: center; +} + +@media screen and (max-width: 572px) { + .top_nav .wrapper .nav_right { + justify-content: center; + } +} + +.top_nav .wrapper .nav_right .bag { + position: relative; +} + +.top_nav .wrapper .nav_right .bag span { + color: #fff; + background-color: #5FED83; + height: 20px; + width: 20px; + font-size: 13px; + position: absolute; + left: -8px; + top: 12px; + border-radius: 50%; +} + +.top_nav .wrapper .nav_right .dropdown i { + font-size: 20px; + padding-right: 7px; +} + +.top_nav .wrapper .nav_right .dropdown .d_image { + display: block; + max-width: 40px; +} + +.top_nav .wrapper .nav_right .dropdown .d_image img { + width: 100%; +} + +.top_nav .wrapper .nav_right .dropdown .dropdown-menu { + padding: 30px 20px; +} + +.top_nav .wrapper .nav_right .dropdown .dropdown-menu .nav_product { + color: #000000; + margin-top: 10px; +} + +.top_nav .wrapper .nav_right .dropdown .dropdown-menu .nav_product span { + color: #031B09; +} + +.top_nav .wrapper .nav_right .dropdown .dropdown-menu .drop_buttons { + margin-top: 10px; +} + +.top_nav .wrapper .nav_right .dropdown .dropdown-menu .drop_buttons span { + padding-left: 5px; +} + +.top_nav .wrapper .nav_right .side_b { + background-color: #031B09; + color: #fff; + border-radius: 50%; + padding-top: 5px; + font-size: 30px; + cursor: pointer; + height: 55px; + display: block; + width: 55px; + padding-left: 14px; +} + +@media screen and (max-width: 768px) { + .top_nav .wrapper .nav_right .side_b { + background-color: #031B09; + color: #fff; + border-radius: 50%; + padding-top: 6px !important; + font-size: 15px !important; + cursor: pointer; + height: 35px; + display: block; + width: 35px; + padding-left: 11px !important; + } +} + +.navigation { + padding: 35px 0 50px 0px; +} + +.navigation .help-line { + background-color: #5FED83; + width: auto; + height: 35px; + padding: 0 30px; + display: block; + line-height: 35px; + font-size: 14px; + font-weight: 600; +} + +.navigation .help-line a { + color: #fff; + text-decoration: none; +} + +.navigation .help-line:hover { + background-color: #031B09; +} +.help-line { + background-color: #5FED83; + width: auto; + height: 35px; + padding: 0 30px; + display: block; + line-height: 35px; + font-size: 14px; + font-weight: 600; +} + +.help-line a { + color: #fff !important; + text-decoration: none !important; +} + +.help-line:hover { + background-color: #031B09; +} + +.navbar-dark { + padding: 20px 0; +} + +@media screen and (max-width: 768px) { + .navbar-dark { + display: grid; + grid-template-columns: 1fr; + grid-row-gap: 30px; + } +} + +.navbar-dark .navbar-toggler { + border: 2px solid; + border-color: #5FED83; + background-color: #5FED83; + border-radius: 0; +} + +.navbar-dark .navbar-toggler .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +@media screen and (max-width: 768px) { + .navbar-dark .navbar-brand { + margin: auto; + } +} + +.navbar-dark .navbar-brand .footer_icon { + position: relative; +} + +.navbar-dark .navbar-brand .footer_icon .link_top { + color: #fff; + background: #5FED83; + font-size: 11px; + padding: 5px 12px; + font-weight: 700; + position: absolute; + top: -43px; + left: 9px; +} + +.navbar-dark .navbar-brand .footer_icon .link_top:after { + position: absolute; + z-index: 2; + content: ""; + width: 0; + height: 0; + border-style: solid; + border-width: 0 9px 9px 9px; + border-color: transparent transparent #5FED83 transparent; + bottom: -2px; + left: -6px; + transform: rotate(-45deg); +} + +.navbar-dark .navbar-brand a { + color: #000000; + margin-right: 15px; +} + +.navbar-dark .navbar-brand a:hover { + color: #9f9f9f; +} + +.navbar-nav { + text-align: center; + position: relative; +} + +.navbar-nav .link_top { + color: #fff; + background: #5FED83; + font-size: 11px; + padding: 5px 15px; + font-weight: 700; + position: absolute; + top: -29px; + left: 221px; +} + +.navbar-nav .link_top:after { + position: absolute; + z-index: 2; + content: ""; + width: 0; + height: 0; + border-style: solid; + border-width: 0 9px 9px 9px; + border-color: transparent transparent #7BF098 transparent; + bottom: -2px; + left: -6px; + transform: rotate(-45deg); +} + +@media screen and (max-width: 992px) { + .navbar-nav .nav-item .dropdown-menu { + text-align: center; + } +} + +.navbar-nav .nav-item .dropdown-menu .dropdown-item { + padding: 10px 10px; +} + +.navbar-nav .nav-item .dropdown-menu .dropdown-item:hover { + color: #031B09; +} + +.navbar-nav .nav-item .nav-link { + color: #000000; + padding-right: 15px; + padding-left: 15px; + position: relative; + z-index: 1; + font-size: 14px; + font-weight: 700; + text-transform: uppercase; +} + +@media screen and (max-width: 992px) { + .navbar-nav .nav-item .nav-link { + padding: 10px 0; + } +} + +.navbar-nav .nav-item.active .nav-link { + color: #031B09 !important; +} + +.navbar-dark .navbar-nav .nav-link:focus, +.navbar-dark .navbar-nav .nav-link:hover { + color: #9f9f9f !important; +} + +/* ============ desktop view ============ */ +@media all and (min-width: 992px) { + .navbar .nav-item .dropdown-menu { + display: none; + } + .navbar .nav-item:hover .nav-link { + color: #181818; + } + .navbar .nav-item:hover .dropdown-menu { + display: block; + border: none; + } + .navbar .nav-item .dropdown-menu { + margin-top: 0; + padding: 20px 10px; + } +} + +/* ============ desktop view .end// ============ */ +#arrow { + position: relative; + top: 0; + transition: top ease 0.5s; +} + +#arrow:hover { + top: -5px; +} + +.navbar-dark .navbar-nav .nav-item .dropdown-menu .dropdown-item:active { + background-color: #5FED83; + color: #fff; +} + +.sidenav { + height: 100%; + width: 0; + position: fixed; + z-index: 4; + top: 0; + left: 0; + background-color: #fff; + overflow-x: hidden; + transition: 0.5s; + padding-top: 60px; +} + +.sidenav a { + padding: 8px 8px 8px 32px; + text-decoration: none; + font-size: 25px; + color: #031B09; + display: block; + transition: 0.3s; +} + +.sidenav a:hover { + color: #5FED83; +} + +.sidenav .closebtn { + position: absolute; + top: 0; + right: 25px; + font-size: 36px; + margin-left: 50px; +} + +#main { + transition: margin-left 0.5s; + padding: 16px; +} + +@media screen and (max-height: 450px) { + .sidenav { + padding-top: 15px; + } + .sidenav a { + font-size: 18px; + } +} +.o_footer { + background-color: transparent !important; + /*color: #000000 !important;*/ +} +.card-footer { + margin-top: 0px; + padding-bottom: 50px !important; + padding-top: 50px !important; +} + +.card-footer .footer_content { + padding: 0px 0; +} + +.card-footer .footer_content .wrapper_head a { + text-decoration: none; +} + +.card-footer .footer_content .wrapper_head .made_by { + color: #9f9f9f; + margin-top: 20px; + line-height: 2; +} + +.card-footer .footer_content .wrapper_head .made_by span { + margin: 0 5px; +} + +.card-footer .footer_content .wrapper_head .made_by a { + text-decoration: none; + color: #000000; +} + +.card-footer .footer_content .wrapper_head .made_by a:hover { + color: #031B09; +} + +@media screen and (max-width: 768px) { + .card-footer .footer_content .wrapper_head .made_by { + margin-bottom: 40px; + } +} + +.card-footer .footer_content .heading { + color: #031B09; + font-size: 30px; + font-weight: 700; + letter-spacing: 12px; +} + +.card-footer .footer_content .heading::first-letter { + color: #5FED83; +} + +.card-footer .footer_content .heading hr { + background: #9f9f9f; + margin: 3px 7px; + padding-right: 5px; +} + +.card-footer .footer_content .heading p { + color: #9f9f9f; + font-weight: normal; + text-align: center; +} + +@media screen and (max-width: 768px) { + .card-footer .footer_content .heading p { + text-align: left; + } +} + +@media screen and (max-width: 768px) { + .card-footer .footer_content .heading { + margin-bottom: 20px; + } +} + +@media screen and (max-width: 992px) { + .card-footer .footer_content .footer_links { + margin-top: 40px; + } +} + +@media screen and (max-width: 768px) { + .card-footer .footer_content .footer_links { + margin-top: 0; + } +} + +.card-footer .footer_content .footer_links ul { + padding-left: 0; +} + +.card-footer .footer_content .footer_links ul li { + padding: 5px 0; + display: block; + margin-bottom: 15px; +} + +.card-footer .footer_content .footer_links ul li a { + text-decoration: none; + font-size: 14px; + font-weight: bold; + color: #031B09; + text-transform: uppercase; +} + +.card-footer .footer_content .footer_links .scale-up-ver-center:hover { + animation: scale-up-ver-center 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both; +} + +@keyframes scale-up-ver-center { + 0% { + transform: scaleY(0.4); + } + 100% { + transform: scaleY(1); + } +} + +@media screen and (max-width: 992px) { + .card-footer .footer_content .subscribe { + margin-top: 40px; + } +} + +.card-footer .footer_content .subscribe h4 { + font-size: 20px; + font-weight: 700; + color: #031B09; + text-transform: uppercase; +} + +.card-footer .footer_content .subscribe .input-group { + width: 100%; + height: 50px; + border-radius: 0; + margin-top: 70px; +} + +@media screen and (max-width: 768px) { + .card-footer .footer_content .subscribe .input-group { + margin-top: 40px; + } +} + +.card-footer .footer_content .subscribe .input-group .form-control { + border-radius: 0; + height: 50px; +} + +.card-footer .footer_content .subscribe .input-group .input-group-text { + border-radius: 0; + background-color: #031B09; + padding: 0 20px; + color: #fff; + border: 1px solid; + font-weight: 700; +} + +.card-footer .footer_content .footer_icon { + display: flex; + justify-content: space-between; + margin-top: 30px; +} + +@media screen and (max-width: 768px) { + .card-footer .footer_content .footer_icon { + margin-top: 40px; + } +} + +.card-footer .footer_content .footer_icon a { + color: #000000; + margin-right: 15px; +} + +@media screen and (max-width: 768px) { + .card-footer .footer_content .footer_icon a { + margin-right: 5px; + } +} + +.card-footer .footer_content .footer_icon a:hover { + color: #9f9f9f; +} + +.card-footer .footer_content .footer_icon a span { + font-size: 35px; +} + +@media screen and (max-width: 768px) { + .card-footer .footer_content .footer_icon a span { + font-size: 20px; + } +} + +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #5FED83; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.Shop_product .btn:hover { + background-color: transparent !important; +} + +.sidebar { + padding-right: 10px; +} + +.sidebar .wrapper .Sidebar_head { + color: #031B09; + font-size: 18px; + font-weight: 700; + margin-top: 5px; + margin-bottom: 15px; +} + +.sidebar .sidebar__filter .price_wrapper .price_filter_button { + background-color: transparent !important; + color: #031B09 !important; + border-radius: 0 !important; + font-weight: 550; + font-size: 12px; + border: 2px solid !important; +} + +.sidebar .sidebar__filter .price_wrapper .price_filter_button:hover { + border-color: #031B09 !important; + color: #fff !important; + background: #031B09 !important; +} + +.brand{ + text-decoration: none !important; +} + +.sidebar .wrapper .card { + border: none; +} + +#wsale_products_attributes_collapse .js_attributes .nav .nav-item strong{ + font-family: "Poppins", sans-serif !important; +} + +.sidebar .wrapper .card .card-header .nav-item .nav-link.active, .nav-pills .show > .nav-link { + color: #fff; + background-color: #5FED83; +} +.sidebar .wrapper .card .card-header .nav-item a { + color: #031B09; +} + +.sidebar .wrapper .card .card-header { + border-color: #dedede; +} + +.sidebar .wrapper .card .card-header label { + font-weight: 400 !important; + color: #031B09 !important; +} + +.sidebar .wrapper .card .card-header .custom-checkbox .custom-control-label { + font-weight: 400; + color: #031B09; +} + +.sidebar .wrapper .card .card-header .custom-checkbox .custom-control-label::before { + box-shadow: none !important; + border-color: -#031B09; +} + +.sidebar .wrapper .card .card-header .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { + color: #a5a3a3; + border-color: #5FED83; + background-color: #ff1f49; + box-shadow: none !important; +} + +.sidebar .wrapper .card .card-header .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: none; +} + +.sidebar .wrapper .card .list-group-item .custom-checkbox .custom-control-label { + color: #6c6a74; +} + +.sidebar .wrapper .card .list-group-item .custom-checkbox .custom-control-label::before { + box-shadow: none !important; + border-color: #9f9f9f !important; +} + +.sidebar .wrapper .card .list-group-item .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { + color: #a5a3a3; + border-color: #9f9f9f; + background-color: #ff1f49; + box-shadow: none !important; +} + +.sidebar .wrapper .card .list-group-item .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: none; +} + +.sidebar .wrapper .sidebar__filter .price_wrapper { + display: flex; +} + +.sidebar .wrapper .sidebar__filter .price_wrapper p { + align-items: center; + margin: 0; + display: flex; + padding-right: 2%; + font-weight: bold; +} +.sidebar .wrapper .sidebar__filter .price_wrapper span { + align-items: center; + margin-left: 5%; + display: flex; + padding-right: 5%; + font-weight: bold; +} + +.sidebar .wrapper .color { + display: flex; + padding-left: 0px; +} + +.sidebar .wrapper .color li a:hover { + color: #5FED83; +} + +.sidebar .wrapper .color li span { + display: block; + height: 27px; + width: 27px; + font-size: 20px; + background-color: yellow; + border: 1px solid; + border-color: transparent; + margin-right: 18px; +} + +.sidebar .wrapper .color li span:hover { + border: 3px solid !important; + border-color: #5FED83; +} + +.sidebar .wrapper .color li P { + color: #031B09; + padding-top: 10px; + font-size: 13px; +} + +.sidebar .wrapper .color li:nth-child(2) span { + background-color: rgba(255, 51, 0, 0.753) !important; +} + +.sidebar .wrapper .color li:nth-child(3) span { + background-color: rgba(2, 2, 2, 0.753) !important; +} + +.sidebar .wrapper .color li:nth-child(4) span { + background-color: rgba(34, 148, 255, 0.753) !important; +} + +.sidebar .wrapper .color li:nth-child(5) span { + background-color: rgba(0, 255, 128, 0.753) !important; +} + +.sidebar .wrapper .size { + display: flex; + padding-left: 0; +} + +.sidebar .wrapper .size li a { + text-decoration: none; +} + +.sidebar .wrapper .size li span { + font-size: 14px; + color: #031B09; + display: block; + padding: 7px 6px; + font-size: 13px; + background-color: transparent; + font-weight: 700; + margin-right: 10px; +} + +.sidebar .wrapper .size li span:hover { + background-color: #5FED83 !important; + color: #fff; +} + +.sidebar .wrapper .rec_wrapper { + display: flex; + margin-bottom: 25px; +} + +.sidebar .wrapper .rec_wrapper:last-child { + margin-bottom: 0; +} + +.sidebar .wrapper .rec_wrapper .rec_img { + max-width: 100px; +} + +.sidebar .wrapper .rec_wrapper .rec_img img { + width: 100%; +} + +.sidebar .wrapper .rec_wrapper .rec_details { + margin-left: 14px; +} + +.sidebar .wrapper .rec_wrapper .rec_details h6 { + font-size: 17px; + font-weight: bold; + color: #031B09; +} + +.sidebar .wrapper .rec_wrapper .rec_details p { + font-size: 16px; + color: #031B09; +} + +.sidebar .sidebar__filter { + position: relative; + margin-bottom: 60px; +} + +.sidebar .sidebar__filter .section-title { + margin-bottom: 50px; +} + +.sidebar .sidebar__filter .section-title .borderd_header { + text-transform: uppercase; +} + +.sidebar .sidebar__filter .section-title h4 { + font-size: 18px; +} + +.sidebar #slider-range { + margin-bottom: 30px; + background-color: #6c6a74; + border: none; + height: 8px; +} + +.sidebar #slider-range .ui-state-default, +.sidebar #slider-range .ui-widget-content .ui-state-default { + background-color: #3a3a3a; + border: none; + height: 18px; + width: 18px; + top: -4.8px; + position: absolute; +} + +.sidebar #slider-range.ui-slider-horizontal .ui-slider-range { + top: 0; + background-color: #031B09 !important; + left: 0%; + width: 60%; + position: absolute; + height: 8px; +} + +.main_product .wrapper { + display: grid; + grid-template-columns: 1fr 1fr; +} + +@media screen and (max-width: 768px) { + .main_product .wrapper { + grid-template-columns: 1fr; + } +} + +.main_product .wrapper .main_left { + position: relative; + background-size: cover; + width: 100%; + background-repeat: no-repeat; +} + +.main_product .wrapper .main_left:hover { + transition: 0.5s; +} + +.main_product .wrapper .main_left:hover:after { + position: absolute; + content: " "; + height: 100%; + width: 100%; + top: 0; + left: 0; + background: #7bf09885 !important; +} + +.main_product .wrapper .main_left .card { + background: transparent; + padding-top: 112px; + padding-bottom: 100px; + border: none !important; + margin-left: 65px; + z-index: 3; +} + +@media screen and (max-width: 768px) { + .main_product .wrapper .main_left .card { + padding-top: 100px; + } +} + +.main_product .wrapper .main_left .card .card-title { + color: #fff; + font-size: 5vw; + font-weight: bold; + padding-bottom: 20px; + text-transform: uppercase; +} + +@media screen and (max-width: 768px) { + .main_product .wrapper .main_left .card .card-title { + font-size: 30px !important; + } +} + +.main_product .wrapper .main_left .card .card-text { + color: #fff; + font-weight: 700; + font-size: 15px; +} + +.main_product .wrapper .main_right { + background-size: cover; + width: 100%; + background-repeat: no-repeat; + position: relative; +} + +.main_product .wrapper .main_right:hover:after { + position: absolute; + content: " "; + height: 100%; + width: 100%; + top: 0; + left: 0; + background: #7bf09885 !important; +} + +.main_product .wrapper .main_right .card { + background: transparent; + padding-top: 112px; + padding-bottom: 100px; + border: none !important; + margin-left: 65px; + z-index: 3; +} + +@media screen and (max-width: 768px) { + .main_product .wrapper .main_right .card { + padding-top: 100px; + padding-bottom: 100px; + } +} + +.main_product .wrapper .main_right .card .card-title { + color: #fff; + font-size: 5vw; + font-weight: bold; + padding-bottom: 20px; + text-transform: uppercase; +} + +@media screen and (max-width: 768px) { + .main_product .wrapper .main_right .card .card-title { + font-size: 30px !important; + } +} + +.main_product .wrapper .main_right .card .card-text { + color: #fff; + font-weight: 700; + font-size: 15px; +} + +.amazing { + margin-top: 0px; +} + +.amazing .amazing_bg { + /*background-image: url(/theme_xtream/static/src/img/bg-img/bg-5.jpg);*/ + padding-top: 100px; + background-size: cover; + width: 100%; + background-position: center top; + background-size: cover; +} + +@media screen and (max-width: 768px) { + .amazing .amazing_bg { + padding-bottom: 50px; + padding-top: 50px; + } +} + +.amazing .amazing_bg .amazing_content { + margin: 100px 0; + margin-left: auto; + background-color: #3a3a3ab3; + padding: 50px 50px; + float: right; + color: #fff; +} + +@media screen and (max-width: 768px) { + .amazing .amazing_bg .amazing_content { + float: none; + margin: auto; + } +} + +.amazing .amazing_bg h2 { + font-size: 55px; + font-weight: 600; + margin-bottom: 20px; +} + +@media screen and (max-width: 768px) { + .amazing .amazing_bg h2 { + font-size: 30px; + } +} + +.amazing .amazing_bg p { + padding-bottom: 10px; + font-size: 15px; + font-weight: 700; +} + +.amazing .amazing_bg .rate { + margin-bottom: 20px; +} + +.amazing .amazing_bg .rate span { + color: #fff; + font-size: 30px; + font-weight: 500; + text-decoration: line-through; +} + +.amazing .amazing_bg .rate span:last-child { + color: #5FED83; + font-size: 35px; + margin-left: 10px; + font-weight: 600; + text-decoration: none; +} + +.testiomonial { + margin-top: 0px; + padding-top: 50px; + padding-bottom: 50px; +} + +.testiomonial .wrapper { + position: relative; +} + +.testiomonial .wrapper h2 { + text-align: center; + font-size: 60px; + font-weight: 700; + color: #031B09; + text-transform: uppercase; + padding-bottom: 30px; +} + +@media screen and (max-width: 768px) { + .testiomonial .wrapper h2 { + font-size: 30px; + } +} + +.testiomonial .wrapper .testimonial_content { + padding: 0px 111px; + padding-top: 0px; +} + +@media screen and (max-width: 992px) { + .testiomonial .wrapper .testimonial_content { + padding-left: 0; + padding-right: 0; + } +} + +.testiomonial .wrapper .testimonial_content span { + color: #5FED83; + font-size: 30px; + text-align: center; + justify-content: center; + display: flex; +} + +.testiomonial .wrapper .testimonial_content .pp { + margin: 40px 0; + font-size: 17px; + line-height: 2; + font-weight: 700; + color: #9f9f9f; + text-align: center; + padding: 0 100px; +} + +@media screen and (max-width: 768px) { + .testiomonial .wrapper .testimonial_content .pp { + padding: 0 50px; + } +} + +.testiomonial .wrapper .testimonial_content .img_test { + padding-top: 20px; + display: flex; + justify-content: center; + align-items: center; +} + +.testiomonial .wrapper .testimonial_content .img_test .wrapper { + max-width: 75px; +} + +.testiomonial .wrapper .testimonial_content .img_test .wrapper img { + width: 100%; + border-radius: 50%; +} + +.testiomonial .wrapper .testimonial_content .img_test .name { + margin-left: 20px; +} + +.testiomonial .wrapper .testimonial_content .img_test .name p { + color: #031B09; + font-size: 18px; + font-weight: 700; + margin: 0; +} + +.testiomonial .wrapper .testimonial_content .img_test .name span { + color: #5FED83; + font-size: 16px; + font-weight: 700; +} + +.testiomonial .owl-carousel button.owl-dot span { + height: 10px; + width: 10px; + border: 1px solid !important; + border-color: #9f9f9f !important; + color: #fff; + border-radius: 50%; + display: block; + font-weight: 700; + margin: 5px; +} + +.testiomonial .owl-carousel button.owl-dot.active span { + background-color: #5FED83 !important; +} + +.testiomonial .owl-carousel .owl-dots { + position: absolute; + bottom: 165px; + left: 0px !important; + transform: rotate(90deg); + background-color: transparent; +} + +@media screen and (max-width: 1000px) { + .testiomonial .owl-carousel .owl-dots { + left: 150px; + } +} + +@media screen and (max-width: 768px) { + .testiomonial .owl-carousel .owl-dots { + left: 100px; + } + .oe_product_cart .oe_product_image{ + height: 300px; + } +} + +@media screen and (max-width: 600px) { + .testiomonial .owl-carousel .owl-dots { + left: 75px; + } + .oe_product_cart .oe_product_image{ + height: 270px; + } +} + +.discount { + display: grid; + grid-template-columns: 1fr 1fr 1fr; +} + +@media screen and (max-width: 992px) { + .discount { + grid-template-columns: 1fr; + } +} + +.discount .dicount_content1 { + text-align: center; + color: #fff; + background-color: #9f9f9f; + padding: 40px 15px; +} + +.discount .dicount_content1 h4 { + font-size: 25px; + font-weight: 700; +} + +@media screen and (max-width: 992px) { + .discount .dicount_content1 h4 { + font-size: 22px; + } +} + +.discount .dicount_content1 a { + color: #fff; + font-size: 14px; + text-decoration: none; + font-weight: 700; +} + +.discount .dicount_content1 a:hover { + color: #031B09; +} + +.discount .dicount_content2 { + text-align: center; + color: #fff; + background-color: #5FED83; + padding: 40px 15px; +} + +.discount .dicount_content2 h4 { + font-size: 25px; + font-weight: 700; +} + +.discount .dicount_content2 p { + color: #fff; + font-size: 14px; + text-decoration: none; + font-weight: 700; +} + +.discount .dicount_content3 { + text-align: center; + color: #fff; + background-color: #031B09; + padding: 40px 15px; +} + +.discount .dicount_content3 h4 { + font-size: 25px; + font-weight: 700; +} + +.discount .dicount_content3 p { + color: #fff; + font-size: 14px; + text-decoration: none; + font-weight: 700; +} + +.choose { + margin: 90px 0; +} + +.choose .wrapper { + padding: 10px 0; +} + +.choose .choose_left { + color: #6c6a74; + font-size: 14px; +} + +.choose .choose_right { + float: right; + /* Custom dropdown */ + /*Hiding the select arrow for IE10*/ +} + +@media screen and (max-width: 768px) { + .choose .choose_right { + float: none; + } +} + +.choose .choose_right .custom-dropdown { + width: 300px; + border: 1px solid; + border-color: #dedede; + border-radius: 5px; + position: relative; + display: inline-block; + vertical-align: middle; + font-size: 14px; + transition: 0.5s; +} + +.choose .choose_right .custom-dropdown select { + width: 300px; + background-color: #ffffff; + color: #6c6a74; + font-size: inherit; + padding: .7em; + padding-right: 2.5em; + margin: 0; + border: none !important; + text-indent: 0.01px; + text-overflow: ''; + /*Hiding the select arrow for firefox*/ + /*Hiding the select arrow for chrome*/ + /*Hiding the select arrow default implementation*/ + appearance: none; +} + +.choose .choose_right .custom-dropdown select::-ms-expand { + display: none; +} + +.choose .choose_right .custom-dropdown::before, +.choose .choose_right .custom-dropdown::after { + content: ""; + position: absolute; + pointer-events: none; +} + +.choose .choose_right .custom-dropdown::after { + /* Custom dropdown arrow */ + content: "\25BC"; + height: 1em; + font-size: .625em; + line-height: 1; + right: 1.2em; + top: 50%; + margin-top: -.5em; +} + +.choose .choose_right .custom-dropdown::before { + /* Custom dropdown arrow cover */ + width: 2em; + right: 0; + top: 0; + bottom: 0; + border-radius: 0 3px 3px 0; + background-color: rgba(0, 0, 0, 0.2); +} + +.choose .choose_right .custom-dropdown::after { + color: rgba(0, 0, 0, 0.6); +} + +.choose .choose_right .custom-dropdown select[disabled] { + color: rgba(0, 0, 0, 0.25); +} +.oe_product_cart .oe_product_image{ + height: 370px; +} +.oe_product_cart .o_wsale_product_btn { + bottom: 100%; + margin-bottom: 60%; +} + +.oe_product_cart .o_wsale_product_btn .btn{ + background-color: white !important; + color: #5FED83 !important; + border-color: #5FED83 !important; + border-radius: 100% !important; +} + +.oe_product_cart .o_wsale_product_btn .btn:hover{ + background-color: transparent !important; + color: #5FED83 !important; + border-color: #031B09 !important; + border-radius: 100% !important; +} + +span[data-oe-type="monetary"], +span[data-oe-type="monetary"] .oe_currency_value{ + color: #9f9f9f; + font-size: 20px; + font-weight: lighter; + margin-top: 20px; + margin-bottom: 5px; +} + +#cart_total #order_total .text-xl-right .monetary_field, +#cart_total #order_total .text-xl-right .monetary_field .oe_currency_value{ + font-size: 20px; + margin-top: 20px; + margin-bottom: 5px; +} + +.badge-secondary { + color: #9f9f9f !important; + font-size: 20px !important; + background-color: #000 !important; +} +.input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) { + border-color: black !important; +} + +.input-group-prepend > .btn, .input-group-append > .btn { + padding: 0.250rem 0.75rem !important; +} + +.Shop_product { + margin-top: 0px; + /* Add padding BETWEEN each column */ + /* Create three equal columns that floats next to each other */ + /* Clear floats after rows */ + /* Content */ + /* The "show" class is added to the filtered elements */ + /* Style the buttons */ +} + +.Shop_product .main { + padding-top: 30px; + margin: auto; +} + +.Shop_product .main h2 { + text-align: center; + font-size: 60px; + font-weight: 700; + color: #031B09; + text-transform: uppercase; + padding-bottom: 30px; +} + +@media screen and (max-width: 768px) { + .Shop_product .main h2 { + font-size: 30px; + } +} + +.Shop_product .main .categories { + display: flex; + justify-content: center; +} + +@media screen and (max-width: 768px) { + .Shop_product .main .categories { + display: block; + } +} + +.Shop_product h1 { + font-size: 50px; + word-break: break-all; +} + +.Shop_product .row { + margin: 10px -16px; +} + +.Shop_product .row, +.Shop_product .row > .column { + padding: 8px; +} + +.Shop_product .column { + float: left; + width: 33.33%; + display: none; + /* Hide all elements by default */ +} + +.Shop_product .row:after { + content: ""; + display: table; + clear: both; +} + +.Shop_product .content { + padding: 5px 0; +} + +.Shop_product .content .img_zoom { + overflow: hidden; +} + +.Shop_product .content .wrapper { + max-width: 330px; + position: relative; +} + +.Shop_product .content .wrapper:hover .img_details { + position: absolute; + left: 44%; + display: block; + bottom: 45%; + z-index: 3; +} + +@media screen and (max-width: 992px) { + .Shop_product .content .wrapper:hover .img_details { + left: 35%; + bottom: 43%; + } +} + +@media screen and (max-width: 992px) { + .Shop_product .content .wrapper:hover .img_details { + left: 44%; + bottom: 43%; + } +} + +.Shop_product .content .wrapper:hover .img_details i { + font-size: 25px; + color: #fff; + padding: 4px 2px; +} + +@media screen and (max-width: 992px) { + .Shop_product .content .wrapper:hover .img_details i { + font-size: 12px; + } +} + +.Shop_product .content .wrapper:hover:after { + position: absolute; + content: " "; + height: 100%; + width: 100%; + top: 0; + left: 0; + background: #00000054 !important; +} + +.Shop_product .content .wrapper:before { + position: absolute; + content: " "; + display: block; + top: 50%; + left: 50%; +} + +@media screen and (max-width: 576px) { + .Shop_product .content .wrapper { + max-width: none; + } +} + +.Shop_product .content .wrapper .img_details { + display: none; +} + +.Shop_product .content .wrapper img { + width: 100%; +} + +.Shop_product .content p { + color: #9f9f9f; + font-size: 25px; + font-weight: lighter; + margin-top: 20px; + margin-bottom: 5px; +} + +.Shop_product .content h6 { + color: #031B09; + line-height: 1.5; + font-weight: 400; + font-size: 15px; + letter-spacing: 1px; + margin-bottom: 10px; +} + +.Shop_product .content a { + font-size: 14px; + font-weight: 700; + color: #031B09; + text-decoration: none; +} + +.Shop_product .content a:hover { + color: #031B09; +} + +.Shop_product .content #zoomIn { + transform: scale(1); + transition: .3s ease-in-out; +} + +.Shop_product .content #zoomIn:hover { + transform: scale(1.05); + border-radius: 6px 6px 0px 0px; +} + +.Shop_product .show { + display: block; +} + +.Shop_product .btn { + border: none; + outline: none; + padding: 12px 16px; + background-color: white; + cursor: pointer; + color: #9f9f9f; + font-weight: 700; +} + +.Shop_product .btn:hover { + background-color: #ddd; +} + +.Shop_product .btn.active { + color: #031B09; +} + +.Shop_product .modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0; + outline: 0; + margin: auto; +} + +@media screen and (max-width: 768px) { + .Shop_product .modal-content { + margin: auto; + max-width: 65%; + } +} + +@media screen and (max-width: 576px) { + .Shop_product .modal-content { + margin: auto; + max-width: 80%; + } +} + +.Shop_product .modal-dialog { + max-width: 660px; + margin: 1.75rem auto; +} + +@media screen and (max-width: 768px) { + .Shop_product .modal-dialog { + margin: 50px 50px; + } +} + +.Shop_product .modal .model-body { + padding: 20px 25px; +} + +.Shop_product .modal .wrapper { + max-width: 100% !important; +} + +.Shop_product .modal .wrapper img { + width: 100%; +} + +.Shop_product .modal .model_details h4 { + color: #031B09; + font-size: 22px; + font-weight: 700; + padding-bottom: 10px; +} + +.Shop_product .modal .model_details .model_rate ul { + padding-left: 0; + display: flex; +} + +.Shop_product .modal .model_details .model_rate ul span { + color: #ffcd07; +} + +.Shop_product .modal .model_details .price { + color: #031B09; + font-size: 20px; + font-weight: 700; +} + +.Shop_product .modal .model_details .price span { + margin-left: 5px; + font-weight: 700; + font-size: 16; + color: #6c6a74; + text-decoration: line-through; +} + +.Shop_product .modal .model_details p { + color: #031B09; + line-height: 24px; +} + +.Shop_product .modal .model_details a { + text-decoration: underline; +} + +.Shop_product .modal .model_details .product_count { + margin-top: 30px; + display: flex; +} + +@media screen and (max-width: 412px) { + .Shop_product .modal .model_details .product_count { + display: grid !important; + grid-row-gap: 20px !important; + } +} + +.Shop_product .modal .model_details .product_count #myform { + margin-right: 10px; + text-align: center; + display: flex; + width: 100px; +} + +.Shop_product .modal .model_details .product_count .qty { + width: 40px; + height: 25px; + text-align: center; + border: none; +} + +.Shop_product .modal .model_details .product_count input.qtyplus { + width: 25px; + height: 25px; + background-color: transparent; + border: none; +} + +.Shop_product .modal .model_details .product_count input.qtyminus { + width: 25px; + height: 25px; + background-color: transparent; + border: none; +} + +.Shop_product .modal .model_details .product_count .icons { + margin-left: 15px; +} + +.Shop_product .modal .model_details .product_count .icons span { + background: #5FED83; + color: #fff; + font-size: 16px; + padding: 9px 10px; +} + +.Shop_product .modal .model_details .product_count .icons span:hover { + background-color: #000000; +} + +.Shop_product .modal .model_details .product_count .icons span:last-child { + background-color: #00bcd4 !important; + margin-left: 15px; +} + +.Shop_product .modal .model_details .share { + font-size: 14px; + font-weight: 400; + padding-top: 20px; +} + +.Shop_product .modal .model_details .footer_icon { + padding-top: 5px; +} + +.Shop_product .modal .model_details .footer_icon a { + color: #9f9f9f; + margin-right: 15px; +} + +.Shop_product .modal .model_details .footer_icon a:hover { + color: #000000; +} + +.products_pager .pagination .page-item.active .page-link { + color: #5FED83; + background-color: transparent; + border-color: #5FED83; +} + +.products_pager .pagination .page-item .page-link { + color: #9f9f9f; + color: #9f9f9f; + border: 0; + font-size: 14px; + border: 2px solid; + margin-left: 2px; + border-radius: 0; + border-color: #9f9f9f; + box-shadow: none; +} + +.products_pager .pagination .page-item .page-link:hover { + color: #5FED83; + border-color: #5FED83 !important; +} + +.product_preview { + margin-top: 90px; +} + +.product_preview .breadcrumb { + background: transparent; + margin-top: 40px; + padding-left: 0; +} + +.product_preview .breadcrumb .breadcrumb-item a { + color: #031B09; + text-decoration: none; +} + +.product_preview .back_to_page a { + font-size: 12px; + color: #031B09; + text-decoration: none; +} + +.product_preview .back_to_page span { + margin-right: 5px; + font-size: 11px; +} + +.product_preview .product_p { + margin-top: 90px; +} + +.product_preview .product_p .wrapper { + position: relative; +} + +@media screen and (max-width: 768px) { + .product_preview .product_p .wrapper .preview_details { + margin-top: 70px; + } +} + +.product_preview .product_p .wrapper .preview_details h5 { + color: #000000; + font-size: 25px; +} + +.product_price_xtream p{ + font-size: 25px; + font-weight: 700; + margin-top: 10px; + color: #031B09; +} +.product_price_xtream b{ + font-size: 25px; + font-weight: 700; + margin-top: 10px; + color: #031B09; +} +.product_price_xtream span{ + font-size: 25px; + font-weight: 700; + margin-top: 10px; + color: #031B09; +} +.product_preview .product_p .wrapper .preview_details .price { + font-size: 25px; + font-weight: 700; + margin-top: 10px; + color: #031B09; +} + +.product_preview .product_p .wrapper .preview_details .stock { + font-size: 12px; + line-height: 1.5; +} + +.product_preview .product_p .wrapper .preview_details .stock span { + font-size: 12px; + line-height: 1.5; + color: #9f9f9f; +} + +.product_preview .product_p .wrapper .preview_details .rating { + display: flex; + padding-left: 0; + padding-top: 10px; +} + +.product_preview .product_p .wrapper .preview_details .rating li a { + margin-right: 4px; + color: #ff9800; +} + +.product_preview .product_p .wrapper .preview_details .rating li a span { + font-size: 13px; +} + +.product_preview .product_p .wrapper .preview_details .size_wrapper h4 { + color: #031B09; + font-size: 14px; + font-weight: 700; + padding-top: 15px; +} + +.product_preview .product_p .wrapper .preview_details .size_wrapper .size { + display: flex; + padding-left: 0; +} + +.product_preview .product_p .wrapper .preview_details .size_wrapper .size a { + text-decoration: none; +} + +.product_preview .product_p .wrapper .preview_details .size_wrapper .size span { + font-size: 14px; + color: #000000; + display: block; + padding: 8px 12px; + font-size: 13px; + background-color: transparent; + font-weight: 700; + margin-right: 12px; + border: 2px solid; + border-color: #031B09; +} + +.product_preview .product_p .wrapper .preview_details .size_wrapper .size span:hover { + background-color: #5FED83 !important; + color: #fff; + border-color: #5FED83 !important; +} + +.product_preview .product_p .wrapper .preview_details .product_quantity { + display: flex; + margin-top: 45px; +} + +.product_preview .product_p .wrapper .preview_details .product_quantity #myform { + text-align: center; + border: 2px solid #ccc; + display: flex; + border-radius: 0px; + width: 100px; + justify-content: space-around; + align-items: center; +} + +.product_preview .product_p .wrapper .preview_details .product_quantity #myform .wrapper_q { + display: block !important; +} + +.product_preview .product_p .wrapper .preview_details .product_quantity .qty { + width: 40px; + height: 15px; + text-align: center; + border: none; +} + +.product_preview .product_p .wrapper .preview_details .product_quantity input.qtyplus { + width: 25px; + border: none; + background-color: transparent; + display: block !important; +} + +.product_preview .product_p .wrapper .preview_details .product_quantity input.qtyminus { + width: 25px; + border: none; + background-color: transparent; +} + +.collpase_wrapper { + margin-top: 20px; +} + +.collpase_wrapper .accordion:nth-child(2) .card { + border-bottom-color: #5FED83; +} + +.collpase_wrapper .accordion .card { + border-bottom-color: transparent; + background-color: transparent; + border-radius: 0; + border-left-color: transparent; + border-right-color: transparent; +} + +.collpase_wrapper .accordion .card .card-header { + background-color: transparent; + padding: 0px 0; +} + +.collpase_wrapper .accordion .card .card-header .btn-link, +.collpase_wrapper .accordion .card .card-header .collapsed { + color: #000000; + font-size: 18px; + text-decoration: none; + font-weight: 700; + text-transform: uppercase; +} +.main_product .card-body { + background-color: transparent !important; +} + +.collpase_wrapper .accordion .card .collapse .card-body { + color: #9f9f9f; +} + +.product_preview .product_p .wrapper .preview_details .collpase_wrapper { + margin-top: 0px; +} + +.product_preview .product_p .wrapper .preview_details .collpase_wrapper .accordion:nth-child(2) .card { + border-bottom-color: #5FED83; +} + +.product_preview .product_p .wrapper .preview_details .collpase_wrapper .accordion .card { + border-bottom-color: transparent; + background-color: transparent; + border-radius: 0; + border-left-color: transparent; + border-right-color: transparent; +} + +.product_preview .product_p .wrapper .preview_details .collpase_wrapper .accordion .card .card-header { + background-color: transparent; + padding: 25px 0; +} + +.product_preview .product_p .wrapper .preview_details .collpase_wrapper .accordion .card .card-header .btn-link, +.product_preview .product_p .wrapper .preview_details .collpase_wrapper .accordion .card .card-header .collapsed { + color: #000000; + font-size: 18px; + text-decoration: none; + font-weight: 700; + text-transform: uppercase; +} +.main_product .card-body { + background-color: transparent !important; +} + +.product_preview .product_p .wrapper .preview_details .collpase_wrapper .accordion .card .collapse .card-body { + color: #9f9f9f; +} + +.product_preview .trending_body1 .outer { + margin: 0 auto; +} + +.product_preview .trending_body1 #big .item { + width: 100%; + display: block; +} + +@media screen and (max-width: 576px) { + .product_preview .trending_body1 #thumbs { + display: none; + } +} + +.product_preview .trending_body1 #thumbs .item { + background: #c9c9c9; + height: 70px; + line-height: 70px; + padding: 0px; + margin: 2px; + color: #fff; + border-radius: 3px; + text-align: center; + cursor: pointer; +} + +.product_preview .trending_body1 #thumbs .item h1 { + font-size: 18px; +} + +.product_preview .trending_body1 .owl-theme .owl-nav [class*="owl-"] { + transition: all 0.3s ease; +} + +.product_preview .trending_body1 .owl-theme .owl-nav [class*="owl-"].disabled:hover { + background-color: #d6d6d6; +} + +.product_preview .trending_body1 #big.owl-theme { + position: relative; +} + +.product_preview .trending_body1 #big.owl-theme .owl-next, +.product_preview .trending_body1 #big.owl-theme .owl-prev { + background: transparent; + width: 22px; + line-height: 40px; + height: 40px; + margin-top: -20px; + position: absolute; + text-align: center; + top: 50%; +} + +.product_preview .trending_body1 #big.owl-theme .owl-prev { + left: 10px; +} + +.product_preview .trending_body1 #big.owl-theme .owl-next { + right: 10px; +} + +.demo_h { + text-align: center; + font-size: 60px; + font-weight: 700; + color: #031B09; + text-transform: uppercase; + padding-bottom: 30px; +} + +@media screen and (max-width: 768px) { + .demo_h { + font-size: 30px; + } +} + +.cart { + margin-top: 90px; +} + +.cart .table_wrapper .table-responsive { + overflow-x: auto; +} + +.cart .table_wrapper .table { + overflow-x: auto; +} + +.cart .table_wrapper .table thead { + background-color: #f4f2f8; +} + +.cart .table_wrapper .table tbody .cart_img { + display: flex; + align-items: center; +} + +.cart .table_wrapper .table tbody .cart_img .wrapper { + max-width: 150px; +} + +.cart .table_wrapper .table tbody .cart_img .wrapper img { + width: 100%; +} + +.cart .table_wrapper .table tbody .cart_img h6 { + color: #031B09; + font-size: 23px; + padding-left: 20px; +} + +@media screen and (max-width: 600px) { + .cart .table_wrapper .table tbody .cart_img h6 { + font-size: 14px; + padding-left: 10px; + } +} + +.cart .table_wrapper .table tbody td { + vertical-align: middle; +} + +.cart .table_wrapper .table tbody .cart_q #myform { + text-align: center; + padding: 5px; + border: 1px solid #ccc; + display: flex; + margin: 2%; + width: 95px; +} + +.cart .table_wrapper .table tbody .cart_q .qty { + width: 40px; + height: 25px; + text-align: center; + border: none; +} + +.cart .table_wrapper .table tbody .cart_q input.qtyplus { + width: 25px; + height: 25px; + background-color: transparent; + border: none; +} + +.cart .table_wrapper .table tbody .cart_q input.qtyminus { + width: 25px; + height: 25px; + background-color: transparent; + border: none; +} + +.cart .c_buttons { + margin-top: 30px; +} + +.cart .cart_bottom { + margin-top: 70px; +} + +.cart .cart_bottom .coupen { + padding-top: 30px; +} + +.cart .cart_bottom .coupen .hb h5 { + color: #031B09; + font-size: 23px; + font-weight: 700; +} + +.cart .cart_bottom .coupen .hb p { + color: #9f9f9f; +} + +.cart .cart_bottom .coupen .input-group { + width: 100%; + height: 50px; + border-radius: 0; + margin-top: 70px; +} + +.cart .cart_bottom .coupen .input-group .form-control { + border-radius: 0; + height: 50px; +} + +.cart .cart_bottom .coupen .input-group .input-group-text { + border-radius: 0; + background-color: #5FED83; + padding: 0 20px; + color: #fff; + border: 1px solid; + font-weight: 700; +} + +.cart .cart_bottom .coupen .form-control:focus { + color: #495057; + background-color: #fff; + border-color: #5FED83; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.cart .cart_bottom .coupen .radio_wrapper { + margin-top: 35px; +} + +.cart .cart_bottom .coupen .custom-control { + display: flex; + justify-content: space-between; + margin-bottom: 30px; + margin-right: 20px; +} + +.cart .cart_bottom .coupen .custom-control p { + color: #000000; +} + +.cart .cart_bottom .coupen .cart-total-chart { + padding-left: 0; + margin-top: 35px; +} + +.cart .cart_bottom .coupen .cart-total-chart li { + display: flex; + justify-content: space-between; + margin-bottom: 30px; + margin-right: 20px; +} + +.checkout { + margin-top: 90px; +} + +.checkout .checkout_left .billing h3 { + font-weight: 600; + color: #031B09; + text-transform: uppercase; +} + +.checkout .checkout_left .billing p { + color: #6c6a74; + margin-top: 15px; +} + +.checkout_autoformat .form-row .form-control { + display: block; + width: 100%; + height: calc(2em + .85rem + 3px) !important; + padding: .375rem .75rem !important; + font-size: 1rem !important; + font-weight: 400 !important; + line-height: 1.5 !important; + color: #495057 !important; + background-color: #e3e3e3 !important; + background-clip: padding-box !important; + border: 1px solid !important; + border-color: transparent !important; + border-radius: 0 !important; + transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out !important; +} +.checkout_autoformat .form-row .form-control:focus { + color: #495057 !important; + background-color: #fff !important; + border-color: #5FED83 !important; + outline: 0 !important; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important; +} + + +.checkout .checkout_left .form-control { + display: block; + width: 100%; + height: calc(2em + .85rem + 3px); + padding: .375rem .75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #e3e3e3; + background-clip: padding-box; + border: 1px solid; + border-color: transparent !important; + border-radius: 0; + transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; +} + +.checkout .checkout_left .form-control:focus { + color: #495057; + background-color: #fff; + border-color: #5FED83 !important; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.checkout .checkout_left .custom-select { + display: inline-block; + width: 100%; + height: calc(2em + .85rem + 3px); + padding: .375rem 1.75rem .375rem .75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + border: 1px solid #9f9f9f; + border-radius: 0; + appearance: none; + box-shadow: none; +} + +.checkout .checkout_left .card { + border: none; +} + +.checkout .checkout_left .card .card-body .md-form { + color: #6c6a74; +} + +.checkout .checkout_left .card .card-body .md-form .lable { + color: #000000; +} + +.checkout .checkout_left .card .card-body .custom-control-input:checked ~ .custom-control-label::before { + color: #e9c939; + border-color: #e9c939; + background-color: #e9c939; + outline: none; +} + +.checkout .checkout_left .card .card-body .form-check-input:checked ~ .form-check-label::before { + color: #e9c939 !important; + border-color: #e9c939 !important; + background-color: #e9c939 !important; + content: ""; +} + +.checkout .checkout_left .card .card-body .input[type="checkbox"]:before, .checkout .checkout_left .card .card-body input[type="radio"]:before { + position: absolute; + top: .25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + background-color: #8a1717; + border: #3e71a5 solid 1px; +} + +.checkout .checkout_right .order h3 { + font-weight: 600; + color: #031B09; +} + +.checkout .checkout_right .order .subhead { + color: #6c6a74; + padding-top: 10px; +} + +.checkout .checkout_right .order .wrapper { + padding-left: 30px; +} + +.checkout .checkout_right .order ul { + padding-top: 20px; + padding-left: 0; +} + +.checkout .checkout_right .order ul li { + display: flex; + justify-content: space-between; + margin-top: 20px; + padding-bottom: 15px; +} + +.checkout .checkout_right .order ul li span { + padding-right: 30px; +} + +.checkout .checkout_right .order ul li .nn { + color: #000000; +} + +.checkout .checkout_right .order .payment label { + color: #000000; +} + +.checkout .checkout_right .order .payment [type="radio"]:checked, +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) { + position: absolute; + left: -9999px; +} + +.checkout .checkout_right .order .payment [type="radio"]:checked + label, +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) + label { + position: relative; + padding-left: 28px; + cursor: pointer; + line-height: 20px; + display: inline-block; + color: #666; +} + +.checkout .checkout_right .order .payment [type="radio"]:checked + label:before, +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) + label:before { + content: ''; + position: absolute; + left: 0; + top: 0; + width: 18px; + height: 18px; + border: 1px solid; + border-color: #dedede; + border-radius: 100%; + background: #fff; +} + +.checkout .checkout_right .order .payment [type="radio"]:checked + label:after, +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) + label:after { + content: ''; + width: 11px; + height: 12px; + background: #e9c939; + position: absolute; + top: 3px; + left: 3px; + border-radius: 100%; + transition: all 0.2s ease; +} + +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) + label:after { + opacity: 0; + transform: scale(0); +} + +.checkout .checkout_right .order .payment [type="radio"]:checked + label:after { + opacity: 1; + transform: scale(1); +} + +.checkout .checkout_right .order .order_text { + font-style: italic; + color: #6c6a74; + margin-top: 55px; + margin-bottom: 20px; +} + +.contact { + margin-top: 0px; + margin-bottom: 0px; +} + +.contact .row .form-group{ + width: 100%; +} +.contact .row .form-group .form-field{ + width: 100%; +} + +.contact .contact_left .name h3 { + font-weight: 700; + color: #031B09; + text-transform: uppercase; +} + +.contact .contact_left .name p { + color: #6c6a74; +} + +.contact .contact_left .name .contact-form { + margin-top: 70px; +} + +.contact .contact_left .name .contact-form .form-control { + display: block; + width: 100%; + height: calc(2.5em + .75rem + 2px); + padding: .375rem .75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-color: transparent; + border-bottom-color: #dedede; + border-radius: 0; + transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; +} + +.contact .contact_left .name .contact-form .form-control:focus { + color: #495057; + background-color: #fff; + border-bottom-color: #5FED83 !important; + outline: 0; + box-shadow: none; +} + +.contact .contact_left .name .contact-form .input-block { + margin-bottom: 30px; +} + +.contact .contact_left .name .contact-form .input-block label { + color: #6c6a74; +} + +@media screen and (max-width: 992px) { + .contact .contact_right { + margin-top: 5px; + } +} + +.contact .contact_right .c_info { + margin-bottom: 10px; +} + +.contact .contact_right h3 { + margin-bottom: 10px; + text-transform: uppercase; + font-weight: 700; + color: #031B09; +} + +.contact .contact_right .phone { + padding-top: 5px; + padding-bottom: 5px; +} + +.contact .contact_right .phone span { + padding-right: 20px; +} + +.contact .contact_right .phone a { + color: #6c6a74; + text-decoration: none; +} + +.contact .contact_right .phone a:hover { + color: #e9c939 !important; +} + +.map .mapouter { + position: relative; + text-align: right; + height: 500px; + widows: 100%; +} + +.map .mapouter .mapouter { + overflow: hidden; + background: none !important; + height: 100%; + width: 100%; +} +/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/theme_xtream/static/src/css/style.css.map b/theme_xtream/static/src/css/style.css.map new file mode 100644 index 000000000..5f214b38c --- /dev/null +++ b/theme_xtream/static/src/css/style.css.map @@ -0,0 +1,32 @@ +{ + "version": 3, + "mappings": "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", + "sources": [ + "../scss/style.scss", + "../scss/_variables.scss", + "../scss/_normalize.scss", + "../scss/_common.scss", + "../scss/components/_components.scss", + "../scss/components/_banner.scss", + "../scss/components/_button.scss", + "../scss/components/_product.scss", + "../scss/layout/_layouts.scss", + "../scss/layout/_navigation.scss", + "../scss/layout/_footer.scss", + "../scss/layout/_sidebar.scss", + "../scss/pages/_pages.scss", + "../scss/pages/home/_home.scss", + "../scss/pages/home/_main-product.scss", + "../scss/pages/home/_amazing.scss", + "../scss/pages/home/_testmonial.scss", + "../scss/pages/home/_discount.scss", + "../scss/pages/_categories.scss", + "../scss/pages/_shop.scss", + "../scss/pages/_product-preview.scss", + "../scss/pages/_cart.scss", + "../scss/pages/_checkout.scss", + "../scss/pages/_contact.scss" + ], + "names": [], + "file": "style.css" +} \ No newline at end of file diff --git a/theme_xtream/static/src/img/bg-img/bg-1.jpg b/theme_xtream/static/src/img/bg-img/bg-1.jpg new file mode 100644 index 000000000..e71c0d1b8 Binary files /dev/null and b/theme_xtream/static/src/img/bg-img/bg-1.jpg differ diff --git a/theme_xtream/static/src/img/bg-img/bg-2.jpg b/theme_xtream/static/src/img/bg-img/bg-2.jpg new file mode 100644 index 000000000..0240cada7 Binary files /dev/null and b/theme_xtream/static/src/img/bg-img/bg-2.jpg differ diff --git a/theme_xtream/static/src/img/bg-img/bg-3.jpg b/theme_xtream/static/src/img/bg-img/bg-3.jpg new file mode 100644 index 000000000..7ea822910 Binary files /dev/null and b/theme_xtream/static/src/img/bg-img/bg-3.jpg differ diff --git a/theme_xtream/static/src/img/bg-img/bg-4.jpg b/theme_xtream/static/src/img/bg-img/bg-4.jpg new file mode 100644 index 000000000..02178035f Binary files /dev/null and b/theme_xtream/static/src/img/bg-img/bg-4.jpg differ diff --git a/theme_xtream/static/src/img/bg-img/bg-5.jpg b/theme_xtream/static/src/img/bg-img/bg-5.jpg new file mode 100644 index 000000000..d1e2ab875 Binary files /dev/null and b/theme_xtream/static/src/img/bg-img/bg-5.jpg differ diff --git a/theme_xtream/static/src/img/bg-img/tes-1.jpg b/theme_xtream/static/src/img/bg-img/tes-1.jpg new file mode 100644 index 000000000..260f41c32 Binary files /dev/null and b/theme_xtream/static/src/img/bg-img/tes-1.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-1.jpg b/theme_xtream/static/src/img/product-img/product-1.jpg new file mode 100644 index 000000000..9381d7be4 Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-1.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-10.jpg b/theme_xtream/static/src/img/product-img/product-10.jpg new file mode 100644 index 000000000..bd0641e6c Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-10.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-11.jpg b/theme_xtream/static/src/img/product-img/product-11.jpg new file mode 100644 index 000000000..e72d61041 Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-11.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-12.jpg b/theme_xtream/static/src/img/product-img/product-12.jpg new file mode 100644 index 000000000..689b93037 Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-12.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-2.jpg b/theme_xtream/static/src/img/product-img/product-2.jpg new file mode 100644 index 000000000..06db90332 Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-2.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-3.jpg b/theme_xtream/static/src/img/product-img/product-3.jpg new file mode 100644 index 000000000..e6f9bebb9 Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-3.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-4.jpg b/theme_xtream/static/src/img/product-img/product-4.jpg new file mode 100644 index 000000000..71c6c9d30 Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-4.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-5.jpg b/theme_xtream/static/src/img/product-img/product-5.jpg new file mode 100644 index 000000000..41ce27507 Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-5.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-6.jpg b/theme_xtream/static/src/img/product-img/product-6.jpg new file mode 100644 index 000000000..edeae213a Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-6.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-7.jpg b/theme_xtream/static/src/img/product-img/product-7.jpg new file mode 100644 index 000000000..29e4fd58c Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-7.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-8.jpg b/theme_xtream/static/src/img/product-img/product-8.jpg new file mode 100644 index 000000000..befe91d7d Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-8.jpg differ diff --git a/theme_xtream/static/src/img/product-img/product-9.jpg b/theme_xtream/static/src/img/product-img/product-9.jpg new file mode 100644 index 000000000..8f28b598b Binary files /dev/null and b/theme_xtream/static/src/img/product-img/product-9.jpg differ diff --git a/theme_xtream/static/src/img/snippets/amazing_banner.jpg b/theme_xtream/static/src/img/snippets/amazing_banner.jpg new file mode 100644 index 000000000..acbeb762d Binary files /dev/null and b/theme_xtream/static/src/img/snippets/amazing_banner.jpg differ diff --git a/theme_xtream/static/src/img/snippets/discount.jpg b/theme_xtream/static/src/img/snippets/discount.jpg new file mode 100644 index 000000000..d062058b1 Binary files /dev/null and b/theme_xtream/static/src/img/snippets/discount.jpg differ diff --git a/theme_xtream/static/src/img/snippets/main_banner.jpg b/theme_xtream/static/src/img/snippets/main_banner.jpg new file mode 100644 index 000000000..62779bcca Binary files /dev/null and b/theme_xtream/static/src/img/snippets/main_banner.jpg differ diff --git a/theme_xtream/static/src/img/snippets/main_product.jpg b/theme_xtream/static/src/img/snippets/main_product.jpg new file mode 100644 index 000000000..fc6ea477c Binary files /dev/null and b/theme_xtream/static/src/img/snippets/main_product.jpg differ diff --git a/theme_xtream/static/src/img/snippets/map.jpg b/theme_xtream/static/src/img/snippets/map.jpg new file mode 100644 index 000000000..9fe9cfebc Binary files /dev/null and b/theme_xtream/static/src/img/snippets/map.jpg differ diff --git a/theme_xtream/static/src/img/snippets/new_arrivals.jpg b/theme_xtream/static/src/img/snippets/new_arrivals.jpg new file mode 100644 index 000000000..a819dfdf1 Binary files /dev/null and b/theme_xtream/static/src/img/snippets/new_arrivals.jpg differ diff --git a/theme_xtream/static/src/img/snippets/shop_block.jpg b/theme_xtream/static/src/img/snippets/shop_block.jpg new file mode 100644 index 000000000..5a63feece Binary files /dev/null and b/theme_xtream/static/src/img/snippets/shop_block.jpg differ diff --git a/theme_xtream/static/src/img/snippets/testimonial.jpg b/theme_xtream/static/src/img/snippets/testimonial.jpg new file mode 100644 index 000000000..7ad5fb4d2 Binary files /dev/null and b/theme_xtream/static/src/img/snippets/testimonial.jpg differ diff --git a/theme_xtream/static/src/js/clear_cart.js b/theme_xtream/static/src/js/clear_cart.js new file mode 100644 index 000000000..50d02c714 --- /dev/null +++ b/theme_xtream/static/src/js/clear_cart.js @@ -0,0 +1,16 @@ +odoo.define('theme_xtream.clear_cart', function (require) { + "use strict"; + + require('web.dom_ready'); + var ajax = require('web.ajax'); + $(document).ready(function(){ + $("body").on('click','#clear_cart_button',function (ev){ + ev.preventDefault(); + ajax.jsonRpc("/shop/clear_cart", 'call', {}).then(function(data){ + location.reload(); + return; + }); + return false; + }); + }); +}) diff --git a/theme_xtream/static/src/js/custom.js b/theme_xtream/static/src/js/custom.js new file mode 100644 index 000000000..09f5e4249 --- /dev/null +++ b/theme_xtream/static/src/js/custom.js @@ -0,0 +1,120 @@ + filterSelection("all") + function filterSelection(c) { + var x, i; + x = document.getElementsByClassName("column"); + if (c == "all") c = ""; + for (i = 0; i < x.length; i++) { + w3RemoveClass(x[i], "show"); + if (x[i].className.indexOf(c) > -1) w3AddClass(x[i], "show"); + } + } + function w3AddClass(element, name) { + var i, arr1, arr2; + arr1 = element.className.split(" "); + arr2 = name.split(" "); + for (i = 0; i < arr2.length; i++) { + if (arr1.indexOf(arr2[i]) == -1) { element.className += " " + arr2[i]; } + } + } + function w3RemoveClass(element, name) { + var i, arr1, arr2; + arr1 = element.className.split(" "); + arr2 = name.split(" "); + for (i = 0; i < arr2.length; i++) { + while (arr1.indexOf(arr2[i]) > -1) { + arr1.splice(arr1.indexOf(arr2[i]), 1); + } + } + element.className = arr1.join(" "); + } + + + jQuery(document).ready(function () { + // This button will increment the value + $('.qtyplus').click(function (e) { + // Stop acting like a button + e.preventDefault(); + // Get the field name + fieldName = $(this).attr('field'); + // Get its current value + var currentVal = parseInt($('input[name=' + fieldName + ']').val()); + // If is not undefined + if (!isNaN(currentVal)) { + // Increment + $('input[name=' + fieldName + ']').val(currentVal + 1); + } else { + // Otherwise put a 0 there + $('input[name=' + fieldName + ']').val(0); + } + }); + // This button will decrement the value till 0 + $(".qtyminus").click(function (e) { + // Stop acting like a button + e.preventDefault(); + // Get the field name + fieldName = $(this).attr('field'); + // Get its current value + var currentVal = parseInt($('input[name=' + fieldName + ']').val()); + // If it isn't undefined or its greater than 0 + if (!isNaN(currentVal) && currentVal > 0) { + // Decrement one + $('input[name=' + fieldName + ']').val(currentVal - 1); + } else { + // Otherwise put a 0 there + $('input[name=' + fieldName + ']').val(0); + } + }); + }); + + $(document).ready(function () { + $("#slider").owlCarousel( + { + // animateOut: 'slideOutDown', + // animateIn: 'flipInX', + items: 1, + loop: true, + // margin: 30, + // stagePadding: 30, + smartSpeed: 450, + autoplay: true, + autoPlaySpeed: 1000, + autoPlayTimeout: 1000, + autoplayHoverPause: true, + onInitialized: counter, + dots: true, + } + ); + }); + function counter() { + var buttons = $('.owl-dots button'); + buttons.each(function (item) { +// $(item).find('span').index + 1; + }); + } + + $(document).ready(function () { + $("#slider2").owlCarousel( + { + // animateOut: 'slideOutDown', + // animateIn: 'flipInX', + items: 1, + loop: true, + // margin: 30, + // stagePadding: 30, + smartSpeed: 450, + autoplay: true, + autoPlaySpeed: 1000, + autoPlayTimeout: 1000, + autoplayHoverPause: true, + onInitialized: counter, + dots: true, + } + ); + }); + + function counter() { + var buttons = $('.owl-dots button'); + buttons.each(function (item) { + // $(item).find('span').text(index + 1); + }); + } diff --git a/theme_xtream/static/src/js/new_arrivals.js b/theme_xtream/static/src/js/new_arrivals.js new file mode 100644 index 000000000..0d2d93df4 --- /dev/null +++ b/theme_xtream/static/src/js/new_arrivals.js @@ -0,0 +1,19 @@ +odoo.define('theme_xtream.new_arrivals', function(require){ +'use strict'; + +var Animation = require('website.content.snippets.animation'); +var ajax = require('web.ajax'); + +Animation.registry.arrival_product = Animation.Class.extend({ + selector : '.arrivals', + start: function(){ + var self = this; + ajax.jsonRpc('/get_arrival_product', 'call', {}) + .then(function (data) { + if(data){ + self.$target.empty().append(data); + } + }); + } + }); +}); \ No newline at end of file diff --git a/theme_xtream/static/src/js/owl.carousel.js b/theme_xtream/static/src/js/owl.carousel.js new file mode 100644 index 000000000..66c67ebe0 --- /dev/null +++ b/theme_xtream/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 = [ $('