diff --git a/theme_lego/README.srt b/theme_lego/README.srt new file mode 100644 index 000000000..ba5f04b84 --- /dev/null +++ b/theme_lego/README.srt @@ -0,0 +1,41 @@ +Theme Lego +========== +* Design Web Pages with theme Lego + +Installation +============ + - www.odoo.com/documentation/14.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/13.0/legal/licenses/licenses.html) + +Company +------- +* 'Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: +Abhijith @ cybrosys + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ + diff --git a/theme_lego/__init__.py b/theme_lego/__init__.py new file mode 100644 index 000000000..c487cdcae --- /dev/null +++ b/theme_lego/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import models +from . import controllers + diff --git a/theme_lego/__manifest__.py b/theme_lego/__manifest__.py new file mode 100644 index 000000000..9b84b0e1b --- /dev/null +++ b/theme_lego/__manifest__.py @@ -0,0 +1,64 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +{ + 'name': 'Theme Lego', + 'description': 'Design Web Pages with Theme Lego', + 'summary': 'Design Web Pages with Theme Lego', + 'category': 'Theme/Corporate', + 'version': '14.0.1.0.0', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['website_sale_wishlist', + 'website_sale_comparison'], + 'data': [ + 'views/assets.xml', + 'views/layout.xml', + 'views/footer.xml', + 'views/shop.xml', + 'views/add_to_cart.xml', + 'views/cart.xml', + 'views/payment.xml', + 'views/login.xml', + 'views/address.xml', + 'views/header.xml', + 'views/deal_back.xml', + 'views/snippets/deal.xml', + 'views/snippets/cart_banner.xml', + 'views/snippets/index.xml', + 'views/snippets/banner.xml', + 'views/snippets/contact.xml', + 'views/snippets/map.xml', + 'views/snippets/login.xml' + + ], + 'images': [ + 'static/description/banner.png', + 'static/description/theme_screenshot.png' + ], + 'license': 'LGPL-3', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/theme_lego/controllers/__init__.py b/theme_lego/controllers/__init__.py new file mode 100644 index 000000000..1178cb52e --- /dev/null +++ b/theme_lego/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import main diff --git a/theme_lego/controllers/main.py b/theme_lego/controllers/main.py new file mode 100644 index 000000000..ffffcc755 --- /dev/null +++ b/theme_lego/controllers/main.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import http, fields +from odoo.http import request + + +class WebsiteProduct(http.Controller): + + @http.route('/get_deal_of_the_week', auth="public", type='json', website=True) + def get_deal_of_the_week(self): + + product_ids = request.env['product.template'].sudo().search([('deal_check', '=', True)], limit=9) + + values = { + 'product_ids': product_ids + } + response = http.Response(template='theme_lego.deal_week', qcontext=values) + return response.render() + + diff --git a/theme_lego/doc/RELEASE_NOTES.md b/theme_lego/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..ad4dcf501 --- /dev/null +++ b/theme_lego/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 21.04.2021 +#### Version 14.0.1.0.0 +#### ADD +- Initial commit for Theme Lego \ No newline at end of file diff --git a/theme_lego/models/__init__.py b/theme_lego/models/__init__.py new file mode 100644 index 000000000..c87e0552a --- /dev/null +++ b/theme_lego/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import lego diff --git a/theme_lego/models/lego.py b/theme_lego/models/lego.py new file mode 100644 index 000000000..dc7fec8a4 --- /dev/null +++ b/theme_lego/models/lego.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import models, fields + + +class ThemeLego(models.AbstractModel): + _inherit = 'theme.utils' + + def _theme_lego_post_copy(self, mod): + + self.enable_view('website.template_header_default') + + +class ProductInherited(models.Model): + _inherit = "product.template" + + deal_check = fields.Boolean(string="Deal of the Week") diff --git a/theme_lego/static/description/banner.png b/theme_lego/static/description/banner.png new file mode 100644 index 000000000..b8fc6bdf5 Binary files /dev/null and b/theme_lego/static/description/banner.png differ diff --git a/theme_lego/static/description/icon.png b/theme_lego/static/description/icon.png new file mode 100644 index 000000000..66ae2199b Binary files /dev/null and b/theme_lego/static/description/icon.png differ diff --git a/theme_lego/static/description/images/1.jpg b/theme_lego/static/description/images/1.jpg new file mode 100644 index 000000000..0a1258e2f Binary files /dev/null and b/theme_lego/static/description/images/1.jpg differ diff --git a/theme_lego/static/description/images/2.jpg b/theme_lego/static/description/images/2.jpg new file mode 100644 index 000000000..271068208 Binary files /dev/null and b/theme_lego/static/description/images/2.jpg differ diff --git a/theme_lego/static/description/images/3.jpg b/theme_lego/static/description/images/3.jpg new file mode 100644 index 000000000..ce0890b2f Binary files /dev/null and b/theme_lego/static/description/images/3.jpg differ diff --git a/theme_lego/static/description/images/4.jpg b/theme_lego/static/description/images/4.jpg new file mode 100644 index 000000000..54fca9f37 Binary files /dev/null and b/theme_lego/static/description/images/4.jpg differ diff --git a/theme_lego/static/description/images/5.jpg b/theme_lego/static/description/images/5.jpg new file mode 100644 index 000000000..a653d5fc3 Binary files /dev/null and b/theme_lego/static/description/images/5.jpg differ diff --git a/theme_lego/static/description/images/6.jpg b/theme_lego/static/description/images/6.jpg new file mode 100644 index 000000000..ca602c7c5 Binary files /dev/null and b/theme_lego/static/description/images/6.jpg differ diff --git a/theme_lego/static/description/images/Cybrosys.png b/theme_lego/static/description/images/Cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/theme_lego/static/description/images/Cybrosys.png differ diff --git a/theme_lego/static/description/images/cybro-logo-oca-no-text.png b/theme_lego/static/description/images/cybro-logo-oca-no-text.png new file mode 100644 index 000000000..180d15dd6 Binary files /dev/null and b/theme_lego/static/description/images/cybro-logo-oca-no-text.png differ diff --git a/theme_lego/static/description/images/cybro-logo-oca.png b/theme_lego/static/description/images/cybro-logo-oca.png new file mode 100644 index 000000000..90e4c9cb9 Binary files /dev/null and b/theme_lego/static/description/images/cybro-logo-oca.png differ diff --git a/theme_lego/static/description/images/demo-1.jpg b/theme_lego/static/description/images/demo-1.jpg new file mode 100644 index 000000000..f86f96819 Binary files /dev/null and b/theme_lego/static/description/images/demo-1.jpg differ diff --git a/theme_lego/static/description/images/demo-2.jpg b/theme_lego/static/description/images/demo-2.jpg new file mode 100644 index 000000000..7cb4db3ed Binary files /dev/null and b/theme_lego/static/description/images/demo-2.jpg differ diff --git a/theme_lego/static/description/images/demo-3.jpg b/theme_lego/static/description/images/demo-3.jpg new file mode 100644 index 000000000..1ac61ab44 Binary files /dev/null and b/theme_lego/static/description/images/demo-3.jpg differ diff --git a/theme_lego/static/description/images/hero.png b/theme_lego/static/description/images/hero.png new file mode 100644 index 000000000..1a0c22123 Binary files /dev/null and b/theme_lego/static/description/images/hero.png differ diff --git a/theme_lego/static/description/images/laptop-screenshots.jpg b/theme_lego/static/description/images/laptop-screenshots.jpg new file mode 100644 index 000000000..a40a6d961 Binary files /dev/null and b/theme_lego/static/description/images/laptop-screenshots.jpg differ diff --git a/theme_lego/static/description/images/phone-screenshots.jpg b/theme_lego/static/description/images/phone-screenshots.jpg new file mode 100644 index 000000000..9250d77bf Binary files /dev/null and b/theme_lego/static/description/images/phone-screenshots.jpg differ diff --git a/theme_lego/static/description/index.html b/theme_lego/static/description/index.html new file mode 100644 index 000000000..65588045d --- /dev/null +++ b/theme_lego/static/description/index.html @@ -0,0 +1,259 @@ + +
+
+
+ Cybrosys Logo +
+
+
+
+
+ Theme Screenshot +
+
+

Theme Lego

+

+ Theme Lego is a attractive and unique front-end theme mainly suitable for eCommerce website. Many + custom designed snippets facilitates to add better user experience. Contains best deals with new arrival + that's configured from the backend. This theme fully customized the eCommerce website, shop view, + custom categories view, product view, cart view page...etc. +

+
+
+ + + + +
+
+

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 theme makes your page more Stylish And Beautiful. +

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

Home Page

+

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

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

Product View

+

+ It is user friendly and modern looking theme and fully customized view. +

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

Overview

+

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

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

Shop

+

+ It is user friendly and modern looking theme and fully customized view. +

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

Confirmation

+

+ It is user friendly and modern looking theme makes your page more Stylish And Beautiful. +

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

Cart

+

+ It is user friendly and modern looking theme makes your page more Stylish And Beautiful. +

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

Demo Pages

