@restaround/react 1.0.56 → 1.0.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/components/PublicMenu/CartItem/OptionsInfo/OptionsInfo.d.ts +9 -0
  2. package/dist/components/PublicMenu/CartItem/OptionsInfo/index.d.ts +1 -0
  3. package/dist/components/PublicMenu/ProductAddons/ProductAddons.d.ts +14 -0
  4. package/dist/components/PublicMenu/ProductAddons/index.d.ts +1 -0
  5. package/dist/components/PublicMenu/ProductDetails/ProductDetails.d.ts +1 -1
  6. package/dist/components/PublicMenu/ProductQuantity/ProductQuantity.d.ts +3 -1
  7. package/dist/components/PublicMenu/ProductVariants/ProductVariants.d.ts +9 -0
  8. package/dist/components/PublicMenu/ProductVariants/index.d.ts +1 -0
  9. package/dist/hooks/cart.d.ts +6 -1
  10. package/dist/hooks/product.d.ts +7 -2
  11. package/dist/index.esm.js +1 -1
  12. package/dist/index.esm.js.map +1 -1
  13. package/dist/index.js +1 -1
  14. package/dist/index.js.map +1 -1
  15. package/dist/models/addon.d.ts +30 -0
  16. package/dist/models/index.esm.js.map +1 -1
  17. package/dist/models/index.js.map +1 -1
  18. package/dist/models/order.d.ts +3 -0
  19. package/dist/models/product.d.ts +2 -0
  20. package/dist/store/cart.d.ts +5 -3
  21. package/dist/styles/ui.css +1 -1
  22. package/dist/styles/ui.css.map +1 -1
  23. package/dist/utils/addon.d.ts +14 -0
  24. package/dist/utils/cart.d.ts +2 -0
  25. package/dist/utils/cart.test.d.ts +1 -0
  26. package/dist/utils/common.d.ts +1 -1
  27. package/dist/utils/index.d.ts +6 -2
  28. package/dist/utils/index.esm.js +1 -1
  29. package/dist/utils/index.esm.js.map +1 -1
  30. package/dist/utils/index.js +1 -1
  31. package/dist/utils/index.js.map +1 -1
  32. package/dist/utils/models/addon.d.ts +30 -0
  33. package/dist/utils/models/order.d.ts +3 -0
  34. package/dist/utils/models/product.d.ts +2 -0
  35. package/dist/utils/product.d.ts +19 -1
  36. package/dist/utils/utils/addon.d.ts +14 -0
  37. package/dist/utils/utils/cart.d.ts +2 -0
  38. package/dist/utils/utils/cart.test.d.ts +1 -0
  39. package/dist/utils/utils/common.d.ts +1 -1
  40. package/dist/utils/utils/index.d.ts +6 -2
  41. package/dist/utils/utils/product.d.ts +19 -1
  42. package/package.json +17 -11
