@restaround/react 1.4.32 → 1.4.36

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":["../../../src/modules/addon/models.ts","../../../src/modules/branch/models.ts","../../../src/modules/business/models.ts","../../../src/modules/customer/models.ts","../../../src/modules/feature/models.ts","../../../src/modules/order/models.ts","../../../src/modules/product/models.ts","../../../src/modules/subscription/models.ts","../../../src/modules/table/models.ts","../../../src/modules/user/models.ts"],"sourcesContent":["export enum MenuAddonSelectType {\n\tSINGLE = \"SINGLE\",\n\tMULTIPLE = \"MULTIPLE\",\n}\n\nexport interface MenuAddonTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface MenuAddonOptionTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface MenuAddonOption {\n\tid?: number;\n\tprice: number;\n\ttranslations: MenuAddonOptionTranslation[];\n\tremove?: boolean;\n}\n\nexport interface MenuAddon {\n\tid?: number;\n\tselectType: MenuAddonSelectType;\n\ttranslations: MenuAddonTranslation[];\n\toptions: MenuAddonOption[];\n\tbusinessId?: number;\n}\n","export type BranchWorkHour = {\n\topenAt: string;\n\tcloseAt: string;\n};\n\nexport type BranchWorkDay = {\n\tday: number;\n\thours: BranchWorkHour | null;\n};\n\nexport type BranchWorkDays = {\n\tdays: BranchWorkDay[];\n};\n\nexport interface BranchSettings {\n\tdeliveryOrderEnabled: boolean;\n\tpickupOrderEnabled: boolean;\n\tdineInOrderEnabled: boolean;\n\tmaxDeliveryDistance: number;\n\tminDeliveryAmount: number;\n\tdeliveryFeeAmount: number;\n}\n\nexport enum BranchSetting {\n\tMAX_DELIVERY_DISTANCE = \"maxDeliveryDistance\",\n\tDELIVERY_ORDER_ENABLED = \"deliveryOrderEnabled\",\n\tPICKUP_ORDER_ENABLED = \"pickupOrderEnabled\",\n\tDINE_IN_ORDER_ENABLED = \"dineInOrderEnabled\",\n\tMIN_DELIVERY_AMOUNT = \"minDeliveryAmount\",\n\tDELIVERY_FEE_AMOUNT = \"deliveryFeeAmount\",\n}\n\nexport interface Branch {\n\tid: number;\n\tname: string;\n\tbusinessId: number;\n\taddress: string;\n\tlongitude?: number;\n\tlatitude?: number;\n\tphone?: string;\n\twifiPassword?: string;\n\tcreatedAt?: number;\n\tcoverPhoto?: string;\n\tsettings?: BranchSettings;\n\topeningHours?: BranchWorkDays;\n\tdeliveryHours?: BranchWorkDays;\n}\n\nexport type BranchServes = {\n\tisOpen: boolean;\n\tisDelivering: boolean;\n};\n","import * as featureModels from \"../feature/models\";\nimport * as subscriptionModels from \"../subscription/models\";\n\nexport interface BusinessLanguage {\n\tid: number;\n\tcode: string;\n\tbusinessId: number;\n}\n\nexport enum BusinessSetting {\n\tMAX_DELIVERY_DISTANCE = \"maxDeliveryDistance\",\n\tDELIVERY_ORDER_ENABLED = \"deliveryOrderEnabled\",\n\tPICKUP_ORDER_ENABLED = \"pickupOrderEnabled\",\n\tDINE_IN_ORDER_ENABLED = \"dineInOrderEnabled\",\n\tMIN_DELIVERY_AMOUNT = \"minDeliveryAmount\",\n}\n\nexport interface Business {\n\tid: number;\n\tname: string;\n\tusername: string;\n\tavatar64?: string;\n\tavatar128?: string;\n\tavatar256?: string;\n\tcoverPhoto?: string;\n\tinstagram?: string;\n\tfacebook?: string;\n\ttiktok?: string;\n\tcreatedAt?: number;\n\tcurrency: string;\n\tlanguages: BusinessLanguage[];\n\tsubscriptions?: subscriptionModels.Subscription[];\n\tsegment?: featureModels.FeatureSegment;\n}\n","export enum CustomerAuthStep {\n\tPHONE = \"PHONE\",\n\tOTP = \"OTP\",\n\tEMAIL = \"EMAIL\",\n}\n\nexport enum CustomerAddressType {\n\tHOME = \"HOME\",\n\tWORK = \"WORK\",\n\tTRAVEL = \"TRAVEL\",\n}\n\nexport interface CustomerAddress {\n\tid?: number;\n\taddressId?: number; // Update address temporary\n\tcountryCode: string;\n\tcityName: string;\n\tstreet: string;\n\thouseNumber: string;\n\tadditionalNumber?: string;\n\tpostCode?: string;\n\tinstructions?: string;\n\tfloor?: number;\n\tlongitude?: number;\n\tlatitude?: number;\n\ttitle?: string;\n\ttype?: CustomerAddressType;\n}\n\nexport interface CustomerAuthForm {\n\tphoneNumber: string;\n\totp: string;\n\temail: string;\n}\n\nexport interface CustomerAuthPhoneForm {\n\tcountryCode: string;\n\tphoneNumber: string;\n}\n\nexport interface AuthResponse {\n\taccessToken: string;\n\trefreshToken: string;\n}\n\nexport interface Customer {\n\tid?: number;\n\temail: string;\n\tphoneNumber: string;\n\tfullName: string;\n\tsmsVerified?: boolean;\n\temailVerified?: boolean;\n\taddress?: CustomerAddress;\n\taddresses?: CustomerAddress[];\n}\n\nexport type CustomerUpdatePayload = Partial<Customer>;\n","export enum Feature {\n\tORDER = \"feature_order\",\n}\nexport enum FeatureSegment {\n\tALPHA = \"ALPHA\",\n\tBETA = \"BETA\",\n\tALL = \"ALL\",\n}\n","import * as customerModels from \"../customer/models\";\n\nexport enum OrderType {\n\tDINE_IN = \"DINE_IN\",\n\tPICK_UP = \"PICK_UP\",\n\tDELIVERY = \"DELIVERY\",\n}\n\nexport enum OrderStatus {\n\tDRAFT = \"DRAFT\",\n\tPENDING = \"PENDING\",\n\tCONFIRMED = \"CONFIRMED\",\n\tPREPARING = \"PREPARING\",\n\tREADY = \"READY\",\n\tOUT_FOR_DELIVERY = \"OUT_FOR_DELIVERY\",\n\tDELIVERED = \"DELIVERED\",\n\tCOMPLETED = \"COMPLETED\",\n\tCANCELLED = \"CANCELLED\",\n\tFAILED = \"FAILED\",\n}\n\nexport enum OrderItemStatus {\n\tPENDING = \"PENDING\",\n\tPREPARING = \"PREPARING\",\n\tREADY = \"READY\",\n\tSERVED = \"SERVED\",\n}\n\nexport enum PaymentMethod {\n\tCASH = \"CASH\",\n\tCARD = \"CARD\",\n\tWALLET = \"WALLET\",\n\tTERMINAL = \"TERMINAL\",\n}\n\nexport interface OrderAddonOption {\n\toptionId: number;\n\tprice: number;\n}\n\nexport interface OrderAddon {\n\tid?: number;\n\taddonId: number;\n\toptions: OrderAddonOption[];\n}\n\nexport interface SelectedAddons {\n\t[key: number]: number | number[];\n}\n\nexport interface OrderItemVariant {\n\tid?: number;\n\tvariantId: number;\n\tprice: number;\n}\n\nexport interface OrderItem {\n\tid?: number;\n\tproductId: number;\n\torderId?: number;\n\tquantity: number;\n\tprice: number;\n\tvariant?: OrderItemVariant;\n\taddons: OrderAddon[];\n\tnote?: string;\n\tstatus?: OrderItemStatus;\n\tvat?: number;\n\tisPaid?: boolean;\n}\n\nexport interface Order {\n\tid?: number;\n\tbusinessId?: number;\n\tbranchId?: number;\n\tworkingDayId?: number;\n\ttableId?: number;\n\temployeeId?: number;\n\torderType: OrderType;\n\ttotalPriceWithTax: number;\n\ttotalPriceWithTaxAndFees?: number;\n\ttotalPriceWithoutTax: number;\n\ttotalTax: number;\n\titems: OrderItem[];\n\tstatus?: OrderStatus;\n\tvat?: number;\n\tpaymentMethod?: PaymentMethod;\n\tnote?: string;\n\tcreatedAt?: number;\n\tupdatedAt?: number;\n\tcustomer?: customerModels.Customer;\n\tdeliveryFeeAmount?: number;\n}\n\nexport interface OrderItems {\n\t[key: string]: OrderItem;\n}\n\nexport enum OrderStep {\n\tCART = \"CART\",\n\tDETAILS = \"DETAILS\",\n\tCOMPLETED = \"COMPLETED\",\n}\n\nexport interface OrderPayload extends Order {\n\tcustomerAddressId: number;\n\tcustomerId: number;\n}\n\nexport type OrderPriceDetails = {\n\ttotalPriceWithTax: number;\n\ttotalPriceWithTaxAndFees: number;\n\ttotalPriceWithoutTax: number;\n\ttotalTax: number;\n};\n\nexport type OrderFormattedPriceDetails = {\n\ttotalPriceWithTax: string;\n\ttotalPriceWithTaxAndFees: string;\n\ttotalPriceWithoutTax: string;\n\ttotalTax: string;\n};\n","import { MenuAddon } from \"../addon/models\";\n\nexport interface ProductTranslation {\n\tid: number;\n\tname: string;\n\tdescription?: string;\n\tlanguage: string;\n\tproductId?: number;\n}\n\nexport interface ProductVariantTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface ProductVariant {\n\tid?: number;\n\tprice: number;\n\ttranslations: ProductVariantTranslation[];\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\tavailable?: boolean;\n\tvisible?: boolean;\n\tposition?: number;\n}\n\nexport enum ProductView {\n\tLIST = \"list\",\n\tGRID = \"grid\",\n}\n\nexport interface DashboardProduct extends Omit<Product, \"addons\"> {\n\taddons: number[];\n}\n","export enum PlanType {\n\tAPPETIZER = \"appetizer\",\n\tMAIN_COURSE = \"mainCourse\",\n\tCHEFS_SPECIAL = \"chefsSpecial\",\n\tLIFETIME = \"lifeTime\",\n}\n\nexport interface PricingPlan {\n\ttitle: string;\n\tprice: {\n\t\tmonthly: number;\n\t\tannually: number;\n\t};\n\tdiscountedPrice?: number;\n\tribbonText?: string;\n}\n\nexport interface PricingPlans {\n\t[key: string]: PricingPlan;\n}\n\nexport type PricingInterval = \"monthly\" | \"annually\";\n\nexport enum SubscriptionStatus {\n\tACTIVE = \"ACTIVE\",\n\tEXPIRED = \"EXPIRED\",\n\tCANCELLED = \"CANCELLED\",\n}\n\nexport type BillingInterval = \"MONTH\" | \"YEAR\";\n\nexport interface Subscription {\n\tid: number;\n\tbillingInterval: BillingInterval;\n\tbillingIntervalCount: number;\n\tstartDate: string;\n\tendDate: string;\n\tinterval: PricingInterval;\n\tstatus: SubscriptionStatus;\n\tbusiness_id?: number;\n\tplanName: string;\n}\n","export enum TableShape {\n\tSQUARE = \"SQUARE\",\n\tCIRCLE = \"CIRCLE\",\n\tRECTANGLE = \"RECTANGLE\",\n\tRECTANGLE_VERTICAL = \"RECTANGLE_VERTICAL\",\n\tSINGLE_AT_BAR = \"SINGLE_AT_BAR\",\n\tOTHER = \"OTHER\",\n}\n\nexport enum TableStatus {\n\tVACANT = \"VACANT\", // Free and available\n\tRESERVED = \"RESERVED\", // Booked but not yet seated\n\tOCCUPIED = \"OCCUPIED\", // Currently in use\n\tBLOCKED = \"BLOCKED\", // Temporarily blocked/unavailable\n\tNEEDS_CLEANING = \"NEEDS_CLEANING\", // Dirty, awaiting cleanup\n\tOUT_OF_SERVICE = \"OUT_OF_SERVICE\", // Permanently unavailable repair/maintenance\n\tPENDING_CONFIRMATION = \"PENDING_CONFIRMATION\", // Reservation not yet confirmed\n\tNO_SHOW = \"NO_SHOW\", // Reserved but guest didn’t arrive\n}\n\nexport enum TableLocation {\n\t// Indoor\n\tMAIN_HALL = \"MAIN_HALL\",\n\tPRIVATE_DINING = \"PRIVATE_DINING\",\n\tVIP_ROOM = \"VIP_ROOM\",\n\tBANQUET_HALL = \"BANQUET_HALL\",\n\tBAR_AREA = \"BAR_AREA\",\n\tLOUNGE = \"LOUNGE\",\n\tOPEN_KITCHEN = \"OPEN_KITCHEN\",\n\tBOOTH_SECTION = \"BOOTH_SECTION\",\n\tMEZZANINE = \"MEZZANINE\",\n\tWINE_CELLAR = \"WINE_CELLAR\",\n\n\t// Outdoor\n\tTERRACE = \"TERRACE\",\n\tPATIO = \"PATIO\",\n\tGARDEN = \"GARDEN\",\n\tCOURTYARD = \"COURTYARD\",\n\tROOFTOP = \"ROOFTOP\",\n\tBALCONY = \"BALCONY\",\n\tSIDEWALK = \"SIDEWALK\",\n\tPOOLSIDE = \"POOLSIDE\",\n\n\t// Special Sections\n\tSMOKING_AREA = \"SMOKING_AREA\",\n\tNON_SMOKING = \"NON_SMOKING\",\n\tFAMILY_SECTION = \"FAMILY_SECTION\",\n\tKIDS_AREA = \"KIDS_AREA\",\n\tWAITING_AREA = \"WAITING_AREA\",\n\tDANCE_FLOOR = \"DANCE_FLOOR\",\n}\n\nexport interface Table {\n\tid: number;\n\tbusinessId: number;\n\tbranchId: number;\n\tname: string;\n\tseatCount: number;\n\tshape: TableShape;\n\tlocation: TableLocation;\n\tstatus: TableStatus;\n}\n\nexport interface TableState {\n\ttables: Table[];\n}\n\nexport type TableForm = Omit<Table, \"id\" | \"businessId\" | \"branchId\"> & {\n\tbranchId: string | number;\n};\n\nexport type TableUpdate = Partial<Omit<Table, \"id\" | \"businessId\">>;\n\nexport type TableFilter = Partial<Pick<Table, \"branchId\" | \"shape\" | \"location\" | \"status\">>;\n\nexport type TableFilterParams = { field: keyof TableFilter; value: TableFilter[keyof TableFilter] };\n","// TODO: move it lib that we can use in mobile app too\nexport enum EmployeePermission {\n\tVIEW_BUSINESS = \"VIEW_BUSINESS\",\n\tUPDATE_BUSINESS = \"UPDATE_BUSINESS\",\n\tVIEW_ORDERS = \"VIEW_ORDERS\",\n\tUPDATE_ORDER = \"UPDATE_ORDER\",\n\tCREATE_ORDER = \"CREATE_ORDER\",\n\tVIEW_QR_MENU = \"VIEW_QR_MENU\",\n\tVIEW_MENU = \"VIEW_MENU\",\n\tVIEW_MENU_ITEMS = \"VIEW_MENU_ITEMS\",\n\tCREATE_MENU_ITEM = \"CREATE_MENU_ITEM\",\n\tUPDATE_MENU_ITEM = \"UPDATE_MENU_ITEM\",\n\tDELETE_MENU_ITEM = \"DELETE_MENU_ITEM\",\n\tVIEW_CATEGORIES = \"VIEW_CATEGORIES\",\n\tUPDATE_CATEGORY = \"UPDATE_CATEGORY\",\n\tCREATE_CATEGORY = \"CREATE_CATEGORY\",\n\tDELETE_CATEGORY = \"DELETE_CATEGORY\",\n\tVIEW_ADDONS = \"VIEW_ADDONS\",\n\tUPDATE_ADDON = \"UPDATE_ADDON\",\n\tCREATE_ADDON = \"CREATE_ADDON\",\n\tDELETE_ADDON = \"DELETE_ADDON\",\n\tVIEW_TABLES = \"VIEW_TABLES\",\n\tUPDATE_TABLE = \"UPDATE_TABLE\",\n\tUPDATE_TABLE_STATUS = \"UPDATE_TABLE_STATUS\",\n\tCREATE_TABLE = \"CREATE_TABLE\",\n\tDELETE_TABLE = \"DELETE_TABLE\",\n\tVIEW_BRANCHES = \"VIEW_BRANCHES\",\n\tUPDATE_BRANCH = \"UPDATE_BRANCH\",\n\tCREATE_BRANCH = \"CREATE_BRANCH\",\n\tDELETE_BRANCH = \"DELETE_BRANCH\",\n\tVIEW_EMPLOYEES = \"VIEW_EMPLOYEES\",\n\tUPDATE_EMPLOYEE = \"UPDATE_EMPLOYEE\",\n\tCREATE_EMPLOYEE = \"CREATE_EMPLOYEE\",\n\tDELETE_EMPLOYEE = \"DELETE_EMPLOYEE\",\n\tVIEW_ANALYTICS = \"VIEW_ANALYTICS\",\n\tVIEW_SALES_REPORTS = \"VIEW_SALES_REPORTS\",\n\tVIEW_SUBSCRIPTION = \"VIEW_SUBSCRIPTION\",\n\tUPDATE_SUBSCRIPTION = \"UPDATE_SUBSCRIPTION\",\n\tVIEW_QR_CODES = \"VIEW_QR_CODES\",\n\tCREATE_QR_CODE = \"CREATE_QR_CODE\",\n\tDELETE_QR_CODE = \"DELETE_QR_CODE\",\n\tALL = \"ALL\",\n}\n"],"names":["MenuAddonSelectType","BranchSetting","BusinessSetting","CustomerAuthStep","CustomerAddressType","Feature","FeatureSegment","OrderType","OrderStatus","OrderItemStatus","PaymentMethod","OrderStep","ProductView","PlanType","SubscriptionStatus","TableShape","TableStatus","TableLocation","EmployeePermission"],"mappings":"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"}
1
+ {"version":3,"file":"index.esm.js","sources":["../../../src/modules/addon/models.ts","../../../src/modules/branch/models.ts","../../../src/modules/business/models.ts","../../../src/modules/customer/models.ts","../../../src/modules/feature/models.ts","../../../src/modules/order/models.ts","../../../src/modules/product/models.ts","../../../src/modules/subscription/models.ts","../../../src/modules/table/models.ts","../../../src/modules/user/models.ts"],"sourcesContent":["export enum MenuAddonSelectType {\n\tSINGLE = \"SINGLE\",\n\tMULTIPLE = \"MULTIPLE\",\n}\n\nexport interface MenuAddonTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface MenuAddonOptionTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface MenuAddonOption {\n\tid?: number;\n\tprice: number;\n\ttranslations: MenuAddonOptionTranslation[];\n\tremove?: boolean;\n}\n\nexport interface MenuAddon {\n\tid?: number;\n\tselectType: MenuAddonSelectType;\n\ttranslations: MenuAddonTranslation[];\n\toptions: MenuAddonOption[];\n\tbusinessId?: number;\n}\n","export type BranchWorkHour = {\n\topenAt: string;\n\tcloseAt: string;\n};\n\nexport type BranchWorkDay = {\n\tday: number;\n\thours: BranchWorkHour | null;\n};\n\nexport type BranchWorkDays = {\n\tdays: BranchWorkDay[];\n};\n\nexport interface BranchSettings {\n\tdeliveryOrderEnabled: boolean;\n\tpickupOrderEnabled: boolean;\n\tdineInOrderEnabled: boolean;\n\tmaxDeliveryDistance: number;\n\tminDeliveryAmount: number;\n\tdeliveryFeeAmount: number;\n}\n\nexport enum BranchSetting {\n\tMAX_DELIVERY_DISTANCE = \"maxDeliveryDistance\",\n\tDELIVERY_ORDER_ENABLED = \"deliveryOrderEnabled\",\n\tPICKUP_ORDER_ENABLED = \"pickupOrderEnabled\",\n\tDINE_IN_ORDER_ENABLED = \"dineInOrderEnabled\",\n\tMIN_DELIVERY_AMOUNT = \"minDeliveryAmount\",\n\tDELIVERY_FEE_AMOUNT = \"deliveryFeeAmount\",\n}\n\nexport interface Branch {\n\tid: number;\n\tname: string;\n\tbusinessId: number;\n\taddress: string;\n\tlongitude?: number;\n\tlatitude?: number;\n\tphone?: string;\n\twifiPassword?: string;\n\tcreatedAt?: number;\n\tcoverPhoto?: string;\n\tsettings?: BranchSettings;\n\topeningHours?: BranchWorkDays;\n\tdeliveryHours?: BranchWorkDays;\n}\n\nexport type BranchServes = {\n\tisOpen: boolean;\n\tisDelivering: boolean;\n};\n","import * as featureModels from \"../feature/models\";\nimport * as subscriptionModels from \"../subscription/models\";\n\nexport interface BusinessLanguage {\n\tid: number;\n\tcode: string;\n\tbusinessId: number;\n}\n\nexport enum BusinessSetting {\n\tMAX_DELIVERY_DISTANCE = \"maxDeliveryDistance\",\n\tDELIVERY_ORDER_ENABLED = \"deliveryOrderEnabled\",\n\tPICKUP_ORDER_ENABLED = \"pickupOrderEnabled\",\n\tDINE_IN_ORDER_ENABLED = \"dineInOrderEnabled\",\n\tMIN_DELIVERY_AMOUNT = \"minDeliveryAmount\",\n}\n\nexport interface Business {\n\tid: number;\n\tname: string;\n\tusername: string;\n\tavatar64?: string;\n\tavatar128?: string;\n\tavatar256?: string;\n\tcoverPhoto?: string;\n\tinstagram?: string;\n\tfacebook?: string;\n\ttiktok?: string;\n\tcreatedAt?: number;\n\tcurrency: string;\n\tlanguages: BusinessLanguage[];\n\tsubscriptions?: subscriptionModels.Subscription[];\n\tsegment?: featureModels.FeatureSegment;\n}\n","export enum CustomerAuthStep {\n\tPHONE = \"PHONE\",\n\tOTP = \"OTP\",\n\tEMAIL = \"EMAIL\",\n}\n\nexport enum CustomerAddressType {\n\tHOME = \"HOME\",\n\tWORK = \"WORK\",\n\tTRAVEL = \"TRAVEL\",\n}\n\nexport interface CustomerAddress {\n\tid?: number;\n\taddressId?: number; // Update address temporary\n\tcountryCode: string;\n\tcityName: string;\n\tstreet: string;\n\thouseNumber: string;\n\tadditionalNumber?: string;\n\tpostCode?: string;\n\tinstructions?: string;\n\tfloor?: number;\n\tlongitude?: number;\n\tlatitude?: number;\n\ttitle?: string;\n\ttype?: CustomerAddressType;\n}\n\nexport interface CustomerAuthForm {\n\tphoneNumber: string;\n\totp: string;\n\temail: string;\n}\n\nexport interface CustomerAuthPhoneForm {\n\tcountryCode: string;\n\tphoneNumber: string;\n}\n\nexport interface AuthResponse {\n\taccessToken: string;\n\trefreshToken: string;\n}\n\nexport interface Customer {\n\tid?: number;\n\temail: string;\n\tphoneNumber: string;\n\tfullName: string;\n\tsmsVerified?: boolean;\n\temailVerified?: boolean;\n\taddress?: CustomerAddress;\n\taddresses?: CustomerAddress[];\n}\n\nexport type CustomerUpdatePayload = Partial<Customer>;\n","export enum Feature {\n\tORDER = \"feature_order\",\n}\nexport enum FeatureSegment {\n\tALPHA = \"ALPHA\",\n\tBETA = \"BETA\",\n\tALL = \"ALL\",\n}\n","import * as customerModels from \"../customer/models\";\n\nexport enum OrderType {\n\tDINE_IN = \"DINE_IN\",\n\tPICK_UP = \"PICK_UP\",\n\tDELIVERY = \"DELIVERY\",\n}\n\nexport enum OrderStatus {\n\tDRAFT = \"DRAFT\",\n\tPENDING = \"PENDING\",\n\tCONFIRMED = \"CONFIRMED\",\n\tPREPARING = \"PREPARING\",\n\tREADY = \"READY\",\n\tOUT_FOR_DELIVERY = \"OUT_FOR_DELIVERY\",\n\tDELIVERED = \"DELIVERED\",\n\tCOMPLETED = \"COMPLETED\",\n\tCANCELLED = \"CANCELLED\",\n\tFAILED = \"FAILED\",\n}\n\nexport enum OrderItemStatus {\n\tPENDING = \"PENDING\",\n\tPREPARING = \"PREPARING\",\n\tREADY = \"READY\",\n\tSERVED = \"SERVED\",\n}\n\nexport enum PaymentMethod {\n\tCASH = \"CASH\",\n\tCARD = \"CARD\",\n\tWALLET = \"WALLET\",\n\tTERMINAL = \"TERMINAL\",\n}\n\nexport interface OrderAddonOption {\n\toptionId: number;\n\tprice: number;\n}\n\nexport interface OrderAddon {\n\tid?: number;\n\taddonId: number;\n\toptions: OrderAddonOption[];\n}\n\nexport interface SelectedAddons {\n\t[key: number]: number | number[];\n}\n\nexport interface OrderItemVariant {\n\tid?: number;\n\tvariantId: number;\n\tprice: number;\n}\n\nexport interface OrderItem {\n\tid?: number;\n\tproductId: number;\n\torderId?: number;\n\tquantity: number;\n\tprice: number;\n\tvariant?: OrderItemVariant;\n\taddons: OrderAddon[];\n\tnote?: string;\n\tstatus?: OrderItemStatus;\n\tvat?: number;\n\tisPaid?: boolean;\n}\n\nexport interface Order {\n\tid?: number;\n\tbusinessId?: number;\n\tbranchId?: number;\n\tworkingDayId?: number;\n\ttableId?: number;\n\temployeeId?: number;\n\torderType: OrderType;\n\ttotalPriceWithTax: number;\n\ttotalPriceWithTaxAndFees?: number;\n\ttotalPriceWithoutTax: number;\n\ttotalTax: number;\n\titems: OrderItem[];\n\tstatus?: OrderStatus;\n\tvat?: number;\n\tpaymentMethod?: PaymentMethod;\n\tnote?: string;\n\tcreatedAt?: number;\n\tupdatedAt?: number;\n\tcustomer?: customerModels.Customer;\n\tdeliveryFee?: number;\n}\n\nexport interface OrderItems {\n\t[key: string]: OrderItem;\n}\n\nexport enum OrderStep {\n\tCART = \"CART\",\n\tDETAILS = \"DETAILS\",\n\tCOMPLETED = \"COMPLETED\",\n}\n\nexport interface OrderPayload extends Order {\n\tcustomerAddressId: number;\n\tcustomerId: number;\n}\n\nexport type OrderPriceDetails = {\n\ttotalPriceWithTax: number;\n\ttotalPriceWithTaxAndFees: number;\n\ttotalPriceWithoutTax: number;\n\ttotalTax: number;\n};\n\nexport type OrderFormattedPriceDetails = {\n\ttotalPriceWithTax: string;\n\ttotalPriceWithTaxAndFees: string;\n\ttotalPriceWithoutTax: string;\n\ttotalTax: string;\n};\n","import { MenuAddon } from \"../addon/models\";\n\nexport interface ProductTranslation {\n\tid: number;\n\tname: string;\n\tdescription?: string;\n\tlanguage: string;\n\tproductId?: number;\n}\n\nexport interface ProductVariantTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface ProductVariant {\n\tid?: number;\n\tprice: number;\n\ttranslations: ProductVariantTranslation[];\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\tavailable?: boolean;\n\tvisible?: boolean;\n\tposition?: number;\n}\n\nexport enum ProductView {\n\tLIST = \"list\",\n\tGRID = \"grid\",\n}\n\nexport interface DashboardProduct extends Omit<Product, \"addons\"> {\n\taddons: number[];\n}\n","export enum PlanType {\n\tAPPETIZER = \"appetizer\",\n\tMAIN_COURSE = \"mainCourse\",\n\tCHEFS_SPECIAL = \"chefsSpecial\",\n\tLIFETIME = \"lifeTime\",\n}\n\nexport interface PricingPlan {\n\ttitle: string;\n\tprice: {\n\t\tmonthly: number;\n\t\tannually: number;\n\t};\n\tdiscountedPrice?: number;\n\tribbonText?: string;\n}\n\nexport interface PricingPlans {\n\t[key: string]: PricingPlan;\n}\n\nexport type PricingInterval = \"monthly\" | \"annually\";\n\nexport enum SubscriptionStatus {\n\tACTIVE = \"ACTIVE\",\n\tEXPIRED = \"EXPIRED\",\n\tCANCELLED = \"CANCELLED\",\n}\n\nexport type BillingInterval = \"MONTH\" | \"YEAR\";\n\nexport interface Subscription {\n\tid: number;\n\tbillingInterval: BillingInterval;\n\tbillingIntervalCount: number;\n\tstartDate: string;\n\tendDate: string;\n\tinterval: PricingInterval;\n\tstatus: SubscriptionStatus;\n\tbusiness_id?: number;\n\tplanName: string;\n}\n","export enum TableShape {\n\tSQUARE = \"SQUARE\",\n\tCIRCLE = \"CIRCLE\",\n\tRECTANGLE = \"RECTANGLE\",\n\tRECTANGLE_VERTICAL = \"RECTANGLE_VERTICAL\",\n\tSINGLE_AT_BAR = \"SINGLE_AT_BAR\",\n\tOTHER = \"OTHER\",\n}\n\nexport enum TableStatus {\n\tVACANT = \"VACANT\", // Free and available\n\tRESERVED = \"RESERVED\", // Booked but not yet seated\n\tOCCUPIED = \"OCCUPIED\", // Currently in use\n\tBLOCKED = \"BLOCKED\", // Temporarily blocked/unavailable\n\tNEEDS_CLEANING = \"NEEDS_CLEANING\", // Dirty, awaiting cleanup\n\tOUT_OF_SERVICE = \"OUT_OF_SERVICE\", // Permanently unavailable repair/maintenance\n\tPENDING_CONFIRMATION = \"PENDING_CONFIRMATION\", // Reservation not yet confirmed\n\tNO_SHOW = \"NO_SHOW\", // Reserved but guest didn’t arrive\n}\n\nexport enum TableLocation {\n\t// Indoor\n\tMAIN_HALL = \"MAIN_HALL\",\n\tPRIVATE_DINING = \"PRIVATE_DINING\",\n\tVIP_ROOM = \"VIP_ROOM\",\n\tBANQUET_HALL = \"BANQUET_HALL\",\n\tBAR_AREA = \"BAR_AREA\",\n\tLOUNGE = \"LOUNGE\",\n\tOPEN_KITCHEN = \"OPEN_KITCHEN\",\n\tBOOTH_SECTION = \"BOOTH_SECTION\",\n\tMEZZANINE = \"MEZZANINE\",\n\tWINE_CELLAR = \"WINE_CELLAR\",\n\n\t// Outdoor\n\tTERRACE = \"TERRACE\",\n\tPATIO = \"PATIO\",\n\tGARDEN = \"GARDEN\",\n\tCOURTYARD = \"COURTYARD\",\n\tROOFTOP = \"ROOFTOP\",\n\tBALCONY = \"BALCONY\",\n\tSIDEWALK = \"SIDEWALK\",\n\tPOOLSIDE = \"POOLSIDE\",\n\n\t// Special Sections\n\tSMOKING_AREA = \"SMOKING_AREA\",\n\tNON_SMOKING = \"NON_SMOKING\",\n\tFAMILY_SECTION = \"FAMILY_SECTION\",\n\tKIDS_AREA = \"KIDS_AREA\",\n\tWAITING_AREA = \"WAITING_AREA\",\n\tDANCE_FLOOR = \"DANCE_FLOOR\",\n}\n\nexport interface Table {\n\tid: number;\n\tbusinessId: number;\n\tbranchId: number;\n\tname: string;\n\tseatCount: number;\n\tshape: TableShape;\n\tlocation: TableLocation;\n\tstatus: TableStatus;\n}\n\nexport interface TableState {\n\ttables: Table[];\n}\n\nexport type TableForm = Omit<Table, \"id\" | \"businessId\" | \"branchId\"> & {\n\tbranchId: string | number;\n};\n\nexport type TableUpdate = Partial<Omit<Table, \"id\" | \"businessId\">>;\n\nexport type TableFilter = Partial<Pick<Table, \"branchId\" | \"shape\" | \"location\" | \"status\">>;\n\nexport type TableFilterParams = { field: keyof TableFilter; value: TableFilter[keyof TableFilter] };\n","// TODO: move it lib that we can use in mobile app too\nexport enum EmployeePermission {\n\tVIEW_BUSINESS = \"VIEW_BUSINESS\",\n\tUPDATE_BUSINESS = \"UPDATE_BUSINESS\",\n\tVIEW_ORDERS = \"VIEW_ORDERS\",\n\tUPDATE_ORDER = \"UPDATE_ORDER\",\n\tCREATE_ORDER = \"CREATE_ORDER\",\n\tVIEW_QR_MENU = \"VIEW_QR_MENU\",\n\tVIEW_MENU = \"VIEW_MENU\",\n\tVIEW_MENU_ITEMS = \"VIEW_MENU_ITEMS\",\n\tCREATE_MENU_ITEM = \"CREATE_MENU_ITEM\",\n\tUPDATE_MENU_ITEM = \"UPDATE_MENU_ITEM\",\n\tDELETE_MENU_ITEM = \"DELETE_MENU_ITEM\",\n\tVIEW_CATEGORIES = \"VIEW_CATEGORIES\",\n\tUPDATE_CATEGORY = \"UPDATE_CATEGORY\",\n\tCREATE_CATEGORY = \"CREATE_CATEGORY\",\n\tDELETE_CATEGORY = \"DELETE_CATEGORY\",\n\tVIEW_ADDONS = \"VIEW_ADDONS\",\n\tUPDATE_ADDON = \"UPDATE_ADDON\",\n\tCREATE_ADDON = \"CREATE_ADDON\",\n\tDELETE_ADDON = \"DELETE_ADDON\",\n\tVIEW_TABLES = \"VIEW_TABLES\",\n\tUPDATE_TABLE = \"UPDATE_TABLE\",\n\tUPDATE_TABLE_STATUS = \"UPDATE_TABLE_STATUS\",\n\tCREATE_TABLE = \"CREATE_TABLE\",\n\tDELETE_TABLE = \"DELETE_TABLE\",\n\tVIEW_BRANCHES = \"VIEW_BRANCHES\",\n\tUPDATE_BRANCH = \"UPDATE_BRANCH\",\n\tCREATE_BRANCH = \"CREATE_BRANCH\",\n\tDELETE_BRANCH = \"DELETE_BRANCH\",\n\tVIEW_EMPLOYEES = \"VIEW_EMPLOYEES\",\n\tUPDATE_EMPLOYEE = \"UPDATE_EMPLOYEE\",\n\tCREATE_EMPLOYEE = \"CREATE_EMPLOYEE\",\n\tDELETE_EMPLOYEE = \"DELETE_EMPLOYEE\",\n\tVIEW_ANALYTICS = \"VIEW_ANALYTICS\",\n\tVIEW_SALES_REPORTS = \"VIEW_SALES_REPORTS\",\n\tVIEW_SUBSCRIPTION = \"VIEW_SUBSCRIPTION\",\n\tUPDATE_SUBSCRIPTION = \"UPDATE_SUBSCRIPTION\",\n\tVIEW_QR_CODES = \"VIEW_QR_CODES\",\n\tCREATE_QR_CODE = \"CREATE_QR_CODE\",\n\tDELETE_QR_CODE = \"DELETE_QR_CODE\",\n\tALL = \"ALL\",\n}\n"],"names":["MenuAddonSelectType","BranchSetting","BusinessSetting","CustomerAuthStep","CustomerAddressType","Feature","FeatureSegment","OrderType","OrderStatus","OrderItemStatus","PaymentMethod","OrderStep","ProductView","PlanType","SubscriptionStatus","TableShape","TableStatus","TableLocation","EmployeePermission"],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../../src/modules/addon/models.ts","../../../src/modules/branch/models.ts","../../../src/modules/business/models.ts","../../../src/modules/customer/models.ts","../../../src/modules/feature/models.ts","../../../src/modules/order/models.ts","../../../src/modules/product/models.ts","../../../src/modules/subscription/models.ts","../../../src/modules/table/models.ts","../../../src/modules/user/models.ts"],"sourcesContent":["export enum MenuAddonSelectType {\n\tSINGLE = \"SINGLE\",\n\tMULTIPLE = \"MULTIPLE\",\n}\n\nexport interface MenuAddonTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface MenuAddonOptionTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface MenuAddonOption {\n\tid?: number;\n\tprice: number;\n\ttranslations: MenuAddonOptionTranslation[];\n\tremove?: boolean;\n}\n\nexport interface MenuAddon {\n\tid?: number;\n\tselectType: MenuAddonSelectType;\n\ttranslations: MenuAddonTranslation[];\n\toptions: MenuAddonOption[];\n\tbusinessId?: number;\n}\n","export type BranchWorkHour = {\n\topenAt: string;\n\tcloseAt: string;\n};\n\nexport type BranchWorkDay = {\n\tday: number;\n\thours: BranchWorkHour | null;\n};\n\nexport type BranchWorkDays = {\n\tdays: BranchWorkDay[];\n};\n\nexport interface BranchSettings {\n\tdeliveryOrderEnabled: boolean;\n\tpickupOrderEnabled: boolean;\n\tdineInOrderEnabled: boolean;\n\tmaxDeliveryDistance: number;\n\tminDeliveryAmount: number;\n\tdeliveryFeeAmount: number;\n}\n\nexport enum BranchSetting {\n\tMAX_DELIVERY_DISTANCE = \"maxDeliveryDistance\",\n\tDELIVERY_ORDER_ENABLED = \"deliveryOrderEnabled\",\n\tPICKUP_ORDER_ENABLED = \"pickupOrderEnabled\",\n\tDINE_IN_ORDER_ENABLED = \"dineInOrderEnabled\",\n\tMIN_DELIVERY_AMOUNT = \"minDeliveryAmount\",\n\tDELIVERY_FEE_AMOUNT = \"deliveryFeeAmount\",\n}\n\nexport interface Branch {\n\tid: number;\n\tname: string;\n\tbusinessId: number;\n\taddress: string;\n\tlongitude?: number;\n\tlatitude?: number;\n\tphone?: string;\n\twifiPassword?: string;\n\tcreatedAt?: number;\n\tcoverPhoto?: string;\n\tsettings?: BranchSettings;\n\topeningHours?: BranchWorkDays;\n\tdeliveryHours?: BranchWorkDays;\n}\n\nexport type BranchServes = {\n\tisOpen: boolean;\n\tisDelivering: boolean;\n};\n","import * as featureModels from \"../feature/models\";\nimport * as subscriptionModels from \"../subscription/models\";\n\nexport interface BusinessLanguage {\n\tid: number;\n\tcode: string;\n\tbusinessId: number;\n}\n\nexport enum BusinessSetting {\n\tMAX_DELIVERY_DISTANCE = \"maxDeliveryDistance\",\n\tDELIVERY_ORDER_ENABLED = \"deliveryOrderEnabled\",\n\tPICKUP_ORDER_ENABLED = \"pickupOrderEnabled\",\n\tDINE_IN_ORDER_ENABLED = \"dineInOrderEnabled\",\n\tMIN_DELIVERY_AMOUNT = \"minDeliveryAmount\",\n}\n\nexport interface Business {\n\tid: number;\n\tname: string;\n\tusername: string;\n\tavatar64?: string;\n\tavatar128?: string;\n\tavatar256?: string;\n\tcoverPhoto?: string;\n\tinstagram?: string;\n\tfacebook?: string;\n\ttiktok?: string;\n\tcreatedAt?: number;\n\tcurrency: string;\n\tlanguages: BusinessLanguage[];\n\tsubscriptions?: subscriptionModels.Subscription[];\n\tsegment?: featureModels.FeatureSegment;\n}\n","export enum CustomerAuthStep {\n\tPHONE = \"PHONE\",\n\tOTP = \"OTP\",\n\tEMAIL = \"EMAIL\",\n}\n\nexport enum CustomerAddressType {\n\tHOME = \"HOME\",\n\tWORK = \"WORK\",\n\tTRAVEL = \"TRAVEL\",\n}\n\nexport interface CustomerAddress {\n\tid?: number;\n\taddressId?: number; // Update address temporary\n\tcountryCode: string;\n\tcityName: string;\n\tstreet: string;\n\thouseNumber: string;\n\tadditionalNumber?: string;\n\tpostCode?: string;\n\tinstructions?: string;\n\tfloor?: number;\n\tlongitude?: number;\n\tlatitude?: number;\n\ttitle?: string;\n\ttype?: CustomerAddressType;\n}\n\nexport interface CustomerAuthForm {\n\tphoneNumber: string;\n\totp: string;\n\temail: string;\n}\n\nexport interface CustomerAuthPhoneForm {\n\tcountryCode: string;\n\tphoneNumber: string;\n}\n\nexport interface AuthResponse {\n\taccessToken: string;\n\trefreshToken: string;\n}\n\nexport interface Customer {\n\tid?: number;\n\temail: string;\n\tphoneNumber: string;\n\tfullName: string;\n\tsmsVerified?: boolean;\n\temailVerified?: boolean;\n\taddress?: CustomerAddress;\n\taddresses?: CustomerAddress[];\n}\n\nexport type CustomerUpdatePayload = Partial<Customer>;\n","export enum Feature {\n\tORDER = \"feature_order\",\n}\nexport enum FeatureSegment {\n\tALPHA = \"ALPHA\",\n\tBETA = \"BETA\",\n\tALL = \"ALL\",\n}\n","import * as customerModels from \"../customer/models\";\n\nexport enum OrderType {\n\tDINE_IN = \"DINE_IN\",\n\tPICK_UP = \"PICK_UP\",\n\tDELIVERY = \"DELIVERY\",\n}\n\nexport enum OrderStatus {\n\tDRAFT = \"DRAFT\",\n\tPENDING = \"PENDING\",\n\tCONFIRMED = \"CONFIRMED\",\n\tPREPARING = \"PREPARING\",\n\tREADY = \"READY\",\n\tOUT_FOR_DELIVERY = \"OUT_FOR_DELIVERY\",\n\tDELIVERED = \"DELIVERED\",\n\tCOMPLETED = \"COMPLETED\",\n\tCANCELLED = \"CANCELLED\",\n\tFAILED = \"FAILED\",\n}\n\nexport enum OrderItemStatus {\n\tPENDING = \"PENDING\",\n\tPREPARING = \"PREPARING\",\n\tREADY = \"READY\",\n\tSERVED = \"SERVED\",\n}\n\nexport enum PaymentMethod {\n\tCASH = \"CASH\",\n\tCARD = \"CARD\",\n\tWALLET = \"WALLET\",\n\tTERMINAL = \"TERMINAL\",\n}\n\nexport interface OrderAddonOption {\n\toptionId: number;\n\tprice: number;\n}\n\nexport interface OrderAddon {\n\tid?: number;\n\taddonId: number;\n\toptions: OrderAddonOption[];\n}\n\nexport interface SelectedAddons {\n\t[key: number]: number | number[];\n}\n\nexport interface OrderItemVariant {\n\tid?: number;\n\tvariantId: number;\n\tprice: number;\n}\n\nexport interface OrderItem {\n\tid?: number;\n\tproductId: number;\n\torderId?: number;\n\tquantity: number;\n\tprice: number;\n\tvariant?: OrderItemVariant;\n\taddons: OrderAddon[];\n\tnote?: string;\n\tstatus?: OrderItemStatus;\n\tvat?: number;\n\tisPaid?: boolean;\n}\n\nexport interface Order {\n\tid?: number;\n\tbusinessId?: number;\n\tbranchId?: number;\n\tworkingDayId?: number;\n\ttableId?: number;\n\temployeeId?: number;\n\torderType: OrderType;\n\ttotalPriceWithTax: number;\n\ttotalPriceWithTaxAndFees?: number;\n\ttotalPriceWithoutTax: number;\n\ttotalTax: number;\n\titems: OrderItem[];\n\tstatus?: OrderStatus;\n\tvat?: number;\n\tpaymentMethod?: PaymentMethod;\n\tnote?: string;\n\tcreatedAt?: number;\n\tupdatedAt?: number;\n\tcustomer?: customerModels.Customer;\n\tdeliveryFeeAmount?: number;\n}\n\nexport interface OrderItems {\n\t[key: string]: OrderItem;\n}\n\nexport enum OrderStep {\n\tCART = \"CART\",\n\tDETAILS = \"DETAILS\",\n\tCOMPLETED = \"COMPLETED\",\n}\n\nexport interface OrderPayload extends Order {\n\tcustomerAddressId: number;\n\tcustomerId: number;\n}\n\nexport type OrderPriceDetails = {\n\ttotalPriceWithTax: number;\n\ttotalPriceWithTaxAndFees: number;\n\ttotalPriceWithoutTax: number;\n\ttotalTax: number;\n};\n\nexport type OrderFormattedPriceDetails = {\n\ttotalPriceWithTax: string;\n\ttotalPriceWithTaxAndFees: string;\n\ttotalPriceWithoutTax: string;\n\ttotalTax: string;\n};\n","import { MenuAddon } from \"../addon/models\";\n\nexport interface ProductTranslation {\n\tid: number;\n\tname: string;\n\tdescription?: string;\n\tlanguage: string;\n\tproductId?: number;\n}\n\nexport interface ProductVariantTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface ProductVariant {\n\tid?: number;\n\tprice: number;\n\ttranslations: ProductVariantTranslation[];\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\tavailable?: boolean;\n\tvisible?: boolean;\n\tposition?: number;\n}\n\nexport enum ProductView {\n\tLIST = \"list\",\n\tGRID = \"grid\",\n}\n\nexport interface DashboardProduct extends Omit<Product, \"addons\"> {\n\taddons: number[];\n}\n","export enum PlanType {\n\tAPPETIZER = \"appetizer\",\n\tMAIN_COURSE = \"mainCourse\",\n\tCHEFS_SPECIAL = \"chefsSpecial\",\n\tLIFETIME = \"lifeTime\",\n}\n\nexport interface PricingPlan {\n\ttitle: string;\n\tprice: {\n\t\tmonthly: number;\n\t\tannually: number;\n\t};\n\tdiscountedPrice?: number;\n\tribbonText?: string;\n}\n\nexport interface PricingPlans {\n\t[key: string]: PricingPlan;\n}\n\nexport type PricingInterval = \"monthly\" | \"annually\";\n\nexport enum SubscriptionStatus {\n\tACTIVE = \"ACTIVE\",\n\tEXPIRED = \"EXPIRED\",\n\tCANCELLED = \"CANCELLED\",\n}\n\nexport type BillingInterval = \"MONTH\" | \"YEAR\";\n\nexport interface Subscription {\n\tid: number;\n\tbillingInterval: BillingInterval;\n\tbillingIntervalCount: number;\n\tstartDate: string;\n\tendDate: string;\n\tinterval: PricingInterval;\n\tstatus: SubscriptionStatus;\n\tbusiness_id?: number;\n\tplanName: string;\n}\n","export enum TableShape {\n\tSQUARE = \"SQUARE\",\n\tCIRCLE = \"CIRCLE\",\n\tRECTANGLE = \"RECTANGLE\",\n\tRECTANGLE_VERTICAL = \"RECTANGLE_VERTICAL\",\n\tSINGLE_AT_BAR = \"SINGLE_AT_BAR\",\n\tOTHER = \"OTHER\",\n}\n\nexport enum TableStatus {\n\tVACANT = \"VACANT\", // Free and available\n\tRESERVED = \"RESERVED\", // Booked but not yet seated\n\tOCCUPIED = \"OCCUPIED\", // Currently in use\n\tBLOCKED = \"BLOCKED\", // Temporarily blocked/unavailable\n\tNEEDS_CLEANING = \"NEEDS_CLEANING\", // Dirty, awaiting cleanup\n\tOUT_OF_SERVICE = \"OUT_OF_SERVICE\", // Permanently unavailable repair/maintenance\n\tPENDING_CONFIRMATION = \"PENDING_CONFIRMATION\", // Reservation not yet confirmed\n\tNO_SHOW = \"NO_SHOW\", // Reserved but guest didn’t arrive\n}\n\nexport enum TableLocation {\n\t// Indoor\n\tMAIN_HALL = \"MAIN_HALL\",\n\tPRIVATE_DINING = \"PRIVATE_DINING\",\n\tVIP_ROOM = \"VIP_ROOM\",\n\tBANQUET_HALL = \"BANQUET_HALL\",\n\tBAR_AREA = \"BAR_AREA\",\n\tLOUNGE = \"LOUNGE\",\n\tOPEN_KITCHEN = \"OPEN_KITCHEN\",\n\tBOOTH_SECTION = \"BOOTH_SECTION\",\n\tMEZZANINE = \"MEZZANINE\",\n\tWINE_CELLAR = \"WINE_CELLAR\",\n\n\t// Outdoor\n\tTERRACE = \"TERRACE\",\n\tPATIO = \"PATIO\",\n\tGARDEN = \"GARDEN\",\n\tCOURTYARD = \"COURTYARD\",\n\tROOFTOP = \"ROOFTOP\",\n\tBALCONY = \"BALCONY\",\n\tSIDEWALK = \"SIDEWALK\",\n\tPOOLSIDE = \"POOLSIDE\",\n\n\t// Special Sections\n\tSMOKING_AREA = \"SMOKING_AREA\",\n\tNON_SMOKING = \"NON_SMOKING\",\n\tFAMILY_SECTION = \"FAMILY_SECTION\",\n\tKIDS_AREA = \"KIDS_AREA\",\n\tWAITING_AREA = \"WAITING_AREA\",\n\tDANCE_FLOOR = \"DANCE_FLOOR\",\n}\n\nexport interface Table {\n\tid: number;\n\tbusinessId: number;\n\tbranchId: number;\n\tname: string;\n\tseatCount: number;\n\tshape: TableShape;\n\tlocation: TableLocation;\n\tstatus: TableStatus;\n}\n\nexport interface TableState {\n\ttables: Table[];\n}\n\nexport type TableForm = Omit<Table, \"id\" | \"businessId\" | \"branchId\"> & {\n\tbranchId: string | number;\n};\n\nexport type TableUpdate = Partial<Omit<Table, \"id\" | \"businessId\">>;\n\nexport type TableFilter = Partial<Pick<Table, \"branchId\" | \"shape\" | \"location\" | \"status\">>;\n\nexport type TableFilterParams = { field: keyof TableFilter; value: TableFilter[keyof TableFilter] };\n","// TODO: move it lib that we can use in mobile app too\nexport enum EmployeePermission {\n\tVIEW_BUSINESS = \"VIEW_BUSINESS\",\n\tUPDATE_BUSINESS = \"UPDATE_BUSINESS\",\n\tVIEW_ORDERS = \"VIEW_ORDERS\",\n\tUPDATE_ORDER = \"UPDATE_ORDER\",\n\tCREATE_ORDER = \"CREATE_ORDER\",\n\tVIEW_QR_MENU = \"VIEW_QR_MENU\",\n\tVIEW_MENU = \"VIEW_MENU\",\n\tVIEW_MENU_ITEMS = \"VIEW_MENU_ITEMS\",\n\tCREATE_MENU_ITEM = \"CREATE_MENU_ITEM\",\n\tUPDATE_MENU_ITEM = \"UPDATE_MENU_ITEM\",\n\tDELETE_MENU_ITEM = \"DELETE_MENU_ITEM\",\n\tVIEW_CATEGORIES = \"VIEW_CATEGORIES\",\n\tUPDATE_CATEGORY = \"UPDATE_CATEGORY\",\n\tCREATE_CATEGORY = \"CREATE_CATEGORY\",\n\tDELETE_CATEGORY = \"DELETE_CATEGORY\",\n\tVIEW_ADDONS = \"VIEW_ADDONS\",\n\tUPDATE_ADDON = \"UPDATE_ADDON\",\n\tCREATE_ADDON = \"CREATE_ADDON\",\n\tDELETE_ADDON = \"DELETE_ADDON\",\n\tVIEW_TABLES = \"VIEW_TABLES\",\n\tUPDATE_TABLE = \"UPDATE_TABLE\",\n\tUPDATE_TABLE_STATUS = \"UPDATE_TABLE_STATUS\",\n\tCREATE_TABLE = \"CREATE_TABLE\",\n\tDELETE_TABLE = \"DELETE_TABLE\",\n\tVIEW_BRANCHES = \"VIEW_BRANCHES\",\n\tUPDATE_BRANCH = \"UPDATE_BRANCH\",\n\tCREATE_BRANCH = \"CREATE_BRANCH\",\n\tDELETE_BRANCH = \"DELETE_BRANCH\",\n\tVIEW_EMPLOYEES = \"VIEW_EMPLOYEES\",\n\tUPDATE_EMPLOYEE = \"UPDATE_EMPLOYEE\",\n\tCREATE_EMPLOYEE = \"CREATE_EMPLOYEE\",\n\tDELETE_EMPLOYEE = \"DELETE_EMPLOYEE\",\n\tVIEW_ANALYTICS = \"VIEW_ANALYTICS\",\n\tVIEW_SALES_REPORTS = \"VIEW_SALES_REPORTS\",\n\tVIEW_SUBSCRIPTION = \"VIEW_SUBSCRIPTION\",\n\tUPDATE_SUBSCRIPTION = \"UPDATE_SUBSCRIPTION\",\n\tVIEW_QR_CODES = \"VIEW_QR_CODES\",\n\tCREATE_QR_CODE = \"CREATE_QR_CODE\",\n\tDELETE_QR_CODE = \"DELETE_QR_CODE\",\n\tALL = \"ALL\",\n}\n"],"names":["MenuAddonSelectType","BranchSetting","BusinessSetting","CustomerAuthStep","CustomerAddressType","FeatureSegment","OrderType","OrderStatus","OrderItemStatus","PaymentMethod","OrderStep","ProductView","PlanType","SubscriptionStatus","TableShape","TableStatus","TableLocation","EmployeePermission","Feature"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../../../src/modules/addon/models.ts","../../../src/modules/branch/models.ts","../../../src/modules/business/models.ts","../../../src/modules/customer/models.ts","../../../src/modules/feature/models.ts","../../../src/modules/order/models.ts","../../../src/modules/product/models.ts","../../../src/modules/subscription/models.ts","../../../src/modules/table/models.ts","../../../src/modules/user/models.ts"],"sourcesContent":["export enum MenuAddonSelectType {\n\tSINGLE = \"SINGLE\",\n\tMULTIPLE = \"MULTIPLE\",\n}\n\nexport interface MenuAddonTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface MenuAddonOptionTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface MenuAddonOption {\n\tid?: number;\n\tprice: number;\n\ttranslations: MenuAddonOptionTranslation[];\n\tremove?: boolean;\n}\n\nexport interface MenuAddon {\n\tid?: number;\n\tselectType: MenuAddonSelectType;\n\ttranslations: MenuAddonTranslation[];\n\toptions: MenuAddonOption[];\n\tbusinessId?: number;\n}\n","export type BranchWorkHour = {\n\topenAt: string;\n\tcloseAt: string;\n};\n\nexport type BranchWorkDay = {\n\tday: number;\n\thours: BranchWorkHour | null;\n};\n\nexport type BranchWorkDays = {\n\tdays: BranchWorkDay[];\n};\n\nexport interface BranchSettings {\n\tdeliveryOrderEnabled: boolean;\n\tpickupOrderEnabled: boolean;\n\tdineInOrderEnabled: boolean;\n\tmaxDeliveryDistance: number;\n\tminDeliveryAmount: number;\n\tdeliveryFeeAmount: number;\n}\n\nexport enum BranchSetting {\n\tMAX_DELIVERY_DISTANCE = \"maxDeliveryDistance\",\n\tDELIVERY_ORDER_ENABLED = \"deliveryOrderEnabled\",\n\tPICKUP_ORDER_ENABLED = \"pickupOrderEnabled\",\n\tDINE_IN_ORDER_ENABLED = \"dineInOrderEnabled\",\n\tMIN_DELIVERY_AMOUNT = \"minDeliveryAmount\",\n\tDELIVERY_FEE_AMOUNT = \"deliveryFeeAmount\",\n}\n\nexport interface Branch {\n\tid: number;\n\tname: string;\n\tbusinessId: number;\n\taddress: string;\n\tlongitude?: number;\n\tlatitude?: number;\n\tphone?: string;\n\twifiPassword?: string;\n\tcreatedAt?: number;\n\tcoverPhoto?: string;\n\tsettings?: BranchSettings;\n\topeningHours?: BranchWorkDays;\n\tdeliveryHours?: BranchWorkDays;\n}\n\nexport type BranchServes = {\n\tisOpen: boolean;\n\tisDelivering: boolean;\n};\n","import * as featureModels from \"../feature/models\";\nimport * as subscriptionModels from \"../subscription/models\";\n\nexport interface BusinessLanguage {\n\tid: number;\n\tcode: string;\n\tbusinessId: number;\n}\n\nexport enum BusinessSetting {\n\tMAX_DELIVERY_DISTANCE = \"maxDeliveryDistance\",\n\tDELIVERY_ORDER_ENABLED = \"deliveryOrderEnabled\",\n\tPICKUP_ORDER_ENABLED = \"pickupOrderEnabled\",\n\tDINE_IN_ORDER_ENABLED = \"dineInOrderEnabled\",\n\tMIN_DELIVERY_AMOUNT = \"minDeliveryAmount\",\n}\n\nexport interface Business {\n\tid: number;\n\tname: string;\n\tusername: string;\n\tavatar64?: string;\n\tavatar128?: string;\n\tavatar256?: string;\n\tcoverPhoto?: string;\n\tinstagram?: string;\n\tfacebook?: string;\n\ttiktok?: string;\n\tcreatedAt?: number;\n\tcurrency: string;\n\tlanguages: BusinessLanguage[];\n\tsubscriptions?: subscriptionModels.Subscription[];\n\tsegment?: featureModels.FeatureSegment;\n}\n","export enum CustomerAuthStep {\n\tPHONE = \"PHONE\",\n\tOTP = \"OTP\",\n\tEMAIL = \"EMAIL\",\n}\n\nexport enum CustomerAddressType {\n\tHOME = \"HOME\",\n\tWORK = \"WORK\",\n\tTRAVEL = \"TRAVEL\",\n}\n\nexport interface CustomerAddress {\n\tid?: number;\n\taddressId?: number; // Update address temporary\n\tcountryCode: string;\n\tcityName: string;\n\tstreet: string;\n\thouseNumber: string;\n\tadditionalNumber?: string;\n\tpostCode?: string;\n\tinstructions?: string;\n\tfloor?: number;\n\tlongitude?: number;\n\tlatitude?: number;\n\ttitle?: string;\n\ttype?: CustomerAddressType;\n}\n\nexport interface CustomerAuthForm {\n\tphoneNumber: string;\n\totp: string;\n\temail: string;\n}\n\nexport interface CustomerAuthPhoneForm {\n\tcountryCode: string;\n\tphoneNumber: string;\n}\n\nexport interface AuthResponse {\n\taccessToken: string;\n\trefreshToken: string;\n}\n\nexport interface Customer {\n\tid?: number;\n\temail: string;\n\tphoneNumber: string;\n\tfullName: string;\n\tsmsVerified?: boolean;\n\temailVerified?: boolean;\n\taddress?: CustomerAddress;\n\taddresses?: CustomerAddress[];\n}\n\nexport type CustomerUpdatePayload = Partial<Customer>;\n","export enum Feature {\n\tORDER = \"feature_order\",\n}\nexport enum FeatureSegment {\n\tALPHA = \"ALPHA\",\n\tBETA = \"BETA\",\n\tALL = \"ALL\",\n}\n","import * as customerModels from \"../customer/models\";\n\nexport enum OrderType {\n\tDINE_IN = \"DINE_IN\",\n\tPICK_UP = \"PICK_UP\",\n\tDELIVERY = \"DELIVERY\",\n}\n\nexport enum OrderStatus {\n\tDRAFT = \"DRAFT\",\n\tPENDING = \"PENDING\",\n\tCONFIRMED = \"CONFIRMED\",\n\tPREPARING = \"PREPARING\",\n\tREADY = \"READY\",\n\tOUT_FOR_DELIVERY = \"OUT_FOR_DELIVERY\",\n\tDELIVERED = \"DELIVERED\",\n\tCOMPLETED = \"COMPLETED\",\n\tCANCELLED = \"CANCELLED\",\n\tFAILED = \"FAILED\",\n}\n\nexport enum OrderItemStatus {\n\tPENDING = \"PENDING\",\n\tPREPARING = \"PREPARING\",\n\tREADY = \"READY\",\n\tSERVED = \"SERVED\",\n}\n\nexport enum PaymentMethod {\n\tCASH = \"CASH\",\n\tCARD = \"CARD\",\n\tWALLET = \"WALLET\",\n\tTERMINAL = \"TERMINAL\",\n}\n\nexport interface OrderAddonOption {\n\toptionId: number;\n\tprice: number;\n}\n\nexport interface OrderAddon {\n\tid?: number;\n\taddonId: number;\n\toptions: OrderAddonOption[];\n}\n\nexport interface SelectedAddons {\n\t[key: number]: number | number[];\n}\n\nexport interface OrderItemVariant {\n\tid?: number;\n\tvariantId: number;\n\tprice: number;\n}\n\nexport interface OrderItem {\n\tid?: number;\n\tproductId: number;\n\torderId?: number;\n\tquantity: number;\n\tprice: number;\n\tvariant?: OrderItemVariant;\n\taddons: OrderAddon[];\n\tnote?: string;\n\tstatus?: OrderItemStatus;\n\tvat?: number;\n\tisPaid?: boolean;\n}\n\nexport interface Order {\n\tid?: number;\n\tbusinessId?: number;\n\tbranchId?: number;\n\tworkingDayId?: number;\n\ttableId?: number;\n\temployeeId?: number;\n\torderType: OrderType;\n\ttotalPriceWithTax: number;\n\ttotalPriceWithTaxAndFees?: number;\n\ttotalPriceWithoutTax: number;\n\ttotalTax: number;\n\titems: OrderItem[];\n\tstatus?: OrderStatus;\n\tvat?: number;\n\tpaymentMethod?: PaymentMethod;\n\tnote?: string;\n\tcreatedAt?: number;\n\tupdatedAt?: number;\n\tcustomer?: customerModels.Customer;\n\tdeliveryFee?: number;\n}\n\nexport interface OrderItems {\n\t[key: string]: OrderItem;\n}\n\nexport enum OrderStep {\n\tCART = \"CART\",\n\tDETAILS = \"DETAILS\",\n\tCOMPLETED = \"COMPLETED\",\n}\n\nexport interface OrderPayload extends Order {\n\tcustomerAddressId: number;\n\tcustomerId: number;\n}\n\nexport type OrderPriceDetails = {\n\ttotalPriceWithTax: number;\n\ttotalPriceWithTaxAndFees: number;\n\ttotalPriceWithoutTax: number;\n\ttotalTax: number;\n};\n\nexport type OrderFormattedPriceDetails = {\n\ttotalPriceWithTax: string;\n\ttotalPriceWithTaxAndFees: string;\n\ttotalPriceWithoutTax: string;\n\ttotalTax: string;\n};\n","import { MenuAddon } from \"../addon/models\";\n\nexport interface ProductTranslation {\n\tid: number;\n\tname: string;\n\tdescription?: string;\n\tlanguage: string;\n\tproductId?: number;\n}\n\nexport interface ProductVariantTranslation {\n\tid?: number;\n\ttitle: string;\n\tlanguage: string;\n}\n\nexport interface ProductVariant {\n\tid?: number;\n\tprice: number;\n\ttranslations: ProductVariantTranslation[];\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\tavailable?: boolean;\n\tvisible?: boolean;\n\tposition?: number;\n}\n\nexport enum ProductView {\n\tLIST = \"list\",\n\tGRID = \"grid\",\n}\n\nexport interface DashboardProduct extends Omit<Product, \"addons\"> {\n\taddons: number[];\n}\n","export enum PlanType {\n\tAPPETIZER = \"appetizer\",\n\tMAIN_COURSE = \"mainCourse\",\n\tCHEFS_SPECIAL = \"chefsSpecial\",\n\tLIFETIME = \"lifeTime\",\n}\n\nexport interface PricingPlan {\n\ttitle: string;\n\tprice: {\n\t\tmonthly: number;\n\t\tannually: number;\n\t};\n\tdiscountedPrice?: number;\n\tribbonText?: string;\n}\n\nexport interface PricingPlans {\n\t[key: string]: PricingPlan;\n}\n\nexport type PricingInterval = \"monthly\" | \"annually\";\n\nexport enum SubscriptionStatus {\n\tACTIVE = \"ACTIVE\",\n\tEXPIRED = \"EXPIRED\",\n\tCANCELLED = \"CANCELLED\",\n}\n\nexport type BillingInterval = \"MONTH\" | \"YEAR\";\n\nexport interface Subscription {\n\tid: number;\n\tbillingInterval: BillingInterval;\n\tbillingIntervalCount: number;\n\tstartDate: string;\n\tendDate: string;\n\tinterval: PricingInterval;\n\tstatus: SubscriptionStatus;\n\tbusiness_id?: number;\n\tplanName: string;\n}\n","export enum TableShape {\n\tSQUARE = \"SQUARE\",\n\tCIRCLE = \"CIRCLE\",\n\tRECTANGLE = \"RECTANGLE\",\n\tRECTANGLE_VERTICAL = \"RECTANGLE_VERTICAL\",\n\tSINGLE_AT_BAR = \"SINGLE_AT_BAR\",\n\tOTHER = \"OTHER\",\n}\n\nexport enum TableStatus {\n\tVACANT = \"VACANT\", // Free and available\n\tRESERVED = \"RESERVED\", // Booked but not yet seated\n\tOCCUPIED = \"OCCUPIED\", // Currently in use\n\tBLOCKED = \"BLOCKED\", // Temporarily blocked/unavailable\n\tNEEDS_CLEANING = \"NEEDS_CLEANING\", // Dirty, awaiting cleanup\n\tOUT_OF_SERVICE = \"OUT_OF_SERVICE\", // Permanently unavailable repair/maintenance\n\tPENDING_CONFIRMATION = \"PENDING_CONFIRMATION\", // Reservation not yet confirmed\n\tNO_SHOW = \"NO_SHOW\", // Reserved but guest didn’t arrive\n}\n\nexport enum TableLocation {\n\t// Indoor\n\tMAIN_HALL = \"MAIN_HALL\",\n\tPRIVATE_DINING = \"PRIVATE_DINING\",\n\tVIP_ROOM = \"VIP_ROOM\",\n\tBANQUET_HALL = \"BANQUET_HALL\",\n\tBAR_AREA = \"BAR_AREA\",\n\tLOUNGE = \"LOUNGE\",\n\tOPEN_KITCHEN = \"OPEN_KITCHEN\",\n\tBOOTH_SECTION = \"BOOTH_SECTION\",\n\tMEZZANINE = \"MEZZANINE\",\n\tWINE_CELLAR = \"WINE_CELLAR\",\n\n\t// Outdoor\n\tTERRACE = \"TERRACE\",\n\tPATIO = \"PATIO\",\n\tGARDEN = \"GARDEN\",\n\tCOURTYARD = \"COURTYARD\",\n\tROOFTOP = \"ROOFTOP\",\n\tBALCONY = \"BALCONY\",\n\tSIDEWALK = \"SIDEWALK\",\n\tPOOLSIDE = \"POOLSIDE\",\n\n\t// Special Sections\n\tSMOKING_AREA = \"SMOKING_AREA\",\n\tNON_SMOKING = \"NON_SMOKING\",\n\tFAMILY_SECTION = \"FAMILY_SECTION\",\n\tKIDS_AREA = \"KIDS_AREA\",\n\tWAITING_AREA = \"WAITING_AREA\",\n\tDANCE_FLOOR = \"DANCE_FLOOR\",\n}\n\nexport interface Table {\n\tid: number;\n\tbusinessId: number;\n\tbranchId: number;\n\tname: string;\n\tseatCount: number;\n\tshape: TableShape;\n\tlocation: TableLocation;\n\tstatus: TableStatus;\n}\n\nexport interface TableState {\n\ttables: Table[];\n}\n\nexport type TableForm = Omit<Table, \"id\" | \"businessId\" | \"branchId\"> & {\n\tbranchId: string | number;\n};\n\nexport type TableUpdate = Partial<Omit<Table, \"id\" | \"businessId\">>;\n\nexport type TableFilter = Partial<Pick<Table, \"branchId\" | \"shape\" | \"location\" | \"status\">>;\n\nexport type TableFilterParams = { field: keyof TableFilter; value: TableFilter[keyof TableFilter] };\n","// TODO: move it lib that we can use in mobile app too\nexport enum EmployeePermission {\n\tVIEW_BUSINESS = \"VIEW_BUSINESS\",\n\tUPDATE_BUSINESS = \"UPDATE_BUSINESS\",\n\tVIEW_ORDERS = \"VIEW_ORDERS\",\n\tUPDATE_ORDER = \"UPDATE_ORDER\",\n\tCREATE_ORDER = \"CREATE_ORDER\",\n\tVIEW_QR_MENU = \"VIEW_QR_MENU\",\n\tVIEW_MENU = \"VIEW_MENU\",\n\tVIEW_MENU_ITEMS = \"VIEW_MENU_ITEMS\",\n\tCREATE_MENU_ITEM = \"CREATE_MENU_ITEM\",\n\tUPDATE_MENU_ITEM = \"UPDATE_MENU_ITEM\",\n\tDELETE_MENU_ITEM = \"DELETE_MENU_ITEM\",\n\tVIEW_CATEGORIES = \"VIEW_CATEGORIES\",\n\tUPDATE_CATEGORY = \"UPDATE_CATEGORY\",\n\tCREATE_CATEGORY = \"CREATE_CATEGORY\",\n\tDELETE_CATEGORY = \"DELETE_CATEGORY\",\n\tVIEW_ADDONS = \"VIEW_ADDONS\",\n\tUPDATE_ADDON = \"UPDATE_ADDON\",\n\tCREATE_ADDON = \"CREATE_ADDON\",\n\tDELETE_ADDON = \"DELETE_ADDON\",\n\tVIEW_TABLES = \"VIEW_TABLES\",\n\tUPDATE_TABLE = \"UPDATE_TABLE\",\n\tUPDATE_TABLE_STATUS = \"UPDATE_TABLE_STATUS\",\n\tCREATE_TABLE = \"CREATE_TABLE\",\n\tDELETE_TABLE = \"DELETE_TABLE\",\n\tVIEW_BRANCHES = \"VIEW_BRANCHES\",\n\tUPDATE_BRANCH = \"UPDATE_BRANCH\",\n\tCREATE_BRANCH = \"CREATE_BRANCH\",\n\tDELETE_BRANCH = \"DELETE_BRANCH\",\n\tVIEW_EMPLOYEES = \"VIEW_EMPLOYEES\",\n\tUPDATE_EMPLOYEE = \"UPDATE_EMPLOYEE\",\n\tCREATE_EMPLOYEE = \"CREATE_EMPLOYEE\",\n\tDELETE_EMPLOYEE = \"DELETE_EMPLOYEE\",\n\tVIEW_ANALYTICS = \"VIEW_ANALYTICS\",\n\tVIEW_SALES_REPORTS = \"VIEW_SALES_REPORTS\",\n\tVIEW_SUBSCRIPTION = \"VIEW_SUBSCRIPTION\",\n\tUPDATE_SUBSCRIPTION = \"UPDATE_SUBSCRIPTION\",\n\tVIEW_QR_CODES = \"VIEW_QR_CODES\",\n\tCREATE_QR_CODE = \"CREATE_QR_CODE\",\n\tDELETE_QR_CODE = \"DELETE_QR_CODE\",\n\tALL = \"ALL\",\n}\n"],"names":["MenuAddonSelectType","BranchSetting","BusinessSetting","CustomerAuthStep","CustomerAddressType","FeatureSegment","OrderType","OrderStatus","OrderItemStatus","PaymentMethod","OrderStep","ProductView","PlanType","SubscriptionStatus","TableShape","TableStatus","TableLocation","EmployeePermission","Feature"],"mappings":"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"}
@@ -78,7 +78,7 @@ export interface Order {
78
78
  createdAt?: number;
79
79
  updatedAt?: number;
80
80
  customer?: customerModels.Customer;
81
- deliveryFeeAmount?: number;
81
+ deliveryFee?: number;
82
82
  }
83
83
  export interface OrderItems {
84
84
  [key: string]: OrderItem;
@@ -78,7 +78,7 @@ export interface Order {
78
78
  createdAt?: number;
79
79
  updatedAt?: number;
80
80
  customer?: customerModels.Customer;
81
- deliveryFeeAmount?: number;
81
+ deliveryFee?: number;
82
82
  }
83
83
  export interface OrderItems {
84
84
  [key: string]: OrderItem;
@@ -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)}}@keyframes PublicMenu-module_rotation__LCRL3{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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)}}@keyframes Header-module_rotation__7xqRs{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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_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_businessHours__E-lHj,.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_businessHours__E-lHj .Header-module_icon__mPQ7A,.Header-module_container__tenlF .Header-module_links__EeQxg .Header-module_wifiPassword__VWBTa .Header-module_icon__mPQ7A{height:100%}.Header-module_container__tenlF.Header-module_noBranch__gPWcg{height:10rem}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al{padding:1rem}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_logo__4MTCm{height:5rem;min-height:5rem;width:5rem}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_info__IchYA{width:100%}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_name__30wyw{text-align:center}@media (max-width:576px){.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_logo__4MTCm{height:4rem;min-height:4rem;width:4rem}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_name__30wyw{font-size:1.25rem}}@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)}}@keyframes Languages-module_rotation__gp8P5{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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)}@keyframes BranchInfo-module_flexWide__Dbj2j{0%{flex:0}to{flex:1}}@keyframes BranchInfo-module_slidein__ZzICK{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes BranchInfo-module_fadeInOut__huNZd{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes BranchInfo-module_heightAnimation__-OW5c{0%{height:0}to{height:100%}}@keyframes BranchInfo-module_fadein__QmZdX{0%{opacity:0}to{opacity:1}}@keyframes BranchInfo-module_floatAnimation__yGnay{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes BranchInfo-module_bottomSheet__AHXUu{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes BranchInfo-module_slideRightToLeft__fw-ED{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes BranchInfo-module_rotation__EhUat{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.BranchInfo-module_logo__MoEmf{border-radius:50%;display:block;height:6rem;min-height:6rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:6rem}.BranchInfo-module_info__EpTep{overflow:hidden;width:calc(100% - 7rem)}.BranchInfo-module_info__EpTep .BranchInfo-module_name__NNMHB{font-size:1.5rem;margin:0;max-width:100%;overflow:hidden;text-overflow:ellipsis}.BranchInfo-module_info__EpTep .BranchInfo-module_address__-8-uR{color:#fff;font-size:.9rem}.BranchInfo-module_info__EpTep .BranchInfo-module_address__-8-uR .BranchInfo-module_addressText__kiFQq{line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis;white-space:normal}.BackIcon-module_container__uknWc{cursor:pointer;display:flex;margin-left:-.5rem;margin-top:-.5rem}.BusinessInfo-module_logo__O2lWK{border-radius:50%;display:block;height:6rem;min-height:6rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:6rem}.BusinessInfo-module_info__aKwcK{overflow:hidden;width:calc(100% - 7rem)}.BusinessInfo-module_info__aKwcK .BusinessInfo-module_name__XfMpw{font-size:1.5rem;margin:0;max-width:100%;overflow:hidden;text-overflow:ellipsis}.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)}}@keyframes ProductsListItem-module_rotation__ZMvMz{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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_image__h6Wbi.ProductsListItem-module_notAvailable__TeMCr{filter:grayscale(100%)}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_addToOrder__6KqZn{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)}}@keyframes ProductsGridItem-module_rotation__npCfA{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ProductsGridItem-module_container__DU5KG{border-bottom:1px solid #eff2f5;padding:1.5rem 0;-webkit-user-select:none;-moz-user-select:none;user-select:none;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;text-shadow:.5px .5px 5px #000}.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%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z .ProductsGridItem-module_image__alZWL.ProductsGridItem-module_notAvailable__i4-HA{filter:grayscale(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_addToOrder__PhQhg{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{text-shadow:none}.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}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_notAvailableText__9G0yj{color:#f1416c!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)}}@keyframes ProductDetails-module_rotation__k-9gH{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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{line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;white-space:break-spaces}@media (max-width:576px){.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)}}@keyframes Quantity-module_rotation__dn0J8{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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_quantityValue__BBpyw{height:2.5rem!important;width:1.25rem}.Quantity-module_container__01ySb.Quantity-module_sm__0Hgp2 .Quantity-module_quantityAction__wRV2F{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_quantityValue__BBpyw{height:3.25rem!important;width:1.6666666667rem}.Quantity-module_container__01ySb.Quantity-module_md__hu7a8 .Quantity-module_quantityAction__wRV2F{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_quantityValue__BBpyw{height:3.75rem!important;width:2.0833333333rem}.Quantity-module_container__01ySb.Quantity-module_lg__GA4jn .Quantity-module_quantityAction__wRV2F{height:3.75rem!important;width:4.1666666667rem}.ProductInOrder-module_container__0N57G .ProductInOrder-module_title__TWjM9{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)}}@keyframes ProductVariants-module_rotation__iJPfC{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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)}}@keyframes ProductAddons-module_rotation__ycNtj{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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 FloatingOrdersButton-module_flexWide__76axD{0%{flex:0}to{flex:1}}@keyframes FloatingOrdersButton-module_slidein__mtue7{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes FloatingOrdersButton-module_fadeInOut__x7Xvb{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes FloatingOrdersButton-module_heightAnimation__BQhjf{0%{height:0}to{height:100%}}@keyframes FloatingOrdersButton-module_fadein__OVkKy{0%{opacity:0}to{opacity:1}}@keyframes FloatingOrdersButton-module_floatAnimation__VSNFt{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes FloatingOrdersButton-module_bottomSheet__6AMVn{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes FloatingOrdersButton-module_slideRightToLeft__7Lxjo{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes FloatingOrdersButton-module_rotation__IM8zh{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.FloatingOrdersButton-module_container__RYr7V{bottom:0;display:flex;justify-content:center;left:0;padding:1rem;position:fixed;right:0;z-index:10}.FloatingOrdersButton-module_container__RYr7V .FloatingOrdersButton-module_content__2X3P-{animation-duration:.3s;animation-name:FloatingOrdersButton-module_bottomSheet__6AMVn;animation-timing-function:cubic-bezier(.32,1,.23,1);max-width:25rem;width:100%}@keyframes OrderStepper-module_flexWide__oIpQi{0%{flex:0}to{flex:1}}@keyframes OrderStepper-module_slidein__P6YJD{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes OrderStepper-module_fadeInOut__OVRav{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes OrderStepper-module_heightAnimation__bDpZh{0%{height:0}to{height:100%}}@keyframes OrderStepper-module_fadein__526L2{0%{opacity:0}to{opacity:1}}@keyframes OrderStepper-module_floatAnimation__rjwmv{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes OrderStepper-module_bottomSheet__777sc{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes OrderStepper-module_slideRightToLeft__UjVx6{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes OrderStepper-module_rotation__PedNC{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.OrderStepper-module_container__GVnVU{background-color:var(--sorocraft-color-primary,#2d3436);border-radius:1.5rem;color:#fff;min-height:3.375rem;padding:.9rem 1rem;width:100%}.OrderStepper-module_container__GVnVU .OrderStepper-module_count__u13tM{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}.OrderStepper-module_container__GVnVU .OrderStepper-module_actionText__CZsVe{font-weight:500;white-space:nowrap}.OrderStepper-module_container__GVnVU .OrderStepper-module_totalPrice__R9Mni{font-weight:500;text-align:end}.OrderStepper-module_container__GVnVU.OrderStepper-module_isClickable__M3rWK{cursor:pointer}.OrderStepper-module_container__GVnVU.OrderStepper-module_isDisabled__xipwc,.OrderStepper-module_container__GVnVU.OrderStepper-module_isLoading__FkS16{background-color:rgba(235,59,90,.75);cursor:not-allowed}.OrderStepper-module_container__GVnVU.OrderStepper-module_isDisabled__xipwc .OrderStepper-module_actionText__CZsVe,.OrderStepper-module_container__GVnVU.OrderStepper-module_isLoading__FkS16 .OrderStepper-module_actionText__CZsVe{line-height:.75}@keyframes OrderDrawer-module_flexWide__WatFh{0%{flex:0}to{flex:1}}@keyframes OrderDrawer-module_slidein__-S7pZ{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes OrderDrawer-module_fadeInOut__Vnw9N{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes OrderDrawer-module_heightAnimation__vitnv{0%{height:0}to{height:100%}}@keyframes OrderDrawer-module_fadein__N0T5n{0%{opacity:0}to{opacity:1}}@keyframes OrderDrawer-module_floatAnimation__i-n3y{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes OrderDrawer-module_bottomSheet__ugbJC{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes OrderDrawer-module_slideRightToLeft__0x9E4{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes OrderDrawer-module_rotation__5WP1-{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.OrderDrawer-module_container__DymQj{align-items:center;background-color:rgba(0,0,0,.5);display:flex;inset:0;justify-content:flex-end;position:fixed;z-index:100}.OrderDrawer-module_container__DymQj .OrderDrawer-module_content__khduX{height:100%;padding:1rem 0}.OrderDrawer-module_container__DymQj .OrderDrawer-module_content__khduX .OrderDrawer-module_paymentMethods__9i-sb{padding:0 1rem}.OrderDrawer-module_footer__8XfD9 .OrderDrawer-module_noteButton__M8BVx{padding:.625rem 1.5rem!important}.OrderDrawer-module_table__2KKpj{padding:0 1rem}@keyframes OrderListItem-module_flexWide__p06FA{0%{flex:0}to{flex:1}}@keyframes OrderListItem-module_slidein__npG1H{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes OrderListItem-module_fadeInOut__6-69i{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes OrderListItem-module_heightAnimation__9xQeY{0%{height:0}to{height:100%}}@keyframes OrderListItem-module_fadein__v9WHA{0%{opacity:0}to{opacity:1}}@keyframes OrderListItem-module_floatAnimation__E-PEL{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes OrderListItem-module_bottomSheet__tZCrN{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes OrderListItem-module_slideRightToLeft__tzJmH{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes OrderListItem-module_rotation__edZBL{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.OrderListItem-module_container__Tj4RI{border-bottom:1px solid #eff2f5;padding:.75rem 1rem}.OrderListItem-module_container__Tj4RI .OrderListItem-module_image__o3PIC{border-radius:.475rem;height:2.8125rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:5rem}.OrderListItem-module_container__Tj4RI .OrderListItem-module_data__BLzxw{flex:1;max-width:100%;overflow:hidden;text-overflow:ellipsis}.OrderListItem-module_container__Tj4RI .OrderListItem-module_data__BLzxw .OrderListItem-module_name__QEzuZ{font-weight:500;line-height:1;margin-bottom:.5rem}.OrderListItem-module_container__Tj4RI .OrderListItem-module_data__BLzxw .OrderListItem-module_price__-V2qL{line-height:1.5rem;margin-top:.5rem}@keyframes ProductQuantity-module_flexWide__nM3ep{0%{flex:0}to{flex:1}}@keyframes ProductQuantity-module_slidein__WMIdH{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductQuantity-module_fadeInOut__Slq12{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductQuantity-module_heightAnimation__i7QLr{0%{height:0}to{height:100%}}@keyframes ProductQuantity-module_fadein__OyZ8J{0%{opacity:0}to{opacity:1}}@keyframes ProductQuantity-module_floatAnimation__asE7P{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductQuantity-module_bottomSheet__wtuzd{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductQuantity-module_slideRightToLeft__-t-QM{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes ProductQuantity-module_rotation__Ocswn{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ProductQuantity-module_quantity__PzTpj{align-items:center;background-color:#f5f8fa;border-radius:50%;color:#181c32;display:flex;font-size:.875rem;font-weight:500;height:2rem;justify-content:center;line-height:1rem;width:2rem}.CustomerAddress-module_container__TGYRV{cursor:pointer;padding:1rem;width:100%}.OrderMethods-module_container__KSwfa{max-width:100%;min-height:2.5rem;overflow-x:auto;width:100%}@keyframes OrderPaymentSummary-module_flexWide__ZwadA{0%{flex:0}to{flex:1}}@keyframes OrderPaymentSummary-module_slidein__-JUW6{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes OrderPaymentSummary-module_fadeInOut__9WNtv{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes OrderPaymentSummary-module_heightAnimation__C-m6c{0%{height:0}to{height:100%}}@keyframes OrderPaymentSummary-module_fadein__zS0Sf{0%{opacity:0}to{opacity:1}}@keyframes OrderPaymentSummary-module_floatAnimation__WS0-I{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes OrderPaymentSummary-module_bottomSheet__-LRgT{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes OrderPaymentSummary-module_slideRightToLeft__pME7a{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes OrderPaymentSummary-module_rotation__AbrgT{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.OrderPaymentSummary-module_container__HF7-X .OrderPaymentSummary-module_row__eikWa{border-bottom:1px dashed #eff2f5;padding:.5rem 1rem}@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)}}@keyframes Branches-module_rotation__w-5eY{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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(300px,1fr));padding-bottom:2rem}@media (max-width:576px){.Branches-module_branches__sOuoV .Branches-module_list__vYoT2{grid-template-columns:1fr}}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4{border-radius:.475rem;box-shadow:0 10px 35px 0 rgba(56,71,109,.075);overflow:hidden;transition:box-shadow .5s ease-in-out;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx{overflow:hidden;position:relative;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_info__1EHQA{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;text-shadow:.5px .5px 5px #000;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_info__1EHQA .Branches-module_name__K0Z-4{color:#fff;font-size:1.25rem;font-weight:600;margin:0;max-width:100%;overflow:hidden;text-align:center}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_info__1EHQA .Branches-module_address__QEufs{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}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP{border-radius:.475rem;overflow:hidden;position:relative;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP .Branches-module_image__-uBIg{height:100%;left:0;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP .Branches-module_image__-uBIg.Branches-module_notAvailable__XEoIs{filter:grayscale(100%)}@supports (aspect-ratio:16/9){.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP{aspect-ratio:16/9;padding-top:0}}@supports not (aspect-ratio:16/9){.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP{padding-top:56.25%}}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS{min-height:10rem}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS .Branches-module_info__1EHQA{background:transparent;justify-content:center!important;padding:2rem 1rem;text-shadow:none}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS .Branches-module_info__1EHQA .Branches-module_address__QEufs,.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS .Branches-module_info__1EHQA .Branches-module_name__K0Z-4{color:#181c32}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS .Branches-module_info__1EHQA svg path{stroke:#181c32!important}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4:hover{box-shadow:0 50px 20px -40px rgba(0,0,0,.1),0 30px 50px 0 rgba(50,50,93,.25)}@keyframes ScrollToTop-module_flexWide__ISFJo{0%{flex:0}to{flex:1}}@keyframes ScrollToTop-module_slidein__ciJNw{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ScrollToTop-module_fadeInOut__TVbp7{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ScrollToTop-module_heightAnimation__ouHY-{0%{height:0}to{height:100%}}@keyframes ScrollToTop-module_fadein__-3ySu{0%{opacity:0}to{opacity:1}}@keyframes ScrollToTop-module_floatAnimation__6Gg6O{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ScrollToTop-module_bottomSheet__XjARU{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ScrollToTop-module_slideRightToLeft__YUoyD{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes ScrollToTop-module_rotation__z-fUd{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ScrollToTop-module_container__fY2Wr{bottom:1rem;display:none;position:fixed;right:1rem}.ScrollToTop-module_container__fY2Wr.ScrollToTop-module_visible__4c1xZ{display:block}@keyframes Auth-module_flexWide__mT2k8{0%{flex:0}to{flex:1}}@keyframes Auth-module_slidein__OwMUO{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Auth-module_fadeInOut__4LYll{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Auth-module_heightAnimation__srw1h{0%{height:0}to{height:100%}}@keyframes Auth-module_fadein__NGXVC{0%{opacity:0}to{opacity:1}}@keyframes Auth-module_floatAnimation__2ifYP{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Auth-module_bottomSheet__gcwUA{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Auth-module_slideRightToLeft__PLnaH{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes Auth-module_rotation__uRs1v{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.Auth-module_content__1ATBc{height:100%;padding:2rem 0}.Auth-module_content__1ATBc .Auth-module_countryCode__zLFy4{min-width:7.5rem}.Auth-module_content__1ATBc .Auth-module_terms__OH3th{color:#a1a5b7;font-size:.875rem;line-height:20px;text-align:center;width:100%}.Auth-module_content__1ATBc .Auth-module_terms__OH3th a{color:#1b84ff}@keyframes HoursList-module_flexWide__SDyfe{0%{flex:0}to{flex:1}}@keyframes HoursList-module_slidein__SoLHp{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes HoursList-module_fadeInOut__NXpb7{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes HoursList-module_heightAnimation__us5Ci{0%{height:0}to{height:100%}}@keyframes HoursList-module_fadein__0d-Cw{0%{opacity:0}to{opacity:1}}@keyframes HoursList-module_floatAnimation__nlzyY{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes HoursList-module_bottomSheet__lo59f{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes HoursList-module_slideRightToLeft__B3P-i{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes HoursList-module_rotation__pM4OT{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.HoursList-module_container__wYX5G .HoursList-module_title__D7Q8u{border-block-end:1px solid #eff2f5;margin-block-end:.5rem;padding-block-end:1rem;width:100%}@keyframes Pricing-module_flexWide__mXSDX{0%{flex:0}to{flex:1}}@keyframes Pricing-module_slidein__tTiof{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Pricing-module_fadeInOut__rYI0L{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Pricing-module_heightAnimation__WKFZx{0%{height:0}to{height:100%}}@keyframes Pricing-module_fadein__HeFT0{0%{opacity:0}to{opacity:1}}@keyframes Pricing-module_floatAnimation__1VcsO{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Pricing-module_bottomSheet__v4vTu{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Pricing-module_slideRightToLeft__GpKCA{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes Pricing-module_rotation__2tW8V{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.Pricing-module_container__86ns8{align-items:center;display:flex;flex-direction:column}.Pricing-module_container__86ns8 .Pricing-module_intervals__YOrns{background-color:#fff;border-radius:3.75rem;box-shadow:0 10px 35px 0 rgba(56,71,109,.075);display:flex;gap:1rem;margin-bottom:2.5rem;padding:1rem 1.5rem}.Pricing-module_container__86ns8 .Pricing-module_intervals__YOrns .Pricing-module_interval__perjd{background-color:transparent;border-radius:3.75rem;cursor:pointer;padding:.75rem 1.5rem;text-transform:capitalize;transition:background-color .2s ease-in-out,color .2s ease-in-out}.Pricing-module_container__86ns8 .Pricing-module_intervals__YOrns .Pricing-module_interval__perjd.Pricing-module_active__BRQhl{background-color:var(--sorocraft-color-primary,#2d3436);color:#fff}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5{display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));margin-bottom:6rem;width:100%}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl{border-radius:.85rem;height:100%;position:relative;transition:box-shadow .5s cubic-bezier(.7,0,0,1)}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl>div{height:100%}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_title__rMUDX{border-bottom:1px dashed #e4e6ef;font-size:1.75rem;font-weight:600;padding-bottom:1rem}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_price__TKBkb{font-size:2rem;height:3.75rem;margin-top:1rem}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_price__TKBkb .Pricing-module_originalPrice__klyhF{font-size:1.5rem;font-weight:600;text-decoration:line-through}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_price__TKBkb .Pricing-module_discountedPrice__qS7GB{color:var(--sorocraft-color-primary,#2d3436);font-weight:600}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_action__08XLt{margin:2rem 0}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_benefits__OjGx8 .Pricing-module_moneyBack__iEpmd{color:#a1a5b7;font-size:.875rem;margin-bottom:1rem}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_benefits__OjGx8 .Pricing-module_benefit__-oBt1{align-items:center;display:flex;gap:1rem;padding:.5rem 0}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_benefits__OjGx8 .Pricing-module_benefit__-oBt1 i{margin-right:1rem}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl:hover{box-shadow:0 100px 50px -40px rgba(0,0,0,.1),0 60px 100px 0 rgba(50,50,93,.25);color:#181c32}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl.Pricing-module_hasRibbon__siI3P:before{background:linear-gradient(rgba(0,0,0,.5) 0 0) bottom/100% 6px no-repeat var(--sorocraft-color-primary,#2d3436);background-clip:padding-box;border:1px solid transparent;border-bottom:0;clip-path:polygon(0 0,100% 0,100% 100%,calc(100% - 6px) calc(100% - 6px),6px calc(100% - 6px),0 100%);color:#fff;content:attr(data-ribbon);font-size:.9rem;-webkit-mask:linear-gradient(135deg,transparent calc(50% - 4.242px),#fff 0) bottom left,linear-gradient(-135deg,transparent calc(50% - 4.242px),#fff 0) bottom right;-webkit-mask-composite:destination-in;mask-composite:intersect;-webkit-mask-size:300vmax 300vmax;padding:5px 35px 11px;position:absolute;right:0;text-align:center;top:0;transform:translate(29.29%,-100%) rotate(45deg);transform-origin:bottom left}
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)}}@keyframes PublicMenu-module_rotation__LCRL3{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes PublicMenu-module_pulse__UuN7Y{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.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)}}@keyframes Header-module_rotation__7xqRs{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Header-module_pulse__wzUbo{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.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_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_businessHours__E-lHj,.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_businessHours__E-lHj .Header-module_icon__mPQ7A,.Header-module_container__tenlF .Header-module_links__EeQxg .Header-module_wifiPassword__VWBTa .Header-module_icon__mPQ7A{height:100%}.Header-module_container__tenlF.Header-module_noBranch__gPWcg{height:10rem}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al{padding:1rem}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_logo__4MTCm{height:5rem;min-height:5rem;width:5rem}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_info__IchYA{width:100%}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_name__30wyw{text-align:center}@media (max-width:576px){.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_logo__4MTCm{height:4rem;min-height:4rem;width:4rem}.Header-module_container__tenlF.Header-module_noBranch__gPWcg .Header-module_content__Gx4Al .Header-module_info__IchYA .Header-module_name__30wyw{font-size:1.25rem}}@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)}}@keyframes Languages-module_rotation__gp8P5{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Languages-module_pulse__h9hxJ{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.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)}@keyframes BranchInfo-module_flexWide__Dbj2j{0%{flex:0}to{flex:1}}@keyframes BranchInfo-module_slidein__ZzICK{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes BranchInfo-module_fadeInOut__huNZd{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes BranchInfo-module_heightAnimation__-OW5c{0%{height:0}to{height:100%}}@keyframes BranchInfo-module_fadein__QmZdX{0%{opacity:0}to{opacity:1}}@keyframes BranchInfo-module_floatAnimation__yGnay{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes BranchInfo-module_bottomSheet__AHXUu{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes BranchInfo-module_slideRightToLeft__fw-ED{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes BranchInfo-module_rotation__EhUat{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes BranchInfo-module_pulse__tfqzt{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.BranchInfo-module_logo__MoEmf{border-radius:50%;display:block;height:6rem;min-height:6rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:6rem}.BranchInfo-module_info__EpTep{overflow:hidden;width:calc(100% - 7rem)}.BranchInfo-module_info__EpTep .BranchInfo-module_name__NNMHB{font-size:1.5rem;margin:0;max-width:100%;overflow:hidden;text-overflow:ellipsis}.BranchInfo-module_info__EpTep .BranchInfo-module_address__-8-uR{color:#fff;font-size:.9rem}.BranchInfo-module_info__EpTep .BranchInfo-module_address__-8-uR .BranchInfo-module_addressText__kiFQq{line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis;white-space:normal}.BackIcon-module_container__uknWc{cursor:pointer;display:flex;margin-left:-.5rem;margin-top:-.5rem}.BusinessInfo-module_logo__O2lWK{border-radius:50%;display:block;height:6rem;min-height:6rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:6rem}.BusinessInfo-module_info__aKwcK{overflow:hidden;width:calc(100% - 7rem)}.BusinessInfo-module_info__aKwcK .BusinessInfo-module_name__XfMpw{font-size:1.5rem;margin:0;max-width:100%;overflow:hidden;text-overflow:ellipsis}.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)}}@keyframes ProductsListItem-module_rotation__ZMvMz{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes ProductsListItem-module_pulse__yy4Wc{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.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_image__h6Wbi.ProductsListItem-module_notAvailable__TeMCr{filter:grayscale(100%)}.ProductsListItem-module_container__i9tFs .ProductsListItem-module_addToOrder__6KqZn{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)}}@keyframes ProductsGridItem-module_rotation__npCfA{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes ProductsGridItem-module_pulse__whBaS{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.ProductsGridItem-module_container__DU5KG{border-bottom:1px solid #eff2f5;padding:1.5rem 0;-webkit-user-select:none;-moz-user-select:none;user-select:none;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;text-shadow:.5px .5px 5px #000}.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%}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y .ProductsGridItem-module_imageContainer__eHS4Z .ProductsGridItem-module_image__alZWL.ProductsGridItem-module_notAvailable__i4-HA{filter:grayscale(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_addToOrder__PhQhg{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{text-shadow:none}.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}.ProductsGridItem-module_container__DU5KG .ProductsGridItem-module_content__FXs0Y.ProductsGridItem-module_noImage__78UHW .ProductsGridItem-module_info__HkBG- .ProductsGridItem-module_data__Z-N1X .ProductsGridItem-module_notAvailableText__9G0yj{color:#f1416c!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)}}@keyframes ProductDetails-module_rotation__k-9gH{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes ProductDetails-module_pulse__0g68Y{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.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{line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;white-space:break-spaces}@media (max-width:576px){.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)}}@keyframes Quantity-module_rotation__dn0J8{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Quantity-module_pulse__6kl4q{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.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_quantityValue__BBpyw{height:2.5rem!important;width:1.25rem}.Quantity-module_container__01ySb.Quantity-module_sm__0Hgp2 .Quantity-module_quantityAction__wRV2F{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_quantityValue__BBpyw{height:3.25rem!important;width:1.6666666667rem}.Quantity-module_container__01ySb.Quantity-module_md__hu7a8 .Quantity-module_quantityAction__wRV2F{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_quantityValue__BBpyw{height:3.75rem!important;width:2.0833333333rem}.Quantity-module_container__01ySb.Quantity-module_lg__GA4jn .Quantity-module_quantityAction__wRV2F{height:3.75rem!important;width:4.1666666667rem}.ProductInOrder-module_container__0N57G .ProductInOrder-module_title__TWjM9{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)}}@keyframes ProductVariants-module_rotation__iJPfC{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes ProductVariants-module_pulse__xzh2J{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.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)}}@keyframes ProductAddons-module_rotation__ycNtj{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes ProductAddons-module_pulse__nM-nA{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.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 FloatingOrdersButton-module_flexWide__76axD{0%{flex:0}to{flex:1}}@keyframes FloatingOrdersButton-module_slidein__mtue7{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes FloatingOrdersButton-module_fadeInOut__x7Xvb{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes FloatingOrdersButton-module_heightAnimation__BQhjf{0%{height:0}to{height:100%}}@keyframes FloatingOrdersButton-module_fadein__OVkKy{0%{opacity:0}to{opacity:1}}@keyframes FloatingOrdersButton-module_floatAnimation__VSNFt{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes FloatingOrdersButton-module_bottomSheet__6AMVn{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes FloatingOrdersButton-module_slideRightToLeft__7Lxjo{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes FloatingOrdersButton-module_rotation__IM8zh{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes FloatingOrdersButton-module_pulse__09UDN{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.FloatingOrdersButton-module_container__RYr7V{bottom:0;display:flex;justify-content:center;left:0;padding:1rem;position:fixed;right:0;z-index:10}.FloatingOrdersButton-module_container__RYr7V .FloatingOrdersButton-module_content__2X3P-{animation-duration:.3s;animation-name:FloatingOrdersButton-module_bottomSheet__6AMVn;animation-timing-function:cubic-bezier(.32,1,.23,1);max-width:25rem;width:100%}@keyframes OrderStepper-module_flexWide__oIpQi{0%{flex:0}to{flex:1}}@keyframes OrderStepper-module_slidein__P6YJD{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes OrderStepper-module_fadeInOut__OVRav{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes OrderStepper-module_heightAnimation__bDpZh{0%{height:0}to{height:100%}}@keyframes OrderStepper-module_fadein__526L2{0%{opacity:0}to{opacity:1}}@keyframes OrderStepper-module_floatAnimation__rjwmv{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes OrderStepper-module_bottomSheet__777sc{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes OrderStepper-module_slideRightToLeft__UjVx6{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes OrderStepper-module_rotation__PedNC{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes OrderStepper-module_pulse__mOlOg{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.OrderStepper-module_container__GVnVU{background-color:var(--sorocraft-color-primary,#2d3436);border-radius:1.5rem;color:#fff;min-height:3.375rem;padding:.9rem 1rem;width:100%}.OrderStepper-module_container__GVnVU .OrderStepper-module_count__u13tM{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}.OrderStepper-module_container__GVnVU .OrderStepper-module_actionText__CZsVe{font-weight:500;white-space:nowrap}.OrderStepper-module_container__GVnVU .OrderStepper-module_totalPrice__R9Mni{font-weight:500;text-align:end}.OrderStepper-module_container__GVnVU.OrderStepper-module_isClickable__M3rWK{cursor:pointer}.OrderStepper-module_container__GVnVU.OrderStepper-module_isDisabled__xipwc,.OrderStepper-module_container__GVnVU.OrderStepper-module_isLoading__FkS16{background-color:rgba(235,59,90,.75);cursor:not-allowed}.OrderStepper-module_container__GVnVU.OrderStepper-module_isDisabled__xipwc .OrderStepper-module_actionText__CZsVe,.OrderStepper-module_container__GVnVU.OrderStepper-module_isLoading__FkS16 .OrderStepper-module_actionText__CZsVe{line-height:.75}@keyframes OrderDrawer-module_flexWide__WatFh{0%{flex:0}to{flex:1}}@keyframes OrderDrawer-module_slidein__-S7pZ{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes OrderDrawer-module_fadeInOut__Vnw9N{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes OrderDrawer-module_heightAnimation__vitnv{0%{height:0}to{height:100%}}@keyframes OrderDrawer-module_fadein__N0T5n{0%{opacity:0}to{opacity:1}}@keyframes OrderDrawer-module_floatAnimation__i-n3y{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes OrderDrawer-module_bottomSheet__ugbJC{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes OrderDrawer-module_slideRightToLeft__0x9E4{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes OrderDrawer-module_rotation__5WP1-{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes OrderDrawer-module_pulse__P28xu{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.OrderDrawer-module_container__DymQj{align-items:center;background-color:rgba(0,0,0,.5);display:flex;inset:0;justify-content:flex-end;position:fixed;z-index:100}.OrderDrawer-module_container__DymQj .OrderDrawer-module_content__khduX{height:100%;padding:1rem 0}.OrderDrawer-module_container__DymQj .OrderDrawer-module_content__khduX .OrderDrawer-module_paymentMethods__9i-sb{padding:0 1rem}.OrderDrawer-module_footer__8XfD9 .OrderDrawer-module_noteButton__M8BVx{padding:.625rem 1.5rem!important}.OrderDrawer-module_table__2KKpj{padding:0 1rem}@keyframes OrderListItem-module_flexWide__p06FA{0%{flex:0}to{flex:1}}@keyframes OrderListItem-module_slidein__npG1H{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes OrderListItem-module_fadeInOut__6-69i{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes OrderListItem-module_heightAnimation__9xQeY{0%{height:0}to{height:100%}}@keyframes OrderListItem-module_fadein__v9WHA{0%{opacity:0}to{opacity:1}}@keyframes OrderListItem-module_floatAnimation__E-PEL{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes OrderListItem-module_bottomSheet__tZCrN{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes OrderListItem-module_slideRightToLeft__tzJmH{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes OrderListItem-module_rotation__edZBL{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes OrderListItem-module_pulse__IvClE{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.OrderListItem-module_container__Tj4RI{border-bottom:1px solid #eff2f5;padding:.75rem 1rem}.OrderListItem-module_container__Tj4RI .OrderListItem-module_image__o3PIC{border-radius:.475rem;height:2.8125rem;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:5rem}.OrderListItem-module_container__Tj4RI .OrderListItem-module_data__BLzxw{flex:1;max-width:100%;overflow:hidden;text-overflow:ellipsis}.OrderListItem-module_container__Tj4RI .OrderListItem-module_data__BLzxw .OrderListItem-module_name__QEzuZ{font-weight:500;line-height:1;margin-bottom:.5rem}.OrderListItem-module_container__Tj4RI .OrderListItem-module_data__BLzxw .OrderListItem-module_price__-V2qL{line-height:1.5rem;margin-top:.5rem}@keyframes ProductQuantity-module_flexWide__nM3ep{0%{flex:0}to{flex:1}}@keyframes ProductQuantity-module_slidein__WMIdH{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ProductQuantity-module_fadeInOut__Slq12{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ProductQuantity-module_heightAnimation__i7QLr{0%{height:0}to{height:100%}}@keyframes ProductQuantity-module_fadein__OyZ8J{0%{opacity:0}to{opacity:1}}@keyframes ProductQuantity-module_floatAnimation__asE7P{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ProductQuantity-module_bottomSheet__wtuzd{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ProductQuantity-module_slideRightToLeft__-t-QM{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes ProductQuantity-module_rotation__Ocswn{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes ProductQuantity-module_pulse__DJy9x{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.ProductQuantity-module_quantity__PzTpj{align-items:center;background-color:#f5f8fa;border-radius:50%;color:#181c32;display:flex;font-size:.875rem;font-weight:500;height:2rem;justify-content:center;line-height:1rem;width:2rem}.CustomerAddress-module_container__TGYRV{cursor:pointer;padding:1rem;width:100%}.OrderMethods-module_container__KSwfa{max-width:100%;min-height:2.5rem;overflow-x:auto;width:100%}@keyframes OrderPaymentSummary-module_flexWide__ZwadA{0%{flex:0}to{flex:1}}@keyframes OrderPaymentSummary-module_slidein__-JUW6{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes OrderPaymentSummary-module_fadeInOut__9WNtv{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes OrderPaymentSummary-module_heightAnimation__C-m6c{0%{height:0}to{height:100%}}@keyframes OrderPaymentSummary-module_fadein__zS0Sf{0%{opacity:0}to{opacity:1}}@keyframes OrderPaymentSummary-module_floatAnimation__WS0-I{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes OrderPaymentSummary-module_bottomSheet__-LRgT{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes OrderPaymentSummary-module_slideRightToLeft__pME7a{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes OrderPaymentSummary-module_rotation__AbrgT{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes OrderPaymentSummary-module_pulse__zmRS9{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.OrderPaymentSummary-module_container__HF7-X .OrderPaymentSummary-module_row__eikWa{border-bottom:1px dashed #eff2f5;padding:.5rem 1rem}@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)}}@keyframes Branches-module_rotation__w-5eY{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Branches-module_pulse__g2OVi{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.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(300px,1fr));padding-bottom:2rem}@media (max-width:576px){.Branches-module_branches__sOuoV .Branches-module_list__vYoT2{grid-template-columns:1fr}}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4{border-radius:.475rem;box-shadow:0 10px 35px 0 rgba(56,71,109,.075);overflow:hidden;transition:box-shadow .5s ease-in-out;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx{overflow:hidden;position:relative;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_info__1EHQA{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;text-shadow:.5px .5px 5px #000;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_info__1EHQA .Branches-module_name__K0Z-4{color:#fff;font-size:1.25rem;font-weight:600;margin:0;max-width:100%;overflow:hidden;text-align:center}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_info__1EHQA .Branches-module_address__QEufs{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}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP{border-radius:.475rem;overflow:hidden;position:relative;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP .Branches-module_image__-uBIg{height:100%;left:0;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;width:100%}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP .Branches-module_image__-uBIg.Branches-module_notAvailable__XEoIs{filter:grayscale(100%)}@supports (aspect-ratio:16/9){.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP{aspect-ratio:16/9;padding-top:0}}@supports not (aspect-ratio:16/9){.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx .Branches-module_imageContainer__k3DvP{padding-top:56.25%}}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS{min-height:10rem}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS .Branches-module_info__1EHQA{background:transparent;justify-content:center!important;padding:2rem 1rem;text-shadow:none}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS .Branches-module_info__1EHQA .Branches-module_address__QEufs,.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS .Branches-module_info__1EHQA .Branches-module_name__K0Z-4{color:#181c32}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4 .Branches-module_content__cANnx.Branches-module_noImage__SkXKS .Branches-module_info__1EHQA svg path{stroke:#181c32!important}.Branches-module_branches__sOuoV .Branches-module_list__vYoT2 .Branches-module_item__5xZV4:hover{box-shadow:0 50px 20px -40px rgba(0,0,0,.1),0 30px 50px 0 rgba(50,50,93,.25)}@keyframes ScrollToTop-module_flexWide__ISFJo{0%{flex:0}to{flex:1}}@keyframes ScrollToTop-module_slidein__ciJNw{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes ScrollToTop-module_fadeInOut__TVbp7{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes ScrollToTop-module_heightAnimation__ouHY-{0%{height:0}to{height:100%}}@keyframes ScrollToTop-module_fadein__-3ySu{0%{opacity:0}to{opacity:1}}@keyframes ScrollToTop-module_floatAnimation__6Gg6O{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes ScrollToTop-module_bottomSheet__XjARU{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes ScrollToTop-module_slideRightToLeft__YUoyD{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes ScrollToTop-module_rotation__z-fUd{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes ScrollToTop-module_pulse__59P93{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.ScrollToTop-module_container__fY2Wr{bottom:1rem;display:none;position:fixed;right:1rem}.ScrollToTop-module_container__fY2Wr.ScrollToTop-module_visible__4c1xZ{display:block}@keyframes Auth-module_flexWide__mT2k8{0%{flex:0}to{flex:1}}@keyframes Auth-module_slidein__OwMUO{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Auth-module_fadeInOut__4LYll{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Auth-module_heightAnimation__srw1h{0%{height:0}to{height:100%}}@keyframes Auth-module_fadein__NGXVC{0%{opacity:0}to{opacity:1}}@keyframes Auth-module_floatAnimation__2ifYP{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Auth-module_bottomSheet__gcwUA{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Auth-module_slideRightToLeft__PLnaH{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes Auth-module_rotation__uRs1v{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Auth-module_pulse__ouAfj{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.Auth-module_content__1ATBc{height:100%;padding:2rem 0}.Auth-module_content__1ATBc .Auth-module_countryCode__zLFy4{min-width:7.5rem}.Auth-module_content__1ATBc .Auth-module_terms__OH3th{color:#a1a5b7;font-size:.875rem;line-height:20px;text-align:center;width:100%}.Auth-module_content__1ATBc .Auth-module_terms__OH3th a{color:#1b84ff}@keyframes HoursList-module_flexWide__SDyfe{0%{flex:0}to{flex:1}}@keyframes HoursList-module_slidein__SoLHp{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes HoursList-module_fadeInOut__NXpb7{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes HoursList-module_heightAnimation__us5Ci{0%{height:0}to{height:100%}}@keyframes HoursList-module_fadein__0d-Cw{0%{opacity:0}to{opacity:1}}@keyframes HoursList-module_floatAnimation__nlzyY{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes HoursList-module_bottomSheet__lo59f{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes HoursList-module_slideRightToLeft__B3P-i{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes HoursList-module_rotation__pM4OT{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes HoursList-module_pulse__gdYsa{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.HoursList-module_container__wYX5G .HoursList-module_title__D7Q8u{border-block-end:1px solid #eff2f5;margin-block-end:.5rem;padding-block-end:1rem;width:100%}@keyframes Pricing-module_flexWide__mXSDX{0%{flex:0}to{flex:1}}@keyframes Pricing-module_slidein__tTiof{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes Pricing-module_fadeInOut__rYI0L{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes Pricing-module_heightAnimation__WKFZx{0%{height:0}to{height:100%}}@keyframes Pricing-module_fadein__HeFT0{0%{opacity:0}to{opacity:1}}@keyframes Pricing-module_floatAnimation__1VcsO{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes Pricing-module_bottomSheet__v4vTu{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes Pricing-module_slideRightToLeft__GpKCA{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes Pricing-module_rotation__2tW8V{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Pricing-module_pulse__lxgYz{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.Pricing-module_container__86ns8{align-items:center;display:flex;flex-direction:column}.Pricing-module_container__86ns8 .Pricing-module_intervals__YOrns{background-color:#fff;border-radius:3.75rem;box-shadow:0 10px 35px 0 rgba(56,71,109,.075);display:flex;gap:1rem;margin-bottom:2.5rem;padding:1rem 1.5rem}.Pricing-module_container__86ns8 .Pricing-module_intervals__YOrns .Pricing-module_interval__perjd{background-color:transparent;border-radius:3.75rem;cursor:pointer;padding:.75rem 1.5rem;text-transform:capitalize;transition:background-color .2s ease-in-out,color .2s ease-in-out}.Pricing-module_container__86ns8 .Pricing-module_intervals__YOrns .Pricing-module_interval__perjd.Pricing-module_active__BRQhl{background-color:var(--sorocraft-color-primary,#2d3436);color:#fff}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5{display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));margin-bottom:6rem;width:100%}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl{border-radius:.85rem;height:100%;position:relative;transition:box-shadow .5s cubic-bezier(.7,0,0,1)}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl>div{height:100%}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_title__rMUDX{border-bottom:1px dashed #e4e6ef;font-size:1.75rem;font-weight:600;padding-bottom:1rem}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_price__TKBkb{font-size:2rem;height:3.75rem;margin-top:1rem}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_price__TKBkb .Pricing-module_originalPrice__klyhF{font-size:1.5rem;font-weight:600;text-decoration:line-through}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_price__TKBkb .Pricing-module_discountedPrice__qS7GB{color:var(--sorocraft-color-primary,#2d3436);font-weight:600}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_action__08XLt{margin:2rem 0}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_benefits__OjGx8 .Pricing-module_moneyBack__iEpmd{color:#a1a5b7;font-size:.875rem;margin-bottom:1rem}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_benefits__OjGx8 .Pricing-module_benefit__-oBt1{align-items:center;display:flex;gap:1rem;padding:.5rem 0}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl .Pricing-module_benefits__OjGx8 .Pricing-module_benefit__-oBt1 i{margin-right:1rem}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl:hover{box-shadow:0 100px 50px -40px rgba(0,0,0,.1),0 60px 100px 0 rgba(50,50,93,.25);color:#181c32}.Pricing-module_container__86ns8 .Pricing-module_plans__hbRn5 .Pricing-module_plan__pGWAl.Pricing-module_hasRibbon__siI3P:before{background:linear-gradient(rgba(0,0,0,.5) 0 0) bottom/100% 6px no-repeat var(--sorocraft-color-primary,#2d3436);background-clip:padding-box;border:1px solid transparent;border-bottom:0;clip-path:polygon(0 0,100% 0,100% 100%,calc(100% - 6px) calc(100% - 6px),6px calc(100% - 6px),0 100%);color:#fff;content:attr(data-ribbon);font-size:.9rem;-webkit-mask:linear-gradient(135deg,transparent calc(50% - 4.242px),#fff 0) bottom left,linear-gradient(-135deg,transparent calc(50% - 4.242px),#fff 0) bottom right;-webkit-mask-composite:destination-in;mask-composite:intersect;-webkit-mask-size:300vmax 300vmax;padding:5px 35px 11px;position:absolute;right:0;text-align:center;top:0;transform:translate(29.29%,-100%) rotate(45deg);transform-origin:bottom left}@keyframes OrderFAB-module_flexWide__FfcIV{0%{flex:0}to{flex:1}}@keyframes OrderFAB-module_slidein__dniBn{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes OrderFAB-module_fadeInOut__BhXGd{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@keyframes OrderFAB-module_heightAnimation__B-TR3{0%{height:0}to{height:100%}}@keyframes OrderFAB-module_fadein__DO09i{0%{opacity:0}to{opacity:1}}@keyframes OrderFAB-module_floatAnimation__gOJf0{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes OrderFAB-module_bottomSheet__NRqrj{0%{transform:translateY(100%)}to{transform:translate(0)}}@keyframes OrderFAB-module_slideRightToLeft__O8uj3{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes OrderFAB-module_rotation__dOOw-{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes OrderFAB-module_pulse__yF8uk{0%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.3)}to{opacity:1;transform:scale(1)}}.OrderFAB-module_container__YeERy{align-items:center;background-color:var(--sorocraft-color-primary,#2d3436);border-radius:1.5rem;bottom:2rem;cursor:pointer;display:none;gap:1rem;padding:.9rem 1rem;position:fixed;right:2rem}.OrderFAB-module_container__YeERy .OrderFAB-module_count__7ZQN5{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}.OrderFAB-module_container__YeERy.OrderFAB-module_isVisible__-0j7W{display:flex}@media (max-width:576px){.OrderFAB-module_container__YeERy{bottom:5rem;right:1rem}}.OrderFAB-module_container__YeERy.OrderFAB-module_animate__Wx4O-{animation:OrderFAB-module_pulse__yF8uk .4s ease}
2
2
  /*# sourceMappingURL=ui.css.map */