+
+
+
+ +
+
+
+ +
Home
+
+
+
+ +
+
+ +
Shop
+
+
+
+ +
+
+ +
Product Preview
+
+
+
+ +
+
+ + + +
+
+

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_lego/static/description/theme_screenshot.png b/theme_lego/static/description/theme_screenshot.png new file mode 100644 index 000000000..99912f9eb Binary files /dev/null and b/theme_lego/static/description/theme_screenshot.png differ diff --git a/theme_lego/static/src/css/animate.min.css b/theme_lego/static/src/css/animate.min.css new file mode 100644 index 000000000..76d2fe1a8 --- /dev/null +++ b/theme_lego/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_lego/static/src/css/owl.carousel.min.css b/theme_lego/static/src/css/owl.carousel.min.css new file mode 100644 index 000000000..a71df11c0 --- /dev/null +++ b/theme_lego/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_lego/static/src/css/owl.theme.default.min.css b/theme_lego/static/src/css/owl.theme.default.min.css new file mode 100644 index 000000000..487088d2e --- /dev/null +++ b/theme_lego/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_lego/static/src/css/style.css b/theme_lego/static/src/css/style.css new file mode 100644 index 000000000..8ab93d83a --- /dev/null +++ b/theme_lego/static/src/css/style.css @@ -0,0 +1,3330 @@ + + +/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto&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; +} + +*body { + line-height: 24px; + font-size: 14px; + font-weight: 400; + color: #777777; + background: #fff; +} + +html, +body { + height: 100%; +} + +ul { + margin: 0; + padding: 0; + list-style: none; +} + +*h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "Poppins", sans-serif; + color: #222222; + font-weight: 500; + line-height: 1.2 !important; +} + +.list { + list-style: none; + margin: 0px; + padding: 0px; +} + +*a { + text-decoration: none; + transition: all 0.3s ease-in-out; +} + +*a:hover, *a:focus { + text-decoration: none; + outline: none; +} + +*button:focus { + outline: none; + box-shadow: none; +} + +.overflow-hidden { + overflow: hidden; +} + +*:focus { + outline: 0 !important; +} + +*button:focus { + border: none; + outline: none; +} + +* { + list-style-type: none; + font-family: "Poppins", sans-serif; + font-size: 14px; +} + +*:focus, *:active { + outline: none !important; +} + +*:hover { + transition: 0.5s; +} + +.banner { + background-image: url(./../img/banner/banner-bg.jpg); + background-repeat: no-repeat; + background-position: center; + background-size: cover; + position: relative; +} + +.banner .banner_content { + position: relative; + padding-top: 250px; + padding-bottom: 150px; +} + +@media screen and (max-width: 996px) { + .banner .banner_content { + padding-top: 220px; + padding-bottom: 75px; + } +} + +.banner .banner_content .banner_left h1 { + font-size: 50px; + font-weight: 700; + text-transform: uppercase; + color: #fff; +} + +@media screen and (max-width: 1100px) { + .banner .banner_content .banner_left h1 { + font-size: 40px; + } +} + +@media screen and (max-width: 996px) { + .banner .banner_content .banner_left h1 { + font-size: 30px; + } +} + +.banner .banner_content .banner_left p { + color: #fff; + line-height: 24px; + margin-bottom: 33px; +} + +@media screen and (max-width: 786px) { + .banner .banner_content .banner_img { + display: none; + } +} + +.banner .banner_content .banner_img img { + width: 100%; +} + +.banner .banner_content .owl-carousel { + position: relative; +} + +.banner .banner_content .owl-carousel .owl-nav { + position: absolute; + right: 50px; + bottom: 12px; +} + +.banner .banner_content .owl-carousel .owl-nav .owl-prev { + color: #fff; +} + +.banner .banner_content .owl-carousel .owl-nav .owl-prev:hover { + color: #000; +} + +.banner .banner_content .owl-carousel .owl-nav .owl-prev i { + font-size: 27px; + padding: 10px; +} + +.banner .banner_content .owl-carousel .owl-nav .owl-next { + color: #fff; +} + +.banner .banner_content .owl-carousel .owl-nav .owl-next:hover { + color: #000; +} + +.banner .banner_content .owl-carousel .owl-nav .owl-next i { + font-size: 27px; +} + +.banner_product { + background-image: url(./../img/banner/banner-bg.jpg); + background-repeat: no-repeat; + background-position: center; + background-size: cover; + position: relative; +} + +.banner_product .banner_content { + text-align: end; + padding-top: 180px; +} + +.banner_product .banner_content .product_heading h1 { + color: #000; + text-transform: uppercase; + font-size: 50px; + font-weight: 700; + color: #fff; +} + +@media screen and (max-width: 768px) { + .banner_product .banner_content .product_heading h1 { + font-size: 40px; + } +} + +@media screen and (max-width: 600px) { + .banner_product .banner_content .product_heading h1 { + font-size: 25px; + text-align: left; + } +} + +.banner_product .banner_content .product_heading .breadcrumb { + background-color: transparent; + justify-content: end; +} + +@media screen and (max-width: 600px) { + .banner_product .banner_content .product_heading .breadcrumb { + justify-content: left; + padding-left: 0; + } +} + +.banner_product .banner_content .product_heading .breadcrumb .active { + color: #000; +} + +.banner_product .banner_content .product_heading .breadcrumb .breadcrumb-item a { + color: #fff; + text-decoration: none; +} + +.banner_product .banner_content .product_heading .breadcrumb .breadcrumb-item:before { + display: inline-block; + padding-right: 0.5rem; + color: #1b80da; + content: ""; +} + +.banner_product .banner_content .product_heading .breadcrumb .breadcrumb-item .material-icons { + padding-top: 6px; + padding-left: 3px; +} + +.btn { + border: none !important; + outline: 0 !important; + transition: 0.5s; + box-shadow: none !important; +} + +.btn-primary { + background-color: transparent !important; + border-color: #fff; + padding: 12px 36px; + color: #000 !important; + font-size: 16px; + font-weight: 600; + border-radius: 0; + border: 1px solid !important; +} + +.btn-primary:hover { + border: none !important; + color: #000 !important; + background: #fff !important; +} + +.btn-add { + text-transform: uppercase !important; + font-size: 14px; + font-weight: 600; + color: #222222; + display: flex; + color: #fff; + align-items: center; + text-decoration: none !important; +} + +.btn-add:hover { + color: #ff6c00; +} + +.btn-add i { + height: 45px; + width: 45px; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + color: white !important; + border-radius: 50%; + padding: 12px; + margin-right: 13px; +} + +.btn-add2 { + text-transform: uppercase !important; + font-size: 14px; + font-weight: 600; + color: #222222; + display: flex; + justify-content: center; + align-items: center; + text-decoration: none !important; +} + +.btn-add2:hover { + color: #222222; +} + +.btn-add2 i { + height: 45px; + width: 45px; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + color: #fff !important; + border-radius: 50%; + padding: 12px; + margin-right: 13px; + color: #222222 !important; +} + +.btn-add2 i:hover { + background-image: linear-gradient(45deg, #22c1c3 0%, #e0d8d8 60%); +} + +.btn-shop { + color: #222222; + display: block; + position: absolute; + z-index: 2; + left: 41%; + top: 62%; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + padding: 14px 27px; + font-weight: 600; + border-radius: 25px; +} + +@media screen and (max-width: 996px) { + .btn-shop { + top: 75%; + } +} + +.btn-shop:hover { + text-decoration: none; + color: #222222; +} + +.btn-cart { + color: #fff; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + padding: 14px 35px; + font-weight: 600; + border-radius: 6px; + box-shadow: none !important; +} + +.btn-cart:hover { + text-decoration: none; + color: #fff; +} + +.btn-replay { + color: #000; + border: 1px solid !important; + border-radius: 25px; + border-color: #777777 !important; + padding: 5px 15px; + box-shadow: none !important; +} + +.btn-replay:hover { + text-decoration: none; + color: #fff; + background-color: #00c2fb !important; + border: none !important; +} + +.btn-login { + color: #fff; + border-radius: 0px; + background-color: #00c2fb !important; + padding: 8px 22px; + box-shadow: none !important; + border-radius: 5px; + font-weight: 600; +} + +.btn-login:hover { + text-decoration: none; + color: #fff; + border: none !important; +} + +.btn-checkout_c { + text-transform: uppercase !important; + font-size: 14px; + font-weight: 600; + color: #fff; + height: 50px; + padding-top: 15px; + display: block; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + text-decoration: none !important; +} + +.btn-checkout_c:hover { + color: #fff; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); +} + +.btn-update { + background-color: #acdfee99 !important; + padding: 12px 36px; + color: #000 !important; + font-size: 16px; + border-radius: 0; +} + +.btn-update:hover { + border: none !important; + color: #000 !important; +} + +.btn-update2 { + background-color: #acdfee99 !important; + display: block; + padding: 12px 36px; + color: #000 !important; + font-size: 16px; + border-radius: 0; +} + +.btn-update2:hover { + border: none !important; + color: #000 !important; +} + +.btn-cartc { + color: #fff; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + padding: 14px 35px; + font-weight: 600; + box-shadow: none !important; +} + +.btn-cartc:hover { + text-decoration: none; + color: #fff; +} + +@media screen and (max-width: 474px) { + .btn-cartc { + margin-bottom: 15px; + padding: 14px 38px; + } +} + +.btn-cartd { + color: #fff; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + padding: 14px 28px; + font-weight: 600; + box-shadow: none !important; +} + +.btn-cartd:hover { + text-decoration: none; + color: #fff; +} + +.btn-register { + color: #fff; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + padding: 14px 28px; + font-weight: 600; + box-shadow: none !important; + border-radius: 0 !important; +} + +.btn-register:hover { + text-decoration: none; + color: #fff; +} + +.btn-login { + color: #fff; + display: block; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + padding: 14px 28px; + font-weight: 600; + box-shadow: none !important; + border-radius: 0 !important; +} + +.btn-login:hover { + text-decoration: none; + color: #fff; +} + +.btn-send { + background-color: #00c2fb !important; + border-color: #fff; + padding: 8px 40px; + color: #fff !important; + font-size: 16px; + border-radius: 0; + margin-top: 31px; + margin-left: auto; + margin-right: 16px; +} + +.btn-send:hover { + border: none !important; + background: #00aee2 !important; +} + +.product { + margin-top: 100px; +} + +.product .main_heading { + text-align: center; + padding-bottom: 10px; +} + +.product .main_heading h3 { + font-size: 25px; + font-weight: 600; + text-transform: uppercase; + font-family: "Poppins", sans-serif; + color: #222222; +} + +.product .main_heading p { + color: #777777; + line-height: 24px; + margin-bottom: 33px; +} + +.product .wrapper { + margin-top: 40px; +} + +.product .wrapper .product_img { + margin-bottom: 50px; +} + +@media screen and (max-width: 576px) { + .product .wrapper .product_img { + margin: 0 10px; + padding-bottom: 30px; + } +} + +.product .wrapper .product_img .wrapper_img { + padding-bottom: 15px; +} + +.product .wrapper .product_img .wrapper_img img { + width: 100%; +} + +.product .wrapper .product_img h5 { + color: #222222; + text-transform: uppercase; + font-weight: 600; + margin-top: 15px; + font-family: "Poppins", sans-serif; +} + +.product .wrapper .product_img .rate { + display: flex; + padding-top: 10px; +} + +.product .wrapper .product_img .rate p { + color: #222222; + margin-right: 50px; +} + +.product .wrapper .product_img .rate span { + color: #777777; + text-decoration: line-through; +} + +.product .wrapper .product_img .product_bottom { + display: flex; + padding-left: 0; + position: relative; +} + +.product .wrapper .product_img .product_bottom li { + height: 35px; + width: 35px; + border-radius: 50%; + background-color: #fc5205; + margin-right: 12px; +} + +.product .wrapper .product_img .product_bottom a { + color: #fff; +} + +.product .wrapper .product_img .product_bottom a span { + padding: 11px; +} + +.main_heading { + text-align: center; + padding-bottom: 10px; +} + +.main_heading h3 { + font-size: 25px; + font-weight: 600; + text-transform: uppercase; + font-family: "Poppins", sans-serif; + color: #222222; +} + +.main_heading p { + color: #777777; + line-height: 24px; + margin-bottom: 33px; +} + +.fixed-top { + top: 30px; + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); + transition: all 0.3s ease 0s; + background: #fff; + left: 2.5%; + width: 95%; + padding: 20px 0; +} + +.navbar-dark { + color: #000; +} + +.navbar-dark #nav-bg { + margin: 0px auto 0; + display: flex; +} + +.navbar-dark #nav-bg .navbar-toggler { + background-color: #00c2fb; + color: #fff; +} + +@media screen and (max-width: 610px) { + .navbar-dark #nav-bg .navbar-toggler { + margin-right: 20px; + } +} + +.navbar-dark .navbar-brand { + color: #00c2fb; + font-family: "Poppins", sans-serif; + font-size: 30px; + font-weight: 600; + letter-spacing: 2px; + padding-left: 10px; +} + +.navbar-dark .navbar-brand:hover { + color: #00c2fb !important; +} + +@media screen and (max-width: 996px) { + .navbar-dark .navbar-collapse { + text-align: center; + } +} + +.navbar-dark .navbar-collapse .navbar-nav .nav-item.active .nav-link { + color: #00c2fb !important; +} + +.navbar-dark .navbar-collapse .navbar-nav .dropdown-menu { + border: 0; + border-radius: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + -ms-border-radius: 0; + -o-border-radius: 0; + padding: 15px 15px; +} + +.navbar-dark .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item { + padding-top: 10px; + padding-bottom: 10px; +} + +@media screen and (max-width: 996px) { + .navbar-dark .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item { + text-align: center; + } +} + +.navbar-dark .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:hover { + color: #fff; + background-color: #00c2fb; +} + +.navbar-dark .navbar-collapse .navbar-nav .dropdown:hover > .dropdown-menu { + display: block; +} + +.navbar-dark .navbar-collapse .nav-item { + text-transform: uppercase; + padding: 0 12px; +} + +.navbar-dark .navbar-collapse .nav-item .nav-link { + color: #222222; + font-weight: 500; + font-size: 13px; +} + +.navbar-dark .navbar-collapse .nav-item .nav-link:hover { + color: #00c2fb; +} + +.navbar-dark .nav_right { + display: flex; +} + +@media screen and (max-width: 996px) { + .navbar-dark .nav_right { + justify-content: center; + } +} + +.navbar-dark .nav_right .nav_cart { + padding: 0 12px; +} + +.navbar-dark .nav_right .nav_cart a { + color: #222222; +} + +.navbar-dark .nav_right .nav_cart a:hover { + color: #00c2fb; +} + +.navbar-dark .nav_right .nav_search { + padding: 0 12px; +} + +.navbar-dark .nav_right .nav_search a { + color: #222222; +} + +.navbar-dark .nav_right .nav_search a:hover { + color: #00c2fb; +} + +#new { + transition: 0.5s; +} +.o_footer { + background-color: transparent !important; + color: #222222 !important; +} +.o_footer .o_footer_copyright{ + background-color: #30353b !important; +} + +.footer { + margin-top: 100px; + background-color: #222222; +} + +.footer .footer_content { + padding-top: 90px; + padding-bottom: 90px; +} + +@media screen and (max-width: 996px) { + .footer .footer_content .ft_b { + margin-top: 45px; + } +} + +.footer .footer_content .wrapper h6 { + color: #fff; + font-weight: 600; + font-size: 23px; + margin-bottom: 30px; +} + +.footer .footer_content .wrapper p { + color: #777777; + line-height: 21px; + font-size: 14px; +} + +@media screen and (max-width: 768px) { + .footer .footer_content .wrapper p { + margin-bottom: 45px; + } +} + +.footer .footer_content .wrapper .input-group { + width: 100%; + height: 50px; + border-radius: 0; + margin-top: 30px; +} + +.footer .footer_content .wrapper .input-group .form-control { + border-radius: 0; + height: 50px; +} + +.footer .footer_content .wrapper .input-group .input-group-text { + border-radius: 0; + background-image: linear-gradient(45deg, #22c1c3 0%, #e0d8d8 60%); + padding: 0 20px; + color: #fff; + font-weight: 700; +} + +.footer .footer_content .wrapper .footer_icon { + display: flex; + margin-top: 30px; +} + +.footer .footer_content .wrapper .footer_icon a { + color: #fff; + margin-right: 18px; +} + +.footer .footer_content .wrapper .footer_icon a:hover { + color: #f1a138; +} + +.footer .footer_content .wrapper .footer_icon a span { + font-size: 12px; +} + +.footer .footer_content .footer_bottom { + margin-top: 50px; + text-align: center; + color: #777777; + margin-bottom: 20px; + width: 100%; +} + +@media screen and (max-width: 996px) { + .footer .footer_content .footer_bottom { + text-align: left; + padding-left: 12px; + } +} + +.footer .footer_content .footer_bottom a { + color: #00c2fb; + text-decoration: none; +} + +.footer .footer_content .footer_bottom a:hover { + color: #f1a138; +} + +.sidebar .wrapper { + margin-bottom: 20px; + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); + transition: all 0.3s ease 0s; + -ms-transition: all 0.3s ease 0s; +} + +.sidebar .wrapper .sidebar_head { + background: #fc5205; + color: #fff; + padding: 18px 10px; + padding-left: 20px; + margin-bottom: 20px; +} + +.sidebar .wrapper .sidebar_content .categories__accordion .card { + border: none; + border-radius: 0; + padding-left: 20px; + padding-bottom: 12px; + border-bottom: 1px solid #f2f2f2 !important; + margin-bottom: 12px; +} + +.sidebar .wrapper .sidebar_content .categories__accordion .card-heading { + cursor: pointer; +} + +.sidebar .wrapper .sidebar_content .categories__accordion .card-heading a { + font-size: 14px; + font-weight: 500; + color: #000; + display: block; + text-decoration: none; +} + +.sidebar .wrapper .sidebar_content .categories__accordion .card-body { + padding-left: 0; + padding-top: 6px; + padding-bottom: 0; +} + +.sidebar .wrapper .sidebar_content .categories__accordion .card-body li { + list-style: none; + position: relative; + padding-left: 16px; +} + +.sidebar .wrapper .sidebar_content .categories__accordion .card-body li:before { + position: absolute; + left: 4px; + top: 14px; + height: 1px; + width: 4px; + background: #666666; + content: ""; +} + +.sidebar .wrapper .sidebar_content .categories__accordion .card-body li a { + font-size: 14px; + color: #666666; + line-height: 30px; +} + +.sidebar .wrapper .sidebar_content .filter_head { + color: #000; + font-size: 20px; + font-weight: 600; + padding: 18px 10px; +} + +.sidebar .wrapper .sidebar_content .filter { + padding-left: 20px; + padding-right: 10px; + padding-bottom: 20px; + /* Hide the browser's default radio button */ + /* Create a custom radio button */ + /* On mouse-over, add a grey background color */ + /* When the radio button is checked, add a blue background */ + /* Create the indicator (the dot/circle - hidden when not checked) */ + /* Show the indicator (dot/circle) when checked */ + /* Style the indicator (dot/circle) */ +} + +.sidebar .wrapper .sidebar_content .filter .container { + display: block; + position: relative; + padding-left: 35px; + margin-bottom: 12px; + cursor: pointer; + font-size: 14px; + user-select: none; + color: #777777; +} + +.sidebar .wrapper .sidebar_content .filter .container input { + position: absolute; + opacity: 0; + cursor: pointer; +} + +.sidebar .wrapper .sidebar_content .filter .checkmark { + position: absolute; + top: 0; + left: 0; + height: 20px; + width: 20px; + background-color: #4e4848; + border-radius: 50%; +} + +.sidebar .wrapper .sidebar_content .filter .container:hover input ~ .checkmark { + background-color: #f1a138; +} + +.sidebar .wrapper .sidebar_content .filter .container input:checked ~ .checkmark { + background-color: #00c2fb; +} + +.sidebar .wrapper .sidebar_content .filter .checkmark:after { + content: ""; + position: absolute; + display: none; +} + +.sidebar .wrapper .sidebar_content .filter .container input:checked ~ .checkmark:after { + display: block; +} + +.sidebar__filter { + position: relative; +} + +.sidebar__filter input { + font-family: inherit; + font-size: 100%; + line-height: 1.15; + margin: 0; + width: 50%; +} + +.sidebar__filter .section-title { + margin-bottom: 50px; +} + +.sidebar__filter .section-title .borderd_header { + text-transform: uppercase; +} + +.sidebar__filter .section-title h4 { + font-size: 18px; +} + +#slider-range { + margin-bottom: 30px; + background-color: #fc5205; + border: none; + height: 8px; + border-radius: 8px; +} + +#slider-range .ui-state-default, +#slider-range .ui-widget-content .ui-state-default { + background-color: #3a3a3a; + border: none; + height: 18px; + width: 18px; + top: -4.8px; + position: absolute; + border-radius: 50%; +} + +#slider-range.ui-slider-horizontal .ui-slider-range { + top: 0; + background-color: #fc5205 !important; + left: 0%; + width: 60%; + position: absolute; + height: 8px; + border-radius: 8px; +} + +.services { + margin-top: 100px; +} + +.services .wrapper { + text-align: center; +} + +@media screen and (max-width: 576px) { + .services .wrapper { + padding-bottom: 20px; + } +} + +.services .wrapper i { + font-size: 48px; + padding-bottom: 16px; +} + +.services .wrapper h6 { + font-size: 18px; + font-weight: 500; + font-family: "Poppins", sans-serif; + padding-bottom: 2px; +} + +.services .wrapper p { + color: #777777; +} + +.offers { + padding-top: 100px; +} + +@media screen and (max-width: 996px) { + .offers { + padding-top: 75px; + } +} + +@media screen and (max-width: 996px) { + .offers .tt { + margin-top: 20px; + } +} + +.offers .offer_img { + position: relative; +} + +.offers .offer_img .inline-photo { + opacity: 0; + transform: translateY(0em) rotateZ(0deg); + transition: transform 6s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.9s 0.25s ease-out; + will-change: transform, opacity; + -webkit-transform: translateY(0em) rotateZ(0deg); + -moz-transform: translateY(0em) rotateZ(0deg); + -ms-transform: translateY(0em) rotateZ(0deg); + -o-transform: translateY(0em) rotateZ(0deg); + -webkit-transition: transform 6s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.9s 0.25s ease-out; + -moz-transition: transform 6s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.9s 0.25s ease-out; + -ms-transition: transform 6s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.9s 0.25s ease-out; + -o-transition: transform 6s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.9s 0.25s ease-out; +} + +.offers .offer_img .inline-photo.is-visible { + opacity: 1; + transform: rotateZ(0deg); + -webkit-transform: rotateZ(0deg); + -moz-transform: rotateZ(0deg); + -ms-transform: rotateZ(0deg); + -o-transform: rotateZ(0deg); +} + +.offers .offer_img img { + width: 100%; + display: block; + height: auto; +} + +.offers .offer_img .overlay { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + height: 100%; + width: 100%; + opacity: 0; + transition: 0.5s ease; + background-color: #00000069; +} + +.offers .offer_img .overlay:hover { + opacity: 1; +} + +.offers .offer_img .overlay .text { + color: white; + font-size: 20px; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); +} + +.offers .offer_left { + position: relative; +} + +@media screen and (max-width: 996px) { + .offers .offer_left { + margin-top: 25px; + } +} + +.offers .offer_left img { + width: 100%; +} + +.offers .offer_left .overlay { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + height: 100%; + width: 100%; + opacity: 0; + transition: 0.5s ease; + background-color: #00000069; +} + +.offers .offer_left .overlay:hover { + opacity: 1; +} + +.offers .offer_left .overlay .text { + color: white; + font-size: 20px; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); +} + +.hot { + margin-top: 70px; +} + +.hot .left { + background-image: url(./../img/exclusive.jpg); + height: 100vh; + background-repeat: no-repeat; + background-position: center; + background-size: cover; + position: relative; +} + +.hot .left:after { + content: ""; + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + height: 100%; + width: 100%; + background-color: #00000069; +} + +.hot .left .wrapper { + text-align: center; + position: relative; + padding: 33px 109px; + z-index: 1; +} + +@media screen and (max-width: 996px) { + .hot .left .wrapper { + padding: 73px 109px; + } +} + +@media screen and (max-width: 576px) { + .hot .left .wrapper { + padding: 30px 50px; + } +} + +.hot .left .wrapper .deal { + color: #fff; + font-size: 33px; + font-weight: 600; + padding-top: 120px; + margin-bottom: 7px; +} + +.hot .left .bt { + color: #fff; + font-size: 15px; +} + +.hot .left #countdown { + width: 100%; + border-radius: 8px; + margin-top: 65px; +} + +@media screen and (max-width: 576px) { + .hot .left #countdown { + margin-top: 30px; + } +} + +.hot .left label { + clear: both; + display: block; +} + +.hot .left #countdown span { + color: #fff; + font-size: 45px; + font-weight: 700; + text-align: center; + width: 25%; + float: left; +} + +.hot .right { + background-color: #f9f9ff; + height: 100%; + padding-top: 20%; +} + +.hot .right .wrapper { + text-align: center; + position: relative; +} + +.hot .right .wrapper .img_right { + max-width: 350px; + margin: auto; +} + +.hot .right .wrapper .img_right img { + width: 100%; +} + +.hot .right .wrapper h5 { + color: #222222; + text-transform: uppercase; + font-weight: 600; + margin-top: 15px; + font-family: "Poppins", sans-serif; + font-size: 25px; + margin-bottom: 30px; +} + +.hot .right .wrapper .rate { + display: flex; + justify-content: center; + padding-top: 10px; +} + +.hot .right .wrapper .rate p { + color: #222222; + margin-right: 50px; +} + +.hot .right .wrapper .rate span { + color: #777777; + text-decoration: line-through; +} + +.hot .right #owl-theme2 { + position: relative; +} + +.hot .right #owl-theme2 .owl-nav .owl-prev { + color: #f1a138; +} + +.hot .right #owl-theme2 .owl-nav .owl-prev:hover { + color: #000; +} + +.hot .right #owl-theme2 .owl-nav .owl-prev i { + font-size: 27px; + padding: 10px; +} + +.hot .right #owl-theme2 .owl-nav .owl-next { + color: #f1a138; +} + +.hot .right #owl-theme2 .owl-nav .owl-next:hover { + color: #000; +} + +.hot .right #owl-theme2 .owl-nav .owl-next i { + font-size: 27px; +} + +.brands { + margin-top: 100px; +} + +@media screen and (max-width: 996px) { + .brands { + margin-top: 75px; + } +} + +@media screen and (max-width: 996px) { + .brands { + margin-top: 50px; + } +} + +.brands .brand_img { + max-width: 120px; + display: block; + margin: auto; +} + +@media screen and (max-width: 996px) { + .brands .brand_img { + margin-bottom: 15px; + } +} + +.brands .brand_img img { + width: 100%; + opacity: 0.2; + transition: all 0.3s ease 0s; +} + +.brands .brand_img img:hover { + opacity: 0.8; +} + +.deals { + margin-top: 100px; +} + +@media screen and (max-width: 996px) { + .deals { + margin-top: 75px; + } +} + +@media screen and (max-width: 996px) { + .deals { + margin-top: 50px; + } +} + +.deals .r_wrapper { + margin-bottom: 20px; +} + +.deals .r_wrapper .r_img img { + width: 70px; + height: 70px; +} + +.deals .r_wrapper .p_deatials { + padding-left: 10px; +} + +.deals .r_wrapper .p_deatials a { + text-decoration: none; +} + +.deals .r_wrapper .p_deatials a h5 { + color: #222222; + text-transform: uppercase; + font-weight: 400; + margin-top: 14px !important; + font-family: "Poppins", sans-serif; + font-size: 14px; +} + +.deals .r_wrapper .p_deatials a h5 span{ + color: #222222; + text-transform: uppercase; + font-weight: 400; + margin-top: 14px !important; + font-family: "Poppins", sans-serif; + font-size: 14px; +} + +.deals .r_wrapper .p_deatials a h5:hover { + color: #f1a138 !important; + transition: 0.5s; +} + +.deals .r_wrapper .p_deatials a h5 span:hover { + color: #f1a138 !important; + transition: 0.5s; +} + + +.deals .r_wrapper .p_deatials .rate { + display: flex; + padding-top: 5x; +} + +.deals .r_wrapper .p_deatials .rate p { + color: #222222; + margin-right: 10px; + font-weight: 600; +} + + +.deals .r_wrapper .p_deatials .rate p span { + color: #222222; + margin-right: 10px; + font-weight: 600; + text-decoration: none; +} +.deals .r_wrapper .p_deatials .rate p span:hover { + text-decoration: none; +} + +.deals a { + color: #222222; + margin-right: 10px; + font-weight: 600; +} + +.deals .r_wrapper .p_deatials .rate span { + color: #777777; + text-decoration: line-through; +} + +.deals .d_right_img { + max-width: 250px; +} + +@media screen and (max-width: 996px) { + .deals .d_right_img { + max-width: 100%; + margin-top: 40px; + } +} + +.deals .d_right_img img { + width: 100%; +} + +.main_product { + margin-top: 0px !important; +} + +@media screen and (max-width: 600px) { + .main_product { + margin-top: 70px; + padding: 0 10px; + } +} + +.main_product .product_top { + background: #fc5205; + padding: 13px 10px; + margin-bottom: 20px; +} + + +.main_product .product_top .left .drp2 { + margin-left: 15px !important; +} + +.main_product .product_top .dropdown { + width: 100%; +} + + +.main_product .product_top .dropdown .btn-secondary-1{ +background: #fcfcfc; + border-radius: 0; + color: #777777; + width: 50%; +} + + + +.main_product .product_top .dropdown .btn-secondary { + background: #fcfcfc; + border-radius: 0; + color: #777777; + width: 80%; +} + +.main_product .product_top .dropdown .dropdown-menu { + border-radius: 0; + border: 0; +} + +.main_product .product_top .dropdown .dropdown-menu .dropdown-item { + color: #777777; + padding: 10px 4px; +} + +.main_product .product_top .dropdown .dropdown-menu .dropdown-item:hover { + background: #f1a138 !important; + color: #fff; +} + +.main_product .product_top .right .shop_pagination_area { + text-align: center; + display: flex; + justify-content: end; +} + +@media screen and (max-width: 768px) { + .main_product .product_top .right .shop_pagination_area { + justify-content: left; + } +} + +.main_product .product_top .right .shop_pagination_area .pagination .page-item.active .page-link { + color: #fff; + background-color: #00c2fb; +} + +.main_product .product_top .right .shop_pagination_area .pagination .page-item .page-link { + color: #000; + background-color: #fff; + border: 0; + font-size: 15px; + font-weight: 600; + border: 2px solid; + border: 0; + border-radius: 0; + border-color: #777777; + height: 35px; + width: 37px; + box-shadow: none; + padding: 8px 10px; +} + +.main_product .product_top .right .shop_pagination_area .pagination .page-item .page-link:hover { + color: #fff; + background-color: #00c2fb; +} + +.main_product .product_top .right .shop_pagination_area .pagination .page-item:nth-child(4) .page-link { + background-color: transparent !important; +} + +.main_product .product_shop .main_heading { + text-align: center; + padding-bottom: 10px; +} + +.main_product .product_shop .main_heading h3 { + font-size: 25px; + font-weight: 600; + text-transform: uppercase; + font-family: "Poppins", sans-serif; + color: #222222; +} + +.main_product .product_shop .main_heading p { + color: #777777; + line-height: 24px; + margin-bottom: 33px; +} + +.main_product .product_shop .wrapper .product_img { + margin-bottom: 50px; +} + +.main_product .product_shop .wrapper .product_img .wrapper_img { + padding-bottom: 25px; +} + +.main_product .product_shop .wrapper .product_img .wrapper_img img { + width: 100%; +} + +.main_product .product_shop .wrapper .product_img h5 { + color: #222222; + text-transform: uppercase; + font-weight: 600; + margin-top: 15px; + font-family: "Poppins", sans-serif; +} + +.main_product .product_shop .wrapper .product_img .rate { + display: flex; + padding-top: 10px; +} + +.main_product .product_shop .wrapper .product_img .rate p { + color: #222222; + margin-right: 50px; +} + +.main_product .product_shop .wrapper .product_img .rate span { + color: #777777; + text-decoration: line-through; +} + +.main_product .product_shop .wrapper .product_img .product_bottom { + display: flex; + padding-left: 0; + position: relative; + justify-content: center; +} + +.main_product .product_shop .wrapper .product_img .product_bottom li { + height: 35px; + width: 35px; + border-radius: 50%; + background-color: #fc5205; + margin-right: 12px; + margin-left: 12px; +} + +.main_product .product_shop .wrapper .product_img .product_bottom a { + color: #fff; +} + +.main_product .product_shop .wrapper .product_img .product_bottom a span { + padding: 11px; +} + +.Poduct_preview { + margin-top: 100px; +} + +@media screen and (max-width: 996px) { + .Poduct_preview { + margin-top: 10px; + } +} + +.Poduct_preview .preview_img { + padding-top: 30px; + position: relative; +} + +.Poduct_preview .preview_img .wrapper { + max-width: 600px; +} + +@media screen and (max-width: 768px) { + .Poduct_preview .preview_img .wrapper { + padding-bottom: 30px; + } +} + +.Poduct_preview .preview_img .wrapper img { + width: 100%; +} + +.Poduct_preview .preview_img .owl-carousel button.owl-dot span { + height: 25px; + width: 7px; + border-radius: 8px; + background-color: #fff; + background-color: #00c2fb; + display: block; + font-weight: 700; + margin: 2px; +} + +@media screen and (max-width: 576px) { + .Poduct_preview .preview_img .owl-carousel button.owl-dot span { + height: 18px; + width: 5px; + margin: 1px; + } +} + +.Poduct_preview .preview_img .owl-carousel button.owl-dot.active span { + height: 40px; + width: 7px; + border-radius: 8px; + background-color: #fc5205; +} + +@media screen and (max-width: 576px) { + .Poduct_preview .preview_img .owl-carousel button.owl-dot.active span { + height: 25px; + width: 5px; + } +} + +.Poduct_preview .preview_img .owl-carousel { + position: relative; +} + +.Poduct_preview .preview_img .owl-carousel .owl-dots { + position: absolute; + bottom: 1%; + left: 75%; + transform: rotate(89deg); +} + +@media screen and (max-width: 768px) { + .Poduct_preview .preview_img .owl-carousel .owl-dots { + bottom: 0; + } +} + +.Poduct_preview .preview_details { + padding-top: 30px; + margin-left: 20px; +} + +.Poduct_preview .preview_details .preview_heading { + color: #222222; + font-size: 25px; + font-weight: 600; + letter-spacing: 1px; +} + +.Poduct_preview .preview_details .price { + color: #00c2fb; + font-size: 28px; + font-weight: 700; + padding-top: 10px; +} + +.Poduct_preview .preview_details .category { + padding-left: 0; + margin-top: 20px; +} + +.Poduct_preview .preview_details .category li { + padding-bottom: 10px; +} + +.Poduct_preview .preview_details .category li a { + color: #555; + text-decoration: none; +} + +.Poduct_preview .preview_details .category li a span { + color: #00c2fb; + padding-left: 15px; +} + +.Poduct_preview .preview_details p { + padding-top: 30px; + color: #777777; + line-height: 25px; +} + +.Poduct_preview .preview_details .product_quantity { + display: flex; + align-items: center; + margin-top: 40px; +} + +.Poduct_preview .preview_details .product_quantity span { + color: #777777; + padding-right: 10px; +} + +.Poduct_preview .preview_details .product_quantity #myform { + text-align: center; + border: 2px solid #ccc; + display: flex; + border-radius: 0px; + width: 100px; + justify-content: space-around; + align-items: center; +} + +.Poduct_preview .preview_details .product_quantity #myform .wrapper_q { + display: block !important; +} + +.Poduct_preview .preview_details .product_quantity .qty { + width: 40px; + height: 15px; + text-align: center; + border: none; +} + +.Poduct_preview .preview_details .product_quantity input.qtyplus { + width: 25px; + border: none; + background-color: transparent; + display: block !important; + padding-top: 4px; +} + +.Poduct_preview .preview_details .product_quantity input.qtyminus { + width: 25px; + border: none; + background-color: transparent; +} + +.Poduct_preview .preview_details .add_c { + display: flex; + align-items: center; + margin-top: 20px; +} + +.Poduct_preview .preview_details .add_c .c_icon { + padding-left: 10px; +} + +.Poduct_preview .preview_details .add_c .c_icon a { + color: #fff; + font-size: 18px; +} + +.Poduct_preview .preview_details .add_c .c_icon span { + height: 37px; + width: 37px; + background-color: #fc5205; + border-radius: 50%; + padding: 11px; + margin-left: 10px; +} + +.Poduct_preview .preview_details .add_c .c_icon span:hover { + background-color: #00c2fb; + transition: 0.5s; +} + +.preview_tab { + margin-top: 100px; +} + +.preview_tab .nav-pills { + justify-content: center; +} + +.preview_tab .nav-pills .nav-item { + padding: 12px 22px; +} + +.preview_tab .nav-pills .nav-item .active { + color: #fff !important; + border: none; + background-image: linear-gradient(45deg, #22c1c3 0%, #21392b59 60%); + border-radius: 0; + padding: 12px 22px; +} + +.preview_tab .nav-pills .nav-item .nav-link { + color: #000; +} + +.preview_tab .tab-content { + padding-top: 20px; +} + +.preview_tab .tab-content .tab-pane { + line-height: 24px; + font-size: 14px; + font-family: "Roboto", sans-serif; + font-weight: 400; + color: #777777; +} + +.preview_tab .tab-content .tab-pane .det { + padding: 0 15px; +} + +.preview_tab .tab-content .tab-pane table { + color: #777777; +} + +@media screen and (max-width: 600px) { + .preview_tab .tab-content .tab-pane table { + padding: 0 15px; + } +} + +@media screen and (max-width: 600px) { + .preview_tab .tab-content .tab-pane .comments { + padding: 0 15px; + } +} + +.preview_tab .tab-content .tab-pane .comments .over_all { + margin: auto; + text-align: center; + background-color: #e8e8e8; + height: 150px; + width: 150px; +} + +.preview_tab .tab-content .tab-pane .comments .over_all h5 { + color: #000; + margin-bottom: 10px; + padding-top: 25px; + font-size: 20px; + font-weight: 600; +} + +.preview_tab .tab-content .tab-pane .comments .over_all .num { + color: #00c2fb; + font-size: 40px; + font-weight: 700; + padding-bottom: 10px; +} + +.preview_tab .tab-content .tab-pane .comments .wrapper { + margin-top: 20px; +} + +.preview_tab .tab-content .tab-pane .comments .person { + display: flex !important; + align-items: center; + justify-content: space-between; +} + +.preview_tab .tab-content .tab-pane .comments .person .p_img { + display: flex; + align-items: center; +} + +.preview_tab .tab-content .tab-pane .comments .person .p_img .img_d { + padding-top: 15px; + margin-left: 10px; +} + +.preview_tab .tab-content .tab-pane .comments .person .p_img .img_d h6 { + color: #000; +} + +.preview_tab .tab-content .tab-pane .comments .c_p { + line-height: 24px; + font-size: 14px; + font-family: "Roboto", sans-serif; + font-weight: 400; + color: #777777; + margin-top: 20px; +} + +.preview_tab .tab-content .tab-pane .p_comment .rating { + display: flex; + padding-bottom: 20px; +} + +.preview_tab .tab-content .tab-pane .p_comment .rating .star { + display: flex; + padding-left: 0; + margin: 0 10px; +} + +.preview_tab .tab-content .tab-pane .p_comment .rating .star li a { + margin-right: 4px; + color: #ff9800; +} + +.preview_tab .tab-content .tab-pane .p_comment .rating .star li a span { + font-size: 13px; +} + +.preview_tab .tab-content .tab-pane .p_comment h5 { + color: #000; +} + +.preview_tab .tab-content .tab-pane .p_comment .contact-form { + margin-top: 10px; +} + +.preview_tab .tab-content .tab-pane .p_comment .contact-form .form-control { + display: block; + width: 100%; + height: calc(2.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-color: transparent; + border-bottom-color: #000; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.preview_tab .tab-content .tab-pane .p_comment .contact-form .form-control:focus { + color: #495057; + background-color: #fff; + border-bottom-color: #000 !important; + outline: 0; + box-shadow: none; +} + +.preview_tab .tab-content .tab-pane .p_comment .contact-form .input-block { + margin-bottom: 30px; +} + +.preview_tab .tab-content .tab-pane .p_comment .contact-form .input-block label { + color: #777777; +} + +.checkout { + margin-top: 100px; +} + +.checkout .wrapper { + background-color: #faffcb; + padding: 20 20px; +} + +.checkout .checkout_top .wrp { + padding: 0 15px; +} + +.checkout .checkout_top .one { + background-color: #f2ede2; + text-align: left; + display: block; + width: 100%; + padding: 15px 0px 15px 10px; +} + +.checkout .checkout_top .one a { + color: #c5322d; + text-decoration: none; + padding-left: 5px; +} + +.checkout .checkout_top p { + color: #777777; + padding: 15px 0; +} + +.checkout .checkout_top .md-form { + color: #777777; + margin-right: 20px; +} + +.checkout .checkout_top .form-control { + display: block; + width: 100%; + height: calc(2em + 0.85rem + 3px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #e3e3e3; + background-clip: padding-box; + border: 1px solid; + border-color: #00c2fb !important; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.checkout .checkout_top .coupon { + display: block; + width: 100%; + height: calc(2em + 0.85rem + 3px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #e3e3e300; + background-clip: padding-box; + border: 1px solid; + border-color: #00c2fb !important; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.checkout .checkout_top .coupon:focus { + color: #495057; + background-color: #c2bfbf !important; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.checkout .checkout_top .form-control:focus { + color: #495057; + background-color: #fff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.checkout .checkout_top .custom-control-input:checked ~ .custom-control-label::before { + color: red; + border-color: red; + background-color: red; + outline: none !important; + box-shadow: none !important; +} + +.checkout .checkout_top .form-check-input:checked { + outline: none !important; + box-shadow: none !important; +} + +.checkout .checkout_left { + margin-top: 70px; +} + +.checkout .checkout_left .billing h3 { + font-weight: 600; + color: #ff6c00; + text-transform: uppercase; +} + +.checkout .checkout_left .billing p { + color: #777777; + margin-top: 15px; +} + +.checkout .checkout_left .form-control { + display: block; + width: 100%; + height: calc(2em + 0.85rem + 3px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #e3e3e3; + background-clip: padding-box; + border: 1px solid; + border-color: transparent !important; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.checkout .checkout_left .form-control:focus { + color: #495057; + background-color: #fff; + border-color: #ff6c00 !important; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.checkout .checkout_left .custom-select { + display: inline-block; + width: 100%; + height: calc(2em + 0.85rem + 3px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + border: 1px solid #777777; + border-radius: 0; + appearance: none; + box-shadow: none; +} + +.checkout .checkout_left .card { + border: none; + background-color: #f2ede2; +} + +.checkout .checkout_left .card .card-body .md-form { + color: #777777; +} + +.checkout .checkout_left .card .card-body .md-form .lable { + color: #000; +} + +.checkout .checkout_left .card .card-body .custom-control-input:checked ~ .custom-control-label::before { + color: #f1a138; + border-color: #f1a138; + background-color: #f1a138; + outline: none; +} + +.checkout .checkout_left .card .card-body .form-check-input:checked ~ .form-check-label::before { + color: #f1a138 !important; + border-color: #f1a138 !important; + background-color: #f1a138 !important; + content: ""; +} + +.checkout .checkout_left .card .card-body .input[type="checkbox"]:before, +.checkout .checkout_left .card .card-body input[type="radio"]:before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + background-color: #8a1717; + border: #3e71a5 solid 1px; +} + +.checkout .checkout_right { + margin-top: 70px; +} + +.checkout .checkout_right .order h3 { + font-weight: 600; + color: #ff6c00; +} + +.checkout .checkout_right .order .subhead { + color: #777777; + padding-top: 10px; +} + +.checkout .checkout_right .order .wrapper { + padding-left: 30px; +} + +.checkout .checkout_right .order ul { + padding-top: 20px; + padding-left: 0; +} + +.checkout .checkout_right .order ul li { + display: flex; + justify-content: space-between; + margin-top: 20px; + padding-bottom: 15px; +} + +.checkout .checkout_right .order ul li span { + padding-right: 30px; +} + +.checkout .checkout_right .order ul li .nn { + color: #000; +} + +.checkout .checkout_right .order .payment label { + color: #000; +} + +.checkout .checkout_right .order .payment [type="radio"]:checked, +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) { + position: absolute; + left: -9999px; +} + +.checkout .checkout_right .order .payment [type="radio"]:checked + label, +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) + label { + position: relative; + padding-left: 28px; + cursor: pointer; + line-height: 20px; + display: inline-block; + color: #666; +} + +.checkout .checkout_right .order .payment [type="radio"]:checked + label:before, +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) + label:before { + content: ""; + position: absolute; + left: 0; + top: 0; + width: 18px; + height: 18px; + border: 1px solid; + border-color: #f1a138; + border-radius: 100%; + background: #fff; +} + +.checkout .checkout_right .order .payment [type="radio"]:checked + label:after, +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) + label:after { + content: ""; + width: 11px; + height: 12px; + background: #f1a138; + position: absolute; + top: 3px; + left: 3px; + border-radius: 100%; + transition: all 0.2s ease; +} + +.checkout .checkout_right .order .payment [type="radio"]:not(:checked) + label:after { + opacity: 0; + transform: scale(0); +} + +.checkout .checkout_right .order .payment [type="radio"]:checked + label:after { + opacity: 1; + transform: scale(1); +} + +.checkout .checkout_right .order .order_text { + font-style: italic; + color: #777777; + margin-top: 55px; + margin-bottom: 20px; +} + +.cart { + margin-top: 90px; +} + +.cart .table_wrapper { + overflow: auto; +} + +.cart .table_wrapper .table { + overflow-x: auto; +} + +.cart .table_wrapper .table thead { + background-color: #acdfee99; +} + +.cart .table_wrapper .table tbody .cart_img { + display: flex; + align-items: center; + padding-bottom: 30px; +} + +@media screen and (max-width: 576px) { + .cart .table_wrapper .table tbody .cart_img { + margin-top: 30px; + } +} + +.cart .table_wrapper .table tbody .cart_img .wrapper { + max-width: 150px; +} + +.cart .table_wrapper .table tbody .cart_img .wrapper img { + width: 100%; +} + +.cart .table_wrapper .table tbody .cart_img h6 { + color: #00c2fb; + font-size: 23px; + padding-left: 20px; +} + +@media screen and (max-width: 600px) { + .cart .table_wrapper .table tbody .cart_img h6 { + font-size: 12px; + padding-left: 10px; + } +} + +.cart .table_wrapper .table tbody td { + vertical-align: middle; +} + +.cart .table_wrapper .table tbody td .cart_q { + position: relative; +} + +.cart .table_wrapper .table tbody td .quantity { + position: absolute; + top: -21px; + left: 30px; +} + +@media screen and (max-width: 576px) { + .cart .table_wrapper .table tbody td .quantity { + padding-left: 15px; + left: 10px; + } +} + +.cart .table_wrapper .table tbody td input[type="number"]::-webkit-inner-spin-button, +.cart .table_wrapper .table tbody td input[type="number"]::-webkit-outer-spin-button { + -webkit-appearance: none; + margin: 0; +} + +.cart .table_wrapper .table tbody td input[type="number"] { + -moz-appearance: textfield; +} + +.cart .table_wrapper .table tbody td .quantity input { + width: 45px; + height: 42px; + line-height: 1.65; + display: block; + padding: 0; + margin: 0; + padding-left: 20px; + border: 1px solid #eee; +} + +.cart .table_wrapper .table tbody td .quantity input:focus { + outline: 0; +} + +.cart .table_wrapper .table tbody td .quantity-nav { + float: left; + position: relative; + height: 42px; +} + +.cart .table_wrapper .table tbody td .quantity-button { + position: relative; + cursor: pointer; + border-left: 1px solid #eee; + width: 20px; + text-align: center; + color: #333; + font-size: 13px; + line-height: 1.7; + transform: translateX(-100%); + -o-user-select: none; + user-select: none; +} + +.cart .table_wrapper .table tbody td .quantity-button.quantity-up { + position: absolute; + height: 50%; + top: -38px; + border-bottom: 1px solid #eee; +} + +.cart .table_wrapper .table tbody td .quantity-button.quantity-down { + position: absolute; + bottom: 38px; + height: 50%; +} + +.cart .table_bottom { + margin-top: 30px; +} + +.cart .table_bottom .input-group { + width: 100%; + height: 50px; + border-radius: 0; +} + +@media screen and (max-width: 768px) { + .cart .table_bottom .input-group { + padding-top: 20px; + } +} + +.cart .table_bottom .input-group .form-control { + border-radius: 0; + height: 50px; +} + +.cart .table_bottom .input-group .input-group-text { + border-radius: 0; + background-color: #00c2fb; + padding: 0 20px; + color: #fff; + border: 1px solid; + font-weight: 700; +} + +.cart .table_bottom .form-control:focus { + color: #495057; + background-color: #fff; + border-color: #00c2fb; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.cart .price_details { + margin-top: 50px; +} + +.cart .price_details .total { + display: flex; + justify-content: space-between; + padding: 0 75px; +} + +.cart .price_details .bb { + margin-top: 30px; +} + +.cart .wrap { + justify-content: space-between; + margin-top: 40px; + padding: 0 40px; +} + +.cart .wrap .ship { + padding-left: 40px; + font-weight: 600; +} + +.cart .payment { + /* Hide the browser's default radio button */ + /* Create a custom radio button */ + /* On mouse-over, add a grey background color */ + /* When the radio button is checked, add a blue background */ + /* Create the indicator (the dot/circle - hidden when not checked) */ + /* Show the indicator (dot/circle) when checked */ + /* Style the indicator (dot/circle) */ +} + +.cart .payment .c1 { + display: block; + position: relative; + padding-left: 35px; + margin-bottom: 12px; + cursor: pointer; + font-size: 15px; + user-select: none; +} + +.cart .payment .c1 input { + position: absolute; + opacity: 0; + cursor: pointer; +} + +.cart .payment .checkmark { + position: absolute; + top: 0; + left: 0; + height: 20px; + width: 20px; + background-color: #d4d4d4; + border-radius: 50%; +} + +.cart .payment .c1:hover input ~ .checkmark { + background-color: rgba(204, 204, 204, 0); +} + +.cart .payment .c1 input:checked ~ .checkmark { + background-color: #f0e76c; +} + +.cart .payment .checkmark:after { + content: ""; + position: absolute; + display: none; +} + +.cart .payment .c1 input:checked ~ .checkmark:after { + display: block; +} + +.cart .payment .c1 .checkmark:after { + top: 9px; + left: 9px; + width: 8px; + height: 8px; + border-radius: 50%; + background: rgba(255, 255, 255, 0); +} + +.confirmation { + margin-top: 100px; +} + +@media screen and (max-width: 768px) { + .confirmation .wrapper { + padding-bottom: 15px; + } +} + +.confirmation .wrapper h5 { + font-weight: 600; + margin-bottom: 40px; +} + +@media screen and (max-width: 768px) { + .confirmation .wrapper h5 { + padding-left: 15px; + } +} + +.confirmation .wrapper ul { + padding-left: 0; + padding-right: 30px; +} + +@media screen and (max-width: 768px) { + .confirmation .wrapper ul { + padding: 0 15px; + } +} + +.confirmation .wrapper ul li { + color: #777777; + display: flex; + margin-bottom: 15px; + justify-content: space-between; +} + +.confirmation .wrapper ul li span { + color: #000; +} + +.confirmation .billing_details { + margin-top: 50px; + background-color: #acdfee99; + padding: 20px 40px; +} + +.confirmation .billing_details table tr { + padding-bottom: 10px; +} + +.login { + margin-top: 100px; +} + +.login .wrapper_img { + position: relative; +} + +.login .wrapper_img::before { + content: ""; + position: absolute; + background-color: #0000008a; + width: 100%; + height: 100%; + top: 0; + left: 0; +} + +.login .wrapper_img .register { + position: absolute; + padding: 0 30px; + bottom: 30%; + color: #fff; + text-align: center; +} + +.login .wrapper_img .register h5 { + margin-bottom: 15px; + font-size: 22px; +} + +.login .wrapper_img img { + width: 100%; +} + +.login .login_form { + margin-top: 70px; + padding: 0 20px; +} + +.login .login_form h4 { + margin-bottom: 50px; +} + +.login .login_form .contact-form { + margin-top: 10px; +} + +.login .login_form .contact-form .form-control { + display: block; + width: 100%; + height: calc(2.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-color: transparent; + border-bottom-color: #000; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.login .login_form .contact-form .form-control:focus { + color: #495057; + background-color: #fff; + border-bottom-color: #000 !important; + outline: 0; + box-shadow: none; +} + +.login .login_form .contact-form .input-block { + margin-bottom: 30px; +} + +.login .login_form .contact-form .input-block label { + color: #777777; +} + +.login .login_form .forgot { + color: #777777; + display: block; + text-decoration: none; + text-align: center; + margin-top: 20px; +} + +.tracking { + margin-top: 100px; +} + +.tracking .track_form { + max-width: 70%; + margin: auto; +} + +.tracking .track_form p { + padding-bottom: 15px; +} + +.tracking .track_form .contact-form { + margin-top: 10px; +} + +.tracking .track_form .contact-form .form-control { + display: block; + width: 100%; + height: calc(2.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-color: transparent; + border-bottom-color: #000; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.tracking .track_form .contact-form .form-control:focus { + color: #495057; + background-color: #fff; + border-bottom-color: #000 !important; + outline: 0; + box-shadow: none; +} + +.tracking .track_form .contact-form .input-block { + margin-bottom: 30px; +} + +.tracking .track_form .contact-form .input-block label { + color: #777777; +} + +.contact { + margin-top: 100px; +} + +.contact .map .mapouter { + position: relative; + text-align: right; + height: 400px; + widows: 100%; +} + +.contact .map .mapouter .mapouter { + overflow: hidden; + background: none !important; + height: 100%; + width: 100%; +} + +.contact .contact_form { + margin-top: 70px; +} + +.contact .contact_form .contact_left { + margin-top: 100px; +} + +.contact .contact_form .contact_left .wrapper { + display: flex; + margin-bottom: 20px; +} + +.contact .contact_form .contact_left .wrapper span { + color: #00c2fb; + font-size: 20px; +} + +.contact .contact_form .contact_left .wrapper .rc { + padding-left: 15px; +} + +.contact .contact_form .contact_left .wrapper .rc h4 { + font-size: 16px; + font-weight: 600; +} + +.contact .contact_form .contact_left .wrapper .rc p { + color: #777777; +} + +.contact .contact_right .form-control:focus { + color: #495057; + background-color: #fff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.contact .contact_right .custom-control-input:checked ~ .custom-control-label::before { + color: red; + border-color: red; + background-color: red; + outline: none !important; + box-shadow: none !important; +} + +.contact .contact_right .form-check-input:checked { + outline: none !important; + box-shadow: none !important; +} + +.contact .contact_right .form-control { + display: block; + width: 100%; + height: calc(2em + 0.85rem + 3px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #e3e3e3; + background-clip: padding-box; + border: 1px solid; + border-color: #00c2fb !important; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.contact .contact_right .card { + border: none; + background-color: #f2ede2; +} + +.contact .contact_right .card .card-body .md-form { + color: #777777; +} + +.contact .contact_right .card .card-body .md-form .lable { + color: #000; +} + +.contact .contact_right .card .card-body .custom-control-input:checked ~ .custom-control-label::before { + color: #f1a138; + border-color: #f1a138; + background-color: #f1a138; + outline: none; +} + +.contact .contact_right .card .card-body .form-check-input:checked ~ .form-check-label::before { + color: #f1a138 !important; + border-color: #f1a138 !important; + background-color: #f1a138 !important; + content: ""; +} + +.contact .contact_right .card .card-body .input[type="checkbox"]:before, +.contact .contact_right .card .card-body input[type="radio"]:before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + background-color: #8a1717; + border: #3e71a5 solid 1px; +} + +/*new created styles*/ + +.container .products_pager{ + background: #fc5205; + padding: 13px 10px; + margin-bottom: 25px; + margin-top: 50px +} + + +.container .products_pager .btn-secondary { + background: #fcfcfc; + border-radius: 0; + color: #777777; + width: 80%; +} + +.oe_product_cart .oe_product_image { + height: 255px; + border: 0.1rem solid black; +} + +.oe_product_cart .o_wsale_product_information .o_wsale_product_information_text .o_wsale_products_item_title a{ + color: #040404; + text-decoration: none; +} +.product_buttons .product_bottom { + display: flex; + padding-left: 0; + position: relative; +} + +.product_buttons .product_bottom li { + height: 35px; + width: 35px; + border-radius: 50%; + background-color: #fc5205; + margin-right: 12px; +} + +.product_buttons .product_bottom a { + color: #fff; +} + +.product_buttons .product_bottom a span { + padding: 11px; +} + + +.nav-pills .nav-link.active { + color: #fff !important; + background-color: #fc5205 !important; + padding: 13px; + border-radius: 0px; +} + +.nav-pills .nav-link { + color: #040404; +} + +#products_grid_before #wsale_products_categories_collapse { + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); +} + +.price .product_price .oe_price_h4 .oe_price { + font-size: 28px ; +} +.price .product_price .oe_price_h4 .oe_price .oe_currency_value{ + font-size: 28px ; +} + +/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/theme_lego/static/src/css/style.css.map b/theme_lego/static/src/css/style.css.map new file mode 100644 index 000000000..a0b79536c --- /dev/null +++ b/theme_lego/static/src/css/style.css.map @@ -0,0 +1,36 @@ +{ + "version": 3, + "mappings": "ACSA,OAAO,CAAC,+GAAI;ACTZ,4EAA4E;AAE5E;gFACgF;AAEhF;;;GAGG;AAEF,AAAA,IAAI,CAAC;EACF,WAAW,EAAE,IAAI;EAAE,OAAO;EAC1B,wBAAwB,EAAE,IAAI;EAAE,OAAO;CACxC;;AAED;kFACgF;AAEhF;;KAEG;AAEH,AAAA,IAAI,CAAC;EACH,MAAM,EAAE,CAAC;CACV;;AAED;;KAEG;AAEH,AAAA,IAAI,CAAC;EACH,OAAO,EAAE,KAAK;CACf;;AAED;;;KAGG;AAEH,AAAA,EAAE,CAAC;EACD,SAAS,EAAE,GAAG;EACd,MAAM,EAAE,QAAQ;CACjB;;AAED;kFACgF;AAEhF;;;KAGG;AAEH,AAAA,EAAE,CAAC;EACD,UAAU,EAAE,WAAW;EAAE,OAAO;EAChC,MAAM,EAAE,CAAC;EAAE,OAAO;EAClB,QAAQ,EAAE,OAAO;EAAE,OAAO;CAC3B;;AAED;;;KAGG;AAEH,AAAA,GAAG,CAAC;EACF,WAAW,EAAE,oBAAoB;EAAE,OAAO;EAC1C,SAAS,EAAE,GAAG;EAAE,OAAO;CACxB;;AAED;kFACgF;AAEhF;;KAEG;AAEH,AAAA,CAAC,CAAC;EACA,gBAAgB,EAAE,WAAW;CAC9B;;AAED;;;KAGG;AAEH,AAAA,IAAI,CAAA,AAAA,KAAC,AAAA,EAAO;EACV,aAAa,EAAE,IAAI;EAAE,OAAO;EAC5B,eAAe,EAAE,SAAS;EAAE,OAAO;EACnC,eAAe,EAAE,gBAAgB;EAAE,OAAO;CAC3C;;AAED;;KAEG;AAEH,AAAA,CAAC;AACD,MAAM,CAAC;EACL,WAAW,EAAE,MAAM;CACpB;;AAED;;;KAGG;AAEH,AAAA,IAAI;AACJ,GAAG;AACH,IAAI,CAAC;EACH,WAAW,EAAE,oBAAoB;EAAE,OAAO;EAC1C,SAAS,EAAE,GAAG;EAAE,OAAO;CACxB;;AAED;;KAEG;AAEH,AAAA,KAAK,CAAC;EACJ,SAAS,EAAE,GAAG;CACf;;AAED;;;KAGG;AAEH,AAAA,GAAG;AACH,GAAG,CAAC;EACF,SAAS,EAAE,GAAG;EACd,WAAW,EAAE,CAAC;EACd,QAAQ,EAAE,QAAQ;EAClB,cAAc,EAAE,QAAQ;CACzB;;AAED,AAAA,GAAG,CAAC;EACF,MAAM,EAAE,OAAO;CAChB;;AAED,AAAA,GAAG,CAAC;EACF,GAAG,EAAE,MAAM;CACZ;;AAED;kFACgF;AAEhF;;KAEG;AAEH,AAAA,GAAG,CAAC;EACF,YAAY,EAAE,IAAI;CACnB;;AAED;kFACgF;AAEhF;;;KAGG;AAEH,AAAA,MAAM;AACN,KAAK;AACL,QAAQ;AACR,MAAM;AACN,QAAQ,CAAC;EACP,WAAW,EAAE,OAAO;EAAE,OAAO;EAC7B,SAAS,EAAE,IAAI;EAAE,OAAO;EACxB,WAAW,EAAE,IAAI;EAAE,OAAO;EAC1B,MAAM,EAAE,CAAC;EAAE,OAAO;CACnB;;AAED;;;KAGG;AAEH,AAAA,MAAM;AACN,KAAK,CAAC;EAAE,OAAO;EACb,QAAQ,EAAE,OAAO;CAClB;;AAED;;;KAGG;AAEH,AAAA,MAAM;AACN,MAAM,CAAC;EAAE,OAAO;EACd,cAAc,EAAE,IAAI;CACrB;;AAED;;KAEG;AAEH,AAAA,MAAM;CACN,AAAA,IAAC,CAAK,QAAQ,AAAb;CACD,AAAA,IAAC,CAAK,OAAO,AAAZ;CACD,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACd,kBAAkB,EAAE,MAAM;CAC3B;;AAED;;KAEG;AAEH,AAAA,MAAM,AAAA,kBAAkB;CACxB,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,kBAAkB;CACjC,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,kBAAkB;CAChC,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,kBAAkB,CAAC;EAChC,YAAY,EAAE,IAAI;EAClB,OAAO,EAAE,CAAC;CACX;;AAED;;KAEG;AAEH,AAAA,MAAM,AAAA,eAAe;CACrB,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,eAAe;CAC9B,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,eAAe;CAC7B,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,eAAe,CAAC;EAC7B,OAAO,EAAE,qBAAqB;CAC/B;;AAED;;KAEG;AAEH,AAAA,QAAQ,CAAC;EACP,OAAO,EAAE,qBAAqB;CAC/B;;AAED;;;;;KAKG;AAEH,AAAA,MAAM,CAAC;EACL,UAAU,EAAE,UAAU;EAAE,OAAO;EAC/B,KAAK,EAAE,OAAO;EAAE,OAAO;EACvB,OAAO,EAAE,KAAK;EAAE,OAAO;EACvB,SAAS,EAAE,IAAI;EAAE,OAAO;EACxB,OAAO,EAAE,CAAC;EAAE,OAAO;EACnB,WAAW,EAAE,MAAM;EAAE,OAAO;CAC7B;;AAED;;KAEG;AAEH,AAAA,QAAQ,CAAC;EACP,cAAc,EAAE,QAAQ;CACzB;;AAED;;KAEG;AAEH,AAAA,QAAQ,CAAC;EACP,QAAQ,EAAE,IAAI;CACf;;AAED;;;KAGG;CAEH,AAAA,AAAA,IAAC,CAAK,UAAU,AAAf;CACD,AAAA,IAAC,CAAK,OAAO,AAAZ,EAAc;EACb,UAAU,EAAE,UAAU;EAAE,OAAO;EAC/B,OAAO,EAAE,CAAC;EAAE,OAAO;CACpB;;AAED;;KAEG;CAEH,AAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B;CAC1C,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B,CAAC;EACzC,MAAM,EAAE,IAAI;CACb;;AAED;;;KAGG;CAEH,AAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACd,kBAAkB,EAAE,SAAS;EAAE,OAAO;EACtC,cAAc,EAAE,IAAI;EAAE,OAAO;CAC9B;;AAED;;KAEG;CAEH,AAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B,CAAC;EACzC,kBAAkB,EAAE,IAAI;CACzB;;AAED;;;KAGG;AAEH,AAAA,4BAA4B,CAAC;EAC3B,kBAAkB,EAAE,MAAM;EAAE,OAAO;EACnC,IAAI,EAAE,OAAO;EAAE,OAAO;CACvB;;AAED;kFACgF;AAEhF;;KAEG;AAEH,AAAA,OAAO,CAAC;EACN,OAAO,EAAE,KAAK;CACf;;AAED;;KAEG;AAEH,AAAA,OAAO,CAAC;EACN,OAAO,EAAE,SAAS;CACnB;;AAED;kFACgF;AAEhF;;KAEG;AAEH,AAAA,QAAQ,CAAC;EACP,OAAO,EAAE,IAAI;CACd;;AAED;;KAEG;CAEH,AAAA,AAAA,MAAC,AAAA,EAAQ;EACP,OAAO,EAAE,IAAI;CACd;;AC5VH,AAAA,CAAC,AAAA,IAAI,CAAC;EACL,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;EAEf,WAAW,EAAE,GAAG;EAChB,KAAK,EFaS,OAAO;EEZrB,UAAU,EAAE,IAAI;CAChB;;AACD,AAAA,IAAI;AACJ,IAAI,CAAC;EACJ,MAAM,EAAE,IAAI;CACZ;;AACD,AAAA,EAAE,CAAC;EACF,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI;CAChB;;AACD,AAAA,CAAC,AAAA,EAAE;AACH,EAAE;AACF,EAAE;AACF,EAAE;AACF,EAAE;AACF,EAAE,CAAC;EACF,WAAW,EFpBM,SAAS,EAAE,UAAU;EEqBtC,KAAK,EFPS,OAAO;EEQrB,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,cAAc;CAC3B;;AAED,AAAA,KAAK,CAAC;EACL,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,GAAG;EACX,OAAO,EAAE,GAAG;CACZ;;AAED,AAAA,CAAC,AAAA,CAAC,CAAC;EACF,eAAe,EAAE,IAAI;EACrB,UAAU,EAAE,oBAAoB;CAMhC;;AARD,AAGC,CAHA,AAAA,CAAC,AAGA,MAAM,EAHR,CAAC,AAAA,CAAC,AAIA,MAAM,CAAC;EACP,eAAe,EAAE,IAAI;EACrB,OAAO,EAAE,IAAI;CACb;;AAGF,AAAA,CAAC,AAAA,MAAM,AAAA,MAAM,CAAC;EACb,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,IAAI;CAChB;;AAED,AAAA,gBAAgB,CAAC;EAChB,QAAQ,EAAE,MAAM;CAChB;;AAED,AAAA,CAAC,AAAA,MAAM,CAAC;EACP,OAAO,EAAE,YAAY;CACrB;;AAED,AAAA,CAAC,AAAA,MAAM,AAAA,MAAM,CAAC;EACb,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,IAAI;CACb;;AAED,AAAA,CAAC,CAAC;EACD,eAAe,EAAE,IAAI;EAErB,WAAW,EF/DM,SAAS,EAAE,UAAU;EEgEtC,SAAS,EAAE,IAAI;CAKf;;AATD,AAKC,CALA,AAKC,MAAM,EALR,CAAC,AAMC,OAAO,CAAC;EACR,OAAO,EAAE,eAAe;CACxB;;AAGF,AAAA,CAAC,AAAA,MAAM,CAAC;EACP,kBAAkB,EAAE,IAAI;EACxB,UAAU,EAAE,IAAI;CAChB;;AG7ED,AAAA,OAAO,CAAC;EACJ,gBAAgB,EAAE,kCAAkC;EACpD,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,eAAe,EAAE,KAAK;EACtB,QAAQ,EAAE,QAAQ;CAgErB;;AArED,AAMI,OANG,CAMH,eAAe,CAAC;EACZ,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,KAAK;EAClB,cAAc,EAAE,KAAK;CA2DxB;;AA1DG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAV3C,AAMI,OANG,CAMH,eAAe,CAAC;IAKR,WAAW,EAAE,KAAK;IAClB,cAAc,EAAE,IAAI;GAwD3B;;;AApEL,AAeY,OAfL,CAMH,eAAe,CAQX,YAAY,CACR,EAAE,CAAC;EACC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;EACzB,KAAK,ELGV,IAAI;CKIF;;AANG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,MAAM;EApBpD,AAeY,OAfL,CAMH,eAAe,CAQX,YAAY,CACR,EAAE,CAAC;IAMK,SAAS,EAAE,IAAI;GAKtB;;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAvBnD,AAeY,OAfL,CAMH,eAAe,CAQX,YAAY,CACR,EAAE,CAAC;IASK,SAAS,EAAE,IAAI;GAEtB;;;AA1Bb,AA2BY,OA3BL,CAMH,eAAe,CAQX,YAAY,CAaR,CAAC,CAAC;EACE,KAAK,ELNV,IAAI;EKOC,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,IAAI;CACtB;;AAGD,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAlC/C,AAiCQ,OAjCD,CAMH,eAAe,CA2BX,WAAW,CAAC;IAEJ,OAAO,EAAE,IAAI;GAKpB;;;AAxCT,AAqCY,OArCL,CAMH,eAAe,CA2BX,WAAW,CAIP,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AAvCb,AAyCQ,OAzCD,CAMH,eAAe,CAmCX,aAAa,CAAC;EACV,QAAQ,EAAE,QAAQ;CAyBrB;;AAnET,AA2CY,OA3CL,CAMH,eAAe,CAmCX,aAAa,CAET,QAAQ,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;CAoBf;;AAlEb,AA+CgB,OA/CT,CAMH,eAAe,CAmCX,aAAa,CAET,QAAQ,CAIJ,SAAS,CAAC;EACN,KAAK,EL1Bd,IAAI;CKkCE;;AAxDjB,AAiDoB,OAjDb,CAMH,eAAe,CAmCX,aAAa,CAET,QAAQ,CAIJ,SAAS,AAEJ,MAAM,CAAC;EACJ,KAAK,EL3BlB,IAAI;CK4BM;;AAnDrB,AAoDoB,OApDb,CAMH,eAAe,CAmCX,aAAa,CAET,QAAQ,CAIJ,SAAS,CAKL,CAAC,CAAC;EACE,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,IAAI;CAChB;;AAvDrB,AAyDgB,OAzDT,CAMH,eAAe,CAmCX,aAAa,CAET,QAAQ,CAcJ,SAAS,CAAC;EACN,KAAK,ELpCd,IAAI;CK2CE;;AAjEjB,AA2DoB,OA3Db,CAMH,eAAe,CAmCX,aAAa,CAET,QAAQ,CAcJ,SAAS,AAEJ,MAAM,CAAC;EACJ,KAAK,ELrClB,IAAI;CKsCM;;AA7DrB,AA8DoB,OA9Db,CAMH,eAAe,CAmCX,aAAa,CAET,QAAQ,CAcJ,SAAS,CAKL,CAAC,CAAC;EACE,SAAS,EAAE,IAAI;CAClB;;AAMrB,AAAA,eAAe,CAAC;EACZ,gBAAgB,EAAE,kCAAkC;EACpD,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,eAAe,EAAE,KAAK;EACtB,QAAQ,EAAE,QAAQ;CAgDrB;;AArDD,AAMI,eANW,CAMX,eAAe,CAAC;EACZ,UAAU,EAAE,GAAG;EACf,WAAW,EAAE,KAAK;CA4CrB;;AApDL,AAUY,eAVG,CAMX,eAAe,CAGX,gBAAgB,CACZ,EAAE,CAAC;EACC,KAAK,EL1DV,IAAI;EK2DC,cAAc,EAAE,SAAS;EACzB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,EL/DV,IAAI;CKuEF;;AAPG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAhBnD,AAUY,eAVG,CAMX,eAAe,CAGX,gBAAgB,CACZ,EAAE,CAAC;IAOK,SAAS,EAAE,IAAI;GAMtB;;;AAJG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAnBnD,AAUY,eAVG,CAMX,eAAe,CAGX,gBAAgB,CACZ,EAAE,CAAC;IAUK,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,IAAI;GAEvB;;;AAvBb,AAwBY,eAxBG,CAMX,eAAe,CAGX,gBAAgB,CAeZ,WAAW,CAAC;EACR,gBAAgB,EAAE,WAAW;EAC7B,eAAe,EAAE,GAAG;CAwBvB;;AAvBG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3BnD,AAwBY,eAxBG,CAMX,eAAe,CAGX,gBAAgB,CAeZ,WAAW,CAAC;IAIJ,eAAe,EAAE,IAAI;IACrB,YAAY,EAAE,CAAC;GAqBtB;;;AAlDb,AA+BgB,eA/BD,CAMX,eAAe,CAGX,gBAAgB,CAeZ,WAAW,CAOP,OAAO,CAAC;EACJ,KAAK,EL/Ed,IAAI;CKgFE;;AAjCjB,AAmCoB,eAnCL,CAMX,eAAe,CAGX,gBAAgB,CAeZ,WAAW,CAUP,gBAAgB,CACZ,CAAC,CAAC;EACE,KAAK,ELpFlB,IAAI;EKqFS,eAAe,EAAE,IAAI;CACxB;;AAtCrB,AAuCoB,eAvCL,CAMX,eAAe,CAGX,gBAAgB,CAeZ,WAAW,CAUP,gBAAgB,AAKX,OAAO,CAAC;EACL,OAAO,EAAE,YAAY;EACrB,aAAa,EAAE,MAAM;EACrB,KAAK,EAAE,OAAO;EACd,OAAO,EAAE,EAAE;CACd;;AA5CrB,AA6CoB,eA7CL,CAMX,eAAe,CAGX,gBAAgB,CAeZ,WAAW,CAUP,gBAAgB,CAWZ,eAAe,CAAC;EACZ,WAAW,EAAE,GAAG;EAChB,YAAY,EAAE,GAAG;CACpB;;ACtHrB,AAAA,IAAI,CAAC;EACD,MAAM,EAAE,eAAe;EACvB,OAAO,EAAE,YAAY;EACrB,kBAAkB,EAAE,IAAI;EACxB,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,eAAe;CAmO9B;;AAlOI,AAAD,YAAS,CAAC;EACN,gBAAgB,EAAE,sBAAsB;EACxC,YAAY,ENcT,IAAI;EMbP,OAAO,EAAE,SAAS;EAClB,KAAK,ENaF,IAAI,CMbO,UAAU;EACxB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,aAAa,EAAE,CAAC;EAChB,MAAM,EAAE,oBAAoB;CAM/B;;AAdA,AASG,YATK,AASJ,MAAM,CAAC;EACJ,MAAM,EAAE,eAAe;EACvB,KAAK,ENMN,IAAI,CMNW,UAAU;EACxB,UAAU,ENIX,IAAI,CMJgB,UAAU;CAChC;;AAEJ,AAAD,QAAK,CAAC;EACF,cAAc,EAAE,oBAAoB;EACpC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,ENRE,OAAO;EMSd,OAAO,EAAE,IAAI;EACb,KAAK,ENLF,IAAI;EMMP,WAAW,EAAE,MAAM;EACnB,eAAe,EAAE,eAAe;CAanC;;AArBA,AASG,QATC,AASA,MAAM,CAAC;EACJ,KAAK,ENhBC,OAAO;CMiBhB;;AAXJ,AAYG,QAZC,CAYD,CAAC,CAAC;EACE,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EAAE,iDAAiD;EACnE,KAAK,EAAE,KAAkB,CAAC,UAAU;EACpC,aAAa,EAAE,GAAG;EAClB,OAAO,EAAE,IAAI;EACb,YAAY,EAAE,IAAI;CACrB;;AAEJ,AAAD,SAAM,CAAC;EACH,cAAc,EAAE,oBAAoB;EACpC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,EN9BE,OAAO;EM+Bd,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,eAAe,EAAE,eAAe;CAiBnC;;AAzBA,AASG,SATE,AASD,MAAM,CAAC;EACJ,KAAK,ENpCF,OAAO;CMqCb;;AAXJ,AAYG,SAZE,CAYF,CAAC,CAAC;EACE,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EAAE,iDAAiD;EACnE,KAAK,EAAE,eAAe;EACtB,aAAa,EAAE,GAAG;EAClB,OAAO,EAAE,IAAI;EACb,YAAY,EAAE,IAAI;EAClB,KAAK,EN9CF,OAAO,CM8CU,UAAU;CAIjC;;AAxBJ,AAqBO,SArBF,CAYF,CAAC,AASI,MAAM,CAAC;EACJ,gBAAgB,EAAE,+CAA+C;CACpE;;AAGR,AAAD,SAAM,CAAC;EACH,KAAK,ENrDE,OAAO;EMsDd,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;EACV,IAAI,EAAE,GAAG;EACT,GAAG,EAAE,GAAG;EACR,gBAAgB,EAAE,iDAAiD;EACnE,OAAO,EAAE,SAAS;EAClB,WAAW,EAAE,GAAG;EAChB,aAAa,EAAE,IAAI;CAQtB;;AAPG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAXtC,AAAD,SAAM,CAAC;IAYC,GAAG,EAAE,GAAG;GAMf;;;AAlBA,AAcG,SAdE,AAcD,MAAM,CAAC;EACJ,eAAe,EAAE,IAAI;EACrB,KAAK,ENpEF,OAAO;CMqEb;;AAEJ,AAAD,SAAM,CAAC;EACH,KAAK,ENnEF,IAAI;EMoEP,gBAAgB,EAAE,iDAAiD;EACnE,OAAO,EAAE,SAAS;EAClB,WAAW,EAAE,GAAG;EAChB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,eAAe;CAK9B;;AAXA,AAOG,SAPE,AAOD,MAAM,CAAC;EACJ,eAAe,EAAE,IAAI;EACrB,KAAK,EN3EN,IAAI;CM4EN;;AAEJ,AAAD,WAAQ,CAAC;EACL,KAAK,EN9EF,IAAI;EM+EP,MAAM,EAAE,oBAAoB;EAC5B,aAAa,EAAE,IAAI;EACnB,YAAY,ENnFZ,OAAO,CMmFc,UAAU;EAC/B,OAAO,EAAE,QAAQ;EACjB,UAAU,EAAE,eAAe;CAO9B;;AAbA,AAOG,WAPI,AAOH,MAAM,CAAC;EACJ,eAAe,EAAE,IAAI;EACrB,KAAK,ENvFN,IAAI;EMwFH,gBAAgB,ENhGX,OAAO,CMgGqB,UAAU;EAC3C,MAAM,EAAE,eAAe;CAC1B;;AAEJ,AAAD,UAAO,CAAC;EACJ,KAAK,EN7FF,IAAI;EM8FP,aAAa,EAAE,GAAG;EAClB,gBAAgB,ENvGP,OAAO,CMuGiB,UAAU;EAC3C,OAAO,EAAE,QAAQ;EACjB,UAAU,EAAE,eAAe;EAC3B,aAAa,EAAE,GAAG;EAClB,WAAW,EAAE,GAAG;CAMnB;;AAbA,AAQG,UARG,AAQF,MAAM,CAAC;EACJ,eAAe,EAAE,IAAI;EACrB,KAAK,ENtGN,IAAI;EMuGH,MAAM,EAAE,eAAe;CAC1B;;AAEJ,AAAD,eAAY,CAAC;EACT,cAAc,EAAE,oBAAoB;EACpC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,EN9GF,IAAI;EM+GP,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAK;EACd,gBAAgB,EAAE,iDAAiD;EACnE,eAAe,EAAE,eAAe;CAKnC;;AAdA,AAUG,eAVQ,AAUP,MAAM,CAAC;EACJ,KAAK,ENrHN,IAAI;EMsHH,gBAAgB,EAAE,iDAAiD;CACtE;;AAEJ,AAAD,WAAQ,CAAC;EACL,gBAAgB,ENvHpB,SAAS,CMuHiB,UAAU;EAChC,OAAO,EAAE,SAAS;EAClB,KAAK,EN3HF,IAAI,CM2HO,UAAU;EACxB,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,CAAC;CAKnB;;AAVA,AAMG,WANI,AAMH,MAAM,CAAC;EACJ,MAAM,EAAE,eAAe;EACvB,KAAK,ENhIN,IAAI,CMgIW,UAAU;CAC3B;;AAEJ,AAAD,YAAS,CAAC;EACN,gBAAgB,ENlIpB,SAAS,CMkIiB,UAAU;EAChC,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,SAAS;EAClB,KAAK,ENvIF,IAAI,CMuIO,UAAU;EACxB,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,CAAC;CAKnB;;AAXA,AAOG,YAPK,AAOJ,MAAM,CAAC;EACJ,MAAM,EAAE,eAAe;EACvB,KAAK,EN5IN,IAAI,CM4IW,UAAU;CAC3B;;AAEJ,AAAD,UAAO,CAAC;EACJ,KAAK,ENjJF,IAAI;EMkJP,gBAAgB,EAAE,iDAAiD;EACnE,OAAO,EAAE,SAAS;EAClB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,eAAe;CAS9B;;AAdA,AAMG,UANG,AAMF,MAAM,CAAC;EACJ,eAAe,EAAE,IAAI;EACrB,KAAK,ENxJN,IAAI;CMyJN;;AACD,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAVtC,AAAD,UAAO,CAAC;IAWA,aAAa,EAAE,IAAI;IACnB,OAAO,EAAE,SAAS;GAEzB;;;AACA,AAAD,UAAO,CAAC;EACJ,KAAK,ENhKF,IAAI;EMiKP,gBAAgB,EAAE,iDAAiD;EACnE,OAAO,EAAE,SAAS;EAClB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,eAAe;CAK9B;;AAVA,AAMG,UANG,AAMF,MAAM,CAAC;EACJ,eAAe,EAAE,IAAI;EACrB,KAAK,ENvKN,IAAI;CMwKN;;AAEJ,AAAD,aAAU,CAAC;EACP,KAAK,EN3KF,IAAI;EM4KP,gBAAgB,EAAE,iDAAiD;EACnE,OAAO,EAAE,SAAS;EAClB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,eAAe;EAC3B,aAAa,EAAE,YAAY;CAK9B;;AAXA,AAOG,aAPM,AAOL,MAAM,CAAC;EACJ,eAAe,EAAE,IAAI;EACrB,KAAK,ENnLN,IAAI;CMoLN;;AAEJ,AAAD,UAAO,CAAC;EACJ,KAAK,ENvLF,IAAI;EMwLP,OAAO,EAAE,KAAK;EACd,gBAAgB,EAAE,iDAAiD;EACnE,OAAO,EAAE,SAAS;EAClB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,eAAe;EAC3B,aAAa,EAAE,YAAY;CAK9B;;AAZA,AAQG,UARG,AAQF,MAAM,CAAC;EACJ,eAAe,EAAE,IAAI;EACrB,KAAK,ENhMN,IAAI;CMiMN;;AAEJ,AAAD,SAAM,CAAC;EACH,gBAAgB,EN5MP,OAAO,CM4MiB,UAAU;EAC3C,YAAY,ENrMT,IAAI;EMsMP,OAAO,EAAE,QAAQ;EACjB,KAAK,ENvMF,IAAI,CMuMO,UAAU;EACxB,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,IAAI;EAChB,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;CAKrB;;AAdA,AAUG,SAVE,AAUD,MAAM,CAAC;EACJ,MAAM,EAAE,eAAe;EACvB,UAAU,EAAE,OAA0B,CAAC,UAAU;CACpD;;ACtOT,AAAA,QAAQ,CAAC;EACL,UAAU,EAAE,KAAK;CAsEpB;;AAvED,AAEI,QAFI,CAEJ,aAAa,CAAC;EACV,UAAU,EAAE,MAAM;EAClB,cAAc,EAAE,IAAI;CAavB;;AAjBL,AAKQ,QALA,CAEJ,aAAa,CAGT,EAAE,CAAC;EACC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;EACzB,WAAW,EPNL,SAAS,EAAE,UAAU;EOO3B,KAAK,EPOF,OAAO;CONb;;AAXT,AAYQ,QAZA,CAEJ,aAAa,CAUT,CAAC,CAAC;EACE,KAAK,EPQT,OAAO;EOPH,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,IAAI;CACtB;;AAhBT,AAkBI,QAlBI,CAkBJ,QAAQ,CAAC;EACL,UAAU,EAAE,IAAI;CAmDnB;;AAtEL,AAoBQ,QApBA,CAkBJ,QAAQ,CAEJ,YAAY,CAAC;EAKT,aAAa,EAAE,IAAI;CA4CtB;;AAhDG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EArB/C,AAoBQ,QApBA,CAkBJ,QAAQ,CAEJ,YAAY,CAAC;IAEL,MAAM,EAAE,MAAM;IACd,cAAc,EAAE,IAAI;GA8C3B;;;AArET,AA0BY,QA1BJ,CAkBJ,QAAQ,CAEJ,YAAY,CAMR,YAAY,CAAC;EACT,cAAc,EAAE,IAAI;CAIvB;;AA/Bb,AA4BgB,QA5BR,CAkBJ,QAAQ,CAEJ,YAAY,CAMR,YAAY,CAER,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AA9BjB,AAgCY,QAhCJ,CAkBJ,QAAQ,CAEJ,YAAY,CAYR,EAAE,CAAC;EACC,KAAK,EPhBN,OAAO;EOiBN,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,IAAI;EAChB,WAAW,EPlCT,SAAS,EAAE,UAAU;COmC1B;;AAtCb,AAuCY,QAvCJ,CAkBJ,QAAQ,CAEJ,YAAY,CAmBR,KAAK,CAAC;EACF,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,IAAI;CASpB;;AAlDb,AA0CgB,QA1CR,CAkBJ,QAAQ,CAEJ,YAAY,CAmBR,KAAK,CAGD,CAAC,CAAC;EACE,KAAK,EP1BV,OAAO;EO2BF,YAAY,EAAE,IAAI;CACrB;;AA7CjB,AA8CgB,QA9CR,CAkBJ,QAAQ,CAEJ,YAAY,CAmBR,KAAK,CAOD,IAAI,CAAC;EACD,KAAK,EP1BjB,OAAO;EO2BK,eAAe,EAAE,YAAY;CAChC;;AAjDjB,AAmDY,QAnDJ,CAkBJ,QAAQ,CAEJ,YAAY,CA+BR,eAAe,CAAC;EACZ,OAAO,EAAE,IAAI;EACb,YAAY,EAAE,CAAC;EACf,QAAQ,EAAE,QAAQ;CAcrB;;AApEb,AAuDgB,QAvDR,CAkBJ,QAAQ,CAEJ,YAAY,CA+BR,eAAe,CAIX,EAAE,CAAC;EACC,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,gBAAgB,EP3ClB,OAAO;EO4CL,YAAY,EAAE,IAAI;CACrB;;AA7DjB,AA8DgB,QA9DR,CAkBJ,QAAQ,CAEJ,YAAY,CA+BR,eAAe,CAWX,CAAC,CAAC;EACE,KAAK,EPzCd,IAAI;CO6CE;;AAnEjB,AAgEoB,QAhEZ,CAkBJ,QAAQ,CAEJ,YAAY,CA+BR,eAAe,CAWX,CAAC,CAEG,IAAI,CAAC;EACD,OAAO,EAAE,IAAI;CAChB;;AAMrB,AAAA,aAAa,CAAC;EACV,UAAU,EAAE,MAAM;EAClB,cAAc,EAAE,IAAI;CAavB;;AAfD,AAGI,aAHS,CAGT,EAAE,CAAC;EACC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;EACzB,WAAW,EP5ED,SAAS,EAAE,UAAU;EO6E/B,KAAK,EP/DE,OAAO;COgEjB;;AATL,AAUI,aAVS,CAUT,CAAC,CAAC;EACE,KAAK,EP9DL,OAAO;EO+DP,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,IAAI;CACtB;;AEtFL,AAAA,UAAU,CAAC;EACT,GAAG,EAAE,IAAI;EACT,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,kBAAkB;EAC1C,kBAAkB,EAAE,gBAAgB;EACpC,eAAe,EAAE,gBAAgB;EACjC,aAAa,EAAE,gBAAgB;EAC/B,UAAU,EAAE,gBAAgB;EAC5B,UAAU,ETeD,IAAI;ESdb,IAAI,EAAE,IAAI;EACV,KAAK,EAAE,GAAG;EACV,OAAO,EAAE,MAAM;CAChB;;AACD,AAAA,YAAY,CAAC;EACX,KAAK,ETUI,IAAI;CSsFd;;AAjGD,AAGE,YAHU,CAGV,OAAO,CAAC;EAEN,MAAM,EAAE,UAAU;EAClB,OAAO,EAAE,IAAI;CAUd;;AAhBH,AASI,YATQ,CAGV,OAAO,CAML,eAAe,CAAC;EACd,gBAAgB,ETRL,OAAO;ESSlB,KAAK,ETDA,IAAI;CSKV;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAZzC,AASI,YATQ,CAGV,OAAO,CAML,eAAe,CAAC;IAIZ,YAAY,EAAE,IAAI;GAErB;;;AAfL,AAiBE,YAjBU,CAiBV,aAAa,CAAC;EACZ,KAAK,EThBQ,OAAO;ESiBpB,WAAW,ET5BG,SAAS,EAAE,UAAU;ES6BnC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,GAAG;EACnB,YAAY,EAAE,IAAI;CAInB;;AA3BH,AAwBI,YAxBQ,CAiBV,aAAa,AAOV,MAAM,CAAC;EACN,KAAK,ETvBM,OAAO,CSuBI,UAAU;CACjC;;AAGD,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7BvC,AA4BE,YA5BU,CA4BV,gBAAgB,CAAC;IAEb,UAAU,EAAE,MAAM;GA0CrB;;;AAxEH,AAiCM,YAjCM,CA4BV,gBAAgB,CAId,WAAW,CACT,SAAS,AAAA,OAAO,CAAC,SAAS,CAAC;EACzB,KAAK,EThCI,OAAO,CSgCM,UAAU;CACjC;;AAnCP,AAoCM,YApCM,CA4BV,gBAAgB,CAId,WAAW,CAIT,cAAc,CAAC;EACb,MAAM,EAAE,CAAC;EACT,aAAa,EAAE,CAAC;EAChB,qBAAqB,EAAE,CAAC;EACxB,kBAAkB,EAAE,CAAC;EACrB,iBAAiB,EAAE,CAAC;EACpB,gBAAgB,EAAE,CAAC;EACnB,OAAO,EAAE,SAAS;CAYnB;;AAvDP,AA4CQ,YA5CI,CA4BV,gBAAgB,CAId,WAAW,CAIT,cAAc,CAQZ,cAAc,CAAC;EACb,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI;CAQrB;;AAPC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA/C7C,AA4CQ,YA5CI,CA4BV,gBAAgB,CAId,WAAW,CAIT,cAAc,CAQZ,cAAc,CAAC;IAIX,UAAU,EAAE,MAAM;GAMrB;;;AAtDT,AAkDU,YAlDE,CA4BV,gBAAgB,CAId,WAAW,CAIT,cAAc,CAQZ,cAAc,AAMX,MAAM,CAAC;EACN,KAAK,ETzCN,IAAI;ES0CH,gBAAgB,ETlDX,OAAO;CSmDb;;AArDX,AAwDM,YAxDM,CA4BV,gBAAgB,CAId,WAAW,CAwBT,SAAS,AAAA,MAAM,GAAG,cAAc,CAAC;EAC/B,OAAO,EAAE,KAAK;CACf;;AA1DP,AA4DI,YA5DQ,CA4BV,gBAAgB,CAgCd,SAAS,CAAC;EACR,cAAc,EAAE,SAAS;EACzB,OAAO,EAAE,MAAM;CAShB;;AAvEL,AA+DM,YA/DM,CA4BV,gBAAgB,CAgCd,SAAS,CAGP,SAAS,CAAC;EACR,KAAK,ET3DE,OAAO;ES4Dd,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;CAIhB;;AAtEP,AAmEQ,YAnEI,CA4BV,gBAAgB,CAgCd,SAAS,CAGP,SAAS,AAIN,MAAM,CAAC;EACN,KAAK,ETlEE,OAAO;CSmEf;;AArET,AAyEE,YAzEU,CAyEV,UAAU,CAAC;EACT,OAAO,EAAE,IAAI;CAsBd;;AArBC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3EvC,AAyEE,YAzEU,CAyEV,UAAU,CAAC;IAGP,eAAe,EAAE,MAAM;GAoB1B;;;AAhGH,AA8EI,YA9EQ,CAyEV,UAAU,CAKR,SAAS,CAAC;EACR,OAAO,EAAE,MAAM;CAOhB;;AAtFL,AAgFM,YAhFM,CAyEV,UAAU,CAKR,SAAS,CAEP,CAAC,CAAC;EACA,KAAK,ET5EE,OAAO;CSgFf;;AArFP,AAkFQ,YAlFI,CAyEV,UAAU,CAKR,SAAS,CAEP,CAAC,AAEE,MAAM,CAAC;EACN,KAAK,ETjFE,OAAO;CSkFf;;AApFT,AAuFI,YAvFQ,CAyEV,UAAU,CAcR,WAAW,CAAC;EACV,OAAO,EAAE,MAAM;CAOhB;;AA/FL,AAyFM,YAzFM,CAyEV,UAAU,CAcR,WAAW,CAET,CAAC,CAAC;EACA,KAAK,ETrFE,OAAO;CSyFf;;AA9FP,AA2FQ,YA3FI,CAyEV,UAAU,CAcR,WAAW,CAET,CAAC,AAEE,MAAM,CAAC;EACN,KAAK,ET1FE,OAAO;CS2Ff;;AAKT,AAAA,IAAI,CAAC;EACH,UAAU,EAAE,IAAI;CACjB;;AChHD,AAAA,OAAO,CAAC;EACJ,UAAU,EAAE,KAAK;EACjB,gBAAgB,EV+BV,OAAO;CU4ChB;;AA7ED,AAGI,OAHG,CAGH,eAAe,CAAC;EACZ,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI;CAuEvB;;AArEO,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAP/C,AAMQ,OAND,CAGH,eAAe,CAGX,KAAK,CAAC;IAEE,UAAU,EAAE,IAAI;GAEvB;;;AAVT,AAYY,OAZL,CAGH,eAAe,CAQX,QAAQ,CACJ,EAAE,CAAC;EACC,KAAK,EVSV,IAAI;EURC,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,IAAI;CACtB;;AAjBb,AAkBY,OAlBL,CAGH,eAAe,CAQX,QAAQ,CAOJ,CAAC,CAAC;EACE,KAAK,EVEb,OAAO;EUDC,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;CAIlB;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAtBnD,AAkBY,OAlBL,CAGH,eAAe,CAQX,QAAQ,CAOJ,CAAC,CAAC;IAKM,aAAa,EAAE,IAAI;GAE1B;;;AAzBb,AA0BY,OA1BL,CAGH,eAAe,CAQX,QAAQ,CAeJ,YAAY,CAAC;EACT,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,IAAI;CAYnB;;AA1Cb,AA+BgB,OA/BT,CAGH,eAAe,CAQX,QAAQ,CAeJ,YAAY,CAKR,aAAa,CAAC;EACV,aAAa,EAAE,CAAC;EAChB,MAAM,EAAE,IAAI;CACf;;AAlCjB,AAmCgB,OAnCT,CAGH,eAAe,CAQX,QAAQ,CAeJ,YAAY,CASR,iBAAiB,CAAC;EACd,aAAa,EAAE,CAAC;EAChB,gBAAgB,EAAE,+CAA+C;EACjE,OAAO,EAAE,MAAM;EACf,KAAK,EVjBd,IAAI;EUkBK,WAAW,EAAE,GAAG;CACnB;;AAzCjB,AA2CY,OA3CL,CAGH,eAAe,CAQX,QAAQ,CAgCJ,YAAY,CAAC;EACT,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,IAAI;CAWnB;;AAxDb,AA8CgB,OA9CT,CAGH,eAAe,CAQX,QAAQ,CAgCJ,YAAY,CAGR,CAAC,CAAC;EACE,KAAK,EVzBd,IAAI;EU0BK,YAAY,EAAE,IAAI;CAOrB;;AAvDjB,AAiDoB,OAjDb,CAGH,eAAe,CAQX,QAAQ,CAgCJ,YAAY,CAGR,CAAC,AAGI,MAAM,CAAC;EACJ,KAAK,EVdtB,OAAO;CUeO;;AAnDrB,AAoDoB,OApDb,CAGH,eAAe,CAQX,QAAQ,CAgCJ,YAAY,CAGR,CAAC,CAMG,IAAI,CAAC;EACD,SAAS,EAAE,IAAI;CAClB;;AAtDrB,AA0DQ,OA1DD,CAGH,eAAe,CAuDX,cAAc,CAAC;EACX,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,MAAM;EAClB,KAAK,EVxCT,OAAO;EUyCH,aAAa,EAAE,IAAI;EACnB,KAAK,EAAE,IAAI;CAYd;;AAXG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAhE/C,AA0DQ,OA1DD,CAGH,eAAe,CAuDX,cAAc,CAAC;IAOP,UAAU,EAAE,IAAI;IAChB,YAAY,EAAE,IAAI;GASzB;;;AA3ET,AAoEY,OApEL,CAGH,eAAe,CAuDX,cAAc,CAUV,CAAC,CAAC;EACE,KAAK,EVvDJ,OAAO;EUwDR,eAAe,EAAE,IAAI;CAIxB;;AA1Eb,AAuEgB,OAvET,CAGH,eAAe,CAuDX,cAAc,CAUV,CAAC,AAGI,MAAM,CAAC;EACJ,KAAK,EVpClB,OAAO;CUqCG;;ACzEjB,AACE,QADM,CACN,QAAQ,CAAC;EACP,aAAa,EAAE,IAAI;EACnB,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,kBAAkB;EAC1C,kBAAkB,EAAE,gBAAgB;EACpC,eAAe,EAAE,gBAAgB;EACjC,aAAa,EAAE,gBAAgB;EAC/B,UAAU,EAAE,gBAAgB;EAC5B,cAAc,EAAE,gBAAgB;CA8HjC;;AAtIH,AASI,QATI,CACN,QAAQ,CAQN,aAAa,CAAC;EACZ,UAAU,EXME,OAAO;EWLnB,KAAK,EXWA,IAAI;EWVT,OAAO,EAAE,SAAS;EAClB,YAAY,EAAE,IAAI;EAClB,aAAa,EAAE,IAAI;CACpB;;AAfL,AAkBQ,QAlBA,CACN,QAAQ,CAeN,gBAAgB,CACd,sBAAsB,CACpB,KAAK,CAAC;EACJ,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,CAAC;EAChB,YAAY,EAAE,IAAI;EAClB,cAAc,EAAE,IAAI;EACpB,aAAa,EAAE,4BAA4B;EAC3C,aAAa,EAAE,IAAI;CAMpB;;AA9BT,AA+BQ,QA/BA,CACN,QAAQ,CAeN,gBAAgB,CACd,sBAAsB,CAcpB,aAAa,CAAC;EACZ,MAAM,EAAE,OAAO;CAQhB;;AAxCT,AAiCU,QAjCF,CACN,QAAQ,CAeN,gBAAgB,CACd,sBAAsB,CAcpB,aAAa,CAEX,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,EXbN,IAAI;EWcH,OAAO,EAAE,KAAK;EACd,eAAe,EAAE,IAAI;CACtB;;AAvCX,AAyCQ,QAzCA,CACN,QAAQ,CAeN,gBAAgB,CACd,sBAAsB,CAwBpB,UAAU,CAAC;EACT,YAAY,EAAE,CAAC;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,CAAC;CAoBlB;;AAhET,AA6CU,QA7CF,CACN,QAAQ,CAeN,gBAAgB,CACd,sBAAsB,CAwBpB,UAAU,CAIR,EAAE,CAAC;EACD,UAAU,EAAE,IAAI;EAChB,QAAQ,EAAE,QAAQ;EAClB,YAAY,EAAE,IAAI;CAenB;;AA/DX,AAiDY,QAjDJ,CACN,QAAQ,CAeN,gBAAgB,CACd,sBAAsB,CAwBpB,UAAU,CAIR,EAAE,AAIC,OAAO,CAAC;EACP,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,GAAG;EACT,GAAG,EAAE,IAAI;EACT,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,GAAG;EACV,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,EAAE;CACZ;;AAzDb,AA0DY,QA1DJ,CACN,QAAQ,CAeN,gBAAgB,CACd,sBAAsB,CAwBpB,UAAU,CAIR,EAAE,CAaA,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,IAAI;CAClB;;AA9Db,AAkEM,QAlEE,CACN,QAAQ,CAeN,gBAAgB,CAkDd,YAAY,CAAC;EACX,KAAK,EX5CF,IAAI;EW6CP,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,SAAS;CACnB;;AAvEP,AAwEM,QAxEE,CACN,QAAQ,CAeN,gBAAgB,CAwDd,OAAO,CAAC;EACN,YAAY,EAAE,IAAI;EAClB,aAAa,EAAE,IAAI;EACnB,cAAc,EAAE,IAAI;EAcpB,6CAA6C;EAM7C,kCAAkC;EAUlC,gDAAgD;EAIhD,6DAA6D;EAI7D,qEAAqE;EAMrE,kDAAkD;EAIlD,sCAAsC;CASvC;;AApIP,AA4EQ,QA5EA,CACN,QAAQ,CAeN,gBAAgB,CAwDd,OAAO,CAIL,UAAU,CAAC;EACT,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,YAAY,EAAE,IAAI;EAClB,aAAa,EAAE,IAAI;EACnB,MAAM,EAAE,OAAO;EACf,SAAS,EAAE,IAAI;EACf,mBAAmB,EAAE,IAAI;EACzB,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,IAAI;EACrB,WAAW,EAAE,IAAI;EACjB,KAAK,EXlEP,OAAO;CWmEN;;AAxFT,AA0FQ,QA1FA,CACN,QAAQ,CAeN,gBAAgB,CAwDd,OAAO,CAkBL,UAAU,CAAC,KAAK,CAAC;EACf,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,OAAO;CAChB;;AA9FT,AAgGQ,QAhGA,CACN,QAAQ,CAeN,gBAAgB,CAwDd,OAAO,CAwBL,UAAU,CAAC;EACT,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EAAE,OAAe;EACjC,aAAa,EAAE,GAAG;CACnB;;AAxGT,AA0GQ,QA1GA,CACN,QAAQ,CAeN,gBAAgB,CAwDd,OAAO,CAkCL,UAAU,AAAA,MAAM,CAAC,KAAK,GAAG,UAAU,CAAC;EAClC,gBAAgB,EXvEnB,OAAO;CWwEL;;AA5GT,AA8GQ,QA9GA,CACN,QAAQ,CAeN,gBAAgB,CAwDd,OAAO,CAsCL,UAAU,CAAC,KAAK,AAAA,QAAQ,GAAG,UAAU,CAAC;EACpC,gBAAgB,EXjGT,OAAO;CWkGf;;AAhHT,AAkHQ,QAlHA,CACN,QAAQ,CAeN,gBAAgB,CAwDd,OAAO,CA0CL,UAAU,AAAA,MAAM,CAAC;EACf,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,IAAI;CACd;;AAtHT,AAwHQ,QAxHA,CACN,QAAQ,CAeN,gBAAgB,CAwDd,OAAO,CAgDL,UAAU,CAAC,KAAK,AAAA,QAAQ,GAAG,UAAU,AAAA,MAAM,CAAC;EAC1C,OAAO,EAAE,KAAK;CACf;;AAcT,AAAA,gBAAgB,CAAC;EACf,QAAQ,EAAE,QAAQ;CAiBnB;;AAlBD,AAEE,gBAFc,CAEd,KAAK,CAAC;EACJ,WAAW,EAAE,OAAO;EACpB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,CAAC;EACT,KAAK,EAAE,GAAG;CACX;;AARH,AASE,gBATc,CASd,cAAc,CAAC;EACb,aAAa,EAAE,IAAI;CAOpB;;AAjBH,AAWI,gBAXY,CASd,cAAc,CAEZ,eAAe,CAAC;EACd,cAAc,EAAE,SAAS;CAC1B;;AAbL,AAcI,gBAdY,CASd,cAAc,CAKZ,EAAE,CAAC;EACD,SAAS,EAAE,IAAI;CAChB;;AAGL,AAAA,aAAa,CAAC;EACZ,aAAa,EAAE,IAAI;EACnB,gBAAgB,EX7IA,OAAO;EW8IvB,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,GAAG;EACX,aAAa,EAAE,GAAG;CAoBnB;;AAzBD,AAME,aANW,CAMX,iBAAiB;AANnB,aAAa,CAOX,kBAAkB,CAAC,iBAAiB,CAAC;EACnC,gBAAgB,EAAE,OAAO;EACzB,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,GAAG,EAAE,MAAM;EACX,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,GAAG;CACnB;;AAfH,AAgBE,aAhBW,AAgBV,qBAAqB,CAAC,gBAAgB,CAAC;EACtC,GAAG,EAAE,CAAC;EACN,gBAAgB,EX7JF,OAAO,CW6Ja,UAAU;EAC5C,IAAI,EAAE,EAAE;EACR,KAAK,EAAE,GAAG;EACV,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,GAAG;EACX,aAAa,EAAE,GAAG;CACnB;;AGnLH,AAAA,SAAS,CAAC;EACN,UAAU,EAAE,KAAK;CAoBpB;;AArBD,AAEI,SAFK,CAEL,QAAQ,CAAC;EACL,UAAU,EAAE,MAAM;CAiBrB;;AAhBG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAJ3C,AAEI,SAFK,CAEL,QAAQ,CAAC;IAGD,cAAc,EAAE,IAAI;GAe3B;;;AApBL,AAOQ,SAPC,CAEL,QAAQ,CAKJ,CAAC,CAAC;EACE,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,IAAI;CACvB;;AAVT,AAWQ,SAXC,CAEL,QAAQ,CASJ,EAAE,CAAC;EACC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EdXL,SAAS,EAAE,UAAU;EcY3B,cAAc,EAAE,GAAG;CACtB;;AAhBT,AAiBQ,SAjBC,CAEL,QAAQ,CAeJ,CAAC,CAAC;EACE,KAAK,EdGT,OAAO;CcFN;;ACnBT,AAAA,OAAO,CAAC;EACJ,WAAW,EAAE,KAAK;CA0ErB;;AAzEG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAFvC,AAAA,OAAO,CAAC;IAGA,WAAW,EAAE,IAAI;GAwExB;;;AArEO,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAN3C,AAKI,OALG,CAKH,GAAG,CAAC;IAEI,UAAU,EAAE,IAAI;GAEvB;;;AATL,AAUI,OAVG,CAUH,UAAU,CAAC;EACP,QAAQ,EAAE,QAAQ;CA8BrB;;AAzCL,AAYQ,OAZD,CAUH,UAAU,CAEN,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,IAAI;CACf;;AAhBT,AAiBQ,OAjBD,CAUH,UAAU,CAON,QAAQ,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,SAAS;EACrB,gBAAgB,EAAE,SAAS;CAa9B;;AAxCT,AA4BY,OA5BL,CAUH,UAAU,CAON,QAAQ,AAWH,MAAM,CAAC;EACJ,OAAO,EAAE,CAAC;CACb;;AA9Bb,AA+BY,OA/BL,CAUH,UAAU,CAON,QAAQ,CAcJ,KAAK,CAAC;EACF,KAAK,EAAE,KAAK;EACZ,SAAS,EAAE,IAAI;EACf,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,SAAS,EAAE,qBAAqB;EAChC,aAAa,EAAE,qBAAqB;CACvC;;AAvCb,AA0CI,OA1CG,CA0CH,WAAW,CAAC;EACR,QAAQ,EAAE,QAAQ;CA+BrB;;AA9BG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA5C3C,AA0CI,OA1CG,CA0CH,WAAW,CAAC;IAGJ,UAAU,EAAE,IAAI;GA6BvB;;;AA1EL,AA+CQ,OA/CD,CA0CH,WAAW,CAKP,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AAjDT,AAkDQ,OAlDD,CA0CH,WAAW,CAQP,QAAQ,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,SAAS;EACrB,gBAAgB,EAAE,SAAS;CAa9B;;AAzET,AA6DY,OA7DL,CA0CH,WAAW,CAQP,QAAQ,AAWH,MAAM,CAAC;EACJ,OAAO,EAAE,CAAC;CACb;;AA/Db,AAgEY,OAhEL,CA0CH,WAAW,CAQP,QAAQ,CAcJ,KAAK,CAAC;EACF,KAAK,EAAE,KAAK;EACZ,SAAS,EAAE,IAAI;EACf,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,SAAS,EAAE,qBAAqB;EAChC,aAAa,EAAE,qBAAqB;CACvC;;ACxEb,AAAA,IAAI,CAAC;EAGH,UAAU,EAAE,IAAI;CAiIjB;;AApID,AAIE,IAJE,CAIF,KAAK,CAAC;EACJ,gBAAgB,EAAE,2BAA2B;EAC7C,MAAM,EAAE,KAAK;EACb,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,eAAe,EAAE,KAAK;EACtB,QAAQ,EAAE,QAAQ;CA2DnB;;AArEH,AAWI,IAXA,CAIF,KAAK,AAOF,MAAM,CAAC;EACN,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EAAE,SAAS;CAC5B;;AArBL,AAsBI,IAtBA,CAIF,KAAK,CAkBH,QAAQ,CAAC;EACP,UAAU,EAAE,MAAM;EAClB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,UAAU;EAOnB,OAAO,EAAE,CAAC;CAQX;;AAdC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1BzC,AAsBI,IAtBA,CAIF,KAAK,CAkBH,QAAQ,CAAC;IAKL,OAAO,EAAE,UAAU;GAatB;;;AAXC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7BzC,AAsBI,IAtBA,CAIF,KAAK,CAkBH,QAAQ,CAAC;IAQL,OAAO,EAAE,SAAS;GAUrB;;;AAxCL,AAiCM,IAjCF,CAIF,KAAK,CAkBH,QAAQ,CAWN,KAAK,CAAC;EACJ,KAAK,EhBZF,IAAI;EgBaP,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,KAAK;EAClB,aAAa,EAAE,GAAG;CACnB;;AAvCP,AAyCI,IAzCA,CAIF,KAAK,CAqCH,GAAG,CAAC;EACF,KAAK,EhBpBA,IAAI;EgBqBT,SAAS,EAAE,IAAI;CAChB;;AA5CL,AA6CI,IA7CA,CAIF,KAAK,CAyCH,UAAU,CAAC;EACT,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,IAAI;CAIjB;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAjDzC,AA6CI,IA7CA,CAIF,KAAK,CAyCH,UAAU,CAAC;IAKP,UAAU,EAAE,IAAI;GAEnB;;;AApDL,AAqDI,IArDA,CAIF,KAAK,CAiDH,KAAK,CAAC;EACJ,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,KAAK;CACf;;AAxDL,AAyDI,IAzDA,CAIF,KAAK,CAqDH,UAAU,CAAC,IAAI,CAAC;EACd,KAAK,EhBpCA,IAAI;EgBqCT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,GAAG;EAEV,KAAK,EAAE,IAAI;CACZ;;AAjEL,AAsEE,IAtEE,CAsEF,MAAM,CAAC;EACL,gBAAgB,EhBvCb,OAAO;EgBwCV,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,GAAG;CA0DjB;;AAnIH,AA0EI,IA1EA,CAsEF,MAAM,CAIJ,QAAQ,CAAC;EACP,UAAU,EAAE,MAAM;EAClB,QAAQ,EAAE,QAAQ;CA8BnB;;AA1GL,AA6EM,IA7EF,CAsEF,MAAM,CAIJ,QAAQ,CAGN,UAAU,CAAC;EACT,SAAS,EAAE,KAAK;EAChB,MAAM,EAAE,IAAI;CAIb;;AAnFP,AAgFQ,IAhFJ,CAsEF,MAAM,CAIJ,QAAQ,CAGN,UAAU,CAGR,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AAlFT,AAoFM,IApFF,CAsEF,MAAM,CAIJ,QAAQ,CAUN,EAAE,CAAC;EACD,KAAK,EhBpEE,OAAO;EgBqEd,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,IAAI;EAChB,WAAW,EhBtFD,SAAS,EAAE,UAAU;EgBuF/B,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,IAAI;CACpB;;AA5FP,AA6FM,IA7FF,CAsEF,MAAM,CAIJ,QAAQ,CAmBN,KAAK,CAAC;EACJ,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,IAAI;CASlB;;AAzGP,AAiGQ,IAjGJ,CAsEF,MAAM,CAIJ,QAAQ,CAmBN,KAAK,CAIH,CAAC,CAAC;EACA,KAAK,EhBjFA,OAAO;EgBkFZ,YAAY,EAAE,IAAI;CACnB;;AApGT,AAqGQ,IArGJ,CAsEF,MAAM,CAIJ,QAAQ,CAmBN,KAAK,CAQH,IAAI,CAAC;EACH,KAAK,EhBjFP,OAAO;EgBkFL,eAAe,EAAE,YAAY;CAC9B;;AAxGT,AA2GI,IA3GA,CAsEF,MAAM,CAqCJ,WAAW,CAAC;EACV,QAAQ,EAAE,QAAQ;CAsBnB;;AAlIL,AA8GQ,IA9GJ,CAsEF,MAAM,CAqCJ,WAAW,CAET,QAAQ,CACN,SAAS,CAAC;EACR,KAAK,EhB3ER,OAAO;CgBmFL;;AAvHT,AAgHU,IAhHN,CAsEF,MAAM,CAqCJ,WAAW,CAET,QAAQ,CACN,SAAS,AAEN,MAAM,CAAC;EACN,KAAK,EhB1FN,IAAI;CgB2FJ;;AAlHX,AAmHU,IAnHN,CAsEF,MAAM,CAqCJ,WAAW,CAET,QAAQ,CACN,SAAS,CAKP,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,IAAI;CACd;;AAtHX,AAwHQ,IAxHJ,CAsEF,MAAM,CAqCJ,WAAW,CAET,QAAQ,CAWN,SAAS,CAAC;EACR,KAAK,EhBrFR,OAAO;CgB4FL;;AAhIT,AA0HU,IA1HN,CAsEF,MAAM,CAqCJ,WAAW,CAET,QAAQ,CAWN,SAAS,AAEN,MAAM,CAAC;EACN,KAAK,EhBpGN,IAAI;CgBqGJ;;AA5HX,AA6HU,IA7HN,CAsEF,MAAM,CAqCJ,WAAW,CAET,QAAQ,CAWN,SAAS,CAKP,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;CAChB;;AC/HX,AAAA,OAAO,CAAC;EACJ,UAAU,EAAE,KAAK;CA0BpB;;AAzBG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAFvC,AAAA,OAAO,CAAC;IAGA,UAAU,EAAE,IAAI;GAwBvB;;;AAtBG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EALvC,AAAA,OAAO,CAAC;IAMA,UAAU,EAAE,IAAI;GAqBvB;;;AA3BD,AAQI,OARG,CAQH,UAAU,CAAC;EACP,SAAS,EAAE,KAAK;EAChB,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,IAAI;CAef;;AAdG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAZ3C,AAQI,OARG,CAQH,UAAU,CAAC;IAKH,aAAa,EAAE,IAAI;GAa1B;;;AA1BL,AAeQ,OAfD,CAQH,UAAU,CAON,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,GAAG;EACZ,kBAAkB,EAAE,gBAAgB;EACpC,eAAe,EAAE,gBAAgB;EACjC,aAAa,EAAE,gBAAgB;EAC/B,UAAU,EAAE,gBAAgB;CAI/B;;AAzBT,AAsBY,OAtBL,CAQH,UAAU,CAON,GAAG,AAOE,MAAM,CAAC;EACJ,OAAO,EAAE,GAAG;CACf;;ACxBb,AAAA,MAAM,CAAA;EACF,UAAU,EAAE,KAAK;CAuDpB;;AAtDG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAFvC,AAAA,MAAM,CAAA;IAGE,UAAU,EAAE,IAAI;GAqDvB;;;AAnDG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EALvC,AAAA,MAAM,CAAA;IAME,UAAU,EAAE,IAAI;GAkDvB;;;AAxDD,AAQA,MARM,CAQN,UAAU,CAAA;EACN,aAAa,EAAE,IAAI;CAsCtB;;AA/CD,AAWQ,MAXF,CAQN,UAAU,CAEN,MAAM,CACF,GAAG,CAAA;EACC,KAAK,EAAE,IAAI;CACd;;AAbT,AAeI,MAfE,CAQN,UAAU,CAON,WAAW,CAAA;EACf,YAAY,EAAE,IAAI;CA8Bb;;AA9CL,AAiBQ,MAjBF,CAQN,UAAU,CAON,WAAW,CAEP,CAAC,CAAC;EACE,eAAe,EAAE,IAAI;CAc5B;;AAhCL,AAmBW,MAnBL,CAQN,UAAU,CAON,WAAW,CAEP,CAAC,CAEE,EAAE,CAAA;EACF,KAAK,ElBHD,OAAO;EkBIV,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,eAAe;EAC3B,WAAW,ElBrBL,SAAS,EAAE,UAAU;EkBsB3B,SAAS,EAAE,IAAI;CAMlB;;AA/BT,AA0BY,MA1BN,CAQN,UAAU,CAON,WAAW,CAEP,CAAC,CAEE,EAAE,AAOA,MAAM,CAAA;EACH,KAAK,ElBSd,OAAO,CkBTe,UAAU;EACvB,kBAAkB,EAAE,IAAI;EACvC,UAAU,EAAE,IAAI;CACJ;;AA9Bb,AAiCQ,MAjCF,CAQN,UAAU,CAON,WAAW,CAkBP,KAAK,CAAC;EACF,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,EAAE;CAUlB;;AA7CT,AAoCY,MApCN,CAQN,UAAU,CAON,WAAW,CAkBP,KAAK,CAGD,CAAC,CAAC;EACE,KAAK,ElBpBN,OAAO;EkBqBN,YAAY,EAAE,IAAI;EAClB,WAAW,EAAE,GAAG;CACnB;;AAxCb,AAyCY,MAzCN,CAQN,UAAU,CAON,WAAW,CAkBP,KAAK,CAQD,IAAI,CAAC;EACD,KAAK,ElBrBb,OAAO;EkBsBC,eAAe,EAAE,YAAY;CAChC;;AA5Cb,AAgDA,MAhDM,CAgDN,YAAY,CAAA;EACR,SAAS,EAAE,KAAK;CAMnB;;AALG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAlDvC,AAgDA,MAhDM,CAgDN,YAAY,CAAA;IAGJ,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,IAAI;GAGvB;;;AAvDD,AAsDI,MAtDE,CAgDN,YAAY,CAMR,GAAG,CAAA;EAAC,KAAK,EAAE,IAAI;CAAG;;ACtDtB,AAAA,aAAa,CAAC;EACV,UAAU,EAAE,KAAK;CAkJpB;;AAjJG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAFvC,AAAA,aAAa,CAAC;IAGN,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE,MAAM;GA+ItB;;;AAnJD,AAMI,aANS,CAMT,YAAY,CAAC;EACT,UAAU,EnBSA,OAAO;EmBRjB,OAAO,EAAE,SAAS;EAClB,aAAa,EAAE,IAAI;CAuEtB;;AAhFL,AAWY,aAXC,CAMT,YAAY,CAIR,KAAK,CACD,KAAK,CAAC;EACF,WAAW,EAAE,eAAe;CAC/B;;AAbb,AAeQ,aAfK,CAMT,YAAY,CASR,SAAS,CAAC;EACN,KAAK,EAAE,IAAI;CAqBd;;AArCT,AAiBY,aAjBC,CAMT,YAAY,CASR,SAAS,CAEL,cAAc,CAAC;EACX,UAAU,EnBMf,OAAO;EmBLF,aAAa,EAAE,CAAC;EAChB,KAAK,EnBCb,OAAO;EmBAC,KAAK,EAAE,GAAG;CACb;;AAtBb,AAuBY,aAvBC,CAMT,YAAY,CASR,SAAS,CAQL,cAAc,CAAC;EACX,aAAa,EAAE,CAAC;EAChB,MAAM,EAAE,CAAC;CASZ;;AAlCb,AA0BgB,aA1BH,CAMT,YAAY,CASR,SAAS,CAQL,cAAc,CAGV,cAAc,CAAC;EACX,KAAK,EnBNjB,OAAO;EmBOK,OAAO,EAAE,QAAQ;CAKpB;;AAjCjB,AA6BoB,aA7BP,CAMT,YAAY,CASR,SAAS,CAQL,cAAc,CAGV,cAAc,AAGT,MAAM,CAAC;EACJ,UAAU,EnBM3B,OAAO,CmBN6B,UAAU;EAC7B,KAAK,EnBTlB,IAAI;CmBUM;;AAhCrB,AAuCY,aAvCC,CAMT,YAAY,CAgCR,MAAM,CACF,qBAAqB,CAAC;EAClB,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,GAAG;CAoCvB;;AAnCG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3CnD,AAuCY,aAvCC,CAMT,YAAY,CAgCR,MAAM,CACF,qBAAqB,CAAC;IAKd,eAAe,EAAE,IAAI;GAkC5B;;;AA9Eb,AA+CoB,aA/CP,CAMT,YAAY,CAgCR,MAAM,CACF,qBAAqB,CAOjB,WAAW,CACP,UAAU,AAAA,OAAO,CAAC,UAAU,CAAC;EACzB,KAAK,EnB1BlB,IAAI;EmB2BS,gBAAgB,EnBnCvB,OAAO;CmBoCH;;AAlDrB,AAoDwB,aApDX,CAMT,YAAY,CAgCR,MAAM,CACF,qBAAqB,CAOjB,WAAW,CAKP,UAAU,CACN,UAAU,CAAC;EACP,KAAK,EnB9BtB,IAAI;EmB+Ba,gBAAgB,EnBhCjC,IAAI;EmBiCa,MAAM,EAAE,CAAC;EACT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,SAAS;EACjB,MAAM,EAAE,CAAC;EACT,aAAa,EAAE,CAAC;EAChB,YAAY,EnBxChC,OAAO;EmByCa,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,QAAQ;CAKpB;;AAtEzB,AAkE4B,aAlEf,CAMT,YAAY,CAgCR,MAAM,CACF,qBAAqB,CAOjB,WAAW,CAKP,UAAU,CACN,UAAU,AAcL,MAAM,CAAC;EACJ,KAAK,EnB7C1B,IAAI;EmB8CiB,gBAAgB,EnBtD/B,OAAO;CmBuDK;;AArE7B,AAwE4B,aAxEf,CAMT,YAAY,CAgCR,MAAM,CACF,qBAAqB,CAOjB,WAAW,CAKP,UAAU,AAoBL,UAAW,CAAA,CAAC,EACT,UAAU,CAAC;EACP,gBAAgB,EAAE,sBAAsB;CAC3C;;AA1E7B,AAkFQ,aAlFK,CAiFT,aAAa,CACT,aAAa,CAAC;EACV,UAAU,EAAE,MAAM;EAClB,cAAc,EAAE,IAAI;CAavB;;AAjGT,AAqFY,aArFC,CAiFT,aAAa,CACT,aAAa,CAGT,EAAE,CAAC;EACC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;EACzB,WAAW,EnBtFT,SAAS,EAAE,UAAU;EmBuFvB,KAAK,EnBzEN,OAAO;CmB0ET;;AA3Fb,AA4FY,aA5FC,CAiFT,aAAa,CACT,aAAa,CAUT,CAAC,CAAC;EACE,KAAK,EnBxEb,OAAO;EmByEC,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,IAAI;CACtB;;AAhGb,AAmGY,aAnGC,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CAAC;EACT,aAAa,EAAE,IAAI;CA4CtB;;AAhJb,AAqGgB,aArGH,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CAER,YAAY,CAAC;EACT,cAAc,EAAE,IAAI;CAIvB;;AA1GjB,AAuGoB,aAvGP,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CAER,YAAY,CAER,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AAzGrB,AA2GgB,aA3GH,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CAQR,EAAE,CAAC;EACC,KAAK,EnB3FV,OAAO;EmB4FF,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,IAAI;EAChB,WAAW,EnB7Gb,SAAS,EAAE,UAAU;CmB8GtB;;AAjHjB,AAkHgB,aAlHH,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CAeR,KAAK,CAAC;EACF,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,IAAI;CASpB;;AA7HjB,AAqHoB,aArHP,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CAeR,KAAK,CAGD,CAAC,CAAC;EACE,KAAK,EnBrGd,OAAO;EmBsGE,YAAY,EAAE,IAAI;CACrB;;AAxHrB,AAyHoB,aAzHP,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CAeR,KAAK,CAOD,IAAI,CAAC;EACD,KAAK,EnBrGrB,OAAO;EmBsGS,eAAe,EAAE,YAAY;CAChC;;AA5HrB,AA8HgB,aA9HH,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CA2BR,eAAe,CAAC;EACZ,OAAO,EAAE,IAAI;EACb,YAAY,EAAE,CAAC;EACf,QAAQ,EAAE,QAAQ;CAcrB;;AA/IjB,AAkIoB,aAlIP,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CA2BR,eAAe,CAIX,EAAE,CAAC;EACC,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,gBAAgB,EnBtHtB,OAAO;EmBuHD,YAAY,EAAE,IAAI;CACrB;;AAxIrB,AAyIoB,aAzIP,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CA2BR,eAAe,CAWX,CAAC,CAAC;EACE,KAAK,EnBpHlB,IAAI;CmBwHM;;AA9IrB,AA2IwB,aA3IX,CAiFT,aAAa,CAiBT,QAAQ,CACJ,YAAY,CA2BR,eAAe,CAWX,CAAC,CAEG,IAAI,CAAC;EACD,OAAO,EAAE,IAAI;CAChB;;AC7IzB,AAAA,eAAe,CAAC;EACZ,UAAU,EAAE,KAAK;CAgKpB;;AA/JG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAFvC,AAAA,eAAe,CAAC;IAGR,UAAU,EAAE,IAAI;GA8JvB;;;AAjKD,AAKI,eALW,CAKX,YAAY,CAAC;EACT,WAAW,EAAE,IAAI;EACjB,QAAQ,EAAE,QAAQ;CAqDrB;;AA5DL,AAQQ,eARO,CAKX,YAAY,CAGR,QAAQ,CAAC;EACL,SAAS,EAAE,KAAK;CAOnB;;AANG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAV/C,AAQQ,eARO,CAKX,YAAY,CAGR,QAAQ,CAAC;IAGD,cAAc,EAAE,IAAI;GAK3B;;;AAhBT,AAaY,eAbG,CAKX,YAAY,CAGR,QAAQ,CAKJ,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AAfb,AAiBQ,eAjBO,CAKX,YAAY,CAYR,aAAa,CAAC,MAAM,AAAA,QAAQ,CAAC,IAAI,CAAC;EAC9B,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,GAAG;EACV,aAAa,EAAE,GAAG;EAClB,gBAAgB,EpBCjB,IAAI;EoBAH,gBAAgB,EpBRX,OAAO;EoBSZ,OAAO,EAAE,KAAK;EACd,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,GAAG;CAMd;;AALG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1B/C,AAiBQ,eAjBO,CAKX,YAAY,CAYR,aAAa,CAAC,MAAM,AAAA,QAAQ,CAAC,IAAI,CAAC;IAU1B,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,GAAG;IACV,MAAM,EAAE,GAAG;GAElB;;;AA/BT,AAgCQ,eAhCO,CAKX,YAAY,CA2BR,aAAa,CAAC,MAAM,AAAA,QAAQ,AAAA,OAAO,CAAC,IAAI,CAAC;EACrC,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,GAAG;EACV,aAAa,EAAE,GAAG;EAClB,gBAAgB,EpBpBV,OAAO;CoByBhB;;AAJG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EArC/C,AAgCQ,eAhCO,CAKX,YAAY,CA2BR,aAAa,CAAC,MAAM,AAAA,QAAQ,AAAA,OAAO,CAAC,IAAI,CAAC;IAMjC,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,GAAG;GAEjB;;;AAzCT,AA0CQ,eA1CO,CAKX,YAAY,CAqCR,aAAa,CAAC;EACV,QAAQ,EAAE,QAAQ;CAgBrB;;AA3DT,AA4CY,eA5CG,CAKX,YAAY,CAqCR,aAAa,CAET,SAAS,CAAC;EACN,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,EAAE;EACV,IAAI,EAAE,GAAG;EACT,SAAS,EAAE,aAAa;CAU3B;;AATG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAjDnD,AA4CY,eA5CG,CAKX,YAAY,CAqCR,aAAa,CAET,SAAS,CAAC;IAMF,MAAM,EAAE,CAAC;GAQhB;;;AA1Db,AA6DI,eA7DW,CA6DX,gBAAgB,CAAC;EACb,WAAW,EAAE,IAAI;EACjB,WAAW,EAAE,IAAI;CAiGpB;;AAhKL,AAgEQ,eAhEO,CA6DX,gBAAgB,CAGZ,gBAAgB,CAAC;EACb,KAAK,EpBhDF,OAAO;EoBiDV,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,GAAG;CACtB;;AArET,AAsEQ,eAtEO,CA6DX,gBAAgB,CASZ,MAAM,CAAC;EACH,KAAK,EpBzDA,OAAO;EoB0DZ,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;CACpB;;AA3ET,AA4EQ,eA5EO,CA6DX,gBAAgB,CAeZ,SAAS,CAAC;EACN,YAAY,EAAE,CAAC;EACf,UAAU,EAAE,IAAI;CAYnB;;AA1FT,AA+EY,eA/EG,CA6DX,gBAAgB,CAeZ,SAAS,CAGL,EAAE,CAAC;EACC,cAAc,EAAE,IAAI;CASvB;;AAzFb,AAiFgB,eAjFD,CA6DX,gBAAgB,CAeZ,SAAS,CAGL,EAAE,CAEE,CAAC,CAAC;EACE,KAAK,EAAE,IAAI;EACX,eAAe,EAAE,IAAI;CAKxB;;AAxFjB,AAoFoB,eApFL,CA6DX,gBAAgB,CAeZ,SAAS,CAGL,EAAE,CAEE,CAAC,CAGG,IAAI,CAAC;EACD,KAAK,EpBvEZ,OAAO;EoBwEA,YAAY,EAAE,IAAI;CACrB;;AAvFrB,AA2FQ,eA3FO,CA6DX,gBAAgB,CA8BZ,CAAC,CAAC;EACE,WAAW,EAAE,IAAI;EACjB,KAAK,EpBxET,OAAO;EoByEH,WAAW,EAAE,IAAI;CACpB;;AA/FT,AAgGQ,eAhGO,CA6DX,gBAAgB,CAmCZ,iBAAiB,CAAC;EACd,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,IAAI;CAmCnB;;AAtIT,AAoGY,eApGG,CA6DX,gBAAgB,CAmCZ,iBAAiB,CAIb,IAAI,CAAC;EACD,KAAK,EpBhFb,OAAO;EoBiFC,aAAa,EAAE,IAAI;CACtB;;AAvGb,AAwGY,eAxGG,CA6DX,gBAAgB,CAmCZ,iBAAiB,CAQb,OAAO,CAAC;EACJ,UAAU,EAAE,MAAM;EAClB,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,aAAa,EAAE,GAAG;EAClB,KAAK,EAAE,KAAK;EACZ,eAAe,EAAE,YAAY;EAC7B,WAAW,EAAE,MAAM;CAItB;;AAnHb,AAgHgB,eAhHD,CA6DX,gBAAgB,CAmCZ,iBAAiB,CAQb,OAAO,CAQH,UAAU,CAAC;EACP,OAAO,EAAE,gBAAgB;CAC5B;;AAlHjB,AAoHY,eApHG,CA6DX,gBAAgB,CAmCZ,iBAAiB,CAoBb,IAAI,CAAC;EACD,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,MAAM;EAClB,MAAM,EAAE,IAAI;CACf;;AAzHb,AA0HY,eA1HG,CA6DX,gBAAgB,CAmCZ,iBAAiB,CA0Bb,KAAK,AAAA,QAAQ,CAAC;EACV,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,gBAAgB,EAAE,WAAW;EAC7B,OAAO,EAAE,gBAAgB;EACzB,WAAW,EAAE,GAAG;CACnB;;AAhIb,AAiIY,eAjIG,CA6DX,gBAAgB,CAmCZ,iBAAiB,CAiCb,KAAK,AAAA,SAAS,CAAC;EACX,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,gBAAgB,EAAE,WAAW;CAChC;;AArIb,AAuIQ,eAvIO,CA6DX,gBAAgB,CA0EZ,MAAM,CAAC;EACH,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,IAAI;CAqBnB;;AA/JT,AA2IY,eA3IG,CA6DX,gBAAgB,CA0EZ,MAAM,CAIF,OAAO,CAAC;EACJ,YAAY,EAAE,IAAI;CAkBrB;;AA9Jb,AA6IgB,eA7ID,CA6DX,gBAAgB,CA0EZ,MAAM,CAIF,OAAO,CAEH,CAAC,CAAC;EACE,KAAK,EpBxHd,IAAI;EoByHK,SAAS,EAAE,IAAI;CAClB;;AAhJjB,AAiJgB,eAjJD,CA6DX,gBAAgB,CA0EZ,MAAM,CAIF,OAAO,CAMH,IAAI,CAAC;EACD,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EpBpIlB,OAAO;EoBqIL,aAAa,EAAE,GAAG;EAClB,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,IAAI;CAMpB;;AA7JjB,AAwJoB,eAxJL,CA6DX,gBAAgB,CA0EZ,MAAM,CAIF,OAAO,CAMH,IAAI,AAOC,MAAM,CAAC;EACJ,gBAAgB,EpB3IvB,OAAO;EoB4IA,kBAAkB,EAAE,IAAI;EACxB,UAAU,EAAE,IAAI;CACnB;;AAMrB,AAAA,YAAY,CAAC;EACT,UAAU,EAAE,KAAK;CAgJpB;;AAjJD,AAEI,YAFQ,CAER,UAAU,CAAC;EACP,eAAe,EAAE,MAAM;CAc1B;;AAjBL,AAIQ,YAJI,CAER,UAAU,CAEN,SAAS,CAAC;EAWN,OAAO,EAAE,SAAS;CACrB;;AAhBT,AAKY,YALA,CAER,UAAU,CAEN,SAAS,CACL,OAAO,CAAC;EACJ,KAAK,EpBlJV,IAAI,CoBkJe,UAAU;EACxB,MAAM,EAAE,IAAI;EACZ,gBAAgB,EAAE,iDAAiD;EACnE,aAAa,EAAE,CAAC;EAChB,OAAO,EAAE,SAAS;CACrB;;AAXb,AAYY,YAZA,CAER,UAAU,CAEN,SAAS,CAQL,SAAS,CAAC;EACN,KAAK,EpBxJV,IAAI;CoByJF;;AAdb,AAkBI,YAlBQ,CAkBR,YAAY,CAAC;EACT,WAAW,EAAE,IAAI;CA6HpB;;AAhJL,AAoBQ,YApBI,CAkBR,YAAY,CAER,SAAS,CAAC;EACN,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,oBAAoB;EACjC,WAAW,EAAE,GAAG;EAChB,KAAK,EpBtKT,OAAO;CoB4RN;;AA/IT,AA0BY,YA1BA,CAkBR,YAAY,CAER,SAAS,CAML,IAAI,CAAC;EACD,OAAO,EAAE,MAAM;CAClB;;AA5Bb,AA6BY,YA7BA,CAkBR,YAAY,CAER,SAAS,CASL,KAAK,CAAC;EACF,KAAK,EpB3Kb,OAAO;CoB+KF;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA/BnD,AA6BY,YA7BA,CAkBR,YAAY,CAER,SAAS,CASL,KAAK,CAAC;IAGE,OAAO,EAAE,MAAM;GAEtB;;;AAEG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EApCnD,AAmCY,YAnCA,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CAAC;IAEF,OAAO,EAAE,MAAM;GAiDtB;;;AAtFb,AAuCgB,YAvCJ,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CAIL,SAAS,CAAC;EACN,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,MAAM;EAClB,gBAAgB,EAAE,OAAO;EACzB,MAAM,EAAE,KAAK;EACb,KAAK,EAAE,KAAK;CAcf;;AA1DjB,AA6CoB,YA7CR,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CAIL,SAAS,CAML,EAAE,CAAC;EACC,KAAK,EpBzLlB,IAAI;EoB0LS,aAAa,EAAE,IAAI;EACnB,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;AAnDrB,AAoDoB,YApDR,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CAIL,SAAS,CAaL,IAAI,CAAC;EACD,KAAK,EpBzMZ,OAAO;EoB0MA,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,IAAI;CACvB;;AAzDrB,AA2DgB,YA3DJ,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CAwBL,QAAQ,CAAC;EACL,UAAU,EAAE,IAAI;CACnB;;AA7DjB,AA8DgB,YA9DJ,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CA2BL,OAAO,CAAC;EACJ,OAAO,EAAE,eAAe;EACxB,WAAW,EAAE,MAAM;EACnB,eAAe,EAAE,aAAa;CAYjC;;AA7EjB,AAkEoB,YAlER,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CA2BL,OAAO,CAIH,MAAM,CAAC;EACH,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;CAQtB;;AA5ErB,AAqEwB,YArEZ,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CA2BL,OAAO,CAIH,MAAM,CAGF,MAAM,CAAC;EACH,WAAW,EAAE,IAAI;EACjB,WAAW,EAAE,IAAI;CAIpB;;AA3EzB,AAwE4B,YAxEhB,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CA2BL,OAAO,CAIH,MAAM,CAGF,MAAM,CAGF,EAAE,CAAC;EACC,KAAK,EpBpN1B,IAAI;CoBqNc;;AA1E7B,AA8EgB,YA9EJ,CAkBR,YAAY,CAER,SAAS,CAeL,SAAS,CA2CL,IAAI,CAAC;EACD,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,oBAAoB;EACjC,WAAW,EAAE,GAAG;EAChB,KAAK,EpBhOjB,OAAO;EoBiOK,UAAU,EAAE,IAAI;CACnB;;AArFjB,AAwFgB,YAxFJ,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CACN,OAAO,CAAC;EACJ,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,IAAI;CAevB;;AAzGjB,AA2FoB,YA3FR,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CACN,OAAO,CAGH,KAAK,CAAC;EACF,OAAO,EAAE,IAAI;EACb,YAAY,EAAE,CAAC;EACf,MAAM,EAAE,MAAM;CAUjB;;AAxGrB,AAgG4B,YAhGhB,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CACN,OAAO,CAGH,KAAK,CAID,EAAE,CACE,CAAC,CAAC;EACE,YAAY,EAAE,GAAG;EACjB,KAAK,EAAE,OAAO;CAIjB;;AAtG7B,AAmGgC,YAnGpB,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CACN,OAAO,CAGH,KAAK,CAID,EAAE,CACE,CAAC,CAGG,IAAI,CAAC;EACD,SAAS,EAAE,IAAI;CAClB;;AArGjC,AA0GgB,YA1GJ,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CAmBN,EAAE,CAAC;EACC,KAAK,EpBtPd,IAAI;CoBuPE;;AA5GjB,AA6GgB,YA7GJ,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CAsBN,aAAa,CAAC;EACV,UAAU,EAAE,IAAI;CA+BnB;;AA7IjB,AA+GoB,YA/GR,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CAsBN,aAAa,CAET,aAAa,CAAC;EACV,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,2BAA2B;EACnC,OAAO,EAAE,gBAAgB;EACzB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,WAAW;EAC5B,MAAM,EAAE,iBAAiB;EACzB,YAAY,EAAE,WAAW;EACzB,mBAAmB,EpBvQhC,IAAI;EoBwQS,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,4DAA4D;CAC3E;;AA/HrB,AAgIoB,YAhIR,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CAsBN,aAAa,CAmBT,aAAa,AAAA,MAAM,CAAC;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,mBAAmB,EpB9QhC,IAAI,CoB8QqC,UAAU;EACtC,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI;CACnB;;AAtIrB,AAuIoB,YAvIR,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CAsBN,aAAa,CA0BT,YAAY,CAAC;EACT,aAAa,EAAE,IAAI;CAItB;;AA5IrB,AAyIwB,YAzIZ,CAkBR,YAAY,CAER,SAAS,CAmEL,UAAU,CAsBN,aAAa,CA0BT,YAAY,CAER,KAAK,CAAC;EACF,KAAK,EpBvRzB,OAAO;CoBwRU;;AC7SzB,AAAA,SAAS,CAAC;EACN,UAAU,EAAE,KAAK;CA0RpB;;AA3RD,AAEI,SAFK,CAEL,QAAQ,CAAC;EACL,gBAAgB,EAAE,OAAO;EACzB,OAAO,EAAE,OAAO;CAKnB;;AATL,AAWQ,SAXC,CAUL,aAAa,CACT,IAAI,CAAC;EACD,OAAO,EAAE,MAAM;CAClB;;AAbT,AAcQ,SAdC,CAUL,aAAa,CAIT,IAAI,CAAC;EACD,gBAAgB,EAAE,OAAO;EACzB,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,kBAAkB;CAM9B;;AAzBT,AAoBY,SApBH,CAUL,aAAa,CAIT,IAAI,CAMA,CAAC,CAAC;EACE,KAAK,ErBFT,OAAO;EqBGH,eAAe,EAAE,IAAI;EACrB,YAAY,EAAE,GAAG;CACpB;;AAxBb,AA0BQ,SA1BC,CAUL,aAAa,CAgBT,CAAC,CAAC;EACE,KAAK,ErBNT,OAAO;EqBOH,OAAO,EAAE,MAAM;CAClB;;AA7BT,AA8BQ,SA9BC,CAUL,aAAa,CAoBT,QAAQ,CAAC;EACL,KAAK,ErBVT,OAAO;EqBWH,YAAY,EAAE,IAAI;CACrB;;AAjCT,AAkCQ,SAlCC,CAUL,aAAa,CAwBT,aAAa,CAAC;EACV,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,yBAAyB;EACjC,OAAO,EAAE,gBAAgB;EACzB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAO;EACzB,eAAe,EAAE,WAAW;EAC5B,MAAM,EAAE,SAAS;EACjB,YAAY,ErBhCP,OAAO,CqBgCW,UAAU;EACjC,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,4DAA4D;CAC3E;;AAjDT,AAkDQ,SAlDC,CAUL,aAAa,CAwCT,OAAO,CAAC;EACJ,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,yBAAyB;EACjC,OAAO,EAAE,gBAAgB;EACzB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,SAAS;EAC3B,eAAe,EAAE,WAAW;EAC5B,MAAM,EAAE,SAAS;EACjB,YAAY,ErBhDP,OAAO,CqBgDW,UAAU;EACjC,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,4DAA4D;CAC3E;;AAjET,AAkEQ,SAlEC,CAUL,aAAa,CAwDT,OAAO,AAAA,MAAM,CAAC;EACV,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAkB,CAAC,UAAU;EAC/C,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB;CACrD;;AAvET,AAwEQ,SAxEC,CAUL,aAAa,CA8DT,aAAa,AAAA,MAAM,CAAC;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB;CACrD;;AA7ET,AA8EQ,SA9EC,CAUL,aAAa,CAoET,qBAAqB,AAAA,QAAQ,GAAG,qBAAqB,AAAA,QAAQ,CAAC;EAC1D,KAAK,EAAE,GAAG;EACV,YAAY,EAAE,GAAG;EACjB,gBAAgB,EAAE,GAAG;EACrB,OAAO,EAAE,eAAe;EACxB,UAAU,EAAE,eAAe;CAC9B;;AApFT,AA6FQ,SA7FC,CAUL,aAAa,CAmFT,iBAAiB,AAAA,QAAQ,CAAC;EACtB,OAAO,EAAE,eAAe;EACxB,UAAU,EAAE,eAAe;CAC9B;;AAhGT,AAkGI,SAlGK,CAkGL,cAAc,CAAC;EACX,UAAU,EAAE,IAAI;CA0FnB;;AA7LL,AAqGY,SArGH,CAkGL,cAAc,CAEV,QAAQ,CACJ,EAAE,CAAC;EACC,WAAW,EAAE,GAAG;EAChB,KAAK,ErBxFH,OAAO;EqByFT,cAAc,EAAE,SAAS;CAC5B;;AAzGb,AA0GY,SA1GH,CAkGL,cAAc,CAEV,QAAQ,CAMJ,CAAC,CAAC;EACE,KAAK,ErBtFb,OAAO;EqBuFC,UAAU,EAAE,IAAI;CACnB;;AA7Gb,AA+GQ,SA/GC,CAkGL,cAAc,CAaV,aAAa,CAAC;EACV,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,yBAAyB;EACjC,OAAO,EAAE,gBAAgB;EACzB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAO;EACzB,eAAe,EAAE,WAAW;EAC5B,MAAM,EAAE,SAAS;EACjB,YAAY,EAAE,sBAAsB;EACpC,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,4DAA4D;CAC3E;;AA9HT,AA+HQ,SA/HC,CAkGL,cAAc,CA6BV,aAAa,AAAA,MAAM,CAAC;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,YAAY,ErBnHN,OAAO,CqBmHiB,UAAU;EACxC,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB;CACrD;;AArIT,AAsIQ,SAtIC,CAkGL,cAAc,CAoCV,cAAc,CAAC;EACX,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,yBAAyB;EACjC,OAAO,EAAE,iCAAiC;EAC1C,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,cAAc,EAAE,MAAM;EACtB,MAAM,EAAE,GAAG,CAAC,KAAK,CrB3HrB,OAAO;EqB4HH,aAAa,EAAE,CAAC;EAChB,kBAAkB,EAAE,IAAI;EACxB,eAAe,EAAE,IAAI;EACrB,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,IAAI;CACnB;;AAtJT,AAuJQ,SAvJC,CAkGL,cAAc,CAqDV,KAAK,CAAC;EACF,MAAM,EAAE,IAAI;EACZ,gBAAgB,EAAE,OAAO;CAmC5B;;AA5LT,AA2JgB,SA3JP,CAkGL,cAAc,CAqDV,KAAK,CAGD,UAAU,CACN,QAAQ,CAAC;EACL,KAAK,ErBvIjB,OAAO;CqB2IE;;AAhKjB,AA6JoB,SA7JX,CAkGL,cAAc,CAqDV,KAAK,CAGD,UAAU,CACN,QAAQ,CAEJ,MAAM,CAAC;EACH,KAAK,ErBvIlB,IAAI;CqBwIM;;AA/JrB,AAiKgB,SAjKP,CAkGL,cAAc,CAqDV,KAAK,CAGD,UAAU,CAON,qBAAqB,AAAA,QAAQ,GAAG,qBAAqB,AAAA,QAAQ,CAAC;EAC1D,KAAK,ErB9HlB,OAAO;EqB+HM,YAAY,ErB/HzB,OAAO;EqBgIM,gBAAgB,ErBhI7B,OAAO;EqBiIM,OAAO,EAAE,IAAI;CAChB;;AAtKjB,AAuKgB,SAvKP,CAkGL,cAAc,CAqDV,KAAK,CAGD,UAAU,CAaN,iBAAiB,AAAA,QAAQ,GAAG,iBAAiB,AAAA,QAAQ,CAAC;EAClD,KAAK,ErBpIlB,OAAO,CqBoIoB,UAAU;EACxB,YAAY,ErBrIzB,OAAO,CqBqI2B,UAAU;EAC/B,gBAAgB,ErBtI7B,OAAO,CqBsI+B,UAAU;EACnC,OAAO,EAAE,EAAE;CACd;;AA5KjB,AA+KoB,SA/KX,CAkGL,cAAc,CAqDV,KAAK,CAGD,UAAU,CAmBN,MAAM,CAAA,AAAA,IAAC,CAAK,UAAU,AAAf,CAEF,OAAO;AA/K5B,SAAS,CAkGL,cAAc,CAqDV,KAAK,CAGD,UAAU,CAoBN,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CACD,OAAO,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,OAAO;EACZ,IAAI,EAAE,OAAO;EACb,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,cAAc,EAAE,IAAI;EACpB,gBAAgB,EAAE,OAAgB;EAClC,MAAM,EAAE,iBAAiB;CAC5B;;AAzLrB,AA8LI,SA9LK,CA8LL,eAAe,CAAC;EACZ,UAAU,EAAE,IAAI;CA2FnB;;AA1RL,AAiMY,SAjMH,CA8LL,eAAe,CAEX,MAAM,CACF,EAAE,CAAC;EACC,WAAW,EAAE,GAAG;EAChB,KAAK,ErBpLH,OAAO;CqBqLZ;;AApMb,AAqMY,SArMH,CA8LL,eAAe,CAEX,MAAM,CAKF,QAAQ,CAAC;EACL,KAAK,ErBjLb,OAAO;EqBkLC,WAAW,EAAE,IAAI;CACpB;;AAxMb,AAyMY,SAzMH,CA8LL,eAAe,CAEX,MAAM,CASF,QAAQ,CAAC;EACL,YAAY,EAAE,IAAI;CACrB;;AA3Mb,AA4MY,SA5MH,CA8LL,eAAe,CAEX,MAAM,CAYF,EAAE,CAAC;EACC,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,CAAC;CAalB;;AA3Nb,AA+MgB,SA/MP,CA8LL,eAAe,CAEX,MAAM,CAYF,EAAE,CAGE,EAAE,CAAC;EACC,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,aAAa;EAC9B,UAAU,EAAE,IAAI;EAChB,cAAc,EAAE,IAAI;CAOvB;;AA1NjB,AAoNoB,SApNX,CA8LL,eAAe,CAEX,MAAM,CAYF,EAAE,CAGE,EAAE,CAKE,IAAI,CAAC;EACD,aAAa,EAAE,IAAI;CACtB;;AAtNrB,AAuNoB,SAvNX,CA8LL,eAAe,CAEX,MAAM,CAYF,EAAE,CAGE,EAAE,CAQE,GAAG,CAAC;EACA,KAAK,ErBjMlB,IAAI;CqBkMM;;AAzNrB,AA6NgB,SA7NP,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,CACJ,KAAK,CAAC;EACF,KAAK,ErBvMd,IAAI;CqBwME;;AA/NjB,AAgOgB,SAhOP,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EAIJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,QAAQ;AAhOtC,SAAS,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EAKJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,IAAK,CAAA,QAAQ,EAAE;EACzB,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,OAAO;CAChB;;AApOjB,AAqOgB,SArOP,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EASJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,QAAQ,GAAG,KAAK;AArO9C,SAAS,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EAUJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,IAAK,CAAA,QAAQ,IAAI,KAAK,CAAC;EACjC,QAAQ,EAAE,QAAQ;EAClB,YAAY,EAAE,IAAI;EAClB,MAAM,EAAE,OAAO;EACf,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;CACd;;AA7OjB,AA8OgB,SA9OP,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EAkBJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,QAAQ,GAAG,KAAK,AAAA,OAAO;AA9OrD,SAAS,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EAmBJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,IAAK,CAAA,QAAQ,IAAI,KAAK,AAAA,OAAO,CAAC;EACxC,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,SAAS;EACjB,YAAY,ErBnNzB,OAAO;EqBoNM,aAAa,EAAE,IAAI;EACnB,UAAU,EAAE,IAAI;CACnB;;AA1PjB,AA2PgB,SA3PP,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EA+BJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,QAAQ,GAAG,KAAK,AAAA,MAAM;AA3PpD,SAAS,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EAgCJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,IAAK,CAAA,QAAQ,IAAI,KAAK,AAAA,MAAM,CAAC;EACvC,OAAO,EAAE,EAAE;EACX,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,UAAU,ErB5NvB,OAAO;EqB6NM,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,aAAa,EAAE,IAAI;EACnB,kBAAkB,EAAE,aAAa;EACjC,UAAU,EAAE,aAAa;CAC5B;;AAvQjB,AAwQgB,SAxQP,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EA4CJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,IAAK,CAAA,QAAQ,IAAI,KAAK,AAAA,MAAM,CAAC;EACvC,OAAO,EAAE,CAAC;EACV,iBAAiB,EAAE,QAAQ;EAC3B,SAAS,EAAE,QAAQ;CACtB;;AA5QjB,AA6QgB,SA7QP,CA8LL,eAAe,CAEX,MAAM,CA4BF,QAAQ,EAiDJ,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,QAAQ,GAAG,KAAK,AAAA,MAAM,CAAC;EACjC,OAAO,EAAE,CAAC;EACV,iBAAiB,EAAE,QAAQ;EAC3B,SAAS,EAAE,QAAQ;CACtB;;AAjRjB,AAmRY,SAnRH,CA8LL,eAAe,CAEX,MAAM,CAmFF,WAAW,CAAC;EACR,UAAU,EAAE,MAAM;EAClB,KAAK,ErBhQb,OAAO;EqBiQC,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI;CACtB;;ACxRb,AAAA,KAAK,CAAC;EACJ,UAAU,EAAE,IAAI;CAqNjB;;AAtND,AAEE,KAFG,CAEH,cAAc,CAAC;EACb,QAAQ,EAAE,IAAI;CAuGf;;AA1GH,AAMI,KANC,CAEH,cAAc,CAIZ,MAAM,CAAC;EACL,UAAU,EAAE,IAAI;CAkGjB;;AAzGL,AAQM,KARD,CAEH,cAAc,CAIZ,MAAM,CAEJ,KAAK,CAAC;EACJ,gBAAgB,EtBgBpB,SAAS;CsBfN;;AAVP,AAYQ,KAZH,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CACH,SAAS,CAAC;EACR,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,cAAc,EAAE,IAAI;CAmBrB;;AAlBC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAhB7C,AAYQ,KAZH,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CACH,SAAS,CAAC;IAKN,UAAU,EAAE,IAAI;GAiBnB;;;AAlCT,AAmBU,KAnBL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CACH,SAAS,CAOP,QAAQ,CAAC;EACP,SAAS,EAAE,KAAK;CAIjB;;AAxBX,AAqBY,KArBP,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CACH,SAAS,CAOP,QAAQ,CAEN,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AAvBb,AAyBU,KAzBL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CACH,SAAS,CAaP,EAAE,CAAC;EACD,KAAK,EtBZA,OAAO;EsBaZ,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,IAAI;CAKnB;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7B/C,AAyBU,KAzBL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CACH,SAAS,CAaP,EAAE,CAAC;IAKC,SAAS,EAAE,IAAI;IACf,YAAY,EAAE,IAAI;GAErB;;;AAjCX,AAmCQ,KAnCH,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAAC;EACD,cAAc,EAAE,MAAM;CAmEvB;;AAvGT,AAqCU,KArCL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAEA,OAAO,CAAC;EACN,QAAQ,EAAE,QAAQ;CACnB;;AAvCX,AAwCU,KAxCL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAKA,SAAS,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,KAAK;EACV,IAAI,EAAE,IAAI;CAKX;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA5C/C,AAwCU,KAxCL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAKA,SAAS,CAAC;IAKN,YAAY,EAAE,IAAI;IAClB,IAAI,EAAE,IAAI;GAEb;;;AAhDX,AAiDU,KAjDL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAcA,KAAK,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B;AAjDzD,KAAK,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAeA,KAAK,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B,CAAC;EAC9C,kBAAkB,EAAE,IAAI;EACxB,MAAM,EAAE,CAAC;CACV;;AArDX,AAsDU,KAtDL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAmBA,KAAK,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACnB,eAAe,EAAE,SAAS;CAC3B;;AAxDX,AAyDU,KAzDL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAsBA,SAAS,CAAC,KAAK,CAAC;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,CAAC;EACT,YAAY,EAAE,IAAI;EAClB,MAAM,EAAE,cAAc;CACvB;;AAlEX,AAmEU,KAnEL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAgCA,SAAS,CAAC,KAAK,AAAA,MAAM,CAAC;EACpB,OAAO,EAAE,CAAC;CACX;;AArEX,AAsEU,KAtEL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAmCA,aAAa,CAAC;EACZ,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;CACb;;AA1EX,AA2EU,KA3EL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAwCA,gBAAgB,CAAC;EACf,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,OAAO;EACf,WAAW,EAAE,cAAc;EAC3B,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,iBAAiB,EAAE,iBAAiB;EACpC,SAAS,EAAE,iBAAiB;EAC5B,mBAAmB,EAAE,IAAI;EACzB,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,IAAI;EACrB,cAAc,EAAE,IAAI;EACpB,WAAW,EAAE,IAAI;CAClB;;AA3FX,AA4FU,KA5FL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CAyDA,gBAAgB,AAAA,YAAY,CAAC;EAC3B,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,GAAG;EACX,GAAG,EAAE,KAAK;EACV,aAAa,EAAE,cAAc;CAC9B;;AAjGX,AAkGU,KAlGL,CAEH,cAAc,CAIZ,MAAM,CAKJ,KAAK,CAwBH,EAAE,CA+DA,gBAAgB,AAAA,cAAc,CAAC;EAC7B,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,GAAG;CACZ;;AAtGX,AA2GE,KA3GG,CA2GH,aAAa,CAAC;EACZ,UAAU,EAAE,IAAI;CA4BjB;;AAxIH,AA6GI,KA7GC,CA2GH,aAAa,CAEX,YAAY,CAAC;EACX,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,CAAC;CAgBjB;;AAfC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAjHzC,AA6GI,KA7GC,CA2GH,aAAa,CAEX,YAAY,CAAC;IAKT,WAAW,EAAE,IAAI;GAcpB;;;AAhIL,AAoHM,KApHD,CA2GH,aAAa,CAEX,YAAY,CAOV,aAAa,CAAC;EACZ,aAAa,EAAE,CAAC;EAChB,MAAM,EAAE,IAAI;CACb;;AAvHP,AAwHM,KAxHD,CA2GH,aAAa,CAEX,YAAY,CAWV,iBAAiB,CAAC;EAChB,aAAa,EAAE,CAAC;EAChB,gBAAgB,EtB5GP,OAAO;EsB6GhB,OAAO,EAAE,MAAM;EACf,KAAK,EtBtGF,IAAI;EsBuGP,MAAM,EAAE,SAAS;EACjB,WAAW,EAAE,GAAG;CACjB;;AA/HP,AAiII,KAjIC,CA2GH,aAAa,CAsBX,aAAa,AAAA,MAAM,CAAC;EAClB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,YAAY,EtBtHD,OAAO;EsBuHlB,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB;CACnD;;AAvIL,AAyIE,KAzIG,CAyIH,cAAc,CAAC;EACb,UAAU,EAAE,IAAI;CASjB;;AAnJH,AA2II,KA3IC,CAyIH,cAAc,CAEZ,MAAM,CAAC;EACL,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,aAAa;EAC9B,OAAO,EAAE,MAAM;CAChB;;AA/IL,AAgJI,KAhJC,CAyIH,cAAc,CAOZ,GAAG,CAAC;EACF,UAAU,EAAE,IAAI;CACjB;;AAlJL,AAoJE,KApJG,CAoJH,KAAK,CAAC;EACJ,eAAe,EAAE,aAAa;EAC9B,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,MAAM;CAKhB;;AA5JH,AAwJI,KAxJC,CAoJH,KAAK,CAIH,KAAK,CAAC;EACJ,YAAY,EAAE,IAAI;EAClB,WAAW,EAAE,GAAG;CACjB;;AA3JL,AA6JE,KA7JG,CA6JH,QAAQ,CAAC;EAaP,6CAA6C;EAM7C,kCAAkC;EAUlC,gDAAgD;EAIhD,6DAA6D;EAI7D,qEAAqE;EAMrE,kDAAkD;EAIlD,sCAAsC;CASvC;;AArNH,AA8JI,KA9JC,CA6JH,QAAQ,CACN,GAAG,CAAC;EACF,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,YAAY,EAAE,IAAI;EAClB,aAAa,EAAE,IAAI;EACnB,MAAM,EAAE,OAAO;EACf,SAAS,EAAE,IAAI;EACf,mBAAmB,EAAE,IAAI;EACzB,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,IAAI;EACrB,WAAW,EAAE,IAAI;CAClB;;AAzKL,AA2KI,KA3KC,CA6JH,QAAQ,CAcN,GAAG,CAAC,KAAK,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,OAAO;CAChB;;AA/KL,AAiLI,KAjLC,CA6JH,QAAQ,CAoBN,UAAU,CAAC;EACT,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EAAE,OAAkB;EACpC,aAAa,EAAE,GAAG;CACnB;;AAzLL,AA2LI,KA3LC,CA6JH,QAAQ,CA8BN,GAAG,AAAA,MAAM,CAAC,KAAK,GAAG,UAAU,CAAC;EAC3B,gBAAgB,EAAE,sBAAsB;CACzC;;AA7LL,AA+LI,KA/LC,CA6JH,QAAQ,CAkCN,GAAG,CAAC,KAAK,AAAA,QAAQ,GAAG,UAAU,CAAC;EAC7B,gBAAgB,EAAE,OAAO;CAC1B;;AAjML,AAmMI,KAnMC,CA6JH,QAAQ,CAsCN,UAAU,AAAA,MAAM,CAAC;EACf,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,IAAI;CACd;;AAvML,AAyMI,KAzMC,CA6JH,QAAQ,CA4CN,GAAG,CAAC,KAAK,AAAA,QAAQ,GAAG,UAAU,AAAA,MAAM,CAAC;EACnC,OAAO,EAAE,KAAK;CACf;;AA3ML,AA6MI,KA7MC,CA6JH,QAAQ,CAgDN,GAAG,CAAC,UAAU,AAAA,MAAM,CAAC;EACnB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,sBAAsB;CACnC;;ACpNL,AAAA,aAAa,CAAC;EACV,UAAU,EAAE,KAAK;CAuCpB;;AArCO,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAH3C,AAEI,aAFS,CAET,QAAQ,CAAC;IAED,cAAc,EAAE,IAAI;GAyB3B;;;AA7BL,AAMQ,aANK,CAET,QAAQ,CAIJ,EAAE,CAAC;EACC,WAAW,EAAE,GAAG;EAChB,aAAa,EAAE,IAAI;CAItB;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAT/C,AAMQ,aANK,CAET,QAAQ,CAIJ,EAAE,CAAC;IAIK,YAAY,EAAE,IAAI;GAEzB;;;AAZT,AAaQ,aAbK,CAET,QAAQ,CAWJ,EAAE,CAAC;EACC,YAAY,EAAE,CAAC;EACf,aAAa,EAAE,IAAI;CAatB;;AAZG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAhB/C,AAaQ,aAbK,CAET,QAAQ,CAWJ,EAAE,CAAC;IAIK,OAAO,EAAE,MAAM;GAWtB;;;AA5BT,AAmBY,aAnBC,CAET,QAAQ,CAWJ,EAAE,CAME,EAAE,CAAC;EACC,KAAK,EvBCb,OAAO;EuBAC,OAAO,EAAE,IAAI;EACb,aAAa,EAAE,IAAI;EACnB,eAAe,EAAE,aAAa;CAIjC;;AA3Bb,AAwBgB,aAxBH,CAET,QAAQ,CAWJ,EAAE,CAME,EAAE,CAKE,IAAI,CAAC;EACD,KAAK,EvBFd,IAAI;CuBGE;;AA1BjB,AA8BI,aA9BS,CA8BT,gBAAgB,CAAC;EACb,UAAU,EAAE,IAAI;EAChB,gBAAgB,EvBPpB,SAAS;EuBQL,OAAO,EAAE,SAAS;CAMrB;;AAvCL,AAmCY,aAnCC,CA8BT,gBAAgB,CAIZ,KAAK,CACD,EAAE,CAAC;EACC,cAAc,EAAE,IAAI;CACvB;;ACrCb,AAAA,MAAM,CAAC;EACH,UAAU,EAAE,KAAK;CA0EpB;;AA3ED,AAEI,MAFE,CAEF,YAAY,CAAC;EACT,QAAQ,EAAE,QAAQ;CAwBrB;;AA3BL,AAIQ,MAJF,CAEF,YAAY,AAEP,QAAQ,CAAC;EACN,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,gBAAgB,EAAE,SAAS;EAC3B,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;CACV;;AAZT,AAaQ,MAbF,CAEF,YAAY,CAWR,SAAS,CAAC;EACN,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,GAAG;EACX,KAAK,ExBKN,IAAI;EwBJH,UAAU,EAAE,MAAM;CAKrB;;AAvBT,AAmBY,MAnBN,CAEF,YAAY,CAWR,SAAS,CAML,EAAE,CAAC;EACC,aAAa,EAAE,IAAI;EACnB,SAAS,EAAE,IAAI;CAClB;;AAtBb,AAwBQ,MAxBF,CAEF,YAAY,CAsBR,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AA1BT,AA4BI,MA5BE,CA4BF,WAAW,CAAC;EACR,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,MAAM;CA4ClB;;AA1EL,AA+BQ,MA/BF,CA4BF,WAAW,CAGP,EAAE,CAAC;EACC,aAAa,EAAE,IAAI;CACtB;;AAjCT,AAkCQ,MAlCF,CA4BF,WAAW,CAMP,aAAa,CAAC;EACV,UAAU,EAAE,IAAI;CA+BnB;;AAlET,AAoCY,MApCN,CA4BF,WAAW,CAMP,aAAa,CAET,aAAa,CAAC;EACV,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,2BAA2B;EACnC,OAAO,EAAE,gBAAgB;EACzB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,WAAW;EAC5B,MAAM,EAAE,iBAAiB;EACzB,YAAY,EAAE,WAAW;EACzB,mBAAmB,ExB1BxB,IAAI;EwB2BC,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,4DAA4D;CAC3E;;AApDb,AAqDY,MArDN,CA4BF,WAAW,CAMP,aAAa,CAmBT,aAAa,AAAA,MAAM,CAAC;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,mBAAmB,ExBjCxB,IAAI,CwBiC6B,UAAU;EACtC,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI;CACnB;;AA3Db,AA4DY,MA5DN,CA4BF,WAAW,CAMP,aAAa,CA0BT,YAAY,CAAC;EACT,aAAa,EAAE,IAAI;CAItB;;AAjEb,AA8DgB,MA9DV,CA4BF,WAAW,CAMP,aAAa,CA0BT,YAAY,CAER,KAAK,CAAC;EACF,KAAK,ExB1CjB,OAAO;CwB2CE;;AAhEjB,AAmEQ,MAnEF,CA4BF,WAAW,CAuCP,OAAO,CAAC;EACJ,KAAK,ExB/CT,OAAO;EwBgDH,OAAO,EAAE,KAAK;EACd,eAAe,EAAE,IAAI;EACrB,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,IAAI;CACnB;;ACzET,AAAA,SAAS,CAAC;EACN,UAAU,EAAE,KAAK;CAyCpB;;AA1CD,AAEI,SAFK,CAEL,WAAW,CAAC;EACR,SAAS,EAAE,GAAG;EACd,MAAM,EAAE,IAAI;CAqCf;;AAzCL,AAKQ,SALC,CAEL,WAAW,CAGP,CAAC,CAAC;EACE,cAAc,EAAE,IAAI;CACvB;;AAPT,AAQQ,SARC,CAEL,WAAW,CAMP,aAAa,CAAC;EACV,UAAU,EAAE,IAAI;CA+BnB;;AAxCT,AAUY,SAVH,CAEL,WAAW,CAMP,aAAa,CAET,aAAa,CAAC;EACV,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,2BAA2B;EACnC,OAAO,EAAE,gBAAgB;EACzB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,WAAW;EAC5B,MAAM,EAAE,iBAAiB;EACzB,YAAY,EAAE,WAAW;EACzB,mBAAmB,EzBAxB,IAAI;EyBCC,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,4DAA4D;CAC3E;;AA1Bb,AA2BY,SA3BH,CAEL,WAAW,CAMP,aAAa,CAmBT,aAAa,AAAA,MAAM,CAAC;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,mBAAmB,EzBPxB,IAAI,CyBO6B,UAAU;EACtC,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI;CACnB;;AAjCb,AAkCY,SAlCH,CAEL,WAAW,CAMP,aAAa,CA0BT,YAAY,CAAC;EACT,aAAa,EAAE,IAAI;CAItB;;AAvCb,AAoCgB,SApCP,CAEL,WAAW,CAMP,aAAa,CA0BT,YAAY,CAER,KAAK,CAAC;EACF,KAAK,EzBhBjB,OAAO;CyBiBE;;ACtCjB,AAAA,QAAQ,CAAC;EACL,UAAU,EAAE,KAAK;CAwHpB;;AAzHD,AAGQ,QAHA,CAEJ,IAAI,CACA,SAAS,CAAC;EACN,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,KAAK;EACjB,MAAM,EAAE,KAAK;EACb,MAAM,EAAE,IAAI;CAOf;;AAdT,AAQY,QARJ,CAEJ,IAAI,CACA,SAAS,CAKL,SAAS,CAAC;EACN,QAAQ,EAAE,MAAM;EAChB,UAAU,EAAE,eAAe;EAC3B,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;CACd;;AAbb,AAgBI,QAhBI,CAgBJ,aAAa,CAAC;EACV,UAAU,EAAE,IAAI;CAsBnB;;AAvCL,AAkBQ,QAlBA,CAgBJ,aAAa,CAET,aAAa,CAAC;EACV,UAAU,EAAE,KAAK;CAmBpB;;AAtCT,AAoBY,QApBJ,CAgBJ,aAAa,CAET,aAAa,CAET,QAAQ,CAAC;EACL,OAAO,EAAE,IAAI;EACb,aAAa,EAAE,IAAI;CAetB;;AArCb,AAuBgB,QAvBR,CAgBJ,aAAa,CAET,aAAa,CAET,QAAQ,CAGJ,IAAI,CAAC;EACD,KAAK,E1BVR,OAAO;E0BWJ,SAAS,EAAE,IAAI;CAClB;;AA1BjB,AA2BgB,QA3BR,CAgBJ,aAAa,CAET,aAAa,CAET,QAAQ,CAOJ,GAAG,CAAC;EACA,YAAY,EAAE,IAAI;CAQrB;;AApCjB,AA6BoB,QA7BZ,CAgBJ,aAAa,CAET,aAAa,CAET,QAAQ,CAOJ,GAAG,CAEC,EAAE,CAAC;EACC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;AAhCrB,AAiCoB,QAjCZ,CAgBJ,aAAa,CAET,aAAa,CAET,QAAQ,CAOJ,GAAG,CAMC,CAAC,CAAC;EACE,KAAK,E1BbrB,OAAO;C0BcM;;AAnCrB,AAyCQ,QAzCA,CAwCJ,cAAc,CACV,aAAa,AAAA,MAAM,CAAC;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB;CACrD;;AA9CT,AA+CQ,QA/CA,CAwCJ,cAAc,CAOV,qBAAqB,AAAA,QAAQ,GAAG,qBAAqB,AAAA,QAAQ,CAAC;EAC1D,KAAK,EAAE,GAAG;EACV,YAAY,EAAE,GAAG;EACjB,gBAAgB,EAAE,GAAG;EACrB,OAAO,EAAE,eAAe;EACxB,UAAU,EAAE,eAAe;CAC9B;;AArDT,AA8DQ,QA9DA,CAwCJ,cAAc,CAsBV,iBAAiB,AAAA,QAAQ,CAAC;EACtB,OAAO,EAAE,eAAe;EACxB,UAAU,EAAE,eAAe;CAC9B;;AAjET,AAkEQ,QAlEA,CAwCJ,cAAc,CA0BV,aAAa,CAAC;EACV,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,yBAAyB;EACjC,OAAO,EAAE,gBAAgB;EACzB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAO;EACzB,eAAe,EAAE,WAAW;EAC5B,MAAM,EAAE,SAAS;EACjB,YAAY,E1BhEP,OAAO,C0BgEW,UAAU;EACjC,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,4DAA4D;CAC3E;;AAjFT,AAkFQ,QAlFA,CAwCJ,cAAc,CA0CV,KAAK,CAAC;EACF,MAAM,EAAE,IAAI;EACZ,gBAAgB,EAAE,OAAO;CAmC5B;;AAvHT,AAsFgB,QAtFR,CAwCJ,cAAc,CA0CV,KAAK,CAGD,UAAU,CACN,QAAQ,CAAC;EACL,KAAK,E1BlEjB,OAAO;C0BsEE;;AA3FjB,AAwFoB,QAxFZ,CAwCJ,cAAc,CA0CV,KAAK,CAGD,UAAU,CACN,QAAQ,CAEJ,MAAM,CAAC;EACH,KAAK,E1BlElB,IAAI;C0BmEM;;AA1FrB,AA4FgB,QA5FR,CAwCJ,cAAc,CA0CV,KAAK,CAGD,UAAU,CAON,qBAAqB,AAAA,QAAQ,GAAG,qBAAqB,AAAA,QAAQ,CAAC;EAC1D,KAAK,E1BzDlB,OAAO;E0B0DM,YAAY,E1B1DzB,OAAO;E0B2DM,gBAAgB,E1B3D7B,OAAO;E0B4DM,OAAO,EAAE,IAAI;CAChB;;AAjGjB,AAkGgB,QAlGR,CAwCJ,cAAc,CA0CV,KAAK,CAGD,UAAU,CAaN,iBAAiB,AAAA,QAAQ,GAAG,iBAAiB,AAAA,QAAQ,CAAC;EAClD,KAAK,E1B/DlB,OAAO,C0B+DoB,UAAU;EACxB,YAAY,E1BhEzB,OAAO,C0BgE2B,UAAU;EAC/B,gBAAgB,E1BjE7B,OAAO,C0BiE+B,UAAU;EACnC,OAAO,EAAE,EAAE;CACd;;AAvGjB,AA0GoB,QA1GZ,CAwCJ,cAAc,CA0CV,KAAK,CAGD,UAAU,CAmBN,MAAM,CAAA,AAAA,IAAC,CAAK,UAAU,AAAf,CAEF,OAAO;AA1G5B,QAAQ,CAwCJ,cAAc,CA0CV,KAAK,CAGD,UAAU,CAoBN,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CACD,OAAO,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,OAAO;EACZ,IAAI,EAAE,OAAO;EACb,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,cAAc,EAAE,IAAI;EACpB,gBAAgB,EAAE,OAAgB;EAClC,MAAM,EAAE,iBAAiB;CAC5B", + "sources": [ + "../scss/style.scss", + "../scss/_variables.scss", + "../scss/_normalize.scss", + "../scss/_common.scss", + "../scss/_elements.scss", + "../scss/components/_components.scss", + "../scss/components/_banner.scss", + "../scss/components/_button.scss", + "../scss/components/_products.scss", + "../scss/layout/_layouts.scss", + "../scss/layout/_navigation.scss", + "../scss/layout/_footer.scss", + "../scss/layout/_sidebar.scss", + "../scss/pages/_pages.scss", + "../scss/pages/home/_home.scss", + "../scss/pages/home/_services.scss", + "../scss/pages/home/_offers.scss", + "../scss/pages/home/_hot.scss", + "../scss/pages/home/_brands.scss", + "../scss/pages/home/_deals.scss", + "../scss/pages/_shop.scss", + "../scss/pages/_preview.scss", + "../scss/pages/_checkout.scss", + "../scss/pages/_cart.scss", + "../scss/pages/_confirmation.scss", + "../scss/pages/_login.scss", + "../scss/pages/_tracking.scss", + "../scss/pages/_contact.scss" + ], + "names": [], + "file": "style.css" +} \ No newline at end of file diff --git a/theme_lego/static/src/img/banner/banner-1.png b/theme_lego/static/src/img/banner/banner-1.png new file mode 100644 index 000000000..ce5709e42 Binary files /dev/null and b/theme_lego/static/src/img/banner/banner-1.png differ diff --git a/theme_lego/static/src/img/banner/banner-bg.jpg b/theme_lego/static/src/img/banner/banner-bg.jpg new file mode 100644 index 000000000..afce07f08 Binary files /dev/null and b/theme_lego/static/src/img/banner/banner-bg.jpg differ diff --git a/theme_lego/static/src/img/blog/add.jpg b/theme_lego/static/src/img/blog/add.jpg new file mode 100644 index 000000000..f04fa80af Binary files /dev/null and b/theme_lego/static/src/img/blog/add.jpg differ diff --git a/theme_lego/static/src/img/blog/author.png b/theme_lego/static/src/img/blog/author.png new file mode 100644 index 000000000..8d8893a25 Binary files /dev/null and b/theme_lego/static/src/img/blog/author.png differ diff --git a/theme_lego/static/src/img/blog/c1.jpg b/theme_lego/static/src/img/blog/c1.jpg new file mode 100644 index 000000000..c59d4bfb1 Binary files /dev/null and b/theme_lego/static/src/img/blog/c1.jpg differ diff --git a/theme_lego/static/src/img/blog/c2.jpg b/theme_lego/static/src/img/blog/c2.jpg new file mode 100644 index 000000000..dc601f4de Binary files /dev/null and b/theme_lego/static/src/img/blog/c2.jpg differ diff --git a/theme_lego/static/src/img/blog/c3.jpg b/theme_lego/static/src/img/blog/c3.jpg new file mode 100644 index 000000000..d8086dbfa Binary files /dev/null and b/theme_lego/static/src/img/blog/c3.jpg differ diff --git a/theme_lego/static/src/img/blog/c4.jpg b/theme_lego/static/src/img/blog/c4.jpg new file mode 100644 index 000000000..88fccaec0 Binary files /dev/null and b/theme_lego/static/src/img/blog/c4.jpg differ diff --git a/theme_lego/static/src/img/blog/c5.jpg b/theme_lego/static/src/img/blog/c5.jpg new file mode 100644 index 000000000..9397bc321 Binary files /dev/null and b/theme_lego/static/src/img/blog/c5.jpg differ diff --git a/theme_lego/static/src/img/blog/c6.jpg b/theme_lego/static/src/img/blog/c6.jpg new file mode 100644 index 000000000..8d56fc0fc Binary files /dev/null and b/theme_lego/static/src/img/blog/c6.jpg differ diff --git a/theme_lego/static/src/img/blog/cat-post/cat-post-1.jpg b/theme_lego/static/src/img/blog/cat-post/cat-post-1.jpg new file mode 100644 index 000000000..85df6ce84 Binary files /dev/null and b/theme_lego/static/src/img/blog/cat-post/cat-post-1.jpg differ diff --git a/theme_lego/static/src/img/blog/cat-post/cat-post-2.jpg b/theme_lego/static/src/img/blog/cat-post/cat-post-2.jpg new file mode 100644 index 000000000..7969c5d66 Binary files /dev/null and b/theme_lego/static/src/img/blog/cat-post/cat-post-2.jpg differ diff --git a/theme_lego/static/src/img/blog/cat-post/cat-post-3.jpg b/theme_lego/static/src/img/blog/cat-post/cat-post-3.jpg new file mode 100644 index 000000000..095fc64af Binary files /dev/null and b/theme_lego/static/src/img/blog/cat-post/cat-post-3.jpg differ diff --git a/theme_lego/static/src/img/blog/causes/causes-1.jpg b/theme_lego/static/src/img/blog/causes/causes-1.jpg new file mode 100644 index 000000000..1808351e8 Binary files /dev/null and b/theme_lego/static/src/img/blog/causes/causes-1.jpg differ diff --git a/theme_lego/static/src/img/blog/causes/causes-2.jpg b/theme_lego/static/src/img/blog/causes/causes-2.jpg new file mode 100644 index 000000000..b18950e72 Binary files /dev/null and b/theme_lego/static/src/img/blog/causes/causes-2.jpg differ diff --git a/theme_lego/static/src/img/blog/causes/causes-3.jpg b/theme_lego/static/src/img/blog/causes/causes-3.jpg new file mode 100644 index 000000000..a5f12c6da Binary files /dev/null and b/theme_lego/static/src/img/blog/causes/causes-3.jpg differ diff --git a/theme_lego/static/src/img/blog/feature-img1.jpg b/theme_lego/static/src/img/blog/feature-img1.jpg new file mode 100644 index 000000000..eb117b12c Binary files /dev/null and b/theme_lego/static/src/img/blog/feature-img1.jpg differ diff --git a/theme_lego/static/src/img/blog/latest-post/l-post-1.jpg b/theme_lego/static/src/img/blog/latest-post/l-post-1.jpg new file mode 100644 index 000000000..1eca2b83d Binary files /dev/null and b/theme_lego/static/src/img/blog/latest-post/l-post-1.jpg differ diff --git a/theme_lego/static/src/img/blog/latest-post/l-post-2.jpg b/theme_lego/static/src/img/blog/latest-post/l-post-2.jpg new file mode 100644 index 000000000..8af01ea6b Binary files /dev/null and b/theme_lego/static/src/img/blog/latest-post/l-post-2.jpg differ diff --git a/theme_lego/static/src/img/blog/latest-post/l-post-3.jpg b/theme_lego/static/src/img/blog/latest-post/l-post-3.jpg new file mode 100644 index 000000000..18560feb3 Binary files /dev/null and b/theme_lego/static/src/img/blog/latest-post/l-post-3.jpg differ diff --git a/theme_lego/static/src/img/blog/latest-post/l-post-4.jpg b/theme_lego/static/src/img/blog/latest-post/l-post-4.jpg new file mode 100644 index 000000000..1e3c4d96a Binary files /dev/null and b/theme_lego/static/src/img/blog/latest-post/l-post-4.jpg differ diff --git a/theme_lego/static/src/img/blog/main-blog/m-blog-1.jpg b/theme_lego/static/src/img/blog/main-blog/m-blog-1.jpg new file mode 100644 index 000000000..ef842e9a8 Binary files /dev/null and b/theme_lego/static/src/img/blog/main-blog/m-blog-1.jpg differ diff --git a/theme_lego/static/src/img/blog/main-blog/m-blog-2.jpg b/theme_lego/static/src/img/blog/main-blog/m-blog-2.jpg new file mode 100644 index 000000000..2ea1b791c Binary files /dev/null and b/theme_lego/static/src/img/blog/main-blog/m-blog-2.jpg differ diff --git a/theme_lego/static/src/img/blog/main-blog/m-blog-3.jpg b/theme_lego/static/src/img/blog/main-blog/m-blog-3.jpg new file mode 100644 index 000000000..588a609e0 Binary files /dev/null and b/theme_lego/static/src/img/blog/main-blog/m-blog-3.jpg differ diff --git a/theme_lego/static/src/img/blog/main-blog/m-blog-4.jpg b/theme_lego/static/src/img/blog/main-blog/m-blog-4.jpg new file mode 100644 index 000000000..f71baa0c7 Binary files /dev/null and b/theme_lego/static/src/img/blog/main-blog/m-blog-4.jpg differ diff --git a/theme_lego/static/src/img/blog/main-blog/m-blog-5.jpg b/theme_lego/static/src/img/blog/main-blog/m-blog-5.jpg new file mode 100644 index 000000000..f81e83307 Binary files /dev/null and b/theme_lego/static/src/img/blog/main-blog/m-blog-5.jpg differ diff --git a/theme_lego/static/src/img/blog/next.jpg b/theme_lego/static/src/img/blog/next.jpg new file mode 100644 index 000000000..03134da3b Binary files /dev/null and b/theme_lego/static/src/img/blog/next.jpg differ diff --git a/theme_lego/static/src/img/blog/popular-post/post1.jpg b/theme_lego/static/src/img/blog/popular-post/post1.jpg new file mode 100644 index 000000000..4c1de3644 Binary files /dev/null and b/theme_lego/static/src/img/blog/popular-post/post1.jpg differ diff --git a/theme_lego/static/src/img/blog/popular-post/post2.jpg b/theme_lego/static/src/img/blog/popular-post/post2.jpg new file mode 100644 index 000000000..1651ec924 Binary files /dev/null and b/theme_lego/static/src/img/blog/popular-post/post2.jpg differ diff --git a/theme_lego/static/src/img/blog/popular-post/post3.jpg b/theme_lego/static/src/img/blog/popular-post/post3.jpg new file mode 100644 index 000000000..3562e9bc4 Binary files /dev/null and b/theme_lego/static/src/img/blog/popular-post/post3.jpg differ diff --git a/theme_lego/static/src/img/blog/popular-post/post4.jpg b/theme_lego/static/src/img/blog/popular-post/post4.jpg new file mode 100644 index 000000000..3e83c192d Binary files /dev/null and b/theme_lego/static/src/img/blog/popular-post/post4.jpg differ diff --git a/theme_lego/static/src/img/blog/post-img1.jpg b/theme_lego/static/src/img/blog/post-img1.jpg new file mode 100644 index 000000000..205cb40b4 Binary files /dev/null and b/theme_lego/static/src/img/blog/post-img1.jpg differ diff --git a/theme_lego/static/src/img/blog/post-img2.jpg b/theme_lego/static/src/img/blog/post-img2.jpg new file mode 100644 index 000000000..cb1067675 Binary files /dev/null and b/theme_lego/static/src/img/blog/post-img2.jpg differ diff --git a/theme_lego/static/src/img/blog/prev.jpg b/theme_lego/static/src/img/blog/prev.jpg new file mode 100644 index 000000000..f27c826ab Binary files /dev/null and b/theme_lego/static/src/img/blog/prev.jpg differ diff --git a/theme_lego/static/src/img/brand/1.png b/theme_lego/static/src/img/brand/1.png new file mode 100644 index 000000000..e22bce5aa Binary files /dev/null and b/theme_lego/static/src/img/brand/1.png differ diff --git a/theme_lego/static/src/img/brand/2.png b/theme_lego/static/src/img/brand/2.png new file mode 100644 index 000000000..a9faf47fc Binary files /dev/null and b/theme_lego/static/src/img/brand/2.png differ diff --git a/theme_lego/static/src/img/brand/3.png b/theme_lego/static/src/img/brand/3.png new file mode 100644 index 000000000..4d58ae907 Binary files /dev/null and b/theme_lego/static/src/img/brand/3.png differ diff --git a/theme_lego/static/src/img/brand/4.png b/theme_lego/static/src/img/brand/4.png new file mode 100644 index 000000000..33c2a4feb Binary files /dev/null and b/theme_lego/static/src/img/brand/4.png differ diff --git a/theme_lego/static/src/img/brand/5.png b/theme_lego/static/src/img/brand/5.png new file mode 100644 index 000000000..796e04bd8 Binary files /dev/null and b/theme_lego/static/src/img/brand/5.png differ diff --git a/theme_lego/static/src/img/cart.jpg b/theme_lego/static/src/img/cart.jpg new file mode 100644 index 000000000..253108344 Binary files /dev/null and b/theme_lego/static/src/img/cart.jpg differ diff --git a/theme_lego/static/src/img/cart2.jpg b/theme_lego/static/src/img/cart2.jpg new file mode 100644 index 000000000..41037751f Binary files /dev/null and b/theme_lego/static/src/img/cart2.jpg differ diff --git a/theme_lego/static/src/img/category/c1.jpg b/theme_lego/static/src/img/category/c1.jpg new file mode 100644 index 000000000..714d5990a Binary files /dev/null and b/theme_lego/static/src/img/category/c1.jpg differ diff --git a/theme_lego/static/src/img/category/c1L.jpg b/theme_lego/static/src/img/category/c1L.jpg new file mode 100644 index 000000000..399a0c920 Binary files /dev/null and b/theme_lego/static/src/img/category/c1L.jpg differ diff --git a/theme_lego/static/src/img/category/c2.jpg b/theme_lego/static/src/img/category/c2.jpg new file mode 100644 index 000000000..ea45d029b Binary files /dev/null and b/theme_lego/static/src/img/category/c2.jpg differ diff --git a/theme_lego/static/src/img/category/c2L.jpg b/theme_lego/static/src/img/category/c2L.jpg new file mode 100644 index 000000000..1f414023b Binary files /dev/null and b/theme_lego/static/src/img/category/c2L.jpg differ diff --git a/theme_lego/static/src/img/category/c3.jpg b/theme_lego/static/src/img/category/c3.jpg new file mode 100644 index 000000000..d1952b0a6 Binary files /dev/null and b/theme_lego/static/src/img/category/c3.jpg differ diff --git a/theme_lego/static/src/img/category/c3L.jpg b/theme_lego/static/src/img/category/c3L.jpg new file mode 100644 index 000000000..f870e4313 Binary files /dev/null and b/theme_lego/static/src/img/category/c3L.jpg differ diff --git a/theme_lego/static/src/img/category/c4.jpg b/theme_lego/static/src/img/category/c4.jpg new file mode 100644 index 000000000..828980f5b Binary files /dev/null and b/theme_lego/static/src/img/category/c4.jpg differ diff --git a/theme_lego/static/src/img/category/c4L.jpg b/theme_lego/static/src/img/category/c4L.jpg new file mode 100644 index 000000000..11e06e111 Binary files /dev/null and b/theme_lego/static/src/img/category/c4L.jpg differ diff --git a/theme_lego/static/src/img/category/c5.jpg b/theme_lego/static/src/img/category/c5.jpg new file mode 100644 index 000000000..1ac8b3017 Binary files /dev/null and b/theme_lego/static/src/img/category/c5.jpg differ diff --git a/theme_lego/static/src/img/category/pexels-markus-spiske-191159.jpg b/theme_lego/static/src/img/category/pexels-markus-spiske-191159.jpg new file mode 100644 index 000000000..8814e4191 Binary files /dev/null and b/theme_lego/static/src/img/category/pexels-markus-spiske-191159.jpg differ diff --git a/theme_lego/static/src/img/category/s-p1.jpg b/theme_lego/static/src/img/category/s-p1.jpg new file mode 100644 index 000000000..6fa789b6f Binary files /dev/null and b/theme_lego/static/src/img/category/s-p1.jpg differ diff --git a/theme_lego/static/src/img/deals/pexels-min-an-1437149.jpg b/theme_lego/static/src/img/deals/pexels-min-an-1437149.jpg new file mode 100644 index 000000000..ff8dc1f8c Binary files /dev/null and b/theme_lego/static/src/img/deals/pexels-min-an-1437149.jpg differ diff --git a/theme_lego/static/src/img/deals/pexels-ray-piedra-1478441.jpg b/theme_lego/static/src/img/deals/pexels-ray-piedra-1478441.jpg new file mode 100644 index 000000000..fbcf3806d Binary files /dev/null and b/theme_lego/static/src/img/deals/pexels-ray-piedra-1478441.jpg differ diff --git a/theme_lego/static/src/img/deals/pexels-ray-piedra-1537671.jpg b/theme_lego/static/src/img/deals/pexels-ray-piedra-1537671.jpg new file mode 100644 index 000000000..ef6271ec3 Binary files /dev/null and b/theme_lego/static/src/img/deals/pexels-ray-piedra-1537671.jpg differ diff --git a/theme_lego/static/src/img/deals/pexels-wallace-chuck-2838793.jpg b/theme_lego/static/src/img/deals/pexels-wallace-chuck-2838793.jpg new file mode 100644 index 000000000..c6cf07666 Binary files /dev/null and b/theme_lego/static/src/img/deals/pexels-wallace-chuck-2838793.jpg differ diff --git a/theme_lego/static/src/img/deals/pexels-wallace-chuck-3261069.jpg b/theme_lego/static/src/img/deals/pexels-wallace-chuck-3261069.jpg new file mode 100644 index 000000000..8cbe433fd Binary files /dev/null and b/theme_lego/static/src/img/deals/pexels-wallace-chuck-3261069.jpg differ diff --git a/theme_lego/static/src/img/deals/r1.jpg b/theme_lego/static/src/img/deals/r1.jpg new file mode 100644 index 000000000..af2cd29d4 Binary files /dev/null and b/theme_lego/static/src/img/deals/r1.jpg differ diff --git a/theme_lego/static/src/img/deals/r10.jpg b/theme_lego/static/src/img/deals/r10.jpg new file mode 100644 index 000000000..4a81b8ab6 Binary files /dev/null and b/theme_lego/static/src/img/deals/r10.jpg differ diff --git a/theme_lego/static/src/img/deals/r11.jpg b/theme_lego/static/src/img/deals/r11.jpg new file mode 100644 index 000000000..b0f54c26c Binary files /dev/null and b/theme_lego/static/src/img/deals/r11.jpg differ diff --git a/theme_lego/static/src/img/deals/r12.jpg b/theme_lego/static/src/img/deals/r12.jpg new file mode 100644 index 000000000..7f0cc9a31 Binary files /dev/null and b/theme_lego/static/src/img/deals/r12.jpg differ diff --git a/theme_lego/static/src/img/deals/r2.jpg b/theme_lego/static/src/img/deals/r2.jpg new file mode 100644 index 000000000..ef02f14f7 Binary files /dev/null and b/theme_lego/static/src/img/deals/r2.jpg differ diff --git a/theme_lego/static/src/img/deals/r3.jpg b/theme_lego/static/src/img/deals/r3.jpg new file mode 100644 index 000000000..62ec4bc57 Binary files /dev/null and b/theme_lego/static/src/img/deals/r3.jpg differ diff --git a/theme_lego/static/src/img/deals/r4.jpg b/theme_lego/static/src/img/deals/r4.jpg new file mode 100644 index 000000000..48a747b2c Binary files /dev/null and b/theme_lego/static/src/img/deals/r4.jpg differ diff --git a/theme_lego/static/src/img/deals/r5.jpg b/theme_lego/static/src/img/deals/r5.jpg new file mode 100644 index 000000000..cb62303bc Binary files /dev/null and b/theme_lego/static/src/img/deals/r5.jpg differ diff --git a/theme_lego/static/src/img/deals/r6.jpg b/theme_lego/static/src/img/deals/r6.jpg new file mode 100644 index 000000000..f4c6315e9 Binary files /dev/null and b/theme_lego/static/src/img/deals/r6.jpg differ diff --git a/theme_lego/static/src/img/deals/r7.jpg b/theme_lego/static/src/img/deals/r7.jpg new file mode 100644 index 000000000..a75b4eaee Binary files /dev/null and b/theme_lego/static/src/img/deals/r7.jpg differ diff --git a/theme_lego/static/src/img/deals/r8.jpg b/theme_lego/static/src/img/deals/r8.jpg new file mode 100644 index 000000000..5a8555f9c Binary files /dev/null and b/theme_lego/static/src/img/deals/r8.jpg differ diff --git a/theme_lego/static/src/img/deals/r9.jpg b/theme_lego/static/src/img/deals/r9.jpg new file mode 100644 index 000000000..8e5071f0e Binary files /dev/null and b/theme_lego/static/src/img/deals/r9.jpg differ diff --git a/theme_lego/static/src/img/deals/xcx.jpg b/theme_lego/static/src/img/deals/xcx.jpg new file mode 100644 index 000000000..c63d61acb Binary files /dev/null and b/theme_lego/static/src/img/deals/xcx.jpg differ diff --git a/theme_lego/static/src/img/exclusive.jpg b/theme_lego/static/src/img/exclusive.jpg new file mode 100644 index 000000000..e73ba1290 Binary files /dev/null and b/theme_lego/static/src/img/exclusive.jpg differ diff --git a/theme_lego/static/src/img/instagram/i1.jpg b/theme_lego/static/src/img/instagram/i1.jpg new file mode 100644 index 000000000..36fead470 Binary files /dev/null and b/theme_lego/static/src/img/instagram/i1.jpg differ diff --git a/theme_lego/static/src/img/instagram/i2.jpg b/theme_lego/static/src/img/instagram/i2.jpg new file mode 100644 index 000000000..9446b574e Binary files /dev/null and b/theme_lego/static/src/img/instagram/i2.jpg differ diff --git a/theme_lego/static/src/img/instagram/i3.jpg b/theme_lego/static/src/img/instagram/i3.jpg new file mode 100644 index 000000000..9d865c518 Binary files /dev/null and b/theme_lego/static/src/img/instagram/i3.jpg differ diff --git a/theme_lego/static/src/img/instagram/i4.jpg b/theme_lego/static/src/img/instagram/i4.jpg new file mode 100644 index 000000000..ed75c2e9f Binary files /dev/null and b/theme_lego/static/src/img/instagram/i4.jpg differ diff --git a/theme_lego/static/src/img/instagram/i5.jpg b/theme_lego/static/src/img/instagram/i5.jpg new file mode 100644 index 000000000..99a560625 Binary files /dev/null and b/theme_lego/static/src/img/instagram/i5.jpg differ diff --git a/theme_lego/static/src/img/instagram/i6.jpg b/theme_lego/static/src/img/instagram/i6.jpg new file mode 100644 index 000000000..8d930ae18 Binary files /dev/null and b/theme_lego/static/src/img/instagram/i6.jpg differ diff --git a/theme_lego/static/src/img/instagram/i7.jpg b/theme_lego/static/src/img/instagram/i7.jpg new file mode 100644 index 000000000..17f3a26d5 Binary files /dev/null and b/theme_lego/static/src/img/instagram/i7.jpg differ diff --git a/theme_lego/static/src/img/instagram/i8.jpg b/theme_lego/static/src/img/instagram/i8.jpg new file mode 100644 index 000000000..9446b574e Binary files /dev/null and b/theme_lego/static/src/img/instagram/i8.jpg differ diff --git a/theme_lego/static/src/img/l.jpg b/theme_lego/static/src/img/l.jpg new file mode 100644 index 000000000..0e0b8fa0c Binary files /dev/null and b/theme_lego/static/src/img/l.jpg differ diff --git a/theme_lego/static/src/img/login/login.jpg b/theme_lego/static/src/img/login/login.jpg new file mode 100644 index 000000000..bf68cc88f Binary files /dev/null and b/theme_lego/static/src/img/login/login.jpg differ diff --git a/theme_lego/static/src/img/product/P1.jpg b/theme_lego/static/src/img/product/P1.jpg new file mode 100644 index 000000000..4cc7b97d0 Binary files /dev/null and b/theme_lego/static/src/img/product/P1.jpg differ diff --git a/theme_lego/static/src/img/product/e-p1.jpg b/theme_lego/static/src/img/product/e-p1.jpg new file mode 100644 index 000000000..ed54c43c7 Binary files /dev/null and b/theme_lego/static/src/img/product/e-p1.jpg differ diff --git a/theme_lego/static/src/img/product/p2.jpg b/theme_lego/static/src/img/product/p2.jpg new file mode 100644 index 000000000..7bca589fe Binary files /dev/null and b/theme_lego/static/src/img/product/p2.jpg differ diff --git a/theme_lego/static/src/img/product/p3.jpg b/theme_lego/static/src/img/product/p3.jpg new file mode 100644 index 000000000..e15802934 Binary files /dev/null and b/theme_lego/static/src/img/product/p3.jpg differ diff --git a/theme_lego/static/src/img/product/p4.jpg b/theme_lego/static/src/img/product/p4.jpg new file mode 100644 index 000000000..fcd4ac498 Binary files /dev/null and b/theme_lego/static/src/img/product/p4.jpg differ diff --git a/theme_lego/static/src/img/product/p5.jpg b/theme_lego/static/src/img/product/p5.jpg new file mode 100644 index 000000000..6de0b1a89 Binary files /dev/null and b/theme_lego/static/src/img/product/p5.jpg differ diff --git a/theme_lego/static/src/img/product/p6.jpg b/theme_lego/static/src/img/product/p6.jpg new file mode 100644 index 000000000..fdba4266d Binary files /dev/null and b/theme_lego/static/src/img/product/p6.jpg differ diff --git a/theme_lego/static/src/img/product/p7.jpg b/theme_lego/static/src/img/product/p7.jpg new file mode 100644 index 000000000..5f5fb2816 Binary files /dev/null and b/theme_lego/static/src/img/product/p7.jpg differ diff --git a/theme_lego/static/src/img/product/p8.jpg b/theme_lego/static/src/img/product/p8.jpg new file mode 100644 index 000000000..7b443b861 Binary files /dev/null and b/theme_lego/static/src/img/product/p8.jpg differ diff --git a/theme_lego/static/src/img/product/pexels-melvin-buezo-2529158.jpg b/theme_lego/static/src/img/product/pexels-melvin-buezo-2529158.jpg new file mode 100644 index 000000000..46ffc78f9 Binary files /dev/null and b/theme_lego/static/src/img/product/pexels-melvin-buezo-2529158.jpg differ diff --git a/theme_lego/static/src/img/product/pexels-mister-mister-3490360.jpg b/theme_lego/static/src/img/product/pexels-mister-mister-3490360.jpg new file mode 100644 index 000000000..c0047b1d3 Binary files /dev/null and b/theme_lego/static/src/img/product/pexels-mister-mister-3490360.jpg differ diff --git a/theme_lego/static/src/img/product/pexels-ray-piedra-1456706.jpg b/theme_lego/static/src/img/product/pexels-ray-piedra-1456706.jpg new file mode 100644 index 000000000..8a14cb32b Binary files /dev/null and b/theme_lego/static/src/img/product/pexels-ray-piedra-1456706.jpg differ diff --git a/theme_lego/static/src/img/product/review-1.png b/theme_lego/static/src/img/product/review-1.png new file mode 100644 index 000000000..81924ae01 Binary files /dev/null and b/theme_lego/static/src/img/product/review-1.png differ diff --git a/theme_lego/static/src/img/product/review-2.png b/theme_lego/static/src/img/product/review-2.png new file mode 100644 index 000000000..dd56a79d0 Binary files /dev/null and b/theme_lego/static/src/img/product/review-2.png differ diff --git a/theme_lego/static/src/img/product/review-3.png b/theme_lego/static/src/img/product/review-3.png new file mode 100644 index 000000000..d1d54aeb9 Binary files /dev/null and b/theme_lego/static/src/img/product/review-3.png differ diff --git a/theme_lego/static/src/img/sd/c1.jpg b/theme_lego/static/src/img/sd/c1.jpg new file mode 100644 index 000000000..21b802d51 Binary files /dev/null and b/theme_lego/static/src/img/sd/c1.jpg differ diff --git a/theme_lego/static/src/img/sd/c2.jpg b/theme_lego/static/src/img/sd/c2.jpg new file mode 100644 index 000000000..fd983d9ba Binary files /dev/null and b/theme_lego/static/src/img/sd/c2.jpg differ diff --git a/theme_lego/static/src/img/sd/c3.jpg b/theme_lego/static/src/img/sd/c3.jpg new file mode 100644 index 000000000..c4a5c315f Binary files /dev/null and b/theme_lego/static/src/img/sd/c3.jpg differ diff --git a/theme_lego/static/src/img/sd/c4.jpg b/theme_lego/static/src/img/sd/c4.jpg new file mode 100644 index 000000000..1ab87ddd6 Binary files /dev/null and b/theme_lego/static/src/img/sd/c4.jpg differ diff --git a/theme_lego/static/src/img/sd/c5.jpg b/theme_lego/static/src/img/sd/c5.jpg new file mode 100644 index 000000000..57e90fe38 Binary files /dev/null and b/theme_lego/static/src/img/sd/c5.jpg differ diff --git a/theme_lego/static/src/img/snippets/banner-block.jpg b/theme_lego/static/src/img/snippets/banner-block.jpg new file mode 100644 index 000000000..3a5423a3f Binary files /dev/null and b/theme_lego/static/src/img/snippets/banner-block.jpg differ diff --git a/theme_lego/static/src/img/snippets/brands-block.jpg b/theme_lego/static/src/img/snippets/brands-block.jpg new file mode 100644 index 000000000..c304fb71b Binary files /dev/null and b/theme_lego/static/src/img/snippets/brands-block.jpg differ diff --git a/theme_lego/static/src/img/snippets/contact-block.jpg b/theme_lego/static/src/img/snippets/contact-block.jpg new file mode 100644 index 000000000..772d5914d Binary files /dev/null and b/theme_lego/static/src/img/snippets/contact-block.jpg differ diff --git a/theme_lego/static/src/img/snippets/deals-of-the-day-blocks.jpg b/theme_lego/static/src/img/snippets/deals-of-the-day-blocks.jpg new file mode 100644 index 000000000..13fce2bb7 Binary files /dev/null and b/theme_lego/static/src/img/snippets/deals-of-the-day-blocks.jpg differ diff --git a/theme_lego/static/src/img/snippets/front-gallery-block.jpg b/theme_lego/static/src/img/snippets/front-gallery-block.jpg new file mode 100644 index 000000000..e3b5657c2 Binary files /dev/null and b/theme_lego/static/src/img/snippets/front-gallery-block.jpg differ diff --git a/theme_lego/static/src/img/snippets/half-columns-block.jpg b/theme_lego/static/src/img/snippets/half-columns-block.jpg new file mode 100644 index 000000000..65cbec636 Binary files /dev/null and b/theme_lego/static/src/img/snippets/half-columns-block.jpg differ diff --git a/theme_lego/static/src/img/snippets/home-banner-blockt.jpg b/theme_lego/static/src/img/snippets/home-banner-blockt.jpg new file mode 100644 index 000000000..50b10d4d3 Binary files /dev/null and b/theme_lego/static/src/img/snippets/home-banner-blockt.jpg differ diff --git a/theme_lego/static/src/img/snippets/login-block.jpg b/theme_lego/static/src/img/snippets/login-block.jpg new file mode 100644 index 000000000..32f08d9ef Binary files /dev/null and b/theme_lego/static/src/img/snippets/login-block.jpg differ diff --git a/theme_lego/static/src/img/snippets/map-block.jpg b/theme_lego/static/src/img/snippets/map-block.jpg new file mode 100644 index 000000000..9fe9cfebc Binary files /dev/null and b/theme_lego/static/src/img/snippets/map-block.jpg differ diff --git a/theme_lego/static/src/img/snippets/services-block.jpg b/theme_lego/static/src/img/snippets/services-block.jpg new file mode 100644 index 000000000..e00924ad7 Binary files /dev/null and b/theme_lego/static/src/img/snippets/services-block.jpg differ diff --git a/theme_lego/static/src/img/snippets/upcoming-products-blocks.jpg b/theme_lego/static/src/img/snippets/upcoming-products-blocks.jpg new file mode 100644 index 000000000..5613f6bb2 Binary files /dev/null and b/theme_lego/static/src/img/snippets/upcoming-products-blocks.jpg differ diff --git a/theme_lego/static/src/js/deal.js b/theme_lego/static/src/js/deal.js new file mode 100644 index 000000000..a8543f4de --- /dev/null +++ b/theme_lego/static/src/js/deal.js @@ -0,0 +1,19 @@ +odoo.define('theme_lego.deal_week', function(require){ +'use strict'; + +var Animation = require('website.content.snippets.animation'); +var ajax = require('web.ajax'); + +Animation.registry.deal_of_the_week = Animation.Class.extend({ + selector : '.deal', + start: function(){ + var self = this; + ajax.jsonRpc('/get_deal_of_the_week', 'call', {}) + .then(function (data) { + if(data){ + self.$target.empty().append(data); + } + }); + } + }); +}); diff --git a/theme_lego/static/src/js/index.js b/theme_lego/static/src/js/index.js new file mode 100644 index 000000000..e8092b05c --- /dev/null +++ b/theme_lego/static/src/js/index.js @@ -0,0 +1,55 @@ + + $(document).ready(function () { + $("#slider").owlCarousel( + { + items: 1, + loop: true, + margin: 30, + stagePadding: 30, + smartSpeed: 450, + autoplay: true, + autoPlaySpeed: 1000, + autoPlayTimeout: 1000, + autoplayHoverPause: true, + dots: true, + nav: true, + navText: ['', ''] + } + ); + }); + function counter() { + var buttons = $('.owl-dots button'); + buttons.each(function (index, item) { + $(item).find('span').text(index + 1); + }); + } + + + + $(document).ready(function () { + $("#owl-theme2").owlCarousel( + { + items: 1, + loop: true, + margin: 30, + stagePadding: 30, + smartSpeed: 450, + autoplay: true, + autoPlaySpeed: 1000, + autoPlayTimeout: 1000, + autoplayHoverPause: true, + dots: true, + nav: true, + navText: ['', ''] + } + ); + }); + function counter() { + var buttons = $('.owl-dots button'); + buttons.each(function (index, item) { + $(item).find('span').text(index + 1); + }); + } + + + diff --git a/theme_lego/static/src/js/owl.carousel.js b/theme_lego/static/src/js/owl.carousel.js new file mode 100644 index 000000000..66c67ebe0 --- /dev/null +++ b/theme_lego/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 = [ $('