@@ -0,0 +1,30 @@
1
+ export declare enum MenuAddonSelectType {
2
+ SINGLE = "SINGLE",
3
+ MULTIPLE = "MULTIPLE"
4
+ }
5
+ export interface MenuAddonTranslation {
6
+ id?: number;
7
+ title: string;
8
+ language: string;
9
+ }
10
+ export interface MenuAddonOptionTranslation {
11
+ id?: number;
12
+ title: string;
13
+ language: string;
14
+ }
15
+ export interface MenuAddonOption {
16
+ id?: number;
17
+ price: number;
18
+ translations: MenuAddonOptionTranslation[];
19
+ remove?: boolean;
20
+ }
21
+ export interface MenuAddon {
22
+ id?: number;
23
+ selectType: MenuAddonSelectType;
24
+ translations: MenuAddonTranslation[];
25
+ options: MenuAddonOption[];
26
+ businessId?: number;
27
+ }
28
+ export interface SelectedAddons {
29
+ [key: number]: number | number[];
30
+ }
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":["../../src/models/product.ts"],"sourcesContent":["export interface ProductTranslation {\n\tid: number;\n\tname: string;\n\tdescription?: string;\n\tlanguage: string;\n\tproductId: number;\n}\n\nexport interface ProductVariantTranslations {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface ProductVariant {\n\tid?: number;\n\tprice: number;\n\ttranslations: ProductVariantTranslations[];\n\tproductId?: number;\n\tremove?: boolean;\n}\n\nexport interface Product {\n\tid: number;\n\tcategoryId: number;\n\tvat?: number;\n\tprice: number;\n\tvolume?: string; // 100qr/250ml/1kq\n\timage160?: string;\n\timage580?: string;\n\timage1024?: string;\n\ttranslations: ProductTranslation[];\n\tvariants: ProductVariant[];\n}\n\nexport enum ProductView {\n\tLIST = \"list\",\n\tGRID = \"grid\",\n}\n"],"names":["ProductView"],"mappings":"IAmCYA,GAAZ,SAAYA,GACXA,EAAA,KAAA,OACAA,EAAA,KAAA,MACA,CAHD,CAAYA,IAAAA,EAGX,CAAA"}
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/models/product.ts"],"sourcesContent":["import { MenuAddon } from \"./addon\";\n\nexport interface ProductTranslation {\n\tid: number;\n\tname: string;\n\tdescription?: string;\n\tlanguage: string;\n\tproductId: number;\n}\n\nexport interface ProductVariantTranslations {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface ProductVariant {\n\tid?: number;\n\tprice: number;\n\ttranslations: ProductVariantTranslations[];\n\tproductId?: number;\n\tremove?: boolean;\n}\n\nexport interface Product {\n\tid: number;\n\tcategoryId: number;\n\tvat?: number;\n\tprice: number;\n\tvolume?: string; // 100qr/250ml/1kq\n\timage160?: string;\n\timage580?: string;\n\timage1024?: string;\n\ttranslations: ProductTranslation[];\n\tvariants: ProductVariant[];\n\taddons: MenuAddon[];\n}\n\nexport enum ProductView {\n\tLIST = \"list\",\n\tGRID = \"grid\",\n}\n"],"names":["ProductView"],"mappings":"IAsCYA,GAAZ,SAAYA,GACXA,EAAA,KAAA,OACAA,EAAA,KAAA,MACA,CAHD,CAAYA,IAAAA,EAGX,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../src/models/product.ts"],"sourcesContent":["export interface ProductTranslation {\n\tid: number;\n\tname: string;\n\tdescription?: string;\n\tlanguage: string;\n\tproductId: number;\n}\n\nexport interface ProductVariantTranslations {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface ProductVariant {\n\tid?: number;\n\tprice: number;\n\ttranslations: ProductVariantTranslations[];\n\tproductId?: number;\n\tremove?: boolean;\n}\n\nexport interface Product {\n\tid: number;\n\tcategoryId: number;\n\tvat?: number;\n\tprice: number;\n\tvolume?: string; // 100qr/250ml/1kq\n\timage160?: string;\n\timage580?: string;\n\timage1024?: string;\n\ttranslations: ProductTranslation[];\n\tvariants: ProductVariant[];\n}\n\nexport enum ProductView {\n\tLIST = \"list\",\n\tGRID = \"grid\",\n}\n"],"names":["ProductView"],"mappings":"aAmCA,IAAYA,EAAAA,QAGXA,iBAAA,GAHWA,EAAAA,QAAWA,cAAXA,oBAGX,CAAA,IAFA,KAAA,OACAA,EAAA,KAAA"}
1
+ {"version":3,"file":"index.js","sources":["../../src/models/product.ts"],"sourcesContent":["import { MenuAddon } from \"./addon\";\n\nexport interface ProductTranslation {\n\tid: number;\n\tname: string;\n\tdescription?: string;\n\tlanguage: string;\n\tproductId: number;\n}\n\nexport interface ProductVariantTranslations {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface ProductVariant {\n\tid?: number;\n\tprice: number;\n\ttranslations: ProductVariantTranslations[];\n\tproductId?: number;\n\tremove?: boolean;\n}\n\nexport interface Product {\n\tid: number;\n\tcategoryId: number;\n\tvat?: number;\n\tprice: number;\n\tvolume?: string; // 100qr/250ml/1kq\n\timage160?: string;\n\timage580?: string;\n\timage1024?: string;\n\ttranslations: ProductTranslation[];\n\tvariants: ProductVariant[];\n\taddons: MenuAddon[];\n}\n\nexport enum ProductView {\n\tLIST = \"list\",\n\tGRID = \"grid\",\n}\n"],"names":["ProductView"],"mappings":"aAsCA,IAAYA,EAAAA,QAGXA,iBAAA,GAHWA,EAAAA,QAAWA,cAAXA,oBAGX,CAAA,IAFA,KAAA,OACAA,EAAA,KAAA"}
@@ -1,3 +1,4 @@
1
+ import { SelectedAddons } from "./addon";
1
2
  export declare enum OrderType {
2
3
  DINEIN = "dine-in",
3
4
  TAKEAWAY = "takeaway",
@@ -36,8 +37,10 @@ export interface CartItem {
36
37
  productId: number;
37
38
  variantId?: number;
38
39
  price: number;
40
+ optionsPrice?: number;
39
41
  quantity: number;
40
42
  vat?: number;
43
+ selectedAddons?: SelectedAddons;
41
44
  }
42
45
  export interface Cart {
43
46
  [key: string]: CartItem;
@@ -1,3 +1,4 @@
1
+ import { MenuAddon } from "./addon";
1
2
  export interface ProductTranslation {
2
3
  id: number;
3
4
  name: string;
@@ -28,6 +29,7 @@ export interface Product {
28
29
  image1024?: string;
29
30
  translations: ProductTranslation[];
30
31
  variants: ProductVariant[];
32
+ addons: MenuAddon[];
31
33
  }
32
34
  export declare enum ProductView {
33
35
  LIST = "list",
@@ -1,16 +1,18 @@
1
1
  import { ReactNode } from "react";
2
- import { Product } from "src/models";
2
+ import { Product } from "src/models/product";
3
+ import { SelectedAddons } from "src/models/addon";
3
4
  import { Cart } from "src/models/order";
4
5
  type UpdateCartProductParams = {
5
6
  product: Product;
6
7
  quantity?: number;
7
8
  variantId?: number;
9
+ selectedAddons?: SelectedAddons;
8
10
  };
9
11
  type CartContent = {
10
12
  cart: Cart;
11
13
  isCartOpen: boolean;
12
- addProduct: ({ product, quantity, variantId }: UpdateCartProductParams) => void;
13
- updateProduct: ({ product, quantity, variantId }: UpdateCartProductParams) => void;
14
+ addProduct: (params: UpdateCartProductParams) => void;
15
+ updateProduct: (params: UpdateCartProductParams) => void;
14
16
  removeAllProductVariants: (productId: number) => void;
15
17
  setIsCartOpen: (state: boolean) => void;
16
18
  };
@@ -1,2 +1,2 @@
1
- @keyframes PublicMenu-module_flexWide__M9IEY{0%{flex:0}to{flex:1}}@keyframes PublicMenu-module_slidein__kwZ1c{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes PublicMenu-module_fadeInOut__ORUVR{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes PublicMenu-module_heightAnimation__Upf4B{0%{height:0}to{height:100%}}@keyframes PublicMenu-module_fadein__Q7QsJ{0%{opacity:0}to{opacity:1}}@keyframes PublicMenu-module_floatAnimation__IxmsY{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes PublicMenu-module_bottomSheet__4-IhG{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes PublicMenu-module_slideRightToLeft__Ue3GM{0%{transform:translateX(100%)}to{transform:translateX(0)}}.PublicMenu-module_container__QLN6U{background-color:#fff;padding-bottom:4rem;position:relative}.PublicMenu-module_container__QLN6U .PublicMenu-module_description__Qlb4s{font-size:.9rem;padding:1rem 1rem .5rem;text-align:center}.PublicMenu-module_container__QLN6U .PublicMenu-module_contact__Jtkor{padding:1rem}.PublicMenu-module_container__QLN6U .PublicMenu-module_contact__Jtkor svg path{fill:#fff}.PublicMenu-module_container__QLN6U .PublicMenu-module_categories__Iy6NC{background-color:#fff;left:0;max-width:100%;padding:.5rem 1rem;position:sticky;right:0;top:0;z-index:1}.PublicMenu-module_container__QLN6U .PublicMenu-module_footer__6G3DQ{color:#a1a5b7;display:block;font-size:.75rem;padding:3rem 2rem 2rem;text-align:center;width:100%}@keyframes Header-module_flexWide__XiQ6l{0%{flex:0}to{flex:1}}@keyframes Header-module_slidein__srDhG{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Header-module_fadeInOut__CRL2N{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Header-module_heightAnimation__YItGG{0%{height:0}to{height:100%}}@keyframes Header-module_fadein__3t3t-{0%{opacity:0}to{opacity:1}}@keyframes Header-module_floatAnimation__yIXwQ{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Header-module_bottomSheet__Ce3TO{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Header-module_slideRightToLeft__7cKkn{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Header-module_container__tenlF{height:12.5rem;margin-bottom:3rem;position:relative;width:100%}.Header-module_container__tenlF .Header-module_cover__BAWZK{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.Header-module_container__tenlF .Header-module_content__Gx4Al{align-items:flex-end;background:linear-gradient(0deg,rgba(0,0,0,.5) 20%,transparent);bottom:0;color:#fff;display:flex;left:0;padding:1rem 1rem 2rem;position:absolute;right:0;top:0;width:100%}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_logo__4MTCm{border-radius:50%;display:block;height:6rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:6rem}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_info__IchYA{overflow:hidden;width:calc(100% - 7rem)}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_name__30wyw{font-size:1.5rem;margin:0;max-width:100%;overflow:hidden;text-overflow:ellipsis}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_address__WOxXc{color:#fff;font-size:.9rem}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_address__WOxXc .Header-module_addressText__lUszI{line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis;white-space:normal}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_labels__gYyth{bottom:0;height:100%;padding:.75rem;position:absolute;right:0;scrollbar-width:none;top:0}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_labels__gYyth::-webkit-scrollbar{background:transparent;height:0;width:0}.Header-module_container__tenlF .Header-module_social__AoP0z{bottom:-1.25rem;display:flex;justify-content:center;left:0;position:absolute;right:0}.Header-module_container__tenlF .Header-module_links__EeQxg{background-color:#fff;border-radius:1.5rem;box-shadow:0 0 50px 0 rgba(0,0,0,.15);padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.Header-module_container__tenlF .Header-module_links__EeQxg .Header-module_wifiPassword__VWBTa{align-items:center;cursor:pointer;display:flex;padding:.5rem}.Header-module_container__tenlF .Header-module_links__EeQxg .Header-module_wifiPassword__VWBTa .Header-module_wifiPasswordIcon__Ukn3D{height:100%}@keyframes Languages-module_flexWide__zQ9jN{0%{flex:0}to{flex:1}}@keyframes Languages-module_slidein__C4UHU{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Languages-module_fadeInOut__U-vhH{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Languages-module_heightAnimation__gIQkF{0%{height:0}to{height:100%}}@keyframes Languages-module_fadein__vPmsX{0%{opacity:0}to{opacity:1}}@keyframes Languages-module_floatAnimation__L-kPH{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Languages-module_bottomSheet__-t-q8{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Languages-module_slideRightToLeft__y0l-f{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Languages-module_container__nJeK1{position:absolute;right:1rem;top:1rem;z-index:1}.Languages-module_container__nJeK1 .Languages-module_currentLanguage__EFw6Q{align-items:center;background-color:#fff;border:2px solid #fff;border-radius:50%;cursor:pointer;display:flex;flex:0 0 1.5rem;height:1.5rem;justify-content:center;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:1.5rem}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm{border-radius:1.5rem;height:1.5rem;overflow:hidden;padding:0 1rem;width:0}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd{align-items:center;background-color:#fff;border:2px solid #fff;border-radius:50%;cursor:pointer;display:flex;flex:0 0 1.5rem;height:1.5rem;justify-content:center;-o-object-fit:cover;object-fit:cover;overflow:hidden;transform:translateX(500%);transition:transform .2s;width:1.5rem}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(2){transition-delay:.1s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(3){transition-delay:.2s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(4){transition-delay:.3s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(5){transition-delay:.4s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(6){transition-delay:.5s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(7){transition-delay:.6s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(8){transition-delay:.7s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(9){transition-delay:.8s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(10){transition-delay:.9s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm.Languages-module_isOpen__eUGbg{width:-moz-max-content;width:max-content}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm.Languages-module_isOpen__eUGbg .Languages-module_option__QkVQd{transform:translateX(0)}.Products-module_container__bF2LF{padding:1rem}.Products-module_container__bF2LF .Products-module_header__0EFvL,.Products-module_container__bF2LF .Products-module_view__l857X{margin-bottom:-1rem}.Products-module_container__bF2LF .Products-module_products__AoDrY{overflow-x:hidden;padding:3rem 0 0;scroll-margin-top:2rem;text-overflow:ellipsis;width:100%}.Products-module_container__bF2LF .Products-module_products__AoDrY .Products-module_category__Sp7dE{font-size:1.5rem;margin-bottom:1rem;overflow-x:hidden;text-overflow:ellipsis;width:100%}.Products-module_container__bF2LF .Products-module_products__AoDrY .Products-module_list__LH4v5{width:100%}@keyframes ProductsListItem-module_flexWide__Ds6LE{0%{flex:0}to{flex:1}}@keyframes ProductsListItem-module_slidein__rEzMI{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductsListItem-module_fadeInOut__i1FNq{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductsListItem-module_heightAnimation__2fk7l{0%{height:0}to{height:100%}}@keyframes ProductsListItem-module_fadein__tPTJ6{0%{opacity:0}to{opacity:1}}@keyframes ProductsListItem-module_floatAnimation__vugAV{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductsListItem-module_bottomSheet__-YAdd{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductsListItem-module_slideRightToLeft__oXk26{0%{transform:translateX(100%)}to{transform:translateX(0)}}.ProductsListItem-module_container__i9tFs{border-bottom:1px solid #eff2f5;overflow:hidden;padding:1.5rem 0;position:relative;width:100%}.ProductsListItem-module_container__i9tFs.ProductsListItem-module_isClickable__iHHdI{cursor:pointer}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_data__Mb3SF{flex:1;overflow:hidden;padding-right:1.5rem}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_data__Mb3SF .ProductsListItem-module_name__T1gyJ{font-size:1rem;font-weight:600;margin:0;max-width:100%;overflow:hidden}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_data__Mb3SF .ProductsListItem-module_description__oL4CH{line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#a1a5b7;display:-webkit-box;font-size:.875rem;line-height:1.25rem;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:normal}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_data__Mb3SF .ProductsListItem-module_price__V1GRM{line-height:1.5rem}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_image__h6Wbi{border-radius:.475rem;height:5.625rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:10rem}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_addToCart__WXrQZ{pointer-events:all;position:absolute;right:.25rem;top:1.75rem}@keyframes ProductsGridItem-module_flexWide__qcB5X{0%{flex:0}to{flex:1}}@keyframes ProductsGridItem-module_slidein__oKaVb{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductsGridItem-module_fadeInOut__d2zot{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductsGridItem-module_heightAnimation__zgbh9{0%{height:0}to{height:100%}}@keyframes ProductsGridItem-module_fadein__Z067K{0%{opacity:0}to{opacity:1}}@keyframes ProductsGridItem-module_floatAnimation__GXjP-{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductsGridItem-module_bottomSheet__-zrFD{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductsGridItem-module_slideRightToLeft__R7hv5{0%{transform:translateX(100%)}to{transform:translateX(0)}}.ProductsGridItem-module_container__DU5KG{border-bottom:1px solid #eff2f5;padding:1.5rem 0;width:100%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y{overflow:hidden;position:relative;width:100%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_isClickable__8zhwt{cursor:pointer}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_info__HkBG-{background-color:transparent;background:linear-gradient(0deg,rgba(0,0,0,.5),rgba(0,0,0,.25) 30%,transparent 60%);border-radius:.475rem;display:flex;flex-direction:column;height:100%;left:0;position:absolute;top:0;inset:0;justify-content:flex-end;overflow:hidden;padding:1rem;width:100%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_data__Z-N1X{overflow:hidden;padding-right:1.5rem}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_name__ZrIx3{color:#fff;font-size:1rem;font-weight:600;margin:0;max-width:100%;overflow:hidden}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_description__-FQPA{line-clamp:1;-webkit-line-clamp:1;-webkit-box-orient:vertical;color:hsla(0,0%,100%,.9);display:-webkit-box;font-size:.875rem;line-height:1.25rem;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:normal}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_price__BFu2H{color:#fff;line-height:1.5rem}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z{border-radius:.475rem;overflow:hidden;position:relative;width:100%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z .ProductsGridItem-module_image__alZWL{height:100%;left:0;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;width:100%}@supports (aspect-ratio:16/9){.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z{aspect-ratio:16/9;padding-top:0}}@supports not (aspect-ratio:16/9){.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z{padding-top:56.25%}}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_addToCart__gYVrI{pointer-events:all;position:absolute;right:.5rem;top:.5rem}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW{min-height:4.75rem}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG-{background:transparent;padding:0}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_name__ZrIx3,.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_price__BFu2H{color:#181c32}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_description__-FQPA,.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_volume__oxEAr{color:#a1a5b7!important}@keyframes ProductDetails-module_flexWide__w06FX{0%{flex:0}to{flex:1}}@keyframes ProductDetails-module_slidein__N8f4g{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductDetails-module_fadeInOut__hYRtK{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductDetails-module_heightAnimation__hLQyz{0%{height:0}to{height:100%}}@keyframes ProductDetails-module_fadein__QN4mI{0%{opacity:0}to{opacity:1}}@keyframes ProductDetails-module_floatAnimation__dTQbc{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductDetails-module_bottomSheet__HO2S-{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductDetails-module_slideRightToLeft__hbtJg{0%{transform:translateX(100%)}to{transform:translateX(0)}}.ProductDetails-module_container__oa07j{align-items:center;background-color:rgba(0,0,0,.5);display:flex;inset:0;justify-content:center;position:fixed;z-index:110}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC{padding:0 0 1rem;position:relative}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_image__BlMfl{display:block;max-height:25rem;max-width:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:100%}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt{padding:1rem 1.5rem 2rem}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt .ProductDetails-module_name__ganLM{font-size:1.5rem;margin:0}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt .ProductDetails-module_price__W34k9{line-height:1.5rem}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt .ProductDetails-module_volume__RWG5s{color:#a1a5b7}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt .ProductDetails-module_description__HBufi{color:#a1a5b7;font-size:1rem;line-height:1.25rem;margin-top:1rem}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_variants__zOWjJ{border-bottom:1px solid #eff2f5;border-top:1px solid #eff2f5;box-shadow:0;padding:1rem 1.5rem;transition:box-shadow .1s ease-in-out}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_variants__zOWjJ.ProductDetails-module_focused__Nsffd{box-shadow:0 0 5px 0 #f1416c}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_variants__zOWjJ .ProductDetails-module_variantsTitle__ta-cw{font-weight:600;margin-bottom:.5rem}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_variants__zOWjJ .ProductDetails-module_variant__vQ5yD{cursor:pointer}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_close__4cHZ3{position:absolute;right:1rem;top:1rem}.ProductDetails-module_container__oa07j .ProductDetails-module_addAction__o4T5R .ProductDetails-module_actionTitle__NIJGW{white-space:break-spaces}@media (max-width:580px){.ProductDetails-module_container__oa07j{align-items:flex-end}}@keyframes Quantity-module_flexWide__R95Jw{0%{flex:0}to{flex:1}}@keyframes Quantity-module_slidein__5yeWf{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Quantity-module_fadeInOut__cllco{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Quantity-module_heightAnimation__dhOgA{0%{height:0}to{height:100%}}@keyframes Quantity-module_fadein__Cof2o{0%{opacity:0}to{opacity:1}}@keyframes Quantity-module_floatAnimation__DSqQr{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Quantity-module_bottomSheet__5-5iY{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Quantity-module_slideRightToLeft__cjDHk{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Quantity-module_container__01ySb{background-color:var(--sorocraft-color-primary-light,#f5f8fa);border-radius:3.75rem}.Quantity-module_container__01ySb .Quantity-module_quantityAction__wRV2F,.Quantity-module_container__01ySb .Quantity-module_quantityValue__BBpyw{align-items:center;color:var(--sorocraft-color-primary,#2d3436);display:flex;justify-content:center;line-height:1.5rem;text-align:center}.Quantity-module_container__01ySb .Quantity-module_quantityAction__wRV2F{cursor:pointer}.Quantity-module_container__01ySb .Quantity-module_quantityAction__wRV2F svg path{stroke:var(--sorocraft-color-primary,#2d3436)}.Quantity-module_container__01ySb .Quantity-module_quantityAction__wRV2F.Quantity-module_isDisabled__crQCf{cursor:not-allowed}.Quantity-module_container__01ySb.Quantity-module_sm__0Hgp2{height:2.5rem!important;width:7.5rem!important}.Quantity-module_container__01ySb.Quantity-module_sm__0Hgp2 .Quantity-module_quantityAction__wRV2F,.Quantity-module_container__01ySb.Quantity-module_sm__0Hgp2 .Quantity-module_quantityValue__BBpyw{height:2.5rem!important;width:2.5rem}.Quantity-module_container__01ySb.Quantity-module_md__hu7a8{height:3.25rem!important;width:10rem!important}.Quantity-module_container__01ySb.Quantity-module_md__hu7a8 .Quantity-module_quantityAction__wRV2F,.Quantity-module_container__01ySb.Quantity-module_md__hu7a8 .Quantity-module_quantityValue__BBpyw{height:3.25rem!important;width:3.3333333333rem}.Quantity-module_container__01ySb.Quantity-module_lg__GA4jn{height:3.75rem!important;width:12.5rem!important}.Quantity-module_container__01ySb.Quantity-module_lg__GA4jn .Quantity-module_quantityAction__wRV2F,.Quantity-module_container__01ySb.Quantity-module_lg__GA4jn .Quantity-module_quantityValue__BBpyw{height:3.75rem!important;width:4.1666666667rem}.ProductInCart-module_container__oSrwq .ProductInCart-module_title__Vnc4l{font-weight:600}@keyframes Cart-module_flexWide__d8A-8{0%{flex:0}to{flex:1}}@keyframes Cart-module_slidein__jBrqK{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Cart-module_fadeInOut__FgYRJ{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Cart-module_heightAnimation__PzaWz{0%{height:0}to{height:100%}}@keyframes Cart-module_fadein__aiRQy{0%{opacity:0}to{opacity:1}}@keyframes Cart-module_floatAnimation__D0ZI8{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Cart-module_bottomSheet__Sf4us{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Cart-module_slideRightToLeft__EQThb{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Cart-module_container__3KQtx{bottom:0;display:flex;justify-content:center;left:0;padding:1rem;position:fixed;right:0;z-index:10}.Cart-module_container__3KQtx .Cart-module_content__rkiZa{animation-duration:.3s;animation-name:Cart-module_bottomSheet__Sf4us;animation-timing-function:cubic-bezier(.32,1,.23,1);max-width:25rem;width:100%}@keyframes CartStepper-module_flexWide__eXxCr{0%{flex:0}to{flex:1}}@keyframes CartStepper-module_slidein__d5JQ-{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes CartStepper-module_fadeInOut__pS8nn{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes CartStepper-module_heightAnimation__7-e5Z{0%{height:0}to{height:100%}}@keyframes CartStepper-module_fadein__-Ba0-{0%{opacity:0}to{opacity:1}}@keyframes CartStepper-module_floatAnimation__rq6zX{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes CartStepper-module_bottomSheet__1wHHD{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes CartStepper-module_slideRightToLeft__0KLAo{0%{transform:translateX(100%)}to{transform:translateX(0)}}.CartStepper-module_container__4CF1L{background-color:var(--sorocraft-color-primary,#2d3436);border-radius:1.5rem;color:#fff;min-height:3.375rem;padding:.9rem 1rem;width:100%}.CartStepper-module_container__4CF1L .CartStepper-module_count__E-RBg{align-items:center;background-color:#fff;border-radius:50%;color:#181c32;display:flex;font-size:.75rem;font-weight:500;height:1.5rem;justify-content:center;line-height:1rem;width:1.5rem}.CartStepper-module_container__4CF1L .CartStepper-module_actionText__-rVKA{font-weight:600}.CartStepper-module_container__4CF1L .CartStepper-module_totalPrice__QboRN{font-weight:500;text-align:end}.CartStepper-module_container__4CF1L.CartStepper-module_isClickable__mDptU{cursor:pointer}@keyframes CartDrawer-module_flexWide__ySgY-{0%{flex:0}to{flex:1}}@keyframes CartDrawer-module_slidein__XC9AW{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes CartDrawer-module_fadeInOut__w9h6X{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes CartDrawer-module_heightAnimation__tBgkj{0%{height:0}to{height:100%}}@keyframes CartDrawer-module_fadein__QNPoQ{0%{opacity:0}to{opacity:1}}@keyframes CartDrawer-module_floatAnimation__nZWoY{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes CartDrawer-module_bottomSheet__m0wy7{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes CartDrawer-module_slideRightToLeft__gpixh{0%{transform:translateX(100%)}to{transform:translateX(0)}}.CartDrawer-module_container__zvapw{align-items:center;background-color:rgba(0,0,0,.5);display:flex;inset:0;justify-content:flex-end;position:fixed;z-index:100}.CartDrawer-module_container__zvapw .CartDrawer-module_content__ELSiG{height:100%;padding:1rem 0}@keyframes CartItem-module_flexWide__eNc4F{0%{flex:0}to{flex:1}}@keyframes CartItem-module_slidein__sKXwk{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes CartItem-module_fadeInOut__oUVpZ{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes CartItem-module_heightAnimation__3nX4t{0%{height:0}to{height:100%}}@keyframes CartItem-module_fadein__XlkRs{0%{opacity:0}to{opacity:1}}@keyframes CartItem-module_floatAnimation__-20XI{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes CartItem-module_bottomSheet__knS1f{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes CartItem-module_slideRightToLeft__szREy{0%{transform:translateX(100%)}to{transform:translateX(0)}}.CartItem-module_container__At7lj{border-bottom:1px solid #eff2f5;padding:.75rem 1rem}.CartItem-module_container__At7lj .CartItem-module_image__D-zzG{border-radius:.475rem;height:2.8125rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:5rem}.CartItem-module_container__At7lj .CartItem-module_data__Lo3Fb{flex:1}.CartItem-module_container__At7lj .CartItem-module_data__Lo3Fb .CartItem-module_name__EksZu{font-weight:500}.CartItem-module_container__At7lj .CartItem-module_data__Lo3Fb .CartItem-module_price__yJxl6{line-height:1.5rem;margin-top:.25rem}@keyframes Branches-module_flexWide__-waUA{0%{flex:0}to{flex:1}}@keyframes Branches-module_slidein__6gTfw{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Branches-module_fadeInOut__lplH2{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Branches-module_heightAnimation__pcTJk{0%{height:0}to{height:100%}}@keyframes Branches-module_fadein__U1Mpr{0%{opacity:0}to{opacity:1}}@keyframes Branches-module_floatAnimation__sU2p3{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Branches-module_bottomSheet__6rCLf{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Branches-module_slideRightToLeft__xJE6w{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Branches-module_branches__sOuoV{background-color:#fff}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2{display:grid;gap:2rem;grid-auto-rows:1fr;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));padding-bottom:2rem}@media (max-width:580px){.Branches-module_branches__sOuoV .Branches-module_list__vYoT2{grid-template-columns:1fr}}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_name__K0Z-4{font-size:1.25rem;font-weight:500;margin:0;text-align:center}
1
+ @keyframes PublicMenu-module_flexWide__M9IEY{0%{flex:0}to{flex:1}}@keyframes PublicMenu-module_slidein__kwZ1c{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes PublicMenu-module_fadeInOut__ORUVR{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes PublicMenu-module_heightAnimation__Upf4B{0%{height:0}to{height:100%}}@keyframes PublicMenu-module_fadein__Q7QsJ{0%{opacity:0}to{opacity:1}}@keyframes PublicMenu-module_floatAnimation__IxmsY{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes PublicMenu-module_bottomSheet__4-IhG{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes PublicMenu-module_slideRightToLeft__Ue3GM{0%{transform:translateX(100%)}to{transform:translateX(0)}}.PublicMenu-module_container__QLN6U{background-color:#fff;padding-bottom:4rem;position:relative}.PublicMenu-module_container__QLN6U .PublicMenu-module_description__Qlb4s{font-size:.9rem;padding:1rem 1rem .5rem;text-align:center}.PublicMenu-module_container__QLN6U .PublicMenu-module_contact__Jtkor{padding:1rem}.PublicMenu-module_container__QLN6U .PublicMenu-module_contact__Jtkor svg path{fill:#fff}.PublicMenu-module_container__QLN6U .PublicMenu-module_categories__Iy6NC{background-color:#fff;left:0;max-width:100%;padding:.5rem 1rem;position:sticky;right:0;top:0;z-index:1}.PublicMenu-module_container__QLN6U .PublicMenu-module_footer__6G3DQ{color:#a1a5b7;display:block;font-size:.75rem;padding:3rem 2rem 2rem;text-align:center;width:100%}@keyframes Header-module_flexWide__XiQ6l{0%{flex:0}to{flex:1}}@keyframes Header-module_slidein__srDhG{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Header-module_fadeInOut__CRL2N{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Header-module_heightAnimation__YItGG{0%{height:0}to{height:100%}}@keyframes Header-module_fadein__3t3t-{0%{opacity:0}to{opacity:1}}@keyframes Header-module_floatAnimation__yIXwQ{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Header-module_bottomSheet__Ce3TO{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Header-module_slideRightToLeft__7cKkn{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Header-module_container__tenlF{height:12.5rem;margin-bottom:3rem;position:relative;width:100%}.Header-module_container__tenlF .Header-module_cover__BAWZK{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.Header-module_container__tenlF .Header-module_content__Gx4Al{align-items:flex-end;background:linear-gradient(0deg,rgba(0,0,0,.5) 20%,transparent);bottom:0;color:#fff;display:flex;left:0;padding:1rem 1rem 2rem;position:absolute;right:0;top:0;width:100%}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_logo__4MTCm{border-radius:50%;display:block;height:6rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:6rem}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_info__IchYA{overflow:hidden;width:calc(100% - 7rem)}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_name__30wyw{font-size:1.5rem;margin:0;max-width:100%;overflow:hidden;text-overflow:ellipsis}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_address__WOxXc{color:#fff;font-size:.9rem}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_address__WOxXc .Header-module_addressText__lUszI{line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis;white-space:normal}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_labels__gYyth{bottom:0;height:100%;padding:.75rem;position:absolute;right:0;scrollbar-width:none;top:0}.Header-module_container__tenlF .Header-module_content__Gx4Al .Header-module_labels__gYyth::-webkit-scrollbar{background:transparent;height:0;width:0}.Header-module_container__tenlF .Header-module_social__AoP0z{bottom:-1.25rem;display:flex;justify-content:center;left:0;position:absolute;right:0}.Header-module_container__tenlF .Header-module_links__EeQxg{background-color:#fff;border-radius:1.5rem;box-shadow:0 0 50px 0 rgba(0,0,0,.15);padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.Header-module_container__tenlF .Header-module_links__EeQxg .Header-module_wifiPassword__VWBTa{align-items:center;cursor:pointer;display:flex;padding:.5rem}.Header-module_container__tenlF .Header-module_links__EeQxg .Header-module_wifiPassword__VWBTa .Header-module_wifiPasswordIcon__Ukn3D{height:100%}@keyframes Languages-module_flexWide__zQ9jN{0%{flex:0}to{flex:1}}@keyframes Languages-module_slidein__C4UHU{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Languages-module_fadeInOut__U-vhH{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Languages-module_heightAnimation__gIQkF{0%{height:0}to{height:100%}}@keyframes Languages-module_fadein__vPmsX{0%{opacity:0}to{opacity:1}}@keyframes Languages-module_floatAnimation__L-kPH{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Languages-module_bottomSheet__-t-q8{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Languages-module_slideRightToLeft__y0l-f{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Languages-module_container__nJeK1{position:absolute;right:1rem;top:1rem;z-index:1}.Languages-module_container__nJeK1 .Languages-module_currentLanguage__EFw6Q{align-items:center;background-color:#fff;border:2px solid #fff;border-radius:50%;cursor:pointer;display:flex;flex:0 0 1.5rem;height:1.5rem;justify-content:center;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:1.5rem}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm{border-radius:1.5rem;height:1.5rem;overflow:hidden;padding:0 1rem;width:0}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd{align-items:center;background-color:#fff;border:2px solid #fff;border-radius:50%;cursor:pointer;display:flex;flex:0 0 1.5rem;height:1.5rem;justify-content:center;-o-object-fit:cover;object-fit:cover;overflow:hidden;transform:translateX(500%);transition:transform .2s;width:1.5rem}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(2){transition-delay:.1s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(3){transition-delay:.2s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(4){transition-delay:.3s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(5){transition-delay:.4s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(6){transition-delay:.5s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(7){transition-delay:.6s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(8){transition-delay:.7s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(9){transition-delay:.8s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm .Languages-module_option__QkVQd:nth-child(10){transition-delay:.9s}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm.Languages-module_isOpen__eUGbg{width:-moz-max-content;width:max-content}.Languages-module_container__nJeK1 .Languages-module_options__6jLRm.Languages-module_isOpen__eUGbg .Languages-module_option__QkVQd{transform:translateX(0)}.Products-module_container__bF2LF{padding:1rem}.Products-module_container__bF2LF .Products-module_header__0EFvL,.Products-module_container__bF2LF .Products-module_view__l857X{margin-bottom:-1rem}.Products-module_container__bF2LF .Products-module_products__AoDrY{overflow-x:hidden;padding:3rem 0 0;scroll-margin-top:2rem;text-overflow:ellipsis;width:100%}.Products-module_container__bF2LF .Products-module_products__AoDrY .Products-module_category__Sp7dE{font-size:1.5rem;margin-bottom:1rem;overflow-x:hidden;text-overflow:ellipsis;width:100%}.Products-module_container__bF2LF .Products-module_products__AoDrY .Products-module_list__LH4v5{width:100%}@keyframes ProductsListItem-module_flexWide__Ds6LE{0%{flex:0}to{flex:1}}@keyframes ProductsListItem-module_slidein__rEzMI{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductsListItem-module_fadeInOut__i1FNq{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductsListItem-module_heightAnimation__2fk7l{0%{height:0}to{height:100%}}@keyframes ProductsListItem-module_fadein__tPTJ6{0%{opacity:0}to{opacity:1}}@keyframes ProductsListItem-module_floatAnimation__vugAV{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductsListItem-module_bottomSheet__-YAdd{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductsListItem-module_slideRightToLeft__oXk26{0%{transform:translateX(100%)}to{transform:translateX(0)}}.ProductsListItem-module_container__i9tFs{border-bottom:1px solid #eff2f5;overflow:hidden;padding:1.5rem 0;position:relative;width:100%}.ProductsListItem-module_container__i9tFs.ProductsListItem-module_isClickable__iHHdI{cursor:pointer}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_info__4s4j2{flex:1;overflow:hidden;padding-right:1.5rem}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_info__4s4j2 .ProductsListItem-module_name__T1gyJ{font-size:1rem;font-weight:600;margin:0;max-width:100%;overflow:hidden}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_info__4s4j2 .ProductsListItem-module_description__oL4CH{line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#a1a5b7;display:-webkit-box;font-size:.875rem;line-height:1.25rem;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:normal}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_info__4s4j2 .ProductsListItem-module_price__V1GRM{line-height:1.5rem}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_image__h6Wbi{border-radius:.475rem;height:5.625rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:10rem}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_addToCart__WXrQZ{pointer-events:all;position:absolute;right:.25rem;top:1.75rem}.ProductsListItem-module_container__i9tFs.ProductsListItem-module_noImage__G4E-a .ProductsListItem-module_info__4s4j2{padding-right:0}.ProductsListItem-module_container__i9tFs.ProductsListItem-module_noImage__G4E-a .ProductsListItem-module_info__4s4j2 .ProductsListItem-module_name__T1gyJ{margin-bottom:.5rem;padding-right:3rem}@keyframes ProductsGridItem-module_flexWide__qcB5X{0%{flex:0}to{flex:1}}@keyframes ProductsGridItem-module_slidein__oKaVb{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductsGridItem-module_fadeInOut__d2zot{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductsGridItem-module_heightAnimation__zgbh9{0%{height:0}to{height:100%}}@keyframes ProductsGridItem-module_fadein__Z067K{0%{opacity:0}to{opacity:1}}@keyframes ProductsGridItem-module_floatAnimation__GXjP-{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductsGridItem-module_bottomSheet__-zrFD{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductsGridItem-module_slideRightToLeft__R7hv5{0%{transform:translateX(100%)}to{transform:translateX(0)}}.ProductsGridItem-module_container__DU5KG{border-bottom:1px solid #eff2f5;padding:1.5rem 0;width:100%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y{overflow:hidden;position:relative;width:100%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_isClickable__8zhwt{cursor:pointer}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_info__HkBG-{background-color:transparent;background:linear-gradient(0deg,rgba(0,0,0,.5),rgba(0,0,0,.25) 30%,transparent 60%);border-radius:.475rem;display:flex;flex-direction:column;height:100%;left:0;position:absolute;top:0;inset:0;justify-content:flex-end;overflow:hidden;padding:1rem;width:100%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_data__Z-N1X{overflow:hidden}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_name__ZrIx3{color:#fff;font-size:1rem;font-weight:600;margin:0;max-width:100%;overflow:hidden}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_description__-FQPA{line-clamp:1;-webkit-line-clamp:1;-webkit-box-orient:vertical;color:hsla(0,0%,100%,.9);display:-webkit-box;font-size:.875rem;line-height:1.25rem;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:normal}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_price__BFu2H{color:#fff;line-height:1.5rem}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z{border-radius:.475rem;overflow:hidden;position:relative;width:100%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z .ProductsGridItem-module_image__alZWL{height:100%;left:0;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;width:100%}@supports (aspect-ratio:16/9){.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z{aspect-ratio:16/9;padding-top:0}}@supports not (aspect-ratio:16/9){.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z{padding-top:56.25%}}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_addToCart__gYVrI{pointer-events:all;position:absolute;right:.5rem;top:.5rem}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW{min-height:4.75rem}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG-{background:transparent;padding:0}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_name__ZrIx3,.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_price__BFu2H{color:#181c32}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_name__ZrIx3{padding-right:3rem}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_description__-FQPA,.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_volume__oxEAr{color:#a1a5b7!important}@keyframes ProductDetails-module_flexWide__w06FX{0%{flex:0}to{flex:1}}@keyframes ProductDetails-module_slidein__N8f4g{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductDetails-module_fadeInOut__hYRtK{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductDetails-module_heightAnimation__hLQyz{0%{height:0}to{height:100%}}@keyframes ProductDetails-module_fadein__QN4mI{0%{opacity:0}to{opacity:1}}@keyframes ProductDetails-module_floatAnimation__dTQbc{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductDetails-module_bottomSheet__HO2S-{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductDetails-module_slideRightToLeft__hbtJg{0%{transform:translateX(100%)}to{transform:translateX(0)}}.ProductDetails-module_container__oa07j{align-items:center;background-color:rgba(0,0,0,.5);display:flex;inset:0;justify-content:center;position:fixed;z-index:110}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC{padding:0 0 1rem;position:relative}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_image__BlMfl{display:block;max-height:25rem;max-width:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:100%}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt{max-width:100%;overflow:hidden;padding:1rem 1.5rem 2rem;text-overflow:ellipsis;width:100%}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt .ProductDetails-module_name__ganLM{font-size:1.5rem;margin:0}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt .ProductDetails-module_price__W34k9{line-height:1.5rem}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt .ProductDetails-module_volume__RWG5s{color:#a1a5b7}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_details__zfnlt .ProductDetails-module_description__HBufi{color:#a1a5b7;font-size:1rem;line-height:1.25rem;margin-top:1rem}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_choices__4tHaA{border-bottom:1px solid #eff2f5;border-top:1px solid #eff2f5;max-width:100%;overflow:hidden;text-overflow:ellipsis;width:100%}.ProductDetails-module_container__oa07j .ProductDetails-module_content__Db3NC .ProductDetails-module_close__4cHZ3{position:absolute;right:1rem;top:1rem}.ProductDetails-module_container__oa07j .ProductDetails-module_addAction__o4T5R .ProductDetails-module_actionTitle__NIJGW{white-space:break-spaces}@media (max-width:580px){.ProductDetails-module_container__oa07j{align-items:flex-end}}@keyframes Quantity-module_flexWide__R95Jw{0%{flex:0}to{flex:1}}@keyframes Quantity-module_slidein__5yeWf{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Quantity-module_fadeInOut__cllco{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Quantity-module_heightAnimation__dhOgA{0%{height:0}to{height:100%}}@keyframes Quantity-module_fadein__Cof2o{0%{opacity:0}to{opacity:1}}@keyframes Quantity-module_floatAnimation__DSqQr{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Quantity-module_bottomSheet__5-5iY{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Quantity-module_slideRightToLeft__cjDHk{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Quantity-module_container__01ySb{background-color:var(--sorocraft-color-primary-light,#f5f8fa);border-radius:3.75rem}.Quantity-module_container__01ySb .Quantity-module_quantityAction__wRV2F,.Quantity-module_container__01ySb .Quantity-module_quantityValue__BBpyw{align-items:center;color:var(--sorocraft-color-primary,#2d3436);display:flex;justify-content:center;line-height:1.5rem;text-align:center}.Quantity-module_container__01ySb .Quantity-module_quantityAction__wRV2F{cursor:pointer}.Quantity-module_container__01ySb .Quantity-module_quantityAction__wRV2F svg path{stroke:var(--sorocraft-color-primary,#2d3436)}.Quantity-module_container__01ySb .Quantity-module_quantityAction__wRV2F.Quantity-module_isDisabled__crQCf{cursor:not-allowed}.Quantity-module_container__01ySb.Quantity-module_sm__0Hgp2{height:2.5rem!important;width:7.5rem!important}.Quantity-module_container__01ySb.Quantity-module_sm__0Hgp2 .Quantity-module_quantityAction__wRV2F,.Quantity-module_container__01ySb.Quantity-module_sm__0Hgp2 .Quantity-module_quantityValue__BBpyw{height:2.5rem!important;width:2.5rem}.Quantity-module_container__01ySb.Quantity-module_md__hu7a8{height:3.25rem!important;width:10rem!important}.Quantity-module_container__01ySb.Quantity-module_md__hu7a8 .Quantity-module_quantityAction__wRV2F,.Quantity-module_container__01ySb.Quantity-module_md__hu7a8 .Quantity-module_quantityValue__BBpyw{height:3.25rem!important;width:3.3333333333rem}.Quantity-module_container__01ySb.Quantity-module_lg__GA4jn{height:3.75rem!important;width:12.5rem!important}.Quantity-module_container__01ySb.Quantity-module_lg__GA4jn .Quantity-module_quantityAction__wRV2F,.Quantity-module_container__01ySb.Quantity-module_lg__GA4jn .Quantity-module_quantityValue__BBpyw{height:3.75rem!important;width:4.1666666667rem}.ProductInCart-module_container__oSrwq .ProductInCart-module_title__Vnc4l{font-weight:600}@keyframes ProductVariants-module_flexWide__CQO0G{0%{flex:0}to{flex:1}}@keyframes ProductVariants-module_slidein__9xYoM{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductVariants-module_fadeInOut__NcGdX{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductVariants-module_heightAnimation__c7ORS{0%{height:0}to{height:100%}}@keyframes ProductVariants-module_fadein__qqdC5{0%{opacity:0}to{opacity:1}}@keyframes ProductVariants-module_floatAnimation__Fy-NX{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductVariants-module_bottomSheet__JVxKH{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductVariants-module_slideRightToLeft__lHsqZ{0%{transform:translateX(100%)}to{transform:translateX(0)}}.ProductVariants-module_container__r059N{box-shadow:0;padding:1rem 1.5rem;transition:box-shadow .1s ease-in-out}.ProductVariants-module_container__r059N .ProductVariants-module_variantsTitle__G3wTr{font-weight:600;margin-bottom:.5rem}.ProductVariants-module_container__r059N .ProductVariants-module_variant__Pk6eP{cursor:pointer}.ProductVariants-module_container__r059N.ProductVariants-module_focused__tdy2R{box-shadow:0 0 5px 0 #f1416c}@keyframes ProductAddons-module_flexWide__kxcTh{0%{flex:0}to{flex:1}}@keyframes ProductAddons-module_slidein__C5osk{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductAddons-module_fadeInOut__Wtu5Z{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductAddons-module_heightAnimation__sA75y{0%{height:0}to{height:100%}}@keyframes ProductAddons-module_fadein__ErDv9{0%{opacity:0}to{opacity:1}}@keyframes ProductAddons-module_floatAnimation__crBUu{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductAddons-module_bottomSheet__Irr5y{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductAddons-module_slideRightToLeft__Q-PfS{0%{transform:translateX(100%)}to{transform:translateX(0)}}.ProductAddons-module_container__DRnT7{box-shadow:0;padding:1rem 1.5rem;transition:box-shadow .1s ease-in-out}.ProductAddons-module_container__DRnT7.ProductAddons-module_focused__KplXf{box-shadow:0 0 5px 0 #f1416c}.ProductAddons-module_container__DRnT7 .ProductAddons-module_optionsTitle__dE0ee{font-weight:600;margin-bottom:.5rem}@keyframes Cart-module_flexWide__d8A-8{0%{flex:0}to{flex:1}}@keyframes Cart-module_slidein__jBrqK{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Cart-module_fadeInOut__FgYRJ{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Cart-module_heightAnimation__PzaWz{0%{height:0}to{height:100%}}@keyframes Cart-module_fadein__aiRQy{0%{opacity:0}to{opacity:1}}@keyframes Cart-module_floatAnimation__D0ZI8{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Cart-module_bottomSheet__Sf4us{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Cart-module_slideRightToLeft__EQThb{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Cart-module_container__3KQtx{bottom:0;display:flex;justify-content:center;left:0;padding:1rem;position:fixed;right:0;z-index:10}.Cart-module_container__3KQtx .Cart-module_content__rkiZa{animation-duration:.3s;animation-name:Cart-module_bottomSheet__Sf4us;animation-timing-function:cubic-bezier(.32,1,.23,1);max-width:25rem;width:100%}@keyframes CartStepper-module_flexWide__eXxCr{0%{flex:0}to{flex:1}}@keyframes CartStepper-module_slidein__d5JQ-{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes CartStepper-module_fadeInOut__pS8nn{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes CartStepper-module_heightAnimation__7-e5Z{0%{height:0}to{height:100%}}@keyframes CartStepper-module_fadein__-Ba0-{0%{opacity:0}to{opacity:1}}@keyframes CartStepper-module_floatAnimation__rq6zX{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes CartStepper-module_bottomSheet__1wHHD{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes CartStepper-module_slideRightToLeft__0KLAo{0%{transform:translateX(100%)}to{transform:translateX(0)}}.CartStepper-module_container__4CF1L{background-color:var(--sorocraft-color-primary,#2d3436);border-radius:1.5rem;color:#fff;min-height:3.375rem;padding:.9rem 1rem;width:100%}.CartStepper-module_container__4CF1L .CartStepper-module_count__E-RBg{align-items:center;background-color:#fff;border-radius:50%;color:#181c32;display:flex;font-size:.75rem;font-weight:500;height:1.5rem;justify-content:center;line-height:1rem;width:1.5rem}.CartStepper-module_container__4CF1L .CartStepper-module_actionText__-rVKA{font-weight:600}.CartStepper-module_container__4CF1L .CartStepper-module_totalPrice__QboRN{font-weight:500;text-align:end}.CartStepper-module_container__4CF1L.CartStepper-module_isClickable__mDptU{cursor:pointer}@keyframes CartDrawer-module_flexWide__ySgY-{0%{flex:0}to{flex:1}}@keyframes CartDrawer-module_slidein__XC9AW{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes CartDrawer-module_fadeInOut__w9h6X{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes CartDrawer-module_heightAnimation__tBgkj{0%{height:0}to{height:100%}}@keyframes CartDrawer-module_fadein__QNPoQ{0%{opacity:0}to{opacity:1}}@keyframes CartDrawer-module_floatAnimation__nZWoY{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes CartDrawer-module_bottomSheet__m0wy7{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes CartDrawer-module_slideRightToLeft__gpixh{0%{transform:translateX(100%)}to{transform:translateX(0)}}.CartDrawer-module_container__zvapw{align-items:center;background-color:rgba(0,0,0,.5);display:flex;inset:0;justify-content:flex-end;position:fixed;z-index:100}.CartDrawer-module_container__zvapw .CartDrawer-module_content__ELSiG{height:100%;padding:1rem 0}@keyframes CartItem-module_flexWide__eNc4F{0%{flex:0}to{flex:1}}@keyframes CartItem-module_slidein__sKXwk{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes CartItem-module_fadeInOut__oUVpZ{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes CartItem-module_heightAnimation__3nX4t{0%{height:0}to{height:100%}}@keyframes CartItem-module_fadein__XlkRs{0%{opacity:0}to{opacity:1}}@keyframes CartItem-module_floatAnimation__-20XI{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes CartItem-module_bottomSheet__knS1f{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes CartItem-module_slideRightToLeft__szREy{0%{transform:translateX(100%)}to{transform:translateX(0)}}.CartItem-module_container__At7lj{border-bottom:1px solid #eff2f5;padding:.75rem 1rem}.CartItem-module_container__At7lj .CartItem-module_image__D-zzG{border-radius:.475rem;height:2.8125rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:5rem}.CartItem-module_container__At7lj .CartItem-module_data__Lo3Fb{flex:1;max-width:100%;overflow:hidden;text-overflow:ellipsis}.CartItem-module_container__At7lj .CartItem-module_data__Lo3Fb .CartItem-module_name__EksZu{font-weight:500;line-height:1;margin-bottom:.5rem}.CartItem-module_container__At7lj .CartItem-module_data__Lo3Fb .CartItem-module_price__yJxl6{line-height:1.5rem;margin-top:.5rem}@keyframes Branches-module_flexWide__-waUA{0%{flex:0}to{flex:1}}@keyframes Branches-module_slidein__6gTfw{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Branches-module_fadeInOut__lplH2{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Branches-module_heightAnimation__pcTJk{0%{height:0}to{height:100%}}@keyframes Branches-module_fadein__U1Mpr{0%{opacity:0}to{opacity:1}}@keyframes Branches-module_floatAnimation__sU2p3{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Branches-module_bottomSheet__6rCLf{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Branches-module_slideRightToLeft__xJE6w{0%{transform:translateX(100%)}to{transform:translateX(0)}}.Branches-module_branches__sOuoV{background-color:#fff}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2{display:grid;gap:2rem;grid-auto-rows:1fr;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));padding-bottom:2rem}@media (max-width:580px){.Branches-module_branches__sOuoV .Branches-module_list__vYoT2{grid-template-columns:1fr}}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_name__K0Z-4{font-size:1.25rem;font-weight:500;margin:0;text-align:center}
2
2
  /*# sourceMappingURL=ui.css.map */
@@ -1 +1 @@
1
- {"version":3,"sources":["PublicMenu.module.scss","Header.module.scss","Languages.module.scss","Products.module.scss","ProductsListItem.module.scss","ProductsGridItem.module.scss","ProductDetails.module.scss","Quantity.module.scss","ProductInCart.module.scss","Cart.module.scss","CartStepper.module.scss","CartDrawer.module.scss","CartItem.module.scss","Branches.module.scss"],"names":[],"mappings":"AA0BA,6CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,4CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,oDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,2CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,mDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,gDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,qDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,oCACE,qBAAyB,CAEzB,mBAAoB,CADpB,iBAEF,CACA,0EAGE,eAAiB,CAFjB,uBAAyB,CACzB,iBAEF,CACA,sEACE,YACF,CACA,+EACE,SACF,CACA,yEAOE,qBAAyB,CAHzB,MAAO,CAHP,cAAe,CAOf,kBAAoB,CANpB,eAAgB,CAGhB,OAAQ,CACR,KAAM,CAHN,SAMF,CACA,qEAME,aAAc,CALd,aAAc,CAId,gBAAkB,CADlB,sBAAuB,CADvB,iBAAkB,CADlB,UAKF,CC/HA,yCACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,wCACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,0CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,gDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,uCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,+CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,4CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,iDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,gCAEE,cAAe,CAEf,kBAAmB,CADnB,iBAAkB,CAFlB,UAIF,CACA,4DAEE,WAAY,CACZ,mBAAiB,CAAjB,gBAAiB,CAFjB,UAGF,CACA,8DAWE,oBAAqB,CAFrB,+DAA2E,CAN3E,QAAS,CAKT,UAAc,CAEd,YAAa,CANb,MAAO,CAGP,sBAAuB,CANvB,iBAAkB,CAIlB,OAAQ,CAHR,KAAM,CAIN,UAMF,CACA,yFAIE,iBAAkB,CAHlB,aAAc,CAEd,WAAY,CAGZ,mBAAiB,CAAjB,gBAAiB,CADjB,eAAgB,CAHhB,UAKF,CACA,yFAEE,eAAgB,CADhB,uBAEF,CACA,oHACE,gBAAiB,CACjB,QAAS,CACT,cAAe,CACf,eAAgB,CAChB,sBACF,CACA,uHACE,UAAc,CACd,eACF,CACA,yJAEE,YAAa,CACb,oBAAqB,CACrB,2BAA4B,CAH5B,mBAAoB,CAIpB,eAAgB,CAChB,sBAAuB,CACvB,kBACF,CACA,2FAGE,QAAS,CAET,WAAY,CACZ,cAAgB,CALhB,iBAAkB,CAGlB,OAAQ,CAGR,oBAAqB,CALrB,KAMF,CACA,8GAGE,sBAAuB,CAFvB,QAAS,CACT,OAEF,CACA,6DAEE,eAAgB,CAGhB,YAAa,CACb,sBAAuB,CAHvB,MAAO,CAFP,iBAAkB,CAGlB,OAGF,CACA,4DAEE,qBAAyB,CACzB,oBAAqB,CACrB,qCAAgD,CAHhD,qBAAwB,CAIxB,sBAAkB,CAAlB,iBACF,CACA,+FAEE,kBAAmB,CACnB,cAAe,CAFf,YAAa,CAGb,aACF,CACA,sIACE,WACF,CC3LA,4CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,2CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,6CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,mDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,0CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,kDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,+CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,oDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,mCACE,iBAAkB,CAElB,UAAW,CADX,QAAS,CAET,SACF,CACA,4EAQE,kBAAmB,CAJnB,qBAAyB,CAQzB,qBAAyB,CAPzB,iBAAkB,CAIlB,cAAe,CAHf,YAAa,CAHb,eAAgB,CAFhB,aAAc,CAMd,sBAAuB,CAIvB,mBAAiB,CAAjB,gBAAiB,CADjB,eAAgB,CARhB,YAWF,CACA,oEAGE,oBAAqB,CADrB,aAAc,CAGd,eAAgB,CAJhB,cAAe,CAGf,OAEF,CACA,oGAQE,kBAAmB,CAJnB,qBAAyB,CAQzB,qBAAyB,CAPzB,iBAAkB,CAIlB,cAAe,CAHf,YAAa,CAHb,eAAgB,CAFhB,aAAc,CAMd,sBAAuB,CAIvB,mBAAiB,CAAjB,gBAAiB,CADjB,eAAgB,CAGhB,0BAA2B,CAC3B,wBAA0B,CAZ1B,YAaF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,kHACE,oBACF,CACA,mGACE,sBAAkB,CAAlB,iBACF,CACA,mIACE,uBACF,CCnMA,kCACE,YACF,CAIA,gIACE,mBACF,CACA,mEAIE,iBAAkB,CAFlB,gBAAiB,CACjB,sBAAuB,CAEvB,sBAAuB,CAJvB,UAKF,CACA,oGACE,gBAAiB,CACjB,kBAAmB,CAEnB,iBAAkB,CAClB,sBAAuB,CAFvB,UAGF,CACA,gGACE,UACF,CCCA,mDACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,kDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,oDACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,0DACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,iDACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,yDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,sDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,2DACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,0CAEE,+BAAgC,CAGhC,eAAgB,CAFhB,gBAAiB,CACjB,iBAAkB,CAHlB,UAKF,CACA,qFACE,cACF,CACA,+EACE,MAAO,CAEP,eAAgB,CADhB,oBAEF,CACA,oHACE,cAAe,CACf,eAAgB,CAChB,QAAS,CACT,cAAe,CACf,eACF,CACA,2HAEE,YAAa,CACb,oBAAqB,CACrB,2BAA4B,CAI5B,aAAc,CAPd,mBAAoB,CAQpB,iBAAmB,CACnB,mBAAoB,CACpB,cAAe,CANf,eAAgB,CAChB,sBAAuB,CACvB,kBAKF,CACA,qHACE,kBACF,CACA,gFAGE,qBAAuB,CADvB,eAAgB,CAEhB,mBAAiB,CAAjB,gBAAiB,CACjB,eAAgB,CAJhB,WAKF,CACA,oFAEE,kBAAmB,CADnB,iBAAkB,CAGlB,YAAc,CADd,WAEF,CChJA,mDACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,kDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,oDACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,0DACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,iDACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,yDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,sDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,2DACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,0CAEE,+BAAgC,CAChC,gBAAiB,CAFjB,UAGF,CACA,kFAEE,eAAgB,CADhB,iBAAkB,CAElB,UAGF,CACA,6HACE,cACF,CACA,uHAOE,4BAA6B,CAC7B,mFAAkG,CAKlG,qBAAuB,CAJvB,YAAa,CACb,qBAAsB,CAJtB,WAAY,CAHZ,MAAO,CAFP,iBAAkB,CAClB,KAAM,CAEN,OAAQ,CAOR,wBAAyB,CACzB,eAAgB,CAEhB,YAAa,CATb,UAUF,CACA,uHAEE,eAAgB,CADhB,oBAEF,CACA,4JAME,UAAc,CALd,cAAe,CACf,eAAgB,CAChB,QAAS,CACT,cAAe,CACf,eAEF,CACA,mKAEE,YAAa,CACb,oBAAqB,CACrB,2BAA4B,CAI5B,wBAA+B,CAP/B,mBAAoB,CAQpB,iBAAmB,CACnB,mBAAoB,CACpB,cAAe,CANf,eAAgB,CAChB,sBAAuB,CACvB,kBAKF,CACA,6JAEE,UAAc,CADd,kBAEF,CACA,iIAIE,qBAAuB,CAFvB,eAAgB,CAChB,iBAAkB,CAFlB,UAIF,CACA,uKAKE,WAAY,CAFZ,MAAO,CAGP,mBAAiB,CAAjB,gBAAiB,CALjB,iBAAkB,CAClB,KAAM,CAEN,UAGF,CACA,8BACE,iIACE,iBAAkB,CAClB,aACF,CACF,CACA,kCACE,iIACE,kBACF,CACF,CACA,4HAEE,kBAAmB,CADnB,iBAAkB,CAGlB,WAAa,CADb,SAEF,CACA,yHACE,kBACF,CACA,8JACE,sBAAuB,CACvB,SACF,CACA,idAEE,aACF,CACA,ydAEE,uBACF,CCvMA,iDACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,gDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,kDACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,wDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,+CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,uDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,oDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,yDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,wCAME,kBAAmB,CAHnB,+BAAoC,CAEpC,YAAa,CAHb,OAAQ,CAKR,sBAAuB,CANvB,cAAe,CAGf,WAIF,CACA,8EAEE,gBAAiB,CADjB,iBAEF,CACA,kHAKE,aAAc,CAJd,gBAAiB,CACjB,cAAe,CAIf,mBAAiB,CAAjB,gBAAiB,CAFjB,eAAgB,CADhB,UAIF,CACA,oHACE,wBACF,CACA,uJAEE,gBAAiB,CADjB,QAEF,CACA,wJACE,kBACF,CACA,yJACE,aACF,CACA,8JACE,aAAc,CACd,cAAe,CACf,mBAAoB,CACpB,eACF,CACA,qHAGE,+BAAgC,CADhC,4BAA6B,CAE7B,YAAa,CAHb,mBAAoB,CAIpB,qCACF,CACA,0JACE,4BACF,CACA,iKACE,eAAgB,CAChB,mBACF,CACA,2JACE,cACF,CACA,kHACE,iBAAkB,CAElB,UAAW,CADX,QAEF,CACA,0HACE,wBACF,CACA,yBACE,wCACE,oBACF,CACF,CCnKA,2CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,0CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,4CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,kDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,yCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,iDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,mDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,kCACE,6DAA+D,CAC/D,qBACF,CACA,iJAIE,kBAAmB,CAGnB,4CAA8C,CAJ9C,YAAa,CAEb,sBAAuB,CACvB,kBAAmB,CAJnB,iBAMF,CACA,yEACE,cACF,CACA,kFACE,6CACF,CACA,2GACE,kBACF,CACA,4DAEE,uBAAyB,CADzB,sBAEF,CACA,qMAGE,uBAAyB,CADzB,YAEF,CACA,4DAEE,wBAA0B,CAD1B,qBAEF,CACA,qMAGE,wBAA0B,CAD1B,qBAEF,CACA,4DAEE,wBAA0B,CAD1B,uBAEF,CACA,qMAGE,wBAA0B,CAD1B,qBAEF,CCxKA,0EACE,eACF,CCwBA,uCACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,sCACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,wCACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,8CACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,qCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,6CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,0CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,+CACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,8BAEE,QAAS,CAIT,YAAa,CACb,sBAAuB,CAJvB,MAAO,CAKP,YAAa,CAPb,cAAe,CAGf,OAAQ,CACR,UAIF,CACA,0DAIE,sBAAyB,CADzB,6CAA2B,CAE3B,mDAAyD,CAJzD,eAAgB,CAChB,UAIF,CC9GA,8CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,6CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,+CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,qDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,4CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,oDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,iDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,sDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,qCAGE,uDAAyD,CAEzD,oBAAqB,CACrB,UAAc,CALd,mBAAoB,CAGpB,kBAAoB,CAFpB,UAKF,CACA,sEASE,kBAAmB,CANnB,qBAAyB,CACzB,iBAAkB,CAOlB,aAAc,CAHd,YAAa,CAHb,gBAAkB,CAClB,eAAgB,CAJhB,aAAc,CAQd,sBAAuB,CAHvB,gBAAiB,CANjB,YAWF,CACA,2EACE,eACF,CACA,2EAEE,eAAgB,CADhB,cAEF,CACA,2EACE,cACF,CC5HA,6CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,4CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,oDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,2CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,mDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,gDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,qDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,oCAME,kBAAmB,CAHnB,+BAAoC,CAEpC,YAAa,CAHb,OAAQ,CAKR,wBAAyB,CANzB,cAAe,CAGf,WAIF,CACA,sEAEE,WAAY,CADZ,cAEF,CC1GA,2CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,0CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,4CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,kDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,yCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,iDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,mDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,kCAEE,+BAAgC,CADhC,mBAEF,CACA,gEAGE,qBAAuB,CADvB,gBAAiB,CAEjB,mBAAiB,CAAjB,gBAAiB,CACjB,eAAgB,CAJhB,UAKF,CACA,+DACE,MACF,CACA,4FACE,eACF,CACA,6FAEE,kBAAmB,CADnB,iBAEF,CClHA,2CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,0CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,4CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,kDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,yCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,iDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,mDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,iCACE,qBACF,CACA,8DAEE,YAAa,CACb,QAAS,CACT,kBAAmB,CACnB,wDAA2D,CAJ3D,mBAKF,CACA,yBACE,8DACE,yBACF,CACF,CACA,2FAGE,iBAAkB,CADlB,eAAgB,CAEhB,QAAS,CAHT,iBAIF","file":"ui.css","sourcesContent":["/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n background-color: #ffffff;\n position: relative;\n padding-bottom: 4rem;\n}\n.container .description {\n padding: 1rem 1rem 0.5rem;\n text-align: center;\n font-size: 0.9rem;\n}\n.container .contact {\n padding: 1rem;\n}\n.container .contact svg path {\n fill: #ffffff;\n}\n.container .categories {\n max-width: 100%;\n position: sticky;\n z-index: 1;\n left: 0;\n right: 0;\n top: 0;\n background-color: #ffffff;\n padding: 0.5rem 1rem;\n}\n.container .footer {\n display: block;\n width: 100%;\n text-align: center;\n padding: 3rem 2rem 2rem;\n font-size: 0.75rem;\n color: #a1a5b7;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n width: 100%;\n height: 12.5rem;\n position: relative;\n margin-bottom: 3rem;\n}\n.container .cover {\n width: 100%;\n height: 100%;\n object-fit: cover;\n}\n.container .content {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n width: 100%;\n padding: 1rem 1rem 2rem;\n color: #ffffff;\n background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 20%, transparent 100%);\n display: flex;\n align-items: flex-end;\n}\n.container .content .logo {\n display: block;\n width: 6rem;\n height: 6rem;\n border-radius: 50%;\n overflow: hidden;\n object-fit: cover;\n}\n.container .content .info {\n width: calc(100% - 7rem);\n overflow: hidden;\n}\n.container .content .info .name {\n font-size: 1.5rem;\n margin: 0;\n max-width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.container .content .info .address {\n color: #ffffff;\n font-size: 0.9rem;\n}\n.container .content .info .address .addressText {\n display: -webkit-box;\n line-clamp: 2;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: normal;\n}\n.container .content .labels {\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n height: 100%;\n padding: 0.75rem;\n scrollbar-width: none;\n}\n.container .content .labels::-webkit-scrollbar {\n height: 0;\n width: 0;\n background: transparent;\n}\n.container .social {\n position: absolute;\n bottom: -1.25rem;\n left: 0;\n right: 0;\n display: flex;\n justify-content: center;\n}\n.container .links {\n padding: 0.25rem 0.75rem;\n background-color: #ffffff;\n border-radius: 1.5rem;\n box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);\n width: fit-content;\n}\n.container .links .wifiPassword {\n display: flex;\n align-items: center;\n cursor: pointer;\n padding: 0.5rem;\n}\n.container .links .wifiPassword .wifiPasswordIcon {\n height: 100%;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n position: absolute;\n top: 1rem;\n right: 1rem;\n z-index: 1;\n}\n.container .currentLanguage {\n height: 1.5rem;\n width: 1.5rem;\n flex: 0 0 1.5rem;\n background-color: #ffffff;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n overflow: hidden;\n object-fit: cover;\n border: 2px solid #ffffff;\n}\n.container .options {\n padding: 0 1rem;\n height: 1.5rem;\n border-radius: 1.5rem;\n width: 0;\n overflow: hidden;\n}\n.container .options .option {\n height: 1.5rem;\n width: 1.5rem;\n flex: 0 0 1.5rem;\n background-color: #ffffff;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n overflow: hidden;\n object-fit: cover;\n border: 2px solid #ffffff;\n transform: translateX(500%);\n transition: transform 0.2s;\n}\n.container .options .option:nth-child(2) {\n transition-delay: 0.1s;\n}\n.container .options .option:nth-child(3) {\n transition-delay: 0.2s;\n}\n.container .options .option:nth-child(4) {\n transition-delay: 0.3s;\n}\n.container .options .option:nth-child(5) {\n transition-delay: 0.4s;\n}\n.container .options .option:nth-child(6) {\n transition-delay: 0.5s;\n}\n.container .options .option:nth-child(7) {\n transition-delay: 0.6s;\n}\n.container .options .option:nth-child(8) {\n transition-delay: 0.7s;\n}\n.container .options .option:nth-child(9) {\n transition-delay: 0.8s;\n}\n.container .options .option:nth-child(10) {\n transition-delay: 0.9s;\n}\n.container .options.isOpen {\n width: max-content;\n}\n.container .options.isOpen .option {\n transform: translateX(0%);\n}",".container {\n padding: 1rem;\n}\n.container .view {\n margin-bottom: -1rem;\n}\n.container .header {\n margin-bottom: -1rem;\n}\n.container .products {\n width: 100%;\n padding: 3rem 0 0;\n scroll-margin-top: 2rem;\n overflow-x: hidden;\n text-overflow: ellipsis;\n}\n.container .products .category {\n font-size: 1.5rem;\n margin-bottom: 1rem;\n width: 100%;\n overflow-x: hidden;\n text-overflow: ellipsis;\n}\n.container .products .list {\n width: 100%;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n width: 100%;\n border-bottom: 1px solid #eff2f5;\n padding: 1.5rem 0;\n position: relative;\n overflow: hidden;\n}\n.container.isClickable {\n cursor: pointer;\n}\n.container .data {\n flex: 1;\n padding-right: 1.5rem;\n overflow: hidden;\n}\n.container .data .name {\n font-size: 1rem;\n font-weight: 600;\n margin: 0;\n max-width: 100%;\n overflow: hidden;\n}\n.container .data .description {\n display: -webkit-box;\n line-clamp: 2;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: normal;\n color: #a1a5b7;\n font-size: 0.875rem;\n line-height: 1.25rem;\n max-width: 100%;\n}\n.container .data .price {\n line-height: 1.5rem;\n}\n.container .image {\n width: 10rem;\n height: 5.625rem;\n border-radius: 0.475rem;\n object-fit: cover;\n overflow: hidden;\n}\n.container .addToCart {\n position: absolute;\n pointer-events: all;\n top: 1.75rem;\n right: 0.25rem;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n width: 100%;\n border-bottom: 1px solid #eff2f5;\n padding: 1.5rem 0;\n}\n.container .content {\n position: relative;\n overflow: hidden;\n width: 100%;\n /* Use the modern aspect-ratio property where supported */\n /* Fallback: Use padding hack for older browsers */\n}\n.container .content.isClickable {\n cursor: pointer;\n}\n.container .content .info {\n position: absolute;\n top: 0;\n left: 0;\n inset: 0;\n width: 100%;\n height: 100%;\n background-color: transparent;\n background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 30%, transparent 60%);\n display: flex;\n flex-direction: column;\n justify-content: flex-end;\n overflow: hidden;\n border-radius: 0.475rem;\n padding: 1rem;\n}\n.container .content .data {\n padding-right: 1.5rem;\n overflow: hidden;\n}\n.container .content .data .name {\n font-size: 1rem;\n font-weight: 600;\n margin: 0;\n max-width: 100%;\n overflow: hidden;\n color: #ffffff;\n}\n.container .content .data .description {\n display: -webkit-box;\n line-clamp: 1;\n -webkit-line-clamp: 1;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: normal;\n color: rgba(255, 255, 255, 0.9);\n font-size: 0.875rem;\n line-height: 1.25rem;\n max-width: 100%;\n}\n.container .content .data .price {\n line-height: 1.5rem;\n color: #ffffff;\n}\n.container .content .imageContainer {\n width: 100%;\n overflow: hidden;\n position: relative;\n border-radius: 0.475rem;\n}\n.container .content .imageContainer .image {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n object-fit: cover;\n}\n@supports (aspect-ratio: 16/9) {\n .container .content .imageContainer {\n aspect-ratio: 16/9;\n padding-top: 0;\n }\n}\n@supports not (aspect-ratio: 16/9) {\n .container .content .imageContainer {\n padding-top: 56.25%; /* 16:9 aspect ratio = 9 / 16 * 100 */\n }\n}\n.container .content .addToCart {\n position: absolute;\n pointer-events: all;\n top: 0.5rem;\n right: 0.5rem;\n}\n.container .content.noImage {\n min-height: 4.75rem;\n}\n.container .content.noImage .info {\n background: transparent;\n padding: 0;\n}\n.container .content.noImage .info .data .name,\n.container .content.noImage .info .data .price {\n color: #181c32;\n}\n.container .content.noImage .info .data .description,\n.container .content.noImage .info .data .volume {\n color: #a1a5b7 !important;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n position: fixed;\n inset: 0;\n background-color: rgba(0, 0, 0, 0.5);\n z-index: 110;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.container .content {\n position: relative;\n padding: 0 0 1rem;\n}\n.container .content .image {\n max-height: 25rem;\n max-width: 100%;\n width: 100%;\n overflow: hidden;\n display: block;\n object-fit: cover;\n}\n.container .content .details {\n padding: 1rem 1.5rem 2rem;\n}\n.container .content .details .name {\n margin: 0;\n font-size: 1.5rem;\n}\n.container .content .details .price {\n line-height: 1.5rem;\n}\n.container .content .details .volume {\n color: #a1a5b7;\n}\n.container .content .details .description {\n color: #a1a5b7;\n font-size: 1rem;\n line-height: 1.25rem;\n margin-top: 1rem;\n}\n.container .content .variants {\n padding: 1rem 1.5rem;\n border-top: 1px solid #eff2f5;\n border-bottom: 1px solid #eff2f5;\n box-shadow: 0;\n transition: box-shadow 0.1s ease-in-out;\n}\n.container .content .variants.focused {\n box-shadow: 0px 0px 5px 0px #f1416c;\n}\n.container .content .variants .variantsTitle {\n font-weight: 600;\n margin-bottom: 0.5rem;\n}\n.container .content .variants .variant {\n cursor: pointer;\n}\n.container .content .close {\n position: absolute;\n top: 1rem;\n right: 1rem;\n}\n.container .addAction .actionTitle {\n white-space: break-spaces;\n}\n@media (max-width: 580px) {\n .container {\n align-items: flex-end;\n }\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n background-color: var(--sorocraft-color-primary-light, #f5f8fa);\n border-radius: 3.75rem;\n}\n.container .quantityAction,\n.container .quantityValue {\n text-align: center;\n display: flex;\n align-items: center;\n justify-content: center;\n line-height: 1.5rem;\n color: var(--sorocraft-color-primary, #2d3436);\n}\n.container .quantityAction {\n cursor: pointer;\n}\n.container .quantityAction svg path {\n stroke: var(--sorocraft-color-primary, #2d3436);\n}\n.container .quantityAction.isDisabled {\n cursor: not-allowed;\n}\n.container.sm {\n width: 7.5rem !important;\n height: 2.5rem !important;\n}\n.container.sm .quantityAction,\n.container.sm .quantityValue {\n width: 2.5rem;\n height: 2.5rem !important;\n}\n.container.md {\n width: 10rem !important;\n height: 3.25rem !important;\n}\n.container.md .quantityAction,\n.container.md .quantityValue {\n width: 3.3333333333rem;\n height: 3.25rem !important;\n}\n.container.lg {\n width: 12.5rem !important;\n height: 3.75rem !important;\n}\n.container.lg .quantityAction,\n.container.lg .quantityValue {\n width: 4.1666666667rem;\n height: 3.75rem !important;\n}",".container .title {\n font-weight: 600;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n position: fixed;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 10;\n display: flex;\n justify-content: center;\n padding: 1rem;\n}\n.container .content {\n max-width: 25rem;\n width: 100%;\n animation-name: bottomSheet;\n animation-duration: 300ms;\n animation-timing-function: cubic-bezier(0.32, 1, 0.23, 1);\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n min-height: 3.375rem;\n width: 100%;\n background-color: var(--sorocraft-color-primary, #2d3436);\n padding: 0.9rem 1rem;\n border-radius: 1.5rem;\n color: #ffffff;\n}\n.container .count {\n width: 1.5rem;\n height: 1.5rem;\n background-color: #ffffff;\n border-radius: 50%;\n font-size: 0.75rem;\n font-weight: 500;\n line-height: 1rem;\n display: flex;\n align-items: center;\n justify-content: center;\n color: #181c32;\n}\n.container .actionText {\n font-weight: 600;\n}\n.container .totalPrice {\n text-align: end;\n font-weight: 500;\n}\n.container.isClickable {\n cursor: pointer;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n position: fixed;\n inset: 0;\n background-color: rgba(0, 0, 0, 0.5);\n z-index: 100;\n display: flex;\n align-items: center;\n justify-content: flex-end;\n}\n.container .content {\n padding: 1rem 0;\n height: 100%;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n padding: 0.75rem 1rem;\n border-bottom: 1px solid #eff2f5;\n}\n.container .image {\n width: 5rem;\n height: 2.8125rem;\n border-radius: 0.475rem;\n object-fit: cover;\n overflow: hidden;\n}\n.container .data {\n flex: 1;\n}\n.container .data .name {\n font-weight: 500;\n}\n.container .data .price {\n margin-top: 0.25rem;\n line-height: 1.5rem;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.branches {\n background-color: #ffffff;\n}\n.branches .list {\n padding-bottom: 2rem;\n display: grid;\n gap: 2rem;\n grid-auto-rows: 1fr;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n}\n@media (max-width: 580px) {\n .branches .list {\n grid-template-columns: 1fr;\n }\n}\n.branches .list .name {\n text-align: center;\n font-weight: 500;\n font-size: 1.25rem;\n margin: 0;\n}"]}
1
+ {"version":3,"sources":["PublicMenu.module.scss","Header.module.scss","Languages.module.scss","Products.module.scss","ProductsListItem.module.scss","ProductsGridItem.module.scss","ProductDetails.module.scss","Quantity.module.scss","ProductInCart.module.scss","ProductVariants.module.scss","ProductAddons.module.scss","Cart.module.scss","CartStepper.module.scss","CartDrawer.module.scss","CartItem.module.scss","Branches.module.scss"],"names":[],"mappings":"AA2BA,6CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,4CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,oDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,2CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,mDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,gDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,qDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,oCACE,qBAAyB,CAEzB,mBAAoB,CADpB,iBAEF,CACA,0EAGE,eAAiB,CAFjB,uBAAyB,CACzB,iBAEF,CACA,sEACE,YACF,CACA,+EACE,SACF,CACA,yEAOE,qBAAyB,CAHzB,MAAO,CAHP,cAAe,CAOf,kBAAoB,CANpB,eAAgB,CAGhB,OAAQ,CACR,KAAM,CAHN,SAMF,CACA,qEAME,aAAc,CALd,aAAc,CAId,gBAAkB,CADlB,sBAAuB,CADvB,iBAAkB,CADlB,UAKF,CC/HA,yCACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,wCACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,0CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,gDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,uCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,+CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,4CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,iDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,gCAEE,cAAe,CAEf,kBAAmB,CADnB,iBAAkB,CAFlB,UAIF,CACA,4DAEE,WAAY,CACZ,mBAAiB,CAAjB,gBAAiB,CAFjB,UAGF,CACA,8DAWE,oBAAqB,CAFrB,+DAA2E,CAN3E,QAAS,CAKT,UAAc,CAEd,YAAa,CANb,MAAO,CAGP,sBAAuB,CANvB,iBAAkB,CAIlB,OAAQ,CAHR,KAAM,CAIN,UAMF,CACA,yFAIE,iBAAkB,CAHlB,aAAc,CAEd,WAAY,CAGZ,mBAAiB,CAAjB,gBAAiB,CADjB,eAAgB,CAHhB,UAKF,CACA,yFAEE,eAAgB,CADhB,uBAEF,CACA,oHACE,gBAAiB,CACjB,QAAS,CACT,cAAe,CACf,eAAgB,CAChB,sBACF,CACA,uHACE,UAAc,CACd,eACF,CACA,yJAEE,YAAa,CACb,oBAAqB,CACrB,2BAA4B,CAH5B,mBAAoB,CAIpB,eAAgB,CAChB,sBAAuB,CACvB,kBACF,CACA,2FAGE,QAAS,CAET,WAAY,CACZ,cAAgB,CALhB,iBAAkB,CAGlB,OAAQ,CAGR,oBAAqB,CALrB,KAMF,CACA,8GAGE,sBAAuB,CAFvB,QAAS,CACT,OAEF,CACA,6DAEE,eAAgB,CAGhB,YAAa,CACb,sBAAuB,CAHvB,MAAO,CAFP,iBAAkB,CAGlB,OAGF,CACA,4DAEE,qBAAyB,CACzB,oBAAqB,CACrB,qCAAgD,CAHhD,qBAAwB,CAIxB,sBAAkB,CAAlB,iBACF,CACA,+FAEE,kBAAmB,CACnB,cAAe,CAFf,YAAa,CAGb,aACF,CACA,sIACE,WACF,CC3LA,4CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,2CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,6CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,mDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,0CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,kDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,+CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,oDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,mCACE,iBAAkB,CAElB,UAAW,CADX,QAAS,CAET,SACF,CACA,4EAQE,kBAAmB,CAJnB,qBAAyB,CAQzB,qBAAyB,CAPzB,iBAAkB,CAIlB,cAAe,CAHf,YAAa,CAHb,eAAgB,CAFhB,aAAc,CAMd,sBAAuB,CAIvB,mBAAiB,CAAjB,gBAAiB,CADjB,eAAgB,CARhB,YAWF,CACA,oEAGE,oBAAqB,CADrB,aAAc,CAGd,eAAgB,CAJhB,cAAe,CAGf,OAEF,CACA,oGAQE,kBAAmB,CAJnB,qBAAyB,CAQzB,qBAAyB,CAPzB,iBAAkB,CAIlB,cAAe,CAHf,YAAa,CAHb,eAAgB,CAFhB,aAAc,CAMd,sBAAuB,CAIvB,mBAAiB,CAAjB,gBAAiB,CADjB,eAAgB,CAGhB,0BAA2B,CAC3B,wBAA0B,CAZ1B,YAaF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,iHACE,oBACF,CACA,kHACE,oBACF,CACA,mGACE,sBAAkB,CAAlB,iBACF,CACA,mIACE,uBACF,CCpMA,kCACE,YACF,CAIA,gIACE,mBACF,CACA,mEAIE,iBAAkB,CAFlB,gBAAiB,CACjB,sBAAuB,CAEvB,sBAAuB,CAJvB,UAKF,CACA,oGACE,gBAAiB,CACjB,kBAAmB,CAEnB,iBAAkB,CAClB,sBAAuB,CAFvB,UAGF,CACA,gGACE,UACF,CCEA,mDACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,kDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,oDACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,0DACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,iDACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,yDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,sDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,2DACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,0CAEE,+BAAgC,CAGhC,eAAgB,CAFhB,gBAAiB,CACjB,iBAAkB,CAHlB,UAKF,CACA,qFACE,cACF,CACA,+EACE,MAAO,CAEP,eAAgB,CADhB,oBAEF,CACA,oHACE,cAAe,CACf,eAAgB,CAChB,QAAS,CACT,cAAe,CACf,eACF,CACA,2HAEE,YAAa,CACb,oBAAqB,CACrB,2BAA4B,CAI5B,aAAc,CAPd,mBAAoB,CAQpB,iBAAmB,CACnB,mBAAoB,CACpB,cAAe,CANf,eAAgB,CAChB,sBAAuB,CACvB,kBAKF,CACA,qHACE,kBACF,CACA,gFAGE,qBAAuB,CADvB,eAAgB,CAEhB,mBAAiB,CAAjB,gBAAiB,CACjB,eAAgB,CAJhB,WAKF,CACA,oFAEE,kBAAmB,CADnB,iBAAkB,CAGlB,YAAc,CADd,WAEF,CACA,sHACE,eACF,CACA,2JAEE,mBAAqB,CADrB,kBAEF,CCvJA,mDACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,kDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,oDACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,0DACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,iDACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,yDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,sDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,2DACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,0CAEE,+BAAgC,CAChC,gBAAiB,CAFjB,UAGF,CACA,kFAEE,eAAgB,CADhB,iBAAkB,CAElB,UAGF,CACA,6HACE,cACF,CACA,uHAOE,4BAA6B,CAC7B,mFAAkG,CAKlG,qBAAuB,CAJvB,YAAa,CACb,qBAAsB,CAJtB,WAAY,CAHZ,MAAO,CAFP,iBAAkB,CAClB,KAAM,CAEN,OAAQ,CAOR,wBAAyB,CACzB,eAAgB,CAEhB,YAAa,CATb,UAUF,CACA,uHACE,eACF,CACA,4JAME,UAAc,CALd,cAAe,CACf,eAAgB,CAChB,QAAS,CACT,cAAe,CACf,eAEF,CACA,mKAEE,YAAa,CACb,oBAAqB,CACrB,2BAA4B,CAI5B,wBAA+B,CAP/B,mBAAoB,CAQpB,iBAAmB,CACnB,mBAAoB,CACpB,cAAe,CANf,eAAgB,CAChB,sBAAuB,CACvB,kBAKF,CACA,6JAEE,UAAc,CADd,kBAEF,CACA,iIAIE,qBAAuB,CAFvB,eAAgB,CAChB,iBAAkB,CAFlB,UAIF,CACA,uKAKE,WAAY,CAFZ,MAAO,CAGP,mBAAiB,CAAjB,gBAAiB,CALjB,iBAAkB,CAClB,KAAM,CAEN,UAGF,CACA,8BACE,iIACE,iBAAkB,CAClB,aACF,CACF,CACA,kCACE,iIACE,kBACF,CACF,CACA,4HAEE,kBAAmB,CADnB,iBAAkB,CAGlB,WAAa,CADb,SAEF,CACA,yHACE,kBACF,CACA,8JACE,sBAAuB,CACvB,SACF,CACA,idAEE,aACF,CACA,wOACE,kBACF,CACA,ydAEE,uBACF,CCzMA,iDACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,gDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,kDACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,wDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,+CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,uDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,oDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,yDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,wCAME,kBAAmB,CAHnB,+BAAoC,CAEpC,YAAa,CAHb,OAAQ,CAKR,sBAAuB,CANvB,cAAe,CAGf,WAIF,CACA,8EAEE,gBAAiB,CADjB,iBAEF,CACA,kHAKE,aAAc,CAJd,gBAAiB,CACjB,cAAe,CAIf,mBAAiB,CAAjB,gBAAiB,CAFjB,eAAgB,CADhB,UAIF,CACA,oHAEE,cAAe,CAEf,eAAgB,CAHhB,wBAAyB,CAIzB,sBAAuB,CAFvB,UAGF,CACA,uJAEE,gBAAiB,CADjB,QAEF,CACA,wJACE,kBACF,CACA,yJACE,aACF,CACA,8JACE,aAAc,CACd,cAAe,CACf,mBAAoB,CACpB,eACF,CACA,oHAEE,+BAAgC,CADhC,4BAA6B,CAE7B,cAAe,CAEf,eAAgB,CAChB,sBAAuB,CAFvB,UAGF,CACA,kHACE,iBAAkB,CAElB,UAAW,CADX,QAEF,CACA,0HACE,wBACF,CACA,yBACE,wCACE,oBACF,CACF,CC9JA,2CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,0CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,4CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,kDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,yCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,iDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,mDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,kCACE,6DAA+D,CAC/D,qBACF,CACA,iJAIE,kBAAmB,CAGnB,4CAA8C,CAJ9C,YAAa,CAEb,sBAAuB,CACvB,kBAAmB,CAJnB,iBAMF,CACA,yEACE,cACF,CACA,kFACE,6CACF,CACA,2GACE,kBACF,CACA,4DAEE,uBAAyB,CADzB,sBAEF,CACA,qMAGE,uBAAyB,CADzB,YAEF,CACA,4DAEE,wBAA0B,CAD1B,qBAEF,CACA,qMAGE,wBAA0B,CAD1B,qBAEF,CACA,4DAEE,wBAA0B,CAD1B,uBAEF,CACA,qMAGE,wBAA0B,CAD1B,qBAEF,CCzKA,0EACE,eACF,CCyBA,kDACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,iDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,mDACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,yDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,gDACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,wDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,qDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,0DACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,yCAEE,YAAa,CADb,mBAAoB,CAEpB,qCACF,CACA,sFACE,eAAgB,CAChB,mBACF,CACA,gFACE,cACF,CACA,+EACE,4BACF,CC5GA,gDACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,+CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,iDACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,uDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,8CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,sDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,mDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,wDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,uCAEE,YAAa,CADb,mBAAoB,CAEpB,qCACF,CACA,2EACE,4BACF,CACA,iFACE,eAAgB,CAChB,mBACF,CCzGA,uCACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,sCACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,wCACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,8CACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,qCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,6CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,0CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,+CACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,8BAEE,QAAS,CAIT,YAAa,CACb,sBAAuB,CAJvB,MAAO,CAKP,YAAa,CAPb,cAAe,CAGf,OAAQ,CACR,UAIF,CACA,0DAIE,sBAAyB,CADzB,6CAA2B,CAE3B,mDAAyD,CAJzD,eAAgB,CAChB,UAIF,CC9GA,8CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,6CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,+CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,qDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,4CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,oDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,iDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,sDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,qCAGE,uDAAyD,CAEzD,oBAAqB,CACrB,UAAc,CALd,mBAAoB,CAGpB,kBAAoB,CAFpB,UAKF,CACA,sEASE,kBAAmB,CANnB,qBAAyB,CACzB,iBAAkB,CAOlB,aAAc,CAHd,YAAa,CAHb,gBAAkB,CAClB,eAAgB,CAJhB,aAAc,CAQd,sBAAuB,CAHvB,gBAAiB,CANjB,YAWF,CACA,2EACE,eACF,CACA,2EAEE,eAAgB,CADhB,cAEF,CACA,2EACE,cACF,CC5HA,6CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,4CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,oDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,2CACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,mDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,gDACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,qDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,oCAME,kBAAmB,CAHnB,+BAAoC,CAEpC,YAAa,CAHb,OAAQ,CAKR,wBAAyB,CANzB,cAAe,CAGf,WAIF,CACA,sEAEE,WAAY,CADZ,cAEF,CC1GA,2CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,0CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,4CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,kDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,yCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,iDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,mDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,kCAEE,+BAAgC,CADhC,mBAEF,CACA,gEAGE,qBAAuB,CADvB,gBAAiB,CAEjB,mBAAiB,CAAjB,gBAAiB,CACjB,eAAgB,CAJhB,UAKF,CACA,+DACE,MAAO,CACP,cAAe,CACf,eAAgB,CAChB,sBACF,CACA,4FACE,eAAgB,CAChB,aAAc,CACd,mBACF,CACA,6FAEE,kBAAmB,CADnB,gBAEF,CCvHA,2CACE,GACE,MACF,CACA,GACE,MACF,CACF,CACA,0CACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,4CACE,GACE,UACF,CACA,IACE,SACF,CACA,GACE,UACF,CACF,CACA,kDACE,GACE,QACF,CACA,GACE,WACF,CACF,CACA,yCACE,GACE,SACF,CACA,GACE,SACF,CACF,CA4BA,iDACE,GACE,uBACF,CACA,GACE,2BACF,CACF,CACA,8CACE,GACE,0BACF,CACA,GACE,sBACF,CACF,CACA,mDACE,GACE,0BACF,CACA,GACE,uBACF,CACF,CACA,iCACE,qBACF,CACA,8DAEE,YAAa,CACb,QAAS,CACT,kBAAmB,CACnB,wDAA2D,CAJ3D,mBAKF,CACA,yBACE,8DACE,yBACF,CACF,CACA,2FAGE,iBAAkB,CADlB,eAAgB,CAEhB,QAAS,CAHT,iBAIF","file":"ui.css","sourcesContent":["/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n background-color: #ffffff;\n position: relative;\n padding-bottom: 4rem;\n}\n.container .description {\n padding: 1rem 1rem 0.5rem;\n text-align: center;\n font-size: 0.9rem;\n}\n.container .contact {\n padding: 1rem;\n}\n.container .contact svg path {\n fill: #ffffff;\n}\n.container .categories {\n max-width: 100%;\n position: sticky;\n z-index: 1;\n left: 0;\n right: 0;\n top: 0;\n background-color: #ffffff;\n padding: 0.5rem 1rem;\n}\n.container .footer {\n display: block;\n width: 100%;\n text-align: center;\n padding: 3rem 2rem 2rem;\n font-size: 0.75rem;\n color: #a1a5b7;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n width: 100%;\n height: 12.5rem;\n position: relative;\n margin-bottom: 3rem;\n}\n.container .cover {\n width: 100%;\n height: 100%;\n object-fit: cover;\n}\n.container .content {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n width: 100%;\n padding: 1rem 1rem 2rem;\n color: #ffffff;\n background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 20%, transparent 100%);\n display: flex;\n align-items: flex-end;\n}\n.container .content .logo {\n display: block;\n width: 6rem;\n height: 6rem;\n border-radius: 50%;\n overflow: hidden;\n object-fit: cover;\n}\n.container .content .info {\n width: calc(100% - 7rem);\n overflow: hidden;\n}\n.container .content .info .name {\n font-size: 1.5rem;\n margin: 0;\n max-width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.container .content .info .address {\n color: #ffffff;\n font-size: 0.9rem;\n}\n.container .content .info .address .addressText {\n display: -webkit-box;\n line-clamp: 2;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: normal;\n}\n.container .content .labels {\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n height: 100%;\n padding: 0.75rem;\n scrollbar-width: none;\n}\n.container .content .labels::-webkit-scrollbar {\n height: 0;\n width: 0;\n background: transparent;\n}\n.container .social {\n position: absolute;\n bottom: -1.25rem;\n left: 0;\n right: 0;\n display: flex;\n justify-content: center;\n}\n.container .links {\n padding: 0.25rem 0.75rem;\n background-color: #ffffff;\n border-radius: 1.5rem;\n box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);\n width: fit-content;\n}\n.container .links .wifiPassword {\n display: flex;\n align-items: center;\n cursor: pointer;\n padding: 0.5rem;\n}\n.container .links .wifiPassword .wifiPasswordIcon {\n height: 100%;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n position: absolute;\n top: 1rem;\n right: 1rem;\n z-index: 1;\n}\n.container .currentLanguage {\n height: 1.5rem;\n width: 1.5rem;\n flex: 0 0 1.5rem;\n background-color: #ffffff;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n overflow: hidden;\n object-fit: cover;\n border: 2px solid #ffffff;\n}\n.container .options {\n padding: 0 1rem;\n height: 1.5rem;\n border-radius: 1.5rem;\n width: 0;\n overflow: hidden;\n}\n.container .options .option {\n height: 1.5rem;\n width: 1.5rem;\n flex: 0 0 1.5rem;\n background-color: #ffffff;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n overflow: hidden;\n object-fit: cover;\n border: 2px solid #ffffff;\n transform: translateX(500%);\n transition: transform 0.2s;\n}\n.container .options .option:nth-child(2) {\n transition-delay: 0.1s;\n}\n.container .options .option:nth-child(3) {\n transition-delay: 0.2s;\n}\n.container .options .option:nth-child(4) {\n transition-delay: 0.3s;\n}\n.container .options .option:nth-child(5) {\n transition-delay: 0.4s;\n}\n.container .options .option:nth-child(6) {\n transition-delay: 0.5s;\n}\n.container .options .option:nth-child(7) {\n transition-delay: 0.6s;\n}\n.container .options .option:nth-child(8) {\n transition-delay: 0.7s;\n}\n.container .options .option:nth-child(9) {\n transition-delay: 0.8s;\n}\n.container .options .option:nth-child(10) {\n transition-delay: 0.9s;\n}\n.container .options.isOpen {\n width: max-content;\n}\n.container .options.isOpen .option {\n transform: translateX(0%);\n}",".container {\n padding: 1rem;\n}\n.container .view {\n margin-bottom: -1rem;\n}\n.container .header {\n margin-bottom: -1rem;\n}\n.container .products {\n width: 100%;\n padding: 3rem 0 0;\n scroll-margin-top: 2rem;\n overflow-x: hidden;\n text-overflow: ellipsis;\n}\n.container .products .category {\n font-size: 1.5rem;\n margin-bottom: 1rem;\n width: 100%;\n overflow-x: hidden;\n text-overflow: ellipsis;\n}\n.container .products .list {\n width: 100%;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n width: 100%;\n border-bottom: 1px solid #eff2f5;\n padding: 1.5rem 0;\n position: relative;\n overflow: hidden;\n}\n.container.isClickable {\n cursor: pointer;\n}\n.container .info {\n flex: 1;\n padding-right: 1.5rem;\n overflow: hidden;\n}\n.container .info .name {\n font-size: 1rem;\n font-weight: 600;\n margin: 0;\n max-width: 100%;\n overflow: hidden;\n}\n.container .info .description {\n display: -webkit-box;\n line-clamp: 2;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: normal;\n color: #a1a5b7;\n font-size: 0.875rem;\n line-height: 1.25rem;\n max-width: 100%;\n}\n.container .info .price {\n line-height: 1.5rem;\n}\n.container .image {\n width: 10rem;\n height: 5.625rem;\n border-radius: 0.475rem;\n object-fit: cover;\n overflow: hidden;\n}\n.container .addToCart {\n position: absolute;\n pointer-events: all;\n top: 1.75rem;\n right: 0.25rem;\n}\n.container.noImage .info {\n padding-right: 0;\n}\n.container.noImage .info .name {\n padding-right: 3rem;\n margin-bottom: 0.5rem;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n width: 100%;\n border-bottom: 1px solid #eff2f5;\n padding: 1.5rem 0;\n}\n.container .content {\n position: relative;\n overflow: hidden;\n width: 100%;\n /* Use the modern aspect-ratio property where supported */\n /* Fallback: Use padding hack for older browsers */\n}\n.container .content.isClickable {\n cursor: pointer;\n}\n.container .content .info {\n position: absolute;\n top: 0;\n left: 0;\n inset: 0;\n width: 100%;\n height: 100%;\n background-color: transparent;\n background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 30%, transparent 60%);\n display: flex;\n flex-direction: column;\n justify-content: flex-end;\n overflow: hidden;\n border-radius: 0.475rem;\n padding: 1rem;\n}\n.container .content .data {\n overflow: hidden;\n}\n.container .content .data .name {\n font-size: 1rem;\n font-weight: 600;\n margin: 0;\n max-width: 100%;\n overflow: hidden;\n color: #ffffff;\n}\n.container .content .data .description {\n display: -webkit-box;\n line-clamp: 1;\n -webkit-line-clamp: 1;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: normal;\n color: rgba(255, 255, 255, 0.9);\n font-size: 0.875rem;\n line-height: 1.25rem;\n max-width: 100%;\n}\n.container .content .data .price {\n line-height: 1.5rem;\n color: #ffffff;\n}\n.container .content .imageContainer {\n width: 100%;\n overflow: hidden;\n position: relative;\n border-radius: 0.475rem;\n}\n.container .content .imageContainer .image {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n object-fit: cover;\n}\n@supports (aspect-ratio: 16/9) {\n .container .content .imageContainer {\n aspect-ratio: 16/9;\n padding-top: 0;\n }\n}\n@supports not (aspect-ratio: 16/9) {\n .container .content .imageContainer {\n padding-top: 56.25%; /* 16:9 aspect ratio = 9 / 16 * 100 */\n }\n}\n.container .content .addToCart {\n position: absolute;\n pointer-events: all;\n top: 0.5rem;\n right: 0.5rem;\n}\n.container .content.noImage {\n min-height: 4.75rem;\n}\n.container .content.noImage .info {\n background: transparent;\n padding: 0;\n}\n.container .content.noImage .info .data .name,\n.container .content.noImage .info .data .price {\n color: #181c32;\n}\n.container .content.noImage .info .data .name {\n padding-right: 3rem;\n}\n.container .content.noImage .info .data .description,\n.container .content.noImage .info .data .volume {\n color: #a1a5b7 !important;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n position: fixed;\n inset: 0;\n background-color: rgba(0, 0, 0, 0.5);\n z-index: 110;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.container .content {\n position: relative;\n padding: 0 0 1rem;\n}\n.container .content .image {\n max-height: 25rem;\n max-width: 100%;\n width: 100%;\n overflow: hidden;\n display: block;\n object-fit: cover;\n}\n.container .content .details {\n padding: 1rem 1.5rem 2rem;\n max-width: 100%;\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.container .content .details .name {\n margin: 0;\n font-size: 1.5rem;\n}\n.container .content .details .price {\n line-height: 1.5rem;\n}\n.container .content .details .volume {\n color: #a1a5b7;\n}\n.container .content .details .description {\n color: #a1a5b7;\n font-size: 1rem;\n line-height: 1.25rem;\n margin-top: 1rem;\n}\n.container .content .choices {\n border-top: 1px solid #eff2f5;\n border-bottom: 1px solid #eff2f5;\n max-width: 100%;\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.container .content .close {\n position: absolute;\n top: 1rem;\n right: 1rem;\n}\n.container .addAction .actionTitle {\n white-space: break-spaces;\n}\n@media (max-width: 580px) {\n .container {\n align-items: flex-end;\n }\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n background-color: var(--sorocraft-color-primary-light, #f5f8fa);\n border-radius: 3.75rem;\n}\n.container .quantityAction,\n.container .quantityValue {\n text-align: center;\n display: flex;\n align-items: center;\n justify-content: center;\n line-height: 1.5rem;\n color: var(--sorocraft-color-primary, #2d3436);\n}\n.container .quantityAction {\n cursor: pointer;\n}\n.container .quantityAction svg path {\n stroke: var(--sorocraft-color-primary, #2d3436);\n}\n.container .quantityAction.isDisabled {\n cursor: not-allowed;\n}\n.container.sm {\n width: 7.5rem !important;\n height: 2.5rem !important;\n}\n.container.sm .quantityAction,\n.container.sm .quantityValue {\n width: 2.5rem;\n height: 2.5rem !important;\n}\n.container.md {\n width: 10rem !important;\n height: 3.25rem !important;\n}\n.container.md .quantityAction,\n.container.md .quantityValue {\n width: 3.3333333333rem;\n height: 3.25rem !important;\n}\n.container.lg {\n width: 12.5rem !important;\n height: 3.75rem !important;\n}\n.container.lg .quantityAction,\n.container.lg .quantityValue {\n width: 4.1666666667rem;\n height: 3.75rem !important;\n}",".container .title {\n font-weight: 600;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n padding: 1rem 1.5rem;\n box-shadow: 0;\n transition: box-shadow 0.1s ease-in-out;\n}\n.container .variantsTitle {\n font-weight: 600;\n margin-bottom: 0.5rem;\n}\n.container .variant {\n cursor: pointer;\n}\n.container.focused {\n box-shadow: 0px 0px 5px 0px #f1416c;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n padding: 1rem 1.5rem;\n box-shadow: 0;\n transition: box-shadow 0.1s ease-in-out;\n}\n.container.focused {\n box-shadow: 0px 0px 5px 0px #f1416c;\n}\n.container .optionsTitle {\n font-weight: 600;\n margin-bottom: 0.5rem;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n position: fixed;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 10;\n display: flex;\n justify-content: center;\n padding: 1rem;\n}\n.container .content {\n max-width: 25rem;\n width: 100%;\n animation-name: bottomSheet;\n animation-duration: 300ms;\n animation-timing-function: cubic-bezier(0.32, 1, 0.23, 1);\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n min-height: 3.375rem;\n width: 100%;\n background-color: var(--sorocraft-color-primary, #2d3436);\n padding: 0.9rem 1rem;\n border-radius: 1.5rem;\n color: #ffffff;\n}\n.container .count {\n width: 1.5rem;\n height: 1.5rem;\n background-color: #ffffff;\n border-radius: 50%;\n font-size: 0.75rem;\n font-weight: 500;\n line-height: 1rem;\n display: flex;\n align-items: center;\n justify-content: center;\n color: #181c32;\n}\n.container .actionText {\n font-weight: 600;\n}\n.container .totalPrice {\n text-align: end;\n font-weight: 500;\n}\n.container.isClickable {\n cursor: pointer;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n position: fixed;\n inset: 0;\n background-color: rgba(0, 0, 0, 0.5);\n z-index: 100;\n display: flex;\n align-items: center;\n justify-content: flex-end;\n}\n.container .content {\n padding: 1rem 0;\n height: 100%;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.container {\n padding: 0.75rem 1rem;\n border-bottom: 1px solid #eff2f5;\n}\n.container .image {\n width: 5rem;\n height: 2.8125rem;\n border-radius: 0.475rem;\n object-fit: cover;\n overflow: hidden;\n}\n.container .data {\n flex: 1;\n max-width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.container .data .name {\n font-weight: 500;\n line-height: 1;\n margin-bottom: 0.5rem;\n}\n.container .data .price {\n margin-top: 0.5rem;\n line-height: 1.5rem;\n}","/* Text */\n/* Input */\n/* Button */\n/* TABLE */\n/* Modal */\n/* Bagde */\n/* Menu */\n/* Notification */\n/* BRANDS */\n/* Border radius */\n/* Fonts */\n/* WIDTH */\n/* HEIGHT */\n/* CARD */\n/* TABLE */\n/* MODAL */\n/* BADGE */\n/* Menu */\n/* Input */\n/* EDITOR */\n/* HEADER */\n/* Z-INDEX */\n/* SIZES */\n/* SHADOW */\n/**/\n/* BUTTON */\n/* RESPONSIVE */\n@keyframes flexWide {\n from {\n flex: 0;\n }\n to {\n flex: 1;\n }\n}\n@keyframes slidein {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n@keyframes fadeInOut {\n 0% {\n opacity: 0.5;\n }\n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.5;\n }\n}\n@keyframes heightAnimation {\n 0% {\n height: 0%;\n }\n 100% {\n height: 100%;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Firefox < 16 */\n@-moz-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Safari, Chrome and Opera > 12.1 */\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n/* Internet Explorer */\n@-ms-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes floatAnimation {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-20px);\n }\n}\n@keyframes bottomSheet {\n from {\n transform: translate(0, 100%);\n }\n to {\n transform: translate(0, 0);\n }\n}\n@keyframes slideRightToLeft {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.branches {\n background-color: #ffffff;\n}\n.branches .list {\n padding-bottom: 2rem;\n display: grid;\n gap: 2rem;\n grid-auto-rows: 1fr;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n}\n@media (max-width: 580px) {\n .branches .list {\n grid-template-columns: 1fr;\n }\n}\n.branches .list .name {\n text-align: center;\n font-weight: 500;\n font-size: 1.25rem;\n margin: 0;\n}"]}
@@ -0,0 +1,14 @@
1
+ import { MenuAddon, MenuAddonOption, MenuAddonOptionTranslation, MenuAddonTranslation } from "src/models/addon";
2
+ export declare const getAddonTranslation: (addon: MenuAddon, language: string) => MenuAddonTranslation;
3
+ export declare const getAddonOptionTranslation: (option: MenuAddonOption, language: string) => MenuAddonOptionTranslation;
4
+ export declare const getOptionPrice: ({ option, currency, language, }: {
5
+ option: MenuAddonOption;
6
+ currency?: string;
7
+ language?: string;
8
+ }) => {
9
+ totalPrice: number;
10
+ formattedTotalPrice: string;
11
+ };
12
+ export declare const getAddonOptionRawPrice: (addon: MenuAddon, optionId: number) => number;
13
+ export declare const getOptionTitles: (options: MenuAddonOption[], optionIds: number | number[], language: string) => string;
14
+ export declare const getAddonTitle: (addon: MenuAddon, language: string) => string;
@@ -1,5 +1,7 @@
1
1
  import { CartItem } from "src/models/order";
2
+ import { SelectedAddons } from "src/models/addon";
2
3
  export declare const getCartPrice: (item: CartItem, currency?: string, language?: string) => {
3
4
  totalPrice: number;
4
5
  formattedTotalPrice: string;
5
6
  };
7
+ export declare const generateCartId: (productId: number, variantId: number | null, selectedAddons: SelectedAddons) => string;
@@ -0,0 +1 @@
1
+ export {};
@@ -1 +1 @@
1
- export declare const calculateTotalPrice: (price: number, quantity: number, vat?: number) => number;
1
+ export declare const calculateTotalPrice: (price?: number, quantity?: number, vat?: number) => number;
@@ -1,4 +1,8 @@
1
- export * from "./image";
1
+ export * from "./addon";
2
+ export * from "./cart";
2
3
  export * from "./category";
3
- export * from "./url";
4
+ export * from "./common";
5
+ export * from "./image";
6
+ export * from "./menu";
4
7
  export * from "./product";
8
+ export * from "./url";
@@ -1,2 +1,2 @@
1
- import{isEmpty as t,priceFormatter as a}from"@sorocraft/js-utils";const r="https://images.restaround.co",n=t=>t?t.includes("base64")||t.startsWith("https://")?t:`${r}/${t}`:"",o=t=>t?t.includes("base64")||t.startsWith("https://")?t:`${r}/${t}`:"https://images.restaround.co/no-photo-128.webp",i=t=>t?t.includes("base64")||t.startsWith("https://")?t:`${r}/${t}`:"https://images.restaround.co/restaround-doodle.webp",l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",e=(t,a,r)=>l.charAt(t>>2)+l.charAt((3&t)<<4|a>>4)+l.charAt((15&a)<<2|r>>6)+l.charAt(63&r),d=(t,a,r)=>`data:image/gif;base64,R0lGODlhAQABAPAA${e(0,t,a)+e(r,255,255)}/yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==`,u=(t,a)=>{var r,n;return(null===(n=null===(r=null==t?void 0:t.translations)||void 0===r?void 0:r.find)||void 0===n?void 0:n.call(r,(t=>t.language===a)))||{}},s=(a,r,n)=>{var o;const i=null===(o=null==r?void 0:r.find)||void 0===o?void 0:o.call(r,(({id:t})=>t===a));if(t(i))return"";const{name:l}=u(i,n);return l},c="restaround.co",v=[c,"restaround.az","restaround.ee","restaround.nl"],A=(t,a)=>{const r=v.includes(t)?t:c;return{url:`https://${r}/${a||"en"}`,domain:r}},g=(t,a,r=0)=>t*a*(1+r/100),p=(t,a)=>{var r,n;return(null===(n=null===(r=null==t?void 0:t.translations)||void 0===r?void 0:r.find)||void 0===n?void 0:n.call(r,(t=>t.language===a)))||{}},h=(t,r,n,o=1)=>{const{price:i,vat:l}=t||{},e=g(i,o,l);return{totalPrice:e,formattedTotalPrice:a(e,r,n)}},f=(t,a)=>{var r,n;return(null===(n=null===(r=null==t?void 0:t.variants)||void 0===r?void 0:r.find)||void 0===n?void 0:n.call(r,(t=>t.id===a)))||{}},m=({variantId:t,currency:r="USD",language:n="en",product:o,quantity:i=1})=>{const l=f(o,t),{vat:e}=o||{},{price:d}=l||{},u=g(d,i,e);return{totalPrice:u,formattedTotalPrice:a(u,r,n)}},$=(t,a)=>{var r,n;return(null===(n=null===(r=null==t?void 0:t.translations)||void 0===r?void 0:r.find)||void 0===n?void 0:n.call(r,(t=>t.language===a)))||{}},y=({product:t,variantId:a,quantity:r=1,currency:n,language:o})=>a?m({variantId:a,currency:n,language:o,product:t,quantity:r}):h(t,n,o,r);export{r as IMAGE_BASE_URL,A as getBaseUrl,s as getCategoryNameById,u as getCategoryTranslation,i as getCoverImageSource,n as getImageSource,o as getLogoImageSource,y as getProductCartPrice,h as getProductPrice,p as getProductTranslation,f as getProductVariant,m as getProductVariantPrice,$ as getProductVariantTranslation,d as rgbDataURL};
1
+ import{priceFormatter as t,isEmpty as n}from"@sorocraft/js-utils";const r=(t,n)=>{var r,o;return(null===(o=null===(r=null==t?void 0:t.translations)||void 0===r?void 0:r.find)||void 0===o?void 0:o.call(r,(t=>t.language===n)))||{}},o=(t,n)=>{var r,o;return(null===(o=null===(r=null==t?void 0:t.translations)||void 0===r?void 0:r.find)||void 0===o?void 0:o.call(r,(t=>t.language===n)))||{}},i=({option:n,currency:r="USD",language:o="en"})=>{const{price:i}=n||{};return{totalPrice:i,formattedTotalPrice:t(i,r,o)}},e=(t,n)=>{var r;return(null===(r=((null==t?void 0:t.options)||[]).find((({id:t})=>t===n)))||void 0===r?void 0:r.price)||0},a=(t,n,r)=>{var o;if(Array.isArray(n))return t.filter((({id:t})=>n.includes(t))).map((({translations:t})=>{var n;return(null===(n=t.find((t=>t.language===r)))||void 0===n?void 0:n.title)||""})).filter(Boolean).join(", ");{const i=t.find((({id:t})=>t===n));return(null===(o=null==i?void 0:i.translations.find((t=>t.language===r)))||void 0===o?void 0:o.title)||""}},l=(t,n)=>{var r;return(null===(r=t.translations.find((t=>t.language===n)))||void 0===r?void 0:r.title)||""},d=(t=0,n=1,r=0)=>t*n*(1+r/100),u=(n,r="USD",o="en")=>{const{price:i,vat:e,quantity:a,optionsPrice:l}=n||{},u=d(i,a,e)+l*a;return{totalPrice:u,formattedTotalPrice:t(u,r,o)}},s=(t,n,r)=>{if(!t)throw new Error("Product ID is required");let o=`${t}`;n&&(o+=`-${n}`);const i=Object.entries(r||{}).map((([t,n])=>{if(!t||!n)return null;const r=Array.isArray(n)?n.filter(Boolean).join("-"):`${n}`;return r?`${t}-${r}`:null})).filter(Boolean).join("-");return i&&(o+=`-${i}`),o},c=(t,n)=>{var r,o;return(null===(o=null===(r=null==t?void 0:t.translations)||void 0===r?void 0:r.find)||void 0===o?void 0:o.call(r,(t=>t.language===n)))||{}},v=(t,r,o)=>{var i;const e=null===(i=null==r?void 0:r.find)||void 0===i?void 0:i.call(r,(({id:n})=>n===t));if(n(e))return"";const{name:a}=c(e,o);return a},p="https://images.restaround.co",A=t=>t?t.includes("base64")||t.startsWith("https://")?t:`${p}/${t}`:"",f=t=>t?t.includes("base64")||t.startsWith("https://")?t:`${p}/${t}`:"https://images.restaround.co/no-photo-128.webp",g=t=>t?t.includes("base64")||t.startsWith("https://")?t:`${p}/${t}`:"https://images.restaround.co/restaround-doodle.webp",h="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",m=(t,n,r)=>h.charAt(t>>2)+h.charAt((3&t)<<4|n>>4)+h.charAt((15&n)<<2|r>>6)+h.charAt(63&r),P=(t,n,r)=>`data:image/gif;base64,R0lGODlhAQABAPAA${m(0,t,n)+m(r,255,255)}/yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==`,y=(t,n)=>{const r=n.reduce(((t,n)=>{const r=Number(n.categoryId);return t[r]||(t[r]=[]),t[r].push(n),t}),{});return t.map((t=>Object.assign(Object.assign({},t),{products:r[Number(t.id)]||[]}))).filter((t=>{var n;return(null===(n=null==t?void 0:t.products)||void 0===n?void 0:n.length)>0}))};var b;!function(t){t.SINGLE="SINGLE",t.MULTIPLE="MULTIPLE"}(b||(b={}));const $=(t,n)=>{var r,o;return(null===(o=null===(r=null==t?void 0:t.translations)||void 0===r?void 0:r.find)||void 0===o?void 0:o.call(r,(t=>t.language===n)))||{}},I=(t,n=1)=>{const{price:r=0,vat:o=0}=t||{};return d(r,n,o)},j=(n,r,o,i=1)=>{const e=I(n,i);return{totalPrice:e,formattedTotalPrice:t(e,r,o)}},O=(t,n)=>{var r,o;return(null===(o=null===(r=null==t?void 0:t.variants)||void 0===r?void 0:r.find)||void 0===o?void 0:o.call(r,(t=>t.id===n)))||{}},E=(t,n={},r)=>((null==t?void 0:t.addons)||[]).filter((t=>Object.prototype.hasOwnProperty.call(n,t.id))).reduce(((t,r)=>{const{id:o,selectType:i}=r;if(i===b.SINGLE){const i=n[o];return t+e(r,i)}return t+(n[o]||[]).reduce(((t,n)=>t+e(r,n)),0)}),0)*r,L=(t,n,r)=>{const o=O(n,t),{vat:i}=n||{},{price:e}=o||{};return d(e,r,i)},T=({variantId:n,currency:r="USD",language:o="en",product:i,quantity:e=1})=>{const a=L(n,i,e);return{totalPrice:a,formattedTotalPrice:t(a,r,o)}},q=(t,n)=>{var r,o;return(null===(o=null===(r=null==t?void 0:t.translations)||void 0===r?void 0:r.find)||void 0===o?void 0:o.call(r,(t=>t.language===n)))||{}},w=({product:t,variantId:r,quantity:o=1,selectedAddons:i,noVat:e=!1})=>{if(n(t))return{price:0,optionsPrice:0,total:0};const a=Object.assign(Object.assign({},t),{vat:e?0:t.vat}),l=E(a,i,o),d=r?L(r,a,o):I(a,o);return{price:d,optionsPrice:l,total:d+l}},B=({product:n,variantId:r,quantity:o=1,currency:i,language:e,selectedAddons:a,noVat:l=!1})=>{const{total:d}=w({product:n,variantId:r,quantity:o,selectedAddons:a,noVat:l});return{totalPrice:d,formattedTotalPrice:t(d,i,e)}},S=(t,n)=>((null==t?void 0:t.addons)||[]).find((({id:t})=>t===n))||{},D="restaround.co",N=[D,"restaround.az","restaround.ee","restaround.nl"],U=(t,n)=>{const r=N.includes(t)?t:D;return{url:`https://${r}/${n||"en"}`,domain:r}};export{p as IMAGE_BASE_URL,d as calculateTotalPrice,s as generateCartId,e as getAddonOptionRawPrice,o as getAddonOptionTranslation,l as getAddonTitle,r as getAddonTranslation,U as getBaseUrl,u as getCartPrice,v as getCategoryNameById,c as getCategoryTranslation,g as getCoverImageSource,A as getImageSource,f as getLogoImageSource,i as getOptionPrice,a as getOptionTitles,S as getProductAddon,B as getProductCartPrice,w as getProductCartRawPrice,j as getProductPrice,I as getProductRawPrice,$ as getProductTranslation,O as getProductVariant,T as getProductVariantPrice,L as getProductVariantRawPrice,q as getProductVariantTranslation,E as getSelectedOptionsTotalPrice,y as prepareCategoryAndProductMap,P as rgbDataURL};
2
2
  //# sourceMappingURL=index.esm.js.map