diff --git a/theme_blast/__init__.py b/theme_blast/__init__.py new file mode 100644 index 000000000..48ce603ee --- /dev/null +++ b/theme_blast/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-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 \ No newline at end of file diff --git a/theme_blast/__manifest__.py b/theme_blast/__manifest__.py new file mode 100644 index 000000000..d6c644bc4 --- /dev/null +++ b/theme_blast/__manifest__.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-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 Blast', + 'version': '14.0.1.0.0', + 'summary': 'Theme Blast', + 'description': 'Theme Blast Front-end theme', + 'category': 'Theme/Corporate', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'license': 'AGPL-3', + 'depends': ['website_sale', 'website_mass_mailing'], + 'data': [ + 'data/blasst_configuration_data.xml', + 'security/ir.model.access.csv', + 'views/assets.xml', + 'views/blast_configuration_view.xml', + 'views/asked_questions_view.xml', + 'views/partner_testimonial.xml', + 'views/snippets/askedquestions.xml', + 'views/snippets/banner.xml', + 'views/snippets/clients.xml', + 'views/snippets/choose.xml', + 'views/snippets/best_deal.xml', + 'views/snippets/best_products_carousal.xml', + 'views/snippets/cardsnippet.xml', + 'views/snippets/features.xml', + 'views/snippets/sub.xml', + 'views/footer.xml', + 'views/views.xml' + + ], + 'images': [ + 'static/description/banner.jpg', + 'static/description/blast_screenshot.jpg', + ], + 'installable': True, + 'auto_install': False, +} diff --git a/theme_blast/controllers/__init__.py b/theme_blast/controllers/__init__.py new file mode 100644 index 000000000..c3956e005 --- /dev/null +++ b/theme_blast/controllers/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-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 \ No newline at end of file diff --git a/theme_blast/controllers/main.py b/theme_blast/controllers/main.py new file mode 100644 index 000000000..a8cda2ff0 --- /dev/null +++ b/theme_blast/controllers/main.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import http, _ +from odoo.http import request + + +class DescribingAttribute(http.Controller): + + @http.route('/get_product', auth='public', type='json', website=True) + def get_products(self, **kwargs): + blast_configuration = request.env.ref('theme_blast.blast_configuration_data') + product_id = blast_configuration.best_deal + values = {'product_id': product_id} + response = http.Response(template='theme_blast.best_deal_template', qcontext=values) + return response.render() + + @http.route('/get_product_snippet', auth='public', type='json', + website=True) + def get_best_products(self, **kwargs): + blast_configuration = request.env.ref( + 'theme_blast.blast_configuration_data') + products = blast_configuration.best_products + values = {'products': products} + response = http.Response( + template='theme_blast.best_product_carousel_snippet', + qcontext=values) + return response.render() + + @http.route('/get_testimonial', auth='public', type='json', website=True) + def get_testimonial(self, **kwargs): + partners = request.env['res.partner'].search([('is_publish', '=', 'True')]) + values = {'partners': partners} + response = http.Response(template='theme_blast.testimonials_snippet', qcontext=values) + return response.render() + + @http.route('/get_countdown', auth='public', type='json', website=True) + def get_countdown(self, **kwargs): + blast_configuration = request.env.ref('theme_blast.blast_configuration_data') + end_date = blast_configuration.date_end + return end_date diff --git a/theme_blast/data/blasst_configuration_data.xml b/theme_blast/data/blasst_configuration_data.xml new file mode 100644 index 000000000..f20750b71 --- /dev/null +++ b/theme_blast/data/blasst_configuration_data.xml @@ -0,0 +1,8 @@ + + + + + Blast Configuration + + + \ No newline at end of file diff --git a/theme_blast/models/__init__.py b/theme_blast/models/__init__.py new file mode 100644 index 000000000..6e12ca1cc --- /dev/null +++ b/theme_blast/models/__init__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-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 blast_configuration +from . import asked_questions +from . import partner_testimonial +from . import theme_blast + diff --git a/theme_blast/models/asked_questions.py b/theme_blast/models/asked_questions.py new file mode 100644 index 000000000..2d4b177b5 --- /dev/null +++ b/theme_blast/models/asked_questions.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-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, fields + + +class AskedQuestions(models.Model): + _name = 'asked.questions' + + question = fields.Text('Question') + answer = fields.Text('Answer') + blast_configuration_id = fields.Many2one('blast.configuration') \ No newline at end of file diff --git a/theme_blast/models/blast_configuration.py b/theme_blast/models/blast_configuration.py new file mode 100644 index 000000000..8807f50d8 --- /dev/null +++ b/theme_blast/models/blast_configuration.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-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,fields, api, _ + + +class BlastConfiguration(models.Model): + _name = 'blast.configuration' + + name = fields.Char('Name') + best_deal = fields.Many2one('product.product') + date_start = fields.Datetime(string='Start Date', + default=fields.Datetime.now()) + date_end = fields.Datetime(string='End Date') + best_products = fields.Many2many('product.product') + asked_questions_ids = fields.One2many('asked.questions', + 'blast_configuration_id', + string="Asked Questions") diff --git a/theme_blast/models/partner_testimonial.py b/theme_blast/models/partner_testimonial.py new file mode 100644 index 000000000..fabc9a41d --- /dev/null +++ b/theme_blast/models/partner_testimonial.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-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 fields, models + + +class PartnerTestimonial(models.Model): + _inherit = 'res.partner' + + is_publish = fields.Boolean(string='Is Publish') + message = fields.Text(string='Message') diff --git a/theme_blast/models/theme_blast.py b/theme_blast/models/theme_blast.py new file mode 100644 index 000000000..7c8704359 --- /dev/null +++ b/theme_blast/models/theme_blast.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-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, fields + + +class ThemeBlast(models.AbstractModel): + _inherit = 'theme.utils' + + def _theme_blast_post_copy(self, mod): + self.disable_view('website.template_header_default_oe_structure_header_default_1') + self.enable_view('website.template_header_default_align_right') + self.enable_header_off_canvas() + + +class IrModuleModule(models.Model): + _inherit = 'ir.module.module' + + def _theme_load(self, website): + res = super(IrModuleModule, self)._theme_load(website) + homepage = website.homepage_id + if homepage: + homepage.header_overlay = True + return res \ No newline at end of file diff --git a/theme_blast/security/ir.model.access.csv b/theme_blast/security/ir.model.access.csv new file mode 100644 index 000000000..3d4046c49 --- /dev/null +++ b/theme_blast/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_blast_configuration,access_blast_configuration,model_blast_configuration,,1,1,1,1 +access_asked_questions,access_asked_questions,model_asked_questions,,1,1,1,1 \ No newline at end of file diff --git a/theme_blast/static/description/banner.jpg b/theme_blast/static/description/banner.jpg new file mode 100644 index 000000000..b0daaf0d9 Binary files /dev/null and b/theme_blast/static/description/banner.jpg differ diff --git a/theme_blast/static/description/blast_screenshot.jpg b/theme_blast/static/description/blast_screenshot.jpg new file mode 100644 index 000000000..98037fe86 Binary files /dev/null and b/theme_blast/static/description/blast_screenshot.jpg differ diff --git a/theme_blast/static/description/icon.png b/theme_blast/static/description/icon.png new file mode 100644 index 000000000..871d319cf Binary files /dev/null and b/theme_blast/static/description/icon.png differ diff --git a/theme_blast/static/description/images/Cybrosys.png b/theme_blast/static/description/images/Cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/theme_blast/static/description/images/Cybrosys.png differ diff --git a/theme_blast/static/description/images/cybro-logo-oca-no-text.png b/theme_blast/static/description/images/cybro-logo-oca-no-text.png new file mode 100644 index 000000000..180d15dd6 Binary files /dev/null and b/theme_blast/static/description/images/cybro-logo-oca-no-text.png differ diff --git a/theme_blast/static/description/images/cybro-logo-oca.png b/theme_blast/static/description/images/cybro-logo-oca.png new file mode 100644 index 000000000..90e4c9cb9 Binary files /dev/null and b/theme_blast/static/description/images/cybro-logo-oca.png differ diff --git a/theme_blast/static/description/images/cybrosys.png b/theme_blast/static/description/images/cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/theme_blast/static/description/images/cybrosys.png differ diff --git a/theme_blast/static/description/images/hero.png b/theme_blast/static/description/images/hero.png new file mode 100644 index 000000000..3fb5b872c Binary files /dev/null and b/theme_blast/static/description/images/hero.png differ diff --git a/theme_blast/static/description/images/laptop-screenshots.jpg b/theme_blast/static/description/images/laptop-screenshots.jpg new file mode 100644 index 000000000..c5b2b9307 Binary files /dev/null and b/theme_blast/static/description/images/laptop-screenshots.jpg differ diff --git a/theme_blast/static/description/images/phone-screenshots.jpg b/theme_blast/static/description/images/phone-screenshots.jpg new file mode 100644 index 000000000..853d7cc1c Binary files /dev/null and b/theme_blast/static/description/images/phone-screenshots.jpg differ diff --git a/theme_blast/static/description/index.html b/theme_blast/static/description/index.html new file mode 100644 index 000000000..422d71baa --- /dev/null +++ b/theme_blast/static/description/index.html @@ -0,0 +1,135 @@ + +
+
+
+ Cybrosys Logo +
+
+
+
+
+ Theme Screenshot +

Blast

+

+ Blast is a popular 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 countdown, best products slider, testimonial slider that are configured from the backend. +

+
+
+
+ +
+ + +
+
+

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

+ +
+
+ +
\ No newline at end of file diff --git a/theme_blast/static/src/css/animate.min.css b/theme_blast/static/src/css/animate.min.css new file mode 100644 index 000000000..76d2fe1a8 --- /dev/null +++ b/theme_blast/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_blast/static/src/css/owl.carousel.min.css b/theme_blast/static/src/css/owl.carousel.min.css new file mode 100644 index 000000000..a71df11c0 --- /dev/null +++ b/theme_blast/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_blast/static/src/css/owl.theme.default.min.css b/theme_blast/static/src/css/owl.theme.default.min.css new file mode 100644 index 000000000..487088d2e --- /dev/null +++ b/theme_blast/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_blast/static/src/css/style.css b/theme_blast/static/src/css/style.css new file mode 100644 index 000000000..1ea3b6cab --- /dev/null +++ b/theme_blast/static/src/css/style.css @@ -0,0 +1,2196 @@ +@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Work+Sans&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@700&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Bungee&display=swap"); +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ +/* Document + ========================================================================== */ +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ +html { + line-height: 1.15; + /* 1 */ + -webkit-text-size-adjust: 100%; + /* 2 */ +} + +/* Sections + ========================================================================== */ +/** + * Remove the margin in all browsers. + */ +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ +hr { + box-sizing: content-box; + /* 1 */ + height: 0; + /* 1 */ + overflow: visible; + /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +pre { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ +/** + * Remove the gray background on active links in IE 10. + */ +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ +abbr[title] { + border-bottom: none; + /* 1 */ + text-decoration: underline; + /* 2 */ + text-decoration: underline dotted; + /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +code, +kbd, +samp { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ +/** + * Remove the border on images inside links in IE 10. + */ +img { + border-style: none; +} + +/* Forms + ========================================================================== */ +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ +button, +input, +optgroup, +select, +textarea { + font-family: inherit; + /* 1 */ + font-size: 100%; + /* 1 */ + line-height: 1.15; + /* 1 */ + margin: 0; + /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ +button, +input { + /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ +button, +select { + /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ +legend { + box-sizing: border-box; + /* 1 */ + color: inherit; + /* 2 */ + display: table; + /* 1 */ + max-width: 100%; + /* 1 */ + padding: 0; + /* 3 */ + white-space: normal; + /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ +[type="search"] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ +::-webkit-file-upload-button { + -webkit-appearance: button; + /* 1 */ + font: inherit; + /* 2 */ +} + +/* Interactive + =========================================== + =============================== */ +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ +/** + * Add the correct display in IE 10+. + */ +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ +[hidden] { + display: none; +} + +*:focus { + outline: 0 !important; +} + +*button:focus { + border: none; + outline: none; + box-shadow: none; +} + +* { + list-style-type: none; + font-family: "Work Sans", sans-serif; + font-size: 14px; +} + +*:focus, *:active { + outline: none !important; +} + +*:hover { + transition: 0.5s; +} + +*::selection { + color: #50e9ae; +} + +*a, +a:visited { + color: #990000; + text-decoration: none; +} + +body { + color: #888787; + /* dark gray */ +} + +.affix { + top: 0; + width: 100%; + z-index: 9999 !important; +} + +h1, h2, h3, h4, h5, h6 { + font-family: "Work Sans", sans-serif; + color: #000000; +} + +.gap { + padding-top: 100px; + padding-bottom: 50px; +} + +.gap2 { + padding-top: 50px; +} + +.section_heading { + margin-top: 40px; + margin-bottom: 40px; + text-align: center; +} + +.section_heading h3 { + font-size: 35px; + font-family: 'Overpass Mono', monospace; + font-weight: 900; + text-transform: uppercase; +} + +.section_heading hr { + width: 15%; + background: #80d9d7; + height: 1px; +} + +.section_heading p { + line-height: 30px; + padding-top: 10px; +} + +html { + scroll-behavior: smooth; +} + +.back-to-top { + position: fixed; + bottom: 25px; + right: 25px; + display: none; +} + +.btn { + outline: none !important; + box-shadow: none !important; + background: #80d9d7; + border: none; + z-index: 3; + padding: 10px 15px; +} + +.btn-primary { + background: #80d9d7; + padding: 10px 20px; + border-radius: 3px; + font-size: 20px; + font-weight: 700; + text-transform: uppercase; + border: 1px solid !important; + border-color: transparent !important; +} + +.btn-primary:hover { + background-color: #59cdcb !important; + border: 1px solid !important; + border-color: #80d9d7 !important; + color: #fff; +} + +.btn-primaryt { + background: #80d9d7; + padding: 10px 20px; + border-radius: 3px; + font-size: 20px; + font-size: 16px; + color: #fff; + border: 1px solid !important; + border-color: transparent !important; +} + +@media screen and (max-width: 768px) { + .btn-primaryt { + padding: 8px 8px !important; + font-size: 14px; + } +} + +.btn-primaryt:hover { + background-color: #59cdcb !important; + border: 1px solid !important; + border-color: #80d9d7 !important; + color: #fff; +} + +.btn-appstore { + background: #80d9d7; + color: #fff !important; + border-radius: 3px; + font-size: 20px; + font-weight: 700; + border: 1px solid !important; + border-color: transparent !important; + justify-content: center !important; + display: flex; + height: 50px; + align-items: center; +} + +@media screen and (max-width: 992px) { + .btn-appstore { + width: 100px !important; + } +} + +.btn-appstore:hover { + background-color: #6cd3d1 !important; + border: 1px solid !important; + border-color: #fff !important; + color: #fff; +} + +.btn-playstore { + background: #80d9d7; + margin-right: 20px; + border-radius: 3px; + font-size: 20px; + font-weight: 700; + border: 1px solid !important; + border-color: transparent !important; + justify-content: center !important; + display: flex; + color: #fff !important; + height: 50px; + align-items: center; +} + +.btn-playstore:hover { + background-color: #6cd3d1 !important; + border: 1px solid !important; + border-color: #fff !important; + color: #fff; +} + +.btn-contact { + background: #80d9d7; + padding: 10px 20px; + border-radius: 3px; + margin-left: 15px; + font-size: 20px; + letter-spacing: 2px; + color: #fff; + font-weight: 700; + border: 1px solid !important; + border-color: transparent !important; +} + +.btn-contact:hover { + background-color: #6cd3d1 !important; + border: 1px solid !important; + border-color: #fff !important; + color: #fff; +} + +.navigation { + position: relative; +} + +.navbar { + padding: 10px 0; + margin-top: 50px !important; + background: transparent !important; +} + +@media screen and (max-width: 768px) { + .navbar { + margin: 0 20px; + } +} + +.navbar .navbar-collapse { + transition: all 0.35s ease-out; + transform-origin: center left; +} + +.navbar .navbar-nav { + margin-left: auto; +} + +@media screen and (max-width: 992px) { + .navbar .navbar-nav { + background: #00000078; + } +} + +.navbar .navbar-nav .nav-item { + padding: 0 5px; + text-align: center; +} + +.navbar .navbar-nav .nav-link { + color: #fff; + font-weight: 500; +} + +.navbar .navbar-nav .nav-link:hover { + color: #80d9d7 !important; +} + +.bg-light { + background-color: transparent !important; +} + +.navbar-light .navbar-brand { + max-width: 150px; +} + +.navbar-light .navbar-brand img { + width: 100%; +} + +.navbar-light .brand-shop { + color: #000000 !important; +} + +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.active, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .show > .nav-link { + color: black; + border: 3px solid; + border-color: transparent black; + border-color: transparent; + border-bottom-color: black !important; + padding-bottom: 5px; +} + +.navbar-toggler span { + display: block; + background-color: #3c7cc5; + height: 3px; + width: 25px; + margin-top: 5px; + margin-bottom: 5px; + position: relative; + left: 0; + opacity: 1; + transition: all 0.35s ease-out; + transform-origin: center left; +} + +/* top line needs a little padding */ +.navbar-toggler span:nth-child(1) { + margin-top: 0.3em; +} + +/** + * Animate collapse into X. + */ +/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */ +.navbar-toggler:not(.collapsed) span:nth-child(1) { + transform: translate(15%, -33%) rotate(45deg); +} + +/* center line goes transparent */ +.navbar-toggler:not(.collapsed) span:nth-child(2) { + opacity: 0; +} + +/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button */ +.navbar-toggler:not(.collapsed) span:nth-child(3) { + transform: translate(15%, 33%) rotate(-45deg); +} + +/** + * Animate collapse open into hamburger menu + */ +/* top line moves back to initial position and rotates back to 0 degrees */ +.navbar-toggler span:nth-child(1) { + transform: translate(0%, 0%) rotate(0deg); +} + +/* middle line goes back to regular color and opacity */ +.navbar-toggler span:nth-child(2) { + opacity: 1; +} + +/* bottom line goes back to initial position and rotates back to 0 degrees */ +.navbar-toggler span:nth-child(3) { + transform: translate(0%, 0%) rotate(0deg); +} + +.banner { + position: relative; + height: 100vh; +} + +.banner #bgvid { + object-fit: cover; + width: 100%; + height: 100vh; + position: absolute; + top: 0; + left: 0; +} + +.banner:after { + position: absolute; + content: " "; + height: 100vh; + width: 100%; + top: 0; + left: 0; + background: #5554064b !important; +} + +.banner .banner_content { + position: relative; + z-index: 2; + padding-top: 75px; +} + +.banner .banner_content .banner_left { + margin-top: 75px; +} + +.banner .banner_content .banner_left .card { + padding-top: 50px; + border: transparent; + background: transparent; +} + +@media screen and (max-width: 492px) { + .banner .banner_content .banner_left .card { + padding-top: 30px; + } +} + +.banner .banner_content .banner_left .card .card-body .card-title { + font-size: 55px; + color: #fff; + font-weight: 900; + padding-bottom: 20px; + font-family: 'Poppins', sans-serif; +} + +@media screen and (max-width: 992px) { + .banner .banner_content .banner_left .card .card-body .card-title { + font-size: 40px; + } +} + +@media screen and (max-width: 492px) { + .banner .banner_content .banner_left .card .card-body .card-title { + font-size: 35px; + } +} + +.banner .banner_content .banner_left .card .card-body .card-text { + line-height: 25px; + padding-bottom: 20px; + font-size: 15px; + color: #fff; +} + +@media screen and (max-width: 768px) { + .product { + margin: 0 10px; + padding-bottom: 0; + } +} + +.product .product_content { + padding-top: 50px; +} + +.product .product_content .wrapper { + box-shadow: 0px 15px 35px -5px rgba(50, 88, 130, 0.32); + transition: transform 0.2s; +} + +.product .product_content .wrapper .sub_wrapper { + height: 350px; +} + +.product .product_content .wrapper .product_img { + max-width: 250px; +} + +@media screen and (max-width: 768px) { + .product .product_content .wrapper .product_img { + max-width: 100%; + } +} + +.product .product_content .wrapper .product_img img { + width: 100%; +} + +.product .product_content .wrapper:hover { + transform: scale(1.02); +} + +.product .product_content .wrapper:hover .wrapper-body { + transition: all 1s ease-in-out; +} + +.product .product_content .wrapper:hover .wrapper-body a { + visibility: visible; + color: #000000; + font-size: 18px; + font-weight: 700; + display: block; + transition: all 1s ease-in-out; +} + +.product .product_content .wrapper:hover .wrapper-body a:hover { + color: #e9c939 !important; +} + +.product .product_content .wrapper .wrapper-body a { + visibility: hidden; + font-size: 8px; + font-weight: 700; + color: #000000; +} + +.product .product_content .wrapper .star { + padding-left: 0; + display: flex; + justify-content: center; + margin-top: 25px; + margin-bottom: 10px; +} + +.product .product_content .wrapper .star li { + display: contents; +} + +.product .product_content .wrapper .star li a { + padding-right: 10px; +} + +.product .product_content .wrapper .star li img { + width: 20px; +} + +.product .product_content .wrapper .price { + text-align: center; + font-size: 30px; + font-weight: 700; + color: #80d9d7; +} + +.product .product_content .wrapper .price span { + color: #6c6a74; + font-size: 18px; + text-decoration: line-through; +} + +.product .product_content .wrapper a { + text-decoration: none; +} + +.product .product_content .wrapper h4 { + font-weight: 700; + text-align: center; + font-size: 18px; + padding-top: 10px; + padding-bottom: 15px; +} + +.product .product_content .wrapper h4:hover { + color: #e9c939 !important; +} + +@keyframes fadeInOut { + 5%, + 95% { + opacity: 1; + top: 50px; + } + 15%, + 85% { + opacity: 1; + top: 30px; + } +} + +.product .product_content .owl-carousel { + position: relative; +} + +.product .product_content .owl-carousel .owl-nav { + position: absolute; + top: 114%; + left: 28%; + display: block; + height: 17%; + width: 42%; + text-align: center; + padding-top: 23px; +} + +@media screen and (max-width: 768px) { + .product .product_content .owl-carousel .owl-nav { + top: 100%; + } +} + +.product .product_content .owl-carousel .owl-prev { + color: #000000; +} + +.product .product_content .owl-carousel .owl-prev:hover { + color: #000000; + padding-right: 10px !important; +} + +.product .product_content .owl-carousel .owl-prev i { + font-size: 27px; + padding: 20px; +} + +.product .product_content .owl-carousel .owl-next { + color: #000000; +} + +.product .product_content .owl-carousel .owl-next:hover { + color: #000000; + padding-left: 10px !important; +} + +.product .product_content .owl-carousel .owl-next i { + font-size: 27px; +} + +.footer { + padding-bottom: 0px !important; + background: #15161d; + color: #f8f8f8 !important; +} + +@media screen and (max-width: 992px) { + .footer { + padding-top: 50; + } +} + +.footer .footer_content { + padding-bottom: 40px; +} + +.footer .footer_content .wrapper .footer_logo { + max-width: 150px; + margin: auto; + padding-bottom: 20px; +} + +@media screen and (max-width: 768px) { + .footer .footer_content .wrapper .footer_logo { + margin-left: 10px; + } +} + +.footer .footer_content .wrapper .footer_logo img { + width: 100%; +} + +.footer .footer_content .wrapper .footer_logo img:hover { + opacity: 0.7; +} + +.footer .footer_content .wrapper p { + text-align: center; +} + +@media screen and (max-width: 768px) { + .footer .footer_content .wrapper p { + text-align: left; + margin-left: 10px; + } +} + +.footer .footer_content .wrapper .footer_icon { + padding-top: 30px; + text-align: center; + display: flex; + justify-content: center; +} + +@media screen and (max-width: 768px) { + .footer .footer_content .wrapper .footer_icon { + justify-content: left; + } +} + +.footer .footer_content .wrapper .footer_icon a { + display: block; + color: #000000; + margin-right: 15px; +} + +.footer .footer_content .wrapper .footer_icon a span { + height: 37px; + width: 37px; + color: #fff; + font-size: 19px; + padding-top: 9px; + border-radius: 50%; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(1) span { + color: #37b4e6 !important; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(1) span:hover { + color: white !important; + background: #37b4e6 !important; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(2) span { + color: #ff3434 !important; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(2) span:hover { + color: #fff !important; + background-color: #ff3434 !important; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(3) span { + color: #803e12 !important; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(3) span:hover { + color: #fff !important; + background-color: #803e12 !important; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(4) span { + color: #055597 !important; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(4) span:hover { + background-color: #055597 !important; + color: #fff !important; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(5) span { + color: rgba(202, 40, 129, 0.801) !important; +} + +.footer .footer_content .wrapper .footer_icon a:nth-child(5) span:hover { + background-color: rgba(202, 40, 129, 0.801) !important; + color: #fff !important; +} + +.footer .footer_bottom { + margin-top: 20px; + border: 1px solid; + border-color: transparent; + border-top-color: #6c6a74; + padding: 30px 0; + text-align: center; +} + +@media screen and (max-width: 768px) { + .footer .footer_bottom { + text-align: left; + } +} + +@media screen and (max-width: 768px) { + .footer .footer_bottom span { + margin-left: 20px; + } +} + +.footer .footer_bottom a { + color: #000000; + text-decoration: none; +} + +.footer .footer_bottom a:hover { + color: #5FED83; +} + +@media screen and (max-width: 492px) { + .about { + margin: 0 20px; + } +} + +.about .about_content { + padding-top: 40px; +} + +.about .about_content .card { + margin-bottom: 40px; + border-color: transparent; + box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + background: #0000001c; + padding: 20px; +} + +.about .about_content .card:hover { + background: #fff; +} + +.about .about_content .card .card-img-top { + max-width: 100px; + margin: auto; + padding-top: 15px; +} + +.about .about_content .card .card-body { + text-align: center; +} + +.about .about_content .card .card-body .card-title { + font-weight: 700; + text-align: center; + margin: 15px 0; +} + +.about .about_content .card .card-body .card-text { + padding-bottom: 20px; + padding-top: 15px; +} + +.about .about_content2_first .abt_img { + max-width: 500px; + margin-top: 10px; +} + +@media screen and (max-width: 992px) { + .about .about_content2_first .abt_img { + max-width: 100%; + margin-bottom: 50px; + } +} + +.about .about_content2_first .abt_img img { + width: 100%; +} + +.about .about_content2_first .about_content2_left { + padding-left: 20px; +} + +.about .about_content2_first .about_content2_left .section_heading { + text-align: left; + margin-top: 0; +} + +@media screen and (max-width: 992px) { + .about .about_content2_first .about_content2_left .section_heading { + text-align: center; + padding-top: 20px; + } +} + +.about .about_content2_first .about_content2_left .section_heading h3 { + font-size: 25px; +} + +.about .about_content2_first .about_content2_left .card { + margin-bottom: 20px; + border-color: transparent; + padding: 0 !important; + padding: 20px; +} + +.about .about_content2_first .about_content2_left .card .card-body { + padding: 0 !important; +} + +.about .about_content2_first .about_content2_left .card .card-img-top { + max-width: 75px; + padding-top: 15px; +} + +@media screen and (max-width: 992px) { + .about .about_content2_first .about_content2_left .card .card-img-top { + margin: auto; + } +} + +.about .about_content2_first .about_content2_left .card .card-body { + text-align: left; +} + +@media screen and (max-width: 992px) { + .about .about_content2_first .about_content2_left .card .card-body { + text-align: center; + } +} + +.about .about_content2_first .about_content2_left .card .card-body .card-title { + padding-top: 20px; + font-weight: 700; + text-align: left; + margin: 15px 0; +} + +@media screen and (max-width: 992px) { + .about .about_content2_first .about_content2_left .card .card-body .card-title { + text-align: center; + } +} + +.about .about_content2_first .about_content2_left .card .card-body .card-text { + padding-bottom: 20px; + padding-top: 15px; +} + +.about .about_content2_second .about_content2_left { + padding-left: 20px; +} + +.about .about_content2_second .about_content2_left .section_heading { + text-align: left; + margin-top: 0; +} + +@media screen and (max-width: 992px) { + .about .about_content2_second .about_content2_left .section_heading { + text-align: center; + padding-top: 20px; + } +} + +.about .about_content2_second .about_content2_left .section_heading h3 { + font-size: 25px; +} + +.about .about_content2_second .about_content2_left .card { + margin-bottom: 20px; + border-color: transparent; + padding: 0 !important; + padding: 20px; +} + +.about .about_content2_second .about_content2_left .card .card-body { + padding: 0 !important; +} + +.about .about_content2_second .about_content2_left .card .card-img-top { + max-width: 75px; + padding-top: 15px; +} + +@media screen and (max-width: 992px) { + .about .about_content2_second .about_content2_left .card .card-img-top { + margin: auto; + } +} + +.about .about_content2_second .about_content2_left .card .card-body { + text-align: left; +} + +@media screen and (max-width: 992px) { + .about .about_content2_second .about_content2_left .card .card-body { + text-align: center; + } +} + +.about .about_content2_second .about_content2_left .card .card-body .card-title { + padding-top: 20px; + font-weight: 700; + text-align: left; + margin: 15px 0; +} + +@media screen and (max-width: 992px) { + .about .about_content2_second .about_content2_left .card .card-body .card-title { + text-align: center; + } +} + +.about .about_content2_second .about_content2_left .card .card-body .card-text { + padding-bottom: 20px; + padding-top: 15px; +} + +.about .about_content2_second .abt_img2 { + max-width: 500px; + margin-top: 10px; +} + +@media screen and (max-width: 992px) { + .about .about_content2_second .abt_img2 { + max-width: 100%; + margin-bottom: 50px; + } +} + +.about .about_content2_second .abt_img2 img { + width: 100%; +} + +@media screen and (max-width: 768px) { + .features { + margin: 0 20px; + padding-bottom: 0; + padding-top: 0px; + } +} + +.features .feature_content { + padding-top: 40px; +} + +.features .feature_content .wrapper { + display: flex; + text-align: right; + align-items: center; + padding-right: 20px; + margin-bottom: 15px; +} + +.features .feature_content .wrapper .feature_details { + padding-right: 20px; +} + +@media screen and (max-width: 992px) { + .features .feature_content .wrapper .feature_details { + text-align: left; + } +} + +.features .feature_content .wrapper .feature_details h5 { + font-weight: 700; + padding-bottom: 15px; +} + +.features .feature_content .wrapper .feature_details_img { + max-width: 50px; + margin-left: 10px; +} + +.features .feature_content .wrapper .feature_details_img img { + max-width: 100%; +} + +.features .feature_content .feature_img { + max-width: 400px; +} + +@media screen and (max-width: 992px) { + .features .feature_content .feature_img { + margin: 50px 0; + max-width: 100%; + } +} + +.features .feature_content .feature_img img { + width: 100%; +} + +.features .feature_content .wrapper_right { + display: flex; + text-align: left; + align-items: center; + padding-left: 20px; + margin-bottom: 15px; +} + +.features .feature_content .wrapper_right .feature_details { + padding-left: 20px; +} + +.features .feature_content .wrapper_right .feature_details h5 { + font-weight: 700; + padding-bottom: 15px; +} + +.features .feature_content .wrapper_right .feature_details_img { + max-width: 50px; + margin-right: 10px; +} + +.features .feature_content .wrapper_right .feature_details_img img { + max-width: 100%; +} + +@media screen and (max-width: 768px) { + .deal { + margin: 0 10px; + padding-bottom: 0; + } +} + +.deal .deal_content .wrapper { + padding: 50px 40px; + border-radius: 5px; + display: grid; + grid-template-columns: 1fr 1fr; + box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); +} + +@media screen and (max-width: 992px) { + .deal .deal_content .wrapper { + grid-template-columns: 1fr; + } +} + +.deal .deal_content .wrapper .deal_img { + max-width: 400px; +} + +@media screen and (max-width: 992px) { + .deal .deal_content .wrapper .deal_img { + max-width: 100%; + padding-bottom: 40px; + } +} + +.deal .deal_content .wrapper .deal_img img { + width: 100%; +} + +.deal .deal_content .wrapper .deal_info .star { + padding-left: 0; + display: flex; +} + +.deal .deal_content .wrapper .deal_info .star li { + display: contents; +} + +.deal .deal_content .wrapper .deal_info .star li a { + padding-right: 10px; +} + +.deal .deal_content .wrapper .deal_info .star li img { + width: 20px; +} + +.deal .deal_content .wrapper .deal_info h4 { + font-weight: 700; + padding-top: 15px; +} + +.deal .deal_content .wrapper .deal_info p { + padding-top: 10px; +} + +.deal .deal_content .wrapper .deal_info .price { + padding-top: 15px; + font-size: 40px; + font-weight: 700; + color: #80d9d7; +} + +.deal .deal_content .wrapper .deal_info .price span { + color: #6c6a74; + font-size: 22px; + text-decoration: line-through; +} + +.deal .deal_content .wrapper .deal_info #countdown { + width: 100%; + border-radius: 8px; + margin-top: 40px; + margin-left: -37px; + margin-bottom: 135px; +} + +@media screen and (max-width: 576px) { + .deal .deal_content .wrapper .deal_info #countdown { + margin-top: 30px; + } +} + +.deal .deal_content .wrapper .deal_info label { + clear: both; + display: block; +} + +.deal .deal_content .wrapper .deal_info #countdown span { + color: #000000; + font-size: 45px; + font-weight: 700; + text-align: center; + width: 25%; + float: left; +} + +.choose { + margin-top: 75px; +} + +@media screen and (max-width: 768px) { + .choose { + margin-top: 25px; + padding-bottom: 0; + } +} + +.choose .choose_contents .video_wrapper .video-fluid { + width: 100%; + height: auto; + border-radius: 5px; +} + +@media screen and (max-width: 992px) { + .choose .choose_contents .video_wrapper { + margin-bottom: 50px; + } +} + +.choose .choose_contents .choose_right { + padding-top: 30px; +} + +.choose .choose_contents .choose_right .top_m { + margin-top: -20px; + background-color: #5FED83; +} + +.choose .choose_contents .choose_right .bottom_m { + margin-top: 20px; + background-color: #5FED83; +} + +.choose .choose_contents .choose_right .wrapper { + border-radius: 5px; + padding: 30px 0px; + box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + margin-bottom: 35px; +} + +.choose .choose_contents .choose_right .wrapper .img_wrapper { + max-width: 100px; + margin: auto; +} + +.choose .choose_contents .choose_right .wrapper .img_wrapper img { + width: 100%; +} + +.choose .choose_contents .choose_right .wrapper h5 { + font-weight: 700; + color: #000000; + padding-top: 20px; + text-align: center; +} + +.choose .choose_contents .choose_right .wrapper .wht { + color: #fff; +} + +@media screen and (max-width: 768px) { + .compare { + padding-top: 50px; + padding-bottom: 0; + } +} + +.compare .compare_contents table .table_img .img_wrapper { + max-width: 150px; + margin: auto; +} + +@media screen and (max-width: 768px) { + .compare .compare_contents table .table_img .img_wrapper { + max-width: 100px; + } +} + +.compare .compare_contents table .table_img .img_wrapper img { + width: 100%; +} + +.compare .compare_contents table .ct { + text-align: center; +} + +.compare .compare_contents table tr th { + font-size: 16px; +} + +@media screen and (max-width: 768px) { + .compare .compare_contents table tr th { + font-size: 14px; + } +} + +.compare .compare_contents table tr .head { + color: #000000; +} + +.compare .compare_contents table tr td { + color: #6c6a74; + padding: 20px 45px; +} + +@media screen and (max-width: 768px) { + .compare .compare_contents table tr td { + padding: 20px 35px; + } +} + +@media screen and (max-width: 768px) { + .testiomnial { + padding-top: 50px; + padding-bottom: 0; + margin-top: 0; + } +} + +.testiomnial .testimonial_contents { + padding-top: 50px; +} + +.testiomnial .testimonial_contents .card { + border: 0; + box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + margin-bottom: 40px; +} + +.testiomnial .testimonial_contents .card .card-body .card-img { + max-width: 100px; + margin: auto; + margin-bottom: 30px; +} + +.testiomnial .testimonial_contents .card .card-body .card-img img { + width: 100%; + border-radius: 50%; + border: 8px solid; + border-color: #80d9d7; +} + +.testiomnial .testimonial_contents .card .card-body .card-text { + padding-bottom: 20px; +} + +.testiomnial .testimonial_contents .card .card-body .name { + font-weight: 700; +} + +.testiomnial .testimonial_contents .side_img1 { + max-width: 50px; + margin: auto; + padding-bottom: 50px; + padding-top: 30px; +} + +.testiomnial .testimonial_contents .side_img1 img { + width: 100%; + border-radius: 50%; + border: 8px solid; + border-color: #fff; + box-shadow: 2px 10px 17px 7px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 2px 10px 17px 7px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 2px 10px 17px 7px rgba(137, 137, 137, 0.35); +} + +.testiomnial .testimonial_contents .side_img2 { + max-width: 75px; + padding-bottom: 50px; +} + +.testiomnial .testimonial_contents .side_img2 img { + width: 100%; + border-radius: 50%; + border: 8px solid; + border-color: #fff; + box-shadow: 2px 10px 17px 7px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 2px 10px 17px 7px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 2px 10px 17px 7px rgba(137, 137, 137, 0.35); +} + +.testiomnial .testimonial_contents .side_img3 { + max-width: 50px; + margin: auto; + padding-bottom: 50px; +} + +.testiomnial .testimonial_contents .side_img3 img { + width: 100%; + border-radius: 50%; + border: 8px solid; + border-color: #fff; + box-shadow: 2px 10px 17px 7px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 2px 10px 17px 7px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 2px 10px 17px 7px rgba(137, 137, 137, 0.35); +} + +.testiomnial .testimonial_contents .owl-carousel { + position: relative; +} + +.testiomnial .testimonial_contents .owl-carousel .owl-nav { + position: absolute; + top: 100%; + left: 28%; + display: block; + height: 17%; + width: 42%; + text-align: center; + padding-top: 23px; +} + +@media screen and (max-width: 992px) { + .testiomnial .testimonial_contents .owl-carousel .owl-nav { + top: 90%; + } +} + +.testiomnial .testimonial_contents .owl-carousel .owl-prev { + color: #000000; +} + +.testiomnial .testimonial_contents .owl-carousel .owl-prev:hover { + color: #000000; + padding-right: 10px !important; +} + +.testiomnial .testimonial_contents .owl-carousel .owl-prev i { + font-size: 27px; + padding: 20px; +} + +.testiomnial .testimonial_contents .owl-carousel .owl-next { + color: #000000; +} + +.testiomnial .testimonial_contents .owl-carousel .owl-next:hover { + color: #000000; + padding-left: 10px !important; +} + +.testiomnial .testimonial_contents .owl-carousel .owl-next i { + font-size: 27px; +} + +@media screen and (max-width: 768px) { + .sub { + padding-top: 75px; + padding-bottom: 0; + } +} + +.sub .subcribe_contents .subscribe { + padding-top: 50px; + padding-bottom: 50px; +} + +.sub .subcribe_contents .subscribe .input-group { + width: 70%; + height: 70px; + border-radius: 50px; + margin-top: 70px; + margin: auto; + box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); +} + +@media screen and (max-width: 768px) { + .sub .subcribe_contents .subscribe .input-group { + width: 90%; + } +} + +@media screen and (max-width: 572px) { + .sub .subcribe_contents .subscribe .input-group { + width: 95%; + height: 55px; + } +} + +.sub .subcribe_contents .subscribe .input-group .form-control { + border-radius: 50px; + height: 70px; + padding: 0 50px; +} + +@media screen and (max-width: 572px) { + .sub .subcribe_contents .subscribe .input-group .form-control { + height: 55px; + } +} + +.sub .subcribe_contents .subscribe .input-group .input-group-append { + margin-left: -180px; + z-index: 3; +} + +@media screen and (max-width: 572px) { + .sub .subcribe_contents .subscribe .input-group .input-group-append { + margin-left: -50px; + } +} + +.sub .subcribe_contents .subscribe .input-group .input-group-text { + border-radius: 50px; + background-color: #80d9d7; + padding: 0 47px; + color: #fff; + border: 1px solid; + font-weight: 700; +} + +.sub .subcribe_contents .subscribe .input-group .input-group-text:hover { + background-color: #5cf7dd; +} + +@media screen and (max-width: 572px) { + .sub .subcribe_contents .subscribe .input-group .input-group-text { + padding: 0 25px; + } +} + +@media screen and (max-width: 420px) { + .sub .subcribe_contents .subscribe .input-group .input-group-text { + padding: 0 15px; + font-size: 14px; + } +} + +.sub .subcribe_contents .subscribe .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); +} + +.sub .subcribe_contents p { + text-align: center; +} + +.sub .subcribe_contents .buttons { + display: flex; + justify-content: center; +} + +.sub .subcribe_contents .app { + max-width: 20px !important; + margin-right: 10px; +} + +.sub .subcribe_contents .app img { + width: 100%; +} + +.faq { + /* background-image: url(./../img/banner/as.jpg);*/ + background-size: cover; + width: 100%; + padding-bottom: 160px; + background-repeat: no-repeat; + background-position: center; + position: relative; +} + +@media screen and (max-width: 992px) { + .faq { + padding-top: 75px; + padding-bottom: 75px; + padding-left: 10px; + padding-right: 10px; + } +} + +.faq .faq_contents { + padding-top: 50px; + opacity: 1 !important; +} + +.faq .faq_contents .wrapper_img { + max-width: 540px; + padding-left: 20px; +} + +@media screen and (max-width: 992px) { + .faq .faq_contents .wrapper_img { + max-width: 750px; + padding-left: 0; + padding-top: 50px; + } +} + +.faq .faq_contents .wrapper_img img { + width: 100%; +} + +.faq .panel-default > .panel-heading a { + display: block; + padding: 10px 15px; +} + +.faq .panel-default > .panel-heading a:after { + content: ""; + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: 400; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + float: right; + transition: transform .25s linear; + -webkit-transition: -webkit-transform .25s linear; + font-size: 20px; + font-weight: 700; +} + +.faq .panel-default > .panel-heading a[aria-expanded="true"]:after { + content: "\2212"; + transform: rotate(180deg); +} + +.faq .panel-default > .panel-heading a[aria-expanded="false"]:after { + content: "\002b"; + transform: rotate(90deg); +} + +.faq .panel-group .panel { + background-color: #fff; + margin-bottom: 30px; + box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); +} + +.faq .panel-group .panel .panel-heading { + border: 3px solid; + border-color: transparent; + border-left-color: #5FED83 !important; +} + +.faq .panel-group .panel .panel-heading .panel-title a { + font-size: 16px; + font-weight: 700; + text-decoration: none; + color: Black; +} + +@media screen and (max-width: 992px) { + .faq .panel-group .panel .panel-heading .panel-title a { + font-size: 14px; + } +} + +.faq .panel-group .panel .panel-collapse { + border: 3px solid; + border-color: transparent; + border-left-color: #5FED83 !important; + border-radius: 0; + transition: all 0.5s ease-in-out; +} + +.faq .panel-group .panel .panel-collapse .panel-body { + padding: 10px 25px 30px 25px; + line-height: 25px; +} + +@media screen and (max-width: 492px) { + .contact { + margin: 0 20px; + } +} + +@media screen and (max-width: 768px) { + .contact { + padding-top: 75px; + padding-bottom: 0; + } +} + +.contact .contact_contents { + margin-bottom: 50px; +} + +.contact .contact_contents .top { + padding-top: 50px; +} + +@media screen and (max-width: 492px) { + .contact .contact_contents .top { + padding-top: 0px; + } +} + +.contact .contact_contents .card { + border: transparent; + border-radius: 5px; + padding: 30px 0px; + box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + margin-bottom: 35px; +} + +.contact .contact_contents .card .card-body .card_img { + max-width: 50px; + margin: auto; + padding-bottom: 25px; +} + +.contact .contact_contents .card .card-body .card_img img { + width: 100%; +} + +.contact .contact_contents .card .card-body .card-text { + line-height: 30px; +} + +.contact .contact_contents .card .card-body .card-text a { + text-decoration: none; + color: #888787; + line-height: 30px; +} + +.contact .contact_contents .card .card-body .card-text a:hover { + color: #e9c939; +} + +.contact .contact_contents .bottom { + padding-bottom: 50px; + margin-top: 50px; +} + +.contact .contact_contents .bottom form { + margin-right: 20px; + border-radius: 5px; + padding: 40px 30px 30px 30px; + box-shadow: 1px 1px 14px 11px rgba(137, 137, 137, 0.25); + -webkit-box-shadow: 1px 1px 14px 11px rgba(137, 137, 137, 0.25); + -moz-box-shadow: 1px 1px 14px 11px rgba(137, 137, 137, 0.25); +} + +@media screen and (max-width: 768px) { + .contact .contact_contents .bottom form { + margin-right: 0; + margin-bottom: 40px; + } +} + +.contact .contact_contents .bottom form #datepicker > span:hover { + cursor: pointer; +} + +.contact .contact_contents .bottom form .input-group-addon { + position: absolute; + right: 9px; + top: 10px; +} + +.contact .contact_contents .bottom form .form-group .form-control { + display: block; + width: 100%; + height: calc(2.7em + .75rem + 2px); + padding: .375rem .75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #6c6a74 !important; + background-color: #fff; + background-clip: padding-box; + border: 1px solid; + border-color: #888787; + border-radius: .25rem; + transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; + box-shadow: none !important; +} + +.contact .contact_contents .bottom form .form-group .dropdown-toggle { + width: 100%; + text-align: left; + border-color: #70e000 !important; +} + +.contact .contact_contents .bottom form .form-group .btn-secondary.focus { + background-color: transparent !important; +} + +.contact .contact_contents .bottom form .form-group .btn-secondary:hover { + background-color: transparent !important; + color: #000000; +} + +.contact .contact_contents .bottom form .form-group .btn-secondary:active { + background-color: transparent !important; + color: #000000; +} + +.contact .contact_contents .bottom form .form-group textarea { + background-color: #fff; + background-clip: padding-box; + border: 1px solid; + border-color: #888787; + border-radius: .25rem; + transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; + border-radius: .25rem; + margin-bottom: 15px; + padding: .575rem .75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; +} + +.contact .contact_contents .bottom .map { + border-radius: 5px; + border: 10px solid !important; + border-color: #fff !important; + position: relative; + text-align: right; + height: 417px; + box-shadow: 1px 1px 14px 11px rgba(137, 137, 137, 0.25); + -webkit-box-shadow: 1px 1px 14px 11px rgba(137, 137, 137, 0.25); + -moz-box-shadow: 1px 1px 14px 11px rgba(137, 137, 137, 0.25); + width: 100%; +} + +.contact .contact_contents .bottom .map .mapouter { + overflow: hidden; + height: 100%; + width: 100%; +} +/*# sourceMappingURL=style.css.map */ + +//video + + +.choose .choose_contents .video_wrapper .video-fluid { + width: 100%; + height: auto; + border-radius: 5px; +} + +@media screen and (max-width: 992px) { + .choose .choose_contents .video_wrapper { + margin-bottom: 50px; + } +} + +.choose .choose_contents .choose_right { + padding-top: 30px; +} + +.choose .choose_contents .choose_right .top_m { + margin-top: -20px; + background-color: #5FED83; +} + +.choose .choose_contents .choose_right .bottom_m { + margin-top: 20px; + background-color: #5FED83; +} + +.choose .choose_contents .choose_right .wrapper { + border-radius: 5px; + padding: 30px 0px; + box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -webkit-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + -moz-box-shadow: 1px 17px 14px 6px rgba(137, 137, 137, 0.35); + margin-bottom: 35px; +} + +.choose .choose_contents .choose_right .wrapper .img_wrapper { + max-width: 100px; + margin: auto; +} + +.choose .choose_contents .choose_right .wrapper .img_wrapper img { + width: 100%; +} + +.choose .choose_contents .choose_right .wrapper h5 { + font-weight: 700; + color: #000000; + padding-top: 20px; + text-align: center; +} + +.choose .choose_contents .choose_right .wrapper .wht { + color: #fff; +} + +@media screen and (max-width: 768px) { + .compare { + padding-top: 50px; + padding-bottom: 0; + } +} diff --git a/theme_blast/static/src/css/style.css.map b/theme_blast/static/src/css/style.css.map new file mode 100644 index 000000000..78d9d3310 --- /dev/null +++ b/theme_blast/static/src/css/style.css.map @@ -0,0 +1,31 @@ +{ + "version": 3, + "mappings": "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", + "sources": [ + "../scss/style.scss", + "../scss/_variables.scss", + "../scss/_normalize.scss", + "../scss/_common.scss", + "../scss/_elements.scss", + "../scss/components/_components.scss", + "../scss/components/_buttons.scss", + "../scss/layout/_layouts.scss", + "../scss/layout/_navigation.scss", + "../scss/layout/_banner.scss", + "../scss/layout/_product.scss", + "../scss/layout/_footer.scss", + "../scss/pages/_pages.scss", + "../scss/pages/home/_home.scss", + "../scss/pages/home/_about.scss", + "../scss/pages/home/_feature.scss", + "../scss/pages/home/_deal.scss", + "../scss/pages/home/_choose.scss", + "../scss/pages/home/_compare.scss", + "../scss/pages/home/_testimonial.scss", + "../scss/pages/home/_subscribe.scss", + "../scss/pages/home/_faq.scss", + "../scss/pages/home/_contact.scss" + ], + "names": [], + "file": "style.css" +} \ No newline at end of file diff --git a/theme_blast/static/src/img/Logo/Logo.png b/theme_blast/static/src/img/Logo/Logo.png new file mode 100644 index 000000000..9b917bda9 Binary files /dev/null and b/theme_blast/static/src/img/Logo/Logo.png differ diff --git a/theme_blast/static/src/img/about/abt1.jpg b/theme_blast/static/src/img/about/abt1.jpg new file mode 100644 index 000000000..64909307c Binary files /dev/null and b/theme_blast/static/src/img/about/abt1.jpg differ diff --git a/theme_blast/static/src/img/about/abt2.jpg b/theme_blast/static/src/img/about/abt2.jpg new file mode 100644 index 000000000..f2bffb54c Binary files /dev/null and b/theme_blast/static/src/img/about/abt2.jpg differ diff --git a/theme_blast/static/src/img/banner/DJ_Blurred_2.mov b/theme_blast/static/src/img/banner/DJ_Blurred_2.mov new file mode 100644 index 000000000..2121c89a8 Binary files /dev/null and b/theme_blast/static/src/img/banner/DJ_Blurred_2.mov differ diff --git a/theme_blast/static/src/img/banner/as.jpg b/theme_blast/static/src/img/banner/as.jpg new file mode 100644 index 000000000..02317ec73 Binary files /dev/null and b/theme_blast/static/src/img/banner/as.jpg differ diff --git a/theme_blast/static/src/img/banner/banner-left.png b/theme_blast/static/src/img/banner/banner-left.png new file mode 100644 index 000000000..b3e856863 Binary files /dev/null and b/theme_blast/static/src/img/banner/banner-left.png differ diff --git a/theme_blast/static/src/img/banner/bg.jpg b/theme_blast/static/src/img/banner/bg.jpg new file mode 100644 index 000000000..88ac862a1 Binary files /dev/null and b/theme_blast/static/src/img/banner/bg.jpg differ diff --git a/theme_blast/static/src/img/banner/faq-bg.jpg b/theme_blast/static/src/img/banner/faq-bg.jpg new file mode 100644 index 000000000..5832f4d7d Binary files /dev/null and b/theme_blast/static/src/img/banner/faq-bg.jpg differ diff --git a/theme_blast/static/src/img/banner/video.mp4 b/theme_blast/static/src/img/banner/video.mp4 new file mode 100644 index 000000000..155cee640 Binary files /dev/null and b/theme_blast/static/src/img/banner/video.mp4 differ diff --git a/theme_blast/static/src/img/compare/1.jpg b/theme_blast/static/src/img/compare/1.jpg new file mode 100644 index 000000000..3fe2e2c87 Binary files /dev/null and b/theme_blast/static/src/img/compare/1.jpg differ diff --git a/theme_blast/static/src/img/compare/2.jpg b/theme_blast/static/src/img/compare/2.jpg new file mode 100644 index 000000000..2ef864313 Binary files /dev/null and b/theme_blast/static/src/img/compare/2.jpg differ diff --git a/theme_blast/static/src/img/compare/3.jpg b/theme_blast/static/src/img/compare/3.jpg new file mode 100644 index 000000000..857e0e6dc Binary files /dev/null and b/theme_blast/static/src/img/compare/3.jpg differ diff --git a/theme_blast/static/src/img/compare/4.jpg b/theme_blast/static/src/img/compare/4.jpg new file mode 100644 index 000000000..600d5323b Binary files /dev/null and b/theme_blast/static/src/img/compare/4.jpg differ diff --git a/theme_blast/static/src/img/cybrosys/1.jpg b/theme_blast/static/src/img/cybrosys/1.jpg new file mode 100644 index 000000000..bef7cb278 Binary files /dev/null and b/theme_blast/static/src/img/cybrosys/1.jpg differ diff --git a/theme_blast/static/src/img/cybrosys/2.jpg b/theme_blast/static/src/img/cybrosys/2.jpg new file mode 100644 index 000000000..2a52efbf8 Binary files /dev/null and b/theme_blast/static/src/img/cybrosys/2.jpg differ diff --git a/theme_blast/static/src/img/cybrosys/3.jpg b/theme_blast/static/src/img/cybrosys/3.jpg new file mode 100644 index 000000000..c68e9ca93 Binary files /dev/null and b/theme_blast/static/src/img/cybrosys/3.jpg differ diff --git a/theme_blast/static/src/img/cybrosys/4.jpg b/theme_blast/static/src/img/cybrosys/4.jpg new file mode 100644 index 000000000..a23cd9fe0 Binary files /dev/null and b/theme_blast/static/src/img/cybrosys/4.jpg differ diff --git a/theme_blast/static/src/img/cybrosys/5.jpg b/theme_blast/static/src/img/cybrosys/5.jpg new file mode 100644 index 000000000..a252996d7 Binary files /dev/null and b/theme_blast/static/src/img/cybrosys/5.jpg differ diff --git a/theme_blast/static/src/img/cybrosys/63475.jpg b/theme_blast/static/src/img/cybrosys/63475.jpg new file mode 100644 index 000000000..b3208a169 Binary files /dev/null and b/theme_blast/static/src/img/cybrosys/63475.jpg differ diff --git a/theme_blast/static/src/img/deals/deal.jpg b/theme_blast/static/src/img/deals/deal.jpg new file mode 100644 index 000000000..b4852dbfe Binary files /dev/null and b/theme_blast/static/src/img/deals/deal.jpg differ diff --git a/theme_blast/static/src/img/faq/faq.jpg b/theme_blast/static/src/img/faq/faq.jpg new file mode 100644 index 000000000..081efe87b Binary files /dev/null and b/theme_blast/static/src/img/faq/faq.jpg differ diff --git a/theme_blast/static/src/img/faq/faq.png b/theme_blast/static/src/img/faq/faq.png new file mode 100644 index 000000000..0476484ce Binary files /dev/null and b/theme_blast/static/src/img/faq/faq.png differ diff --git a/theme_blast/static/src/img/feature/feature.jpg b/theme_blast/static/src/img/feature/feature.jpg new file mode 100644 index 000000000..71493a968 Binary files /dev/null and b/theme_blast/static/src/img/feature/feature.jpg differ diff --git a/theme_blast/static/src/img/icons/about details/bass.svg b/theme_blast/static/src/img/icons/about details/bass.svg new file mode 100644 index 000000000..377ab1320 --- /dev/null +++ b/theme_blast/static/src/img/icons/about details/bass.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/about details/bluetooth(1).svg b/theme_blast/static/src/img/icons/about details/bluetooth(1).svg new file mode 100644 index 000000000..3ef0550aa --- /dev/null +++ b/theme_blast/static/src/img/icons/about details/bluetooth(1).svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/about details/ear-protection.svg b/theme_blast/static/src/img/icons/about details/ear-protection.svg new file mode 100644 index 000000000..31a5812f6 --- /dev/null +++ b/theme_blast/static/src/img/icons/about details/ear-protection.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/about/headphone.svg b/theme_blast/static/src/img/icons/about/headphone.svg new file mode 100644 index 000000000..410a56a9c --- /dev/null +++ b/theme_blast/static/src/img/icons/about/headphone.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/about/paint.svg b/theme_blast/static/src/img/icons/about/paint.svg new file mode 100644 index 000000000..d625986e5 --- /dev/null +++ b/theme_blast/static/src/img/icons/about/paint.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/about/radio.svg b/theme_blast/static/src/img/icons/about/radio.svg new file mode 100644 index 000000000..efe284cb0 --- /dev/null +++ b/theme_blast/static/src/img/icons/about/radio.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/about/support.svg b/theme_blast/static/src/img/icons/about/support.svg new file mode 100644 index 000000000..6afe8fd2c --- /dev/null +++ b/theme_blast/static/src/img/icons/about/support.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/about/technical-support.svg b/theme_blast/static/src/img/icons/about/technical-support.svg new file mode 100644 index 000000000..4d0652990 --- /dev/null +++ b/theme_blast/static/src/img/icons/about/technical-support.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/about/thumb-up-sign.svg b/theme_blast/static/src/img/icons/about/thumb-up-sign.svg new file mode 100644 index 000000000..3e7666075 --- /dev/null +++ b/theme_blast/static/src/img/icons/about/thumb-up-sign.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/choose/1-year.svg b/theme_blast/static/src/img/icons/choose/1-year.svg new file mode 100644 index 000000000..5b2092942 --- /dev/null +++ b/theme_blast/static/src/img/icons/choose/1-year.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/choose/free-shipping.svg b/theme_blast/static/src/img/icons/choose/free-shipping.svg new file mode 100644 index 000000000..ec9c801d4 --- /dev/null +++ b/theme_blast/static/src/img/icons/choose/free-shipping.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/choose/online-support.svg b/theme_blast/static/src/img/icons/choose/online-support.svg new file mode 100644 index 000000000..fa7c838ad --- /dev/null +++ b/theme_blast/static/src/img/icons/choose/online-support.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/choose/refund.svg b/theme_blast/static/src/img/icons/choose/refund.svg new file mode 100644 index 000000000..e955be7e5 --- /dev/null +++ b/theme_blast/static/src/img/icons/choose/refund.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/contact/call.svg b/theme_blast/static/src/img/icons/contact/call.svg new file mode 100644 index 000000000..6e374a72d --- /dev/null +++ b/theme_blast/static/src/img/icons/contact/call.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/contact/map.svg b/theme_blast/static/src/img/icons/contact/map.svg new file mode 100644 index 000000000..da51d804b --- /dev/null +++ b/theme_blast/static/src/img/icons/contact/map.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/contact/message.svg b/theme_blast/static/src/img/icons/contact/message.svg new file mode 100644 index 000000000..f1b0b91a8 --- /dev/null +++ b/theme_blast/static/src/img/icons/contact/message.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/feature/battery.svg b/theme_blast/static/src/img/icons/feature/battery.svg new file mode 100644 index 000000000..825318fd5 --- /dev/null +++ b/theme_blast/static/src/img/icons/feature/battery.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/feature/circular-headphones-side-view.svg b/theme_blast/static/src/img/icons/feature/circular-headphones-side-view.svg new file mode 100644 index 000000000..3d399d0c3 --- /dev/null +++ b/theme_blast/static/src/img/icons/feature/circular-headphones-side-view.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/feature/control.svg b/theme_blast/static/src/img/icons/feature/control.svg new file mode 100644 index 000000000..f66645b7d --- /dev/null +++ b/theme_blast/static/src/img/icons/feature/control.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/feature/equalizer.svg b/theme_blast/static/src/img/icons/feature/equalizer.svg new file mode 100644 index 000000000..bac5c0b55 --- /dev/null +++ b/theme_blast/static/src/img/icons/feature/equalizer.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/feature/infinite-sign.svg b/theme_blast/static/src/img/icons/feature/infinite-sign.svg new file mode 100644 index 000000000..3ab0ccc41 --- /dev/null +++ b/theme_blast/static/src/img/icons/feature/infinite-sign.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/feature/water-proof.svg b/theme_blast/static/src/img/icons/feature/water-proof.svg new file mode 100644 index 000000000..06e44a633 --- /dev/null +++ b/theme_blast/static/src/img/icons/feature/water-proof.svg @@ -0,0 +1,2 @@ + + diff --git a/theme_blast/static/src/img/icons/star.svg b/theme_blast/static/src/img/icons/star.svg new file mode 100644 index 000000000..844d5888e --- /dev/null +++ b/theme_blast/static/src/img/icons/star.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/subscribe/android-logo.svg b/theme_blast/static/src/img/icons/subscribe/android-logo.svg new file mode 100644 index 000000000..4ceb0a6ce --- /dev/null +++ b/theme_blast/static/src/img/icons/subscribe/android-logo.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/icons/subscribe/apple-logo.svg b/theme_blast/static/src/img/icons/subscribe/apple-logo.svg new file mode 100644 index 000000000..9c6ed3df2 --- /dev/null +++ b/theme_blast/static/src/img/icons/subscribe/apple-logo.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_blast/static/src/img/product/1.jpg b/theme_blast/static/src/img/product/1.jpg new file mode 100644 index 000000000..15f1613c2 Binary files /dev/null and b/theme_blast/static/src/img/product/1.jpg differ diff --git a/theme_blast/static/src/img/product/2.jpg b/theme_blast/static/src/img/product/2.jpg new file mode 100644 index 000000000..e9048028a Binary files /dev/null and b/theme_blast/static/src/img/product/2.jpg differ diff --git a/theme_blast/static/src/img/product/3.jpg b/theme_blast/static/src/img/product/3.jpg new file mode 100644 index 000000000..eb85f63d4 Binary files /dev/null and b/theme_blast/static/src/img/product/3.jpg differ diff --git a/theme_blast/static/src/img/product/4.jpg b/theme_blast/static/src/img/product/4.jpg new file mode 100644 index 000000000..740b53278 Binary files /dev/null and b/theme_blast/static/src/img/product/4.jpg differ diff --git a/theme_blast/static/src/img/product/5.jpg b/theme_blast/static/src/img/product/5.jpg new file mode 100644 index 000000000..74d859d88 Binary files /dev/null and b/theme_blast/static/src/img/product/5.jpg differ diff --git a/theme_blast/static/src/img/product/6.jpg b/theme_blast/static/src/img/product/6.jpg new file mode 100644 index 000000000..9178e4dce Binary files /dev/null and b/theme_blast/static/src/img/product/6.jpg differ diff --git a/theme_blast/static/src/img/screencapture-geniusdevs-themeforest-prolab-probucket-index9-html-2020-11-11-10_29_27.png b/theme_blast/static/src/img/screencapture-geniusdevs-themeforest-prolab-probucket-index9-html-2020-11-11-10_29_27.png new file mode 100644 index 000000000..0f8d7e352 Binary files /dev/null and b/theme_blast/static/src/img/screencapture-geniusdevs-themeforest-prolab-probucket-index9-html-2020-11-11-10_29_27.png differ diff --git a/theme_blast/static/src/img/snippets/Portfolio.png b/theme_blast/static/src/img/snippets/Portfolio.png new file mode 100644 index 000000000..b4e8675d5 Binary files /dev/null and b/theme_blast/static/src/img/snippets/Portfolio.png differ diff --git a/theme_blast/static/src/img/snippets/Video.png b/theme_blast/static/src/img/snippets/Video.png new file mode 100644 index 000000000..74567ce99 Binary files /dev/null and b/theme_blast/static/src/img/snippets/Video.png differ diff --git a/theme_blast/static/src/img/snippets/about-1.png b/theme_blast/static/src/img/snippets/about-1.png new file mode 100644 index 000000000..676fd00a0 Binary files /dev/null and b/theme_blast/static/src/img/snippets/about-1.png differ diff --git a/theme_blast/static/src/img/snippets/banner_section-1.png b/theme_blast/static/src/img/snippets/banner_section-1.png new file mode 100644 index 000000000..92ed93c4d Binary files /dev/null and b/theme_blast/static/src/img/snippets/banner_section-1.png differ diff --git a/theme_blast/static/src/img/snippets/blog-1.png b/theme_blast/static/src/img/snippets/blog-1.png new file mode 100644 index 000000000..24106015d Binary files /dev/null and b/theme_blast/static/src/img/snippets/blog-1.png differ diff --git a/theme_blast/static/src/img/snippets/client-1.png b/theme_blast/static/src/img/snippets/client-1.png new file mode 100644 index 000000000..6f553c575 Binary files /dev/null and b/theme_blast/static/src/img/snippets/client-1.png differ diff --git a/theme_blast/static/src/img/snippets/contact.png b/theme_blast/static/src/img/snippets/contact.png new file mode 100644 index 000000000..502f4cbe8 Binary files /dev/null and b/theme_blast/static/src/img/snippets/contact.png differ diff --git a/theme_blast/static/src/img/snippets/recent-1.png b/theme_blast/static/src/img/snippets/recent-1.png new file mode 100644 index 000000000..e1f0bc3f8 Binary files /dev/null and b/theme_blast/static/src/img/snippets/recent-1.png differ diff --git a/theme_blast/static/src/img/snippets/service_page.png b/theme_blast/static/src/img/snippets/service_page.png new file mode 100644 index 000000000..61c0152f1 Binary files /dev/null and b/theme_blast/static/src/img/snippets/service_page.png differ diff --git a/theme_blast/static/src/img/snippets/testinomial-1.png b/theme_blast/static/src/img/snippets/testinomial-1.png new file mode 100644 index 000000000..bef28d0ba Binary files /dev/null and b/theme_blast/static/src/img/snippets/testinomial-1.png differ diff --git a/theme_blast/static/src/js/owl.carousel.js b/theme_blast/static/src/js/owl.carousel.js new file mode 100644 index 000000000..66c67ebe0 --- /dev/null +++ b/theme_blast/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 = [ $('