@akinon/projectzero 1.32.0 → 1.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (506) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/app-template/.editorconfig +7 -0
  3. package/app-template/.env.example +9 -0
  4. package/app-template/.eslintignore +1 -0
  5. package/app-template/.eslintrc.js +31 -0
  6. package/app-template/.gitattributes +18 -0
  7. package/app-template/.husky/pre-commit +4 -0
  8. package/app-template/.lintstagedrc.js +12 -0
  9. package/app-template/.prettierrc +13 -0
  10. package/app-template/.releaserc.json +49 -0
  11. package/app-template/.stylelintrc.json +37 -0
  12. package/app-template/.vscode/extensions.json +11 -0
  13. package/app-template/.vscode/launch.json +29 -0
  14. package/app-template/.yarnrc +1 -0
  15. package/app-template/CHANGELOG.md +636 -0
  16. package/app-template/LICENSE +21 -0
  17. package/app-template/Procfile +1 -0
  18. package/app-template/README.md +29 -0
  19. package/app-template/akinon.json +28 -0
  20. package/app-template/bitbucket-pipelines.yml +54 -0
  21. package/app-template/build.sh +7 -0
  22. package/app-template/docs/CHANGELOG.md +85 -0
  23. package/app-template/docs/advanced-usage.md +43 -0
  24. package/app-template/docs/basic-setup.md +59 -0
  25. package/app-template/docs/data-fetching/client/account.md +1064 -0
  26. package/app-template/docs/data-fetching/client/address.md +805 -0
  27. package/app-template/docs/data-fetching/client/basket.md +107 -0
  28. package/app-template/docs/data-fetching/client/checkout.md +904 -0
  29. package/app-template/docs/data-fetching/client/misc.md +135 -0
  30. package/app-template/docs/data-fetching/client/product.md +284 -0
  31. package/app-template/docs/data-fetching/client/user.md +56 -0
  32. package/app-template/docs/data-fetching/client/wishlist.md +111 -0
  33. package/app-template/docs/data-fetching/server/category.md +324 -0
  34. package/app-template/docs/data-fetching/server/flat-page.md +42 -0
  35. package/app-template/docs/data-fetching/server/list.md +353 -0
  36. package/app-template/docs/data-fetching/server/menu.md +363 -0
  37. package/app-template/docs/data-fetching/server/product.md +131 -0
  38. package/app-template/docs/data-fetching/server/seo.md +44 -0
  39. package/app-template/docs/data-fetching/server/special-page.md +79 -0
  40. package/app-template/docs/data-fetching/server/widget.md +218 -0
  41. package/app-template/docs/delete-account.md +25 -0
  42. package/app-template/docs/deployment.md +46 -0
  43. package/app-template/docs/dynamic-route.md +33 -0
  44. package/app-template/docs/icons.md +52 -0
  45. package/app-template/docs/localization.md +204 -0
  46. package/app-template/docs/logging.md +48 -0
  47. package/app-template/docs/plugins.md +76 -0
  48. package/app-template/docs/seo-management.md +125 -0
  49. package/app-template/docs/static-assets.md +36 -0
  50. package/app-template/docs/widgets.md +127 -0
  51. package/app-template/global.d.ts +1 -0
  52. package/app-template/jest.config.ts +34 -0
  53. package/app-template/next-env.d.ts +6 -0
  54. package/app-template/next.config.mjs +34 -0
  55. package/app-template/package.json +97 -0
  56. package/app-template/plugins.d.ts +1 -0
  57. package/app-template/postcss.config.js +6 -0
  58. package/app-template/public/404.png +0 -0
  59. package/app-template/public/500.png +0 -0
  60. package/app-template/public/apple-splash-1125-2436.jpg +0 -0
  61. package/app-template/public/apple-splash-1136-640.jpg +0 -0
  62. package/app-template/public/apple-splash-1170-2532.jpg +0 -0
  63. package/app-template/public/apple-splash-1242-2208.jpg +0 -0
  64. package/app-template/public/apple-splash-1242-2688.jpg +0 -0
  65. package/app-template/public/apple-splash-1284-2778.jpg +0 -0
  66. package/app-template/public/apple-splash-1334-750.jpg +0 -0
  67. package/app-template/public/apple-splash-1536-2048.jpg +0 -0
  68. package/app-template/public/apple-splash-1620-2160.jpg +0 -0
  69. package/app-template/public/apple-splash-1668-2224.jpg +0 -0
  70. package/app-template/public/apple-splash-1668-2388.jpg +0 -0
  71. package/app-template/public/apple-splash-1792-828.jpg +0 -0
  72. package/app-template/public/apple-splash-2048-1536.jpg +0 -0
  73. package/app-template/public/apple-splash-2048-2732.jpg +0 -0
  74. package/app-template/public/apple-splash-2160-1620.jpg +0 -0
  75. package/app-template/public/apple-splash-2208-1242.jpg +0 -0
  76. package/app-template/public/apple-splash-2224-1668.jpg +0 -0
  77. package/app-template/public/apple-splash-2388-1668.jpg +0 -0
  78. package/app-template/public/apple-splash-2436-1125.jpg +0 -0
  79. package/app-template/public/apple-splash-2532-1170.jpg +0 -0
  80. package/app-template/public/apple-splash-2688-1242.jpg +0 -0
  81. package/app-template/public/apple-splash-2732-2048.jpg +0 -0
  82. package/app-template/public/apple-splash-2778-1284.jpg +0 -0
  83. package/app-template/public/apple-splash-640-1136.jpg +0 -0
  84. package/app-template/public/apple-splash-750-1334.jpg +0 -0
  85. package/app-template/public/apple-splash-828-1792.jpg +0 -0
  86. package/app-template/public/apple-touch-icon-152x152.png +0 -0
  87. package/app-template/public/apple-touch-icon-167x167.png +0 -0
  88. package/app-template/public/apple-touch-icon-180x180.png +0 -0
  89. package/app-template/public/apple-touch-icon.png +0 -0
  90. package/app-template/public/apple.svg +47 -0
  91. package/app-template/public/cvv.jpg +0 -0
  92. package/app-template/public/facebook.svg +3 -0
  93. package/app-template/public/google.svg +12 -0
  94. package/app-template/public/icon-192x192.png +0 -0
  95. package/app-template/public/icon-256x256.png +0 -0
  96. package/app-template/public/icon-384x384.png +0 -0
  97. package/app-template/public/icon-512x512.png +0 -0
  98. package/app-template/public/icon-sprite.svg +528 -0
  99. package/app-template/public/locales/en/account.json +490 -0
  100. package/app-template/public/locales/en/auth.json +100 -0
  101. package/app-template/public/locales/en/basket.json +50 -0
  102. package/app-template/public/locales/en/category.json +26 -0
  103. package/app-template/public/locales/en/checkout.json +152 -0
  104. package/app-template/public/locales/en/common.json +65 -0
  105. package/app-template/public/locales/en/forgot_password.json +41 -0
  106. package/app-template/public/locales/en/form.json +5 -0
  107. package/app-template/public/locales/en/product.json +39 -0
  108. package/app-template/public/locales/tr/account.json +490 -0
  109. package/app-template/public/locales/tr/auth.json +100 -0
  110. package/app-template/public/locales/tr/basket.json +50 -0
  111. package/app-template/public/locales/tr/category.json +26 -0
  112. package/app-template/public/locales/tr/checkout.json +152 -0
  113. package/app-template/public/locales/tr/common.json +65 -0
  114. package/app-template/public/locales/tr/forgot_password.json +41 -0
  115. package/app-template/public/locales/tr/form.json +5 -0
  116. package/app-template/public/locales/tr/product.json +39 -0
  117. package/app-template/public/logo.svg +29 -0
  118. package/app-template/public/manifest.json +35 -0
  119. package/app-template/public/mastercard.png +0 -0
  120. package/app-template/public/mastersecure.png +0 -0
  121. package/app-template/public/mfs-client.min.js +3 -0
  122. package/app-template/public/noimage.jpg +0 -0
  123. package/app-template/public/safari-pinned-tab.svg +320 -0
  124. package/app-template/public/ssl-secure.png +0 -0
  125. package/app-template/public/vbv.png +0 -0
  126. package/app-template/public/visa.png +0 -0
  127. package/app-template/public/zepto.min.js +2 -0
  128. package/app-template/sentry.client.config.ts +16 -0
  129. package/app-template/sentry.edge.config.ts +3 -0
  130. package/app-template/sentry.properties +4 -0
  131. package/app-template/sentry.server.config.ts +3 -0
  132. package/app-template/setupTests.ts +4 -0
  133. package/app-template/src/__tests__/index.test.tsx +7 -0
  134. package/app-template/src/__tests__/tsconfig.json +7 -0
  135. package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +74 -0
  136. package/app-template/src/app/[commerce]/[locale]/[currency]/account/change-email/page.tsx +174 -0
  137. package/app-template/src/app/[commerce]/[locale]/[currency]/account/change-password/page.tsx +206 -0
  138. package/app-template/src/app/[commerce]/[locale]/[currency]/account/contact/page.tsx +7 -0
  139. package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +210 -0
  140. package/app-template/src/app/[commerce]/[locale]/[currency]/account/email-verification/page.tsx +5 -0
  141. package/app-template/src/app/[commerce]/[locale]/[currency]/account/faq/page.tsx +23 -0
  142. package/app-template/src/app/[commerce]/[locale]/[currency]/account/favourite-products/page.tsx +32 -0
  143. package/app-template/src/app/[commerce]/[locale]/[currency]/account/layout.tsx +28 -0
  144. package/app-template/src/app/[commerce]/[locale]/[currency]/account/my-quotations/page.tsx +7 -0
  145. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/cancellation/page.tsx +255 -0
  146. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/layout.tsx +5 -0
  147. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/page.tsx +309 -0
  148. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/page.tsx +137 -0
  149. package/app-template/src/app/[commerce]/[locale]/[currency]/account/page.tsx +226 -0
  150. package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +399 -0
  151. package/app-template/src/app/[commerce]/[locale]/[currency]/address/stores/page.tsx +271 -0
  152. package/app-template/src/app/[commerce]/[locale]/[currency]/anonymous-tracking/page.tsx +33 -0
  153. package/app-template/src/app/[commerce]/[locale]/[currency]/auth/oauth-login/page.tsx +3 -0
  154. package/app-template/src/app/[commerce]/[locale]/[currency]/auth/page.tsx +76 -0
  155. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +77 -0
  156. package/app-template/src/app/[commerce]/[locale]/[currency]/basket-b2b/page.tsx +7 -0
  157. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/loading.tsx +53 -0
  158. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +16 -0
  159. package/app-template/src/app/[commerce]/[locale]/[currency]/client-root.tsx +9 -0
  160. package/app-template/src/app/[commerce]/[locale]/[currency]/contact-us/page.tsx +11 -0
  161. package/app-template/src/app/[commerce]/[locale]/[currency]/error.tsx +20 -0
  162. package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/loading.tsx +5 -0
  163. package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/page.tsx +18 -0
  164. package/app-template/src/app/[commerce]/[locale]/[currency]/forms/[pk]/generate/page.tsx +48 -0
  165. package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/loading.tsx +5 -0
  166. package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/page.tsx +72 -0
  167. package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/loading.tsx +5 -0
  168. package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +23 -0
  169. package/app-template/src/app/[commerce]/[locale]/[currency]/layout.tsx +78 -0
  170. package/app-template/src/app/[commerce]/[locale]/[currency]/list/loading.tsx +53 -0
  171. package/app-template/src/app/[commerce]/[locale]/[currency]/list/page.tsx +16 -0
  172. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx +140 -0
  173. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/layout.tsx +5 -0
  174. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +284 -0
  175. package/app-template/src/app/[commerce]/[locale]/[currency]/page.tsx +50 -0
  176. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +67 -0
  177. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/page.tsx +81 -0
  178. package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/loading.tsx +53 -0
  179. package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/page.tsx +25 -0
  180. package/app-template/src/app/[commerce]/[locale]/[currency]/template.tsx +75 -0
  181. package/app-template/src/app/[commerce]/[locale]/[currency]/users/email-set-primary/[[...id]]/page.tsx +43 -0
  182. package/app-template/src/app/[commerce]/[locale]/[currency]/users/password/reset/page.tsx +79 -0
  183. package/app-template/src/app/[commerce]/[locale]/[currency]/users/registration/account-confirm-email/[[...id]]/page.tsx +43 -0
  184. package/app-template/src/app/[commerce]/[locale]/[currency]/users/reset/[[...id]]/page.tsx +110 -0
  185. package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/[node]/route.ts +25 -0
  186. package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/route.ts +37 -0
  187. package/app-template/src/app/api/cache/route.ts +1 -0
  188. package/app-template/src/app/api/client/[...slug]/route.ts +1 -0
  189. package/app-template/src/app/api/form/[...id]/route.ts +7 -0
  190. package/app-template/src/app/api/logout/route.ts +1 -0
  191. package/app-template/src/app/api/sentry/route.ts +9 -0
  192. package/app-template/src/app/api/web-vitals/route.ts +1 -0
  193. package/app-template/src/app/favicon.ico +0 -0
  194. package/app-template/src/assets/fonts/Jost/Jost-Black.eot +0 -0
  195. package/app-template/src/assets/fonts/Jost/Jost-Black.ttf +0 -0
  196. package/app-template/src/assets/fonts/Jost/Jost-Black.woff +0 -0
  197. package/app-template/src/assets/fonts/Jost/Jost-Black.woff2 +0 -0
  198. package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.eot +0 -0
  199. package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.ttf +0 -0
  200. package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.woff +0 -0
  201. package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.woff2 +0 -0
  202. package/app-template/src/assets/fonts/Jost/Jost-Bold.eot +0 -0
  203. package/app-template/src/assets/fonts/Jost/Jost-Bold.ttf +0 -0
  204. package/app-template/src/assets/fonts/Jost/Jost-Bold.woff +0 -0
  205. package/app-template/src/assets/fonts/Jost/Jost-Bold.woff2 +0 -0
  206. package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.eot +0 -0
  207. package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.ttf +0 -0
  208. package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.woff +0 -0
  209. package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.woff2 +0 -0
  210. package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.eot +0 -0
  211. package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.ttf +0 -0
  212. package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.woff +0 -0
  213. package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.woff2 +0 -0
  214. package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.eot +0 -0
  215. package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.ttf +0 -0
  216. package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.woff +0 -0
  217. package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.woff2 +0 -0
  218. package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.eot +0 -0
  219. package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.ttf +0 -0
  220. package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.woff +0 -0
  221. package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.woff2 +0 -0
  222. package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.eot +0 -0
  223. package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.ttf +0 -0
  224. package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.woff +0 -0
  225. package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.woff2 +0 -0
  226. package/app-template/src/assets/fonts/Jost/Jost-Italic.eot +0 -0
  227. package/app-template/src/assets/fonts/Jost/Jost-Italic.ttf +0 -0
  228. package/app-template/src/assets/fonts/Jost/Jost-Italic.woff +0 -0
  229. package/app-template/src/assets/fonts/Jost/Jost-Italic.woff2 +0 -0
  230. package/app-template/src/assets/fonts/Jost/Jost-Light.eot +0 -0
  231. package/app-template/src/assets/fonts/Jost/Jost-Light.ttf +0 -0
  232. package/app-template/src/assets/fonts/Jost/Jost-Light.woff +0 -0
  233. package/app-template/src/assets/fonts/Jost/Jost-Light.woff2 +0 -0
  234. package/app-template/src/assets/fonts/Jost/Jost-LightItalic.eot +0 -0
  235. package/app-template/src/assets/fonts/Jost/Jost-LightItalic.ttf +0 -0
  236. package/app-template/src/assets/fonts/Jost/Jost-LightItalic.woff +0 -0
  237. package/app-template/src/assets/fonts/Jost/Jost-LightItalic.woff2 +0 -0
  238. package/app-template/src/assets/fonts/Jost/Jost-Medium.eot +0 -0
  239. package/app-template/src/assets/fonts/Jost/Jost-Medium.ttf +0 -0
  240. package/app-template/src/assets/fonts/Jost/Jost-Medium.woff +0 -0
  241. package/app-template/src/assets/fonts/Jost/Jost-Medium.woff2 +0 -0
  242. package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.eot +0 -0
  243. package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.ttf +0 -0
  244. package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.woff +0 -0
  245. package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.woff2 +0 -0
  246. package/app-template/src/assets/fonts/Jost/Jost-Regular.eot +0 -0
  247. package/app-template/src/assets/fonts/Jost/Jost-Regular.ttf +0 -0
  248. package/app-template/src/assets/fonts/Jost/Jost-Regular.woff +0 -0
  249. package/app-template/src/assets/fonts/Jost/Jost-Regular.woff2 +0 -0
  250. package/app-template/src/assets/fonts/Jost/Jost-SemiBold.eot +0 -0
  251. package/app-template/src/assets/fonts/Jost/Jost-SemiBold.ttf +0 -0
  252. package/app-template/src/assets/fonts/Jost/Jost-SemiBold.woff +0 -0
  253. package/app-template/src/assets/fonts/Jost/Jost-SemiBold.woff2 +0 -0
  254. package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.eot +0 -0
  255. package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.ttf +0 -0
  256. package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.woff +0 -0
  257. package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.woff2 +0 -0
  258. package/app-template/src/assets/fonts/Jost/Jost-Thin.eot +0 -0
  259. package/app-template/src/assets/fonts/Jost/Jost-Thin.ttf +0 -0
  260. package/app-template/src/assets/fonts/Jost/Jost-Thin.woff +0 -0
  261. package/app-template/src/assets/fonts/Jost/Jost-Thin.woff2 +0 -0
  262. package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.eot +0 -0
  263. package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.ttf +0 -0
  264. package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.woff +0 -0
  265. package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.woff2 +0 -0
  266. package/app-template/src/assets/fonts/Jost/index.scss +269 -0
  267. package/app-template/src/assets/fonts/index.scss +1 -0
  268. package/app-template/src/assets/fonts/pz-icon.css +154 -0
  269. package/app-template/src/assets/fonts/pz-icon.eot +0 -0
  270. package/app-template/src/assets/fonts/pz-icon.html +456 -0
  271. package/app-template/src/assets/fonts/pz-icon.scss +300 -0
  272. package/app-template/src/assets/fonts/pz-icon.svg +144 -0
  273. package/app-template/src/assets/fonts/pz-icon.ttf +0 -0
  274. package/app-template/src/assets/fonts/pz-icon.woff +0 -0
  275. package/app-template/src/assets/fonts/pz-icon.woff2 +0 -0
  276. package/app-template/src/assets/globals.scss +65 -0
  277. package/app-template/src/assets/icons/akinon.svg +11 -0
  278. package/app-template/src/assets/icons/arrow-up.svg +11 -0
  279. package/app-template/src/assets/icons/bell.svg +1 -0
  280. package/app-template/src/assets/icons/cart.svg +13 -0
  281. package/app-template/src/assets/icons/check.svg +19 -0
  282. package/app-template/src/assets/icons/chevron-down.svg +8 -0
  283. package/app-template/src/assets/icons/chevron-end.svg +8 -0
  284. package/app-template/src/assets/icons/chevron-start.svg +8 -0
  285. package/app-template/src/assets/icons/chevron-up.svg +8 -0
  286. package/app-template/src/assets/icons/close.svg +12 -0
  287. package/app-template/src/assets/icons/cvc.svg +54 -0
  288. package/app-template/src/assets/icons/default.svg +6 -0
  289. package/app-template/src/assets/icons/directions.svg +14 -0
  290. package/app-template/src/assets/icons/eye-off.svg +10 -0
  291. package/app-template/src/assets/icons/eye-on.svg +17 -0
  292. package/app-template/src/assets/icons/facebook-login.svg +11 -0
  293. package/app-template/src/assets/icons/facebook.svg +9 -0
  294. package/app-template/src/assets/icons/giftbox.svg +22 -0
  295. package/app-template/src/assets/icons/globe.svg +12 -0
  296. package/app-template/src/assets/icons/google-login.svg +19 -0
  297. package/app-template/src/assets/icons/google.svg +9 -0
  298. package/app-template/src/assets/icons/hamburger.svg +5 -0
  299. package/app-template/src/assets/icons/heart-full.svg +20 -0
  300. package/app-template/src/assets/icons/heart-stroke.svg +22 -0
  301. package/app-template/src/assets/icons/info.svg +1 -0
  302. package/app-template/src/assets/icons/instagram.svg +14 -0
  303. package/app-template/src/assets/icons/layout-2.svg +7 -0
  304. package/app-template/src/assets/icons/layout-3.svg +4 -0
  305. package/app-template/src/assets/icons/logo.svg +24 -0
  306. package/app-template/src/assets/icons/mail.svg +1 -0
  307. package/app-template/src/assets/icons/minus.svg +4 -0
  308. package/app-template/src/assets/icons/money.svg +4 -0
  309. package/app-template/src/assets/icons/mp-otp.svg +1 -0
  310. package/app-template/src/assets/icons/pin.svg +16 -0
  311. package/app-template/src/assets/icons/pinterest.svg +12 -0
  312. package/app-template/src/assets/icons/plus.svg +5 -0
  313. package/app-template/src/assets/icons/search.svg +13 -0
  314. package/app-template/src/assets/icons/share.svg +10 -0
  315. package/app-template/src/assets/icons/spinner.svg +6 -0
  316. package/app-template/src/assets/icons/store-pin.svg +14 -0
  317. package/app-template/src/assets/icons/track-order.svg +1 -0
  318. package/app-template/src/assets/icons/twitter.svg +11 -0
  319. package/app-template/src/assets/icons/user.svg +14 -0
  320. package/app-template/src/assets/icons/whatsapp.svg +45 -0
  321. package/app-template/src/components/__tests__/Modal.test.tsx +103 -0
  322. package/app-template/src/components/__tests__/accordion.test.tsx +65 -0
  323. package/app-template/src/components/__tests__/badge.test.tsx +20 -0
  324. package/app-template/src/components/__tests__/button.test.tsx +59 -0
  325. package/app-template/src/components/__tests__/checkbox.test.tsx +57 -0
  326. package/app-template/src/components/__tests__/file-input.test.tsx +42 -0
  327. package/app-template/src/components/__tests__/icon.test.tsx +39 -0
  328. package/app-template/src/components/__tests__/input.test.tsx +69 -0
  329. package/app-template/src/components/__tests__/language-select.test.tsx +81 -0
  330. package/app-template/src/components/__tests__/link.test.tsx +65 -0
  331. package/app-template/src/components/__tests__/price.test.tsx +72 -0
  332. package/app-template/src/components/__tests__/radio.test.tsx +52 -0
  333. package/app-template/src/components/__tests__/select.test.tsx +115 -0
  334. package/app-template/src/components/__tests__/tab.test.tsx +101 -0
  335. package/app-template/src/components/accordion.tsx +64 -0
  336. package/app-template/src/components/badge.tsx +21 -0
  337. package/app-template/src/components/button.tsx +46 -0
  338. package/app-template/src/components/canonical-url.tsx +21 -0
  339. package/app-template/src/components/carousel-core.tsx +42 -0
  340. package/app-template/src/components/checkbox.tsx +28 -0
  341. package/app-template/src/components/currency-select.tsx +81 -0
  342. package/app-template/src/components/custom-loader.tsx +21 -0
  343. package/app-template/src/components/dynamic-form.tsx +17 -0
  344. package/app-template/src/components/file-input.tsx +8 -0
  345. package/app-template/src/components/generate-form-fields.tsx +349 -0
  346. package/app-template/src/components/icon.tsx +18 -0
  347. package/app-template/src/components/index.ts +41 -0
  348. package/app-template/src/components/input.tsx +110 -0
  349. package/app-template/src/components/language-select.tsx +33 -0
  350. package/app-template/src/components/link.tsx +53 -0
  351. package/app-template/src/components/loader-spinner.tsx +23 -0
  352. package/app-template/src/components/modal.tsx +66 -0
  353. package/app-template/src/components/pagination.tsx +267 -0
  354. package/app-template/src/components/password-rules-feedback.tsx +60 -0
  355. package/app-template/src/components/price.tsx +54 -0
  356. package/app-template/src/components/pwa-tags.tsx +233 -0
  357. package/app-template/src/components/radio.tsx +18 -0
  358. package/app-template/src/components/react-portal.tsx +47 -0
  359. package/app-template/src/components/select.tsx +70 -0
  360. package/app-template/src/components/shimmer.tsx +21 -0
  361. package/app-template/src/components/skeleton-article.tsx +15 -0
  362. package/app-template/src/components/skeleton-product.tsx +14 -0
  363. package/app-template/src/components/skeleton-profile.tsx +19 -0
  364. package/app-template/src/components/skeleton-wrapper.tsx +19 -0
  365. package/app-template/src/components/skeleton.tsx +37 -0
  366. package/app-template/src/components/source.tsx +12 -0
  367. package/app-template/src/components/tab-panel.tsx +10 -0
  368. package/app-template/src/components/tab.tsx +58 -0
  369. package/app-template/src/components/tabs.tsx +58 -0
  370. package/app-template/src/components/types/index.ts +89 -0
  371. package/app-template/src/hooks/index.ts +1 -0
  372. package/app-template/src/hooks/use-add-product-to-basket.ts +48 -0
  373. package/app-template/src/hooks/use-contract.tsx +58 -0
  374. package/app-template/src/hooks/use-fav-button.tsx +99 -0
  375. package/app-template/src/instrumentation.ts +1 -0
  376. package/app-template/src/middleware.ts +33 -0
  377. package/app-template/src/pages/_error.js +14 -0
  378. package/app-template/src/pages/api/auth/[...nextauth].ts +3 -0
  379. package/app-template/src/plugins.js +14 -0
  380. package/app-template/src/redux/middlewares/category.ts +42 -0
  381. package/app-template/src/redux/reducers/category.ts +67 -0
  382. package/app-template/src/redux/store.ts +47 -0
  383. package/app-template/src/routes/index.ts +46 -0
  384. package/app-template/src/settings.js +62 -0
  385. package/app-template/src/theme.js +1 -0
  386. package/app-template/src/types/index.ts +72 -0
  387. package/app-template/src/types/next-auth.d.ts +24 -0
  388. package/app-template/src/types/widgets.ts +115 -0
  389. package/app-template/src/utils/convert-facet-search-params.ts +15 -0
  390. package/app-template/src/utils/generate-jsonld.ts +23 -0
  391. package/app-template/src/utils/gtm.ts +247 -0
  392. package/app-template/src/utils/index.ts +60 -0
  393. package/app-template/src/views/account/account-menu.tsx +117 -0
  394. package/app-template/src/views/account/address-card.tsx +157 -0
  395. package/app-template/src/views/account/address-form.tsx +374 -0
  396. package/app-template/src/views/account/back-button.tsx +27 -0
  397. package/app-template/src/views/account/contact-form.tsx +283 -0
  398. package/app-template/src/views/account/content-header.tsx +52 -0
  399. package/app-template/src/views/account/faq/faq-footer.tsx +30 -0
  400. package/app-template/src/views/account/faq/faq-search.tsx +35 -0
  401. package/app-template/src/views/account/faq/faq-tabs.tsx +54 -0
  402. package/app-template/src/views/account/faq/index.ts +3 -0
  403. package/app-template/src/views/account/favorite-item.tsx +191 -0
  404. package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +65 -0
  405. package/app-template/src/views/account/index.ts +4 -0
  406. package/app-template/src/views/account/order.tsx +89 -0
  407. package/app-template/src/views/account/orders/order-cancellation-item.tsx +99 -0
  408. package/app-template/src/views/account/orders/order-detail-header.tsx +39 -0
  409. package/app-template/src/views/anonymous-tracking/index.tsx +109 -0
  410. package/app-template/src/views/anonymous-tracking/order-detail/index.tsx +318 -0
  411. package/app-template/src/views/basket/basket-item.tsx +231 -0
  412. package/app-template/src/views/basket/index.ts +2 -0
  413. package/app-template/src/views/basket/summary.tsx +220 -0
  414. package/app-template/src/views/breadcrumb.tsx +35 -0
  415. package/app-template/src/views/category/category-active-filters.tsx +98 -0
  416. package/app-template/src/views/category/category-banner.tsx +34 -0
  417. package/app-template/src/views/category/category-header.tsx +143 -0
  418. package/app-template/src/views/category/category-info.tsx +123 -0
  419. package/app-template/src/views/category/filters/index.tsx +163 -0
  420. package/app-template/src/views/category/filters/size-filter.tsx +27 -0
  421. package/app-template/src/views/category/layout.tsx +38 -0
  422. package/app-template/src/views/checkout/auth.tsx +54 -0
  423. package/app-template/src/views/checkout/index.tsx +3 -0
  424. package/app-template/src/views/checkout/layout/footer.tsx +48 -0
  425. package/app-template/src/views/checkout/layout/header.tsx +38 -0
  426. package/app-template/src/views/checkout/step-button.tsx +69 -0
  427. package/app-template/src/views/checkout/step-list.tsx +51 -0
  428. package/app-template/src/views/checkout/steps/payment/agreements.tsx +42 -0
  429. package/app-template/src/views/checkout/steps/payment/index.tsx +31 -0
  430. package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +382 -0
  431. package/app-template/src/views/checkout/steps/payment/options/credit-card/installments.tsx +100 -0
  432. package/app-template/src/views/checkout/steps/payment/options/credit-payment.tsx +14 -0
  433. package/app-template/src/views/checkout/steps/payment/options/funds-transfer.tsx +174 -0
  434. package/app-template/src/views/checkout/steps/payment/options/loyalty.tsx +19 -0
  435. package/app-template/src/views/checkout/steps/payment/options/pay-on-delivery.tsx +15 -0
  436. package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +94 -0
  437. package/app-template/src/views/checkout/steps/payment/payment-header.tsx +17 -0
  438. package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +73 -0
  439. package/app-template/src/views/checkout/steps/shipping/address-box.tsx +244 -0
  440. package/app-template/src/views/checkout/steps/shipping/addresses.tsx +189 -0
  441. package/app-template/src/views/checkout/steps/shipping/index.tsx +27 -0
  442. package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +72 -0
  443. package/app-template/src/views/checkout/summary.tsx +181 -0
  444. package/app-template/src/views/coupon-item/index.tsx +80 -0
  445. package/app-template/src/views/find-in-store/index.tsx +183 -0
  446. package/app-template/src/views/footer.tsx +21 -0
  447. package/app-template/src/views/guest-login/index.tsx +130 -0
  448. package/app-template/src/views/header/action-menu.tsx +117 -0
  449. package/app-template/src/views/header/band.tsx +32 -0
  450. package/app-template/src/views/header/index.tsx +66 -0
  451. package/app-template/src/views/header/mini-basket.tsx +267 -0
  452. package/app-template/src/views/header/mobile-hamburger-button.tsx +35 -0
  453. package/app-template/src/views/header/mobile-menu.tsx +144 -0
  454. package/app-template/src/views/header/navbar.tsx +186 -0
  455. package/app-template/src/views/header/pwa-back-button.tsx +60 -0
  456. package/app-template/src/views/header/search/index.tsx +82 -0
  457. package/app-template/src/views/header/search/results.tsx +123 -0
  458. package/app-template/src/views/header/user-menu.tsx +72 -0
  459. package/app-template/src/views/index.tsx +2 -0
  460. package/app-template/src/views/installment-options/index.tsx +127 -0
  461. package/app-template/src/views/login/index.tsx +233 -0
  462. package/app-template/src/views/otp-login/index.tsx +152 -0
  463. package/app-template/src/views/page-loader-spinner/index.tsx +9 -0
  464. package/app-template/src/views/product/accordion-wrapper.tsx +59 -0
  465. package/app-template/src/views/product/combine-product-card.tsx +82 -0
  466. package/app-template/src/views/product/index.ts +8 -0
  467. package/app-template/src/views/product/layout.tsx +40 -0
  468. package/app-template/src/views/product/misc-buttons.tsx +65 -0
  469. package/app-template/src/views/product/price-wrapper.tsx +41 -0
  470. package/app-template/src/views/product/product-group-info.tsx +63 -0
  471. package/app-template/src/views/product/product-info.tsx +273 -0
  472. package/app-template/src/views/product/slider.tsx +124 -0
  473. package/app-template/src/views/product/variant.tsx +104 -0
  474. package/app-template/src/views/product-item/index.tsx +96 -0
  475. package/app-template/src/views/product-pointer-banner-item.tsx +243 -0
  476. package/app-template/src/views/register/index.tsx +417 -0
  477. package/app-template/src/views/root-modal.tsx +21 -0
  478. package/app-template/src/views/sales-contract-modal/index.tsx +288 -0
  479. package/app-template/src/views/share/index.tsx +71 -0
  480. package/app-template/src/views/widgets/home-hero-slider-content.tsx +54 -0
  481. package/app-template/src/views/widgets/recommendation-content.tsx +86 -0
  482. package/app-template/src/widgets/footer-copyright.tsx +25 -0
  483. package/app-template/src/widgets/footer-info.tsx +78 -0
  484. package/app-template/src/widgets/footer-menu.tsx +258 -0
  485. package/app-template/src/widgets/footer-social.tsx +53 -0
  486. package/app-template/src/widgets/footer-subscription/footer-subscription-form.tsx +110 -0
  487. package/app-template/src/widgets/footer-subscription/index.tsx +30 -0
  488. package/app-template/src/widgets/header-band-text.tsx +21 -0
  489. package/app-template/src/widgets/home-discovery.tsx +191 -0
  490. package/app-template/src/widgets/home-hero-slider.tsx +36 -0
  491. package/app-template/src/widgets/home-product-recommendation.tsx +18 -0
  492. package/app-template/src/widgets/home-single-banner.tsx +87 -0
  493. package/app-template/src/widgets/home-stories-eng.tsx +112 -0
  494. package/app-template/src/widgets/index.ts +25 -0
  495. package/app-template/src/widgets/product-pointer-banners.tsx +35 -0
  496. package/app-template/src/widgets/special-page-banner.tsx +49 -0
  497. package/app-template/src/widgets/special-page-carousel.tsx +68 -0
  498. package/app-template/src/widgets/widget-order.tsx +1 -0
  499. package/app-template/tailwind.config.js +170 -0
  500. package/app-template/tsconfig.json +44 -0
  501. package/app-template/tsconfig.test.json +6 -0
  502. package/app-template/yarn.lock +11278 -0
  503. package/commands/create.ts +49 -118
  504. package/dist/commands/create.js +32 -68
  505. package/package.json +1 -1
  506. package/tsconfig.json +9 -8
@@ -0,0 +1,300 @@
1
+ @font-face {
2
+ font-family: "pz-icon";
3
+ src: url("./pz-icon.eot?db4ba799c4ca72f4bb855458e0cd19ee#iefix") format("embedded-opentype"),
4
+ url("./pz-icon.woff2?db4ba799c4ca72f4bb855458e0cd19ee") format("woff2"),
5
+ url("./pz-icon.woff?db4ba799c4ca72f4bb855458e0cd19ee") format("woff"),
6
+ url("./pz-icon.ttf?db4ba799c4ca72f4bb855458e0cd19ee") format("truetype"),
7
+ url("./pz-icon.svg?db4ba799c4ca72f4bb855458e0cd19ee#pz-icon") format("svg");
8
+ }
9
+
10
+ [class^="pz-icon-"],
11
+ [class*=" pz-icon-"],
12
+ .pz-icon-font {
13
+ font-family: 'pz-icon' !important;
14
+ font-style: normal;
15
+ font-weight: normal !important;
16
+ font-variant: normal;
17
+ text-transform: none;
18
+ line-height: 1;
19
+ -webkit-font-smoothing: antialiased;
20
+ -moz-osx-font-smoothing: grayscale;
21
+ }
22
+
23
+ %ref-pz-icon-akinon {
24
+ content: "\f101";
25
+ }
26
+ %ref-pz-icon-arrow-up {
27
+ content: "\f102";
28
+ }
29
+ %ref-pz-icon-bell {
30
+ content: "\f103";
31
+ }
32
+ %ref-pz-icon-cart {
33
+ content: "\f104";
34
+ }
35
+ %ref-pz-icon-check {
36
+ content: "\f105";
37
+ }
38
+ %ref-pz-icon-chevron-down {
39
+ content: "\f106";
40
+ }
41
+ %ref-pz-icon-chevron-end {
42
+ content: "\f107";
43
+ }
44
+ %ref-pz-icon-chevron-start {
45
+ content: "\f108";
46
+ }
47
+ %ref-pz-icon-chevron-up {
48
+ content: "\f109";
49
+ }
50
+ %ref-pz-icon-close {
51
+ content: "\f10a";
52
+ }
53
+ %ref-pz-icon-cvc {
54
+ content: "\f10b";
55
+ }
56
+ %ref-pz-icon-default {
57
+ content: "\f10c";
58
+ }
59
+ %ref-pz-icon-directions {
60
+ content: "\f10d";
61
+ }
62
+ %ref-pz-icon-eye-off {
63
+ content: "\f10e";
64
+ }
65
+ %ref-pz-icon-eye-on {
66
+ content: "\f10f";
67
+ }
68
+ %ref-pz-icon-facebook-login {
69
+ content: "\f110";
70
+ }
71
+ %ref-pz-icon-facebook {
72
+ content: "\f111";
73
+ }
74
+ %ref-pz-icon-giftbox {
75
+ content: "\f112";
76
+ }
77
+ %ref-pz-icon-globe {
78
+ content: "\f113";
79
+ }
80
+ %ref-pz-icon-google-login {
81
+ content: "\f114";
82
+ }
83
+ %ref-pz-icon-google {
84
+ content: "\f115";
85
+ }
86
+ %ref-pz-icon-hamburger {
87
+ content: "\f116";
88
+ }
89
+ %ref-pz-icon-heart-full {
90
+ content: "\f117";
91
+ }
92
+ %ref-pz-icon-heart-stroke {
93
+ content: "\f118";
94
+ }
95
+ %ref-pz-icon-info {
96
+ content: "\f119";
97
+ }
98
+ %ref-pz-icon-instagram {
99
+ content: "\f11a";
100
+ }
101
+ %ref-pz-icon-layout-2 {
102
+ content: "\f11b";
103
+ }
104
+ %ref-pz-icon-layout-3 {
105
+ content: "\f11c";
106
+ }
107
+ %ref-pz-icon-logo {
108
+ content: "\f11d";
109
+ }
110
+ %ref-pz-icon-mail {
111
+ content: "\f11e";
112
+ }
113
+ %ref-pz-icon-minus {
114
+ content: "\f11f";
115
+ }
116
+ %ref-pz-icon-money {
117
+ content: "\f120";
118
+ }
119
+ %ref-pz-icon-mp-otp {
120
+ content: "\f121";
121
+ }
122
+ %ref-pz-icon-pin {
123
+ content: "\f122";
124
+ }
125
+ %ref-pz-icon-pinterest {
126
+ content: "\f123";
127
+ }
128
+ %ref-pz-icon-plus {
129
+ content: "\f124";
130
+ }
131
+ %ref-pz-icon-search {
132
+ content: "\f125";
133
+ }
134
+ %ref-pz-icon-share {
135
+ content: "\f126";
136
+ }
137
+ %ref-pz-icon-spinner {
138
+ content: "\f127";
139
+ }
140
+ %ref-pz-icon-store-pin {
141
+ content: "\f128";
142
+ }
143
+ %ref-pz-icon-track-order {
144
+ content: "\f129";
145
+ }
146
+ %ref-pz-icon-twitter {
147
+ content: "\f12a";
148
+ }
149
+ %ref-pz-icon-user {
150
+ content: "\f12b";
151
+ }
152
+ %ref-pz-icon-whatsapp {
153
+ content: "\f12c";
154
+ }
155
+
156
+ @mixin pz-icon($icon-name) {
157
+ @extend .pz-icon-font;
158
+ $before-index: str-index(inspect(nth(&, 1)), ':before');
159
+
160
+ @if ($before-index == null) {
161
+ &::before {
162
+ @extend %ref-pz-icon-#{$icon-name};
163
+ }
164
+ } @else {
165
+ @extend %ref-pz-icon-#{$icon-name};
166
+ }
167
+ }
168
+
169
+ .pz-icon-akinon:before {
170
+ @extend %ref-pz-icon-akinon;
171
+ }
172
+ .pz-icon-arrow-up:before {
173
+ @extend %ref-pz-icon-arrow-up;
174
+ }
175
+ .pz-icon-bell:before {
176
+ @extend %ref-pz-icon-bell;
177
+ }
178
+ .pz-icon-cart:before {
179
+ @extend %ref-pz-icon-cart;
180
+ }
181
+ .pz-icon-check:before {
182
+ @extend %ref-pz-icon-check;
183
+ }
184
+ .pz-icon-chevron-down:before {
185
+ @extend %ref-pz-icon-chevron-down;
186
+ }
187
+ .pz-icon-chevron-end:before {
188
+ @extend %ref-pz-icon-chevron-end;
189
+ }
190
+ .pz-icon-chevron-start:before {
191
+ @extend %ref-pz-icon-chevron-start;
192
+ }
193
+ .pz-icon-chevron-up:before {
194
+ @extend %ref-pz-icon-chevron-up;
195
+ }
196
+ .pz-icon-close:before {
197
+ @extend %ref-pz-icon-close;
198
+ }
199
+ .pz-icon-cvc:before {
200
+ @extend %ref-pz-icon-cvc;
201
+ }
202
+ .pz-icon-default:before {
203
+ @extend %ref-pz-icon-default;
204
+ }
205
+ .pz-icon-directions:before {
206
+ @extend %ref-pz-icon-directions;
207
+ }
208
+ .pz-icon-eye-off:before {
209
+ @extend %ref-pz-icon-eye-off;
210
+ }
211
+ .pz-icon-eye-on:before {
212
+ @extend %ref-pz-icon-eye-on;
213
+ }
214
+ .pz-icon-facebook-login:before {
215
+ @extend %ref-pz-icon-facebook-login;
216
+ }
217
+ .pz-icon-facebook:before {
218
+ @extend %ref-pz-icon-facebook;
219
+ }
220
+ .pz-icon-giftbox:before {
221
+ @extend %ref-pz-icon-giftbox;
222
+ }
223
+ .pz-icon-globe:before {
224
+ @extend %ref-pz-icon-globe;
225
+ }
226
+ .pz-icon-google-login:before {
227
+ @extend %ref-pz-icon-google-login;
228
+ }
229
+ .pz-icon-google:before {
230
+ @extend %ref-pz-icon-google;
231
+ }
232
+ .pz-icon-hamburger:before {
233
+ @extend %ref-pz-icon-hamburger;
234
+ }
235
+ .pz-icon-heart-full:before {
236
+ @extend %ref-pz-icon-heart-full;
237
+ }
238
+ .pz-icon-heart-stroke:before {
239
+ @extend %ref-pz-icon-heart-stroke;
240
+ }
241
+ .pz-icon-info:before {
242
+ @extend %ref-pz-icon-info;
243
+ }
244
+ .pz-icon-instagram:before {
245
+ @extend %ref-pz-icon-instagram;
246
+ }
247
+ .pz-icon-layout-2:before {
248
+ @extend %ref-pz-icon-layout-2;
249
+ }
250
+ .pz-icon-layout-3:before {
251
+ @extend %ref-pz-icon-layout-3;
252
+ }
253
+ .pz-icon-logo:before {
254
+ @extend %ref-pz-icon-logo;
255
+ }
256
+ .pz-icon-mail:before {
257
+ @extend %ref-pz-icon-mail;
258
+ }
259
+ .pz-icon-minus:before {
260
+ @extend %ref-pz-icon-minus;
261
+ }
262
+ .pz-icon-money:before {
263
+ @extend %ref-pz-icon-money;
264
+ }
265
+ .pz-icon-mp-otp:before {
266
+ @extend %ref-pz-icon-mp-otp;
267
+ }
268
+ .pz-icon-pin:before {
269
+ @extend %ref-pz-icon-pin;
270
+ }
271
+ .pz-icon-pinterest:before {
272
+ @extend %ref-pz-icon-pinterest;
273
+ }
274
+ .pz-icon-plus:before {
275
+ @extend %ref-pz-icon-plus;
276
+ }
277
+ .pz-icon-search:before {
278
+ @extend %ref-pz-icon-search;
279
+ }
280
+ .pz-icon-share:before {
281
+ @extend %ref-pz-icon-share;
282
+ }
283
+ .pz-icon-spinner:before {
284
+ @extend %ref-pz-icon-spinner;
285
+ }
286
+ .pz-icon-store-pin:before {
287
+ @extend %ref-pz-icon-store-pin;
288
+ }
289
+ .pz-icon-track-order:before {
290
+ @extend %ref-pz-icon-track-order;
291
+ }
292
+ .pz-icon-twitter:before {
293
+ @extend %ref-pz-icon-twitter;
294
+ }
295
+ .pz-icon-user:before {
296
+ @extend %ref-pz-icon-user;
297
+ }
298
+ .pz-icon-whatsapp:before {
299
+ @extend %ref-pz-icon-whatsapp;
300
+ }
@@ -0,0 +1,144 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <defs>
5
+ <font id="pz-icon" horiz-adv-x="3066.666666666667">
6
+ <font-face font-family="pz-icon"
7
+ units-per-em="300" ascent="300"
8
+ descent="0" />
9
+ <missing-glyph horiz-adv-x="0" />
10
+ <glyph glyph-name="akinon"
11
+ unicode="&#xF101;"
12
+ horiz-adv-x="300" d="M185.1089528571429 157.5350828571429C159.666555 157.5350828571429 139.043615 136.56011 139.043615 110.6880614285714C139.043615 84.8160128571429 159.666555 63.8410392857143 185.1089528571429 63.8410392857143C210.5493035714286 63.8410392857143 231.1742907142857 84.8160128571429 231.1742907142857 110.6880614285714C231.1742907142857 136.56011 210.5493035714286 157.5350828571429 185.1089528571429 157.5350828571429L185.1089528571429 157.5350828571429zM263.6800407142857 72.6399514285714C249.6884621428572 42.8119314285714 219.7685128571429 22.1992421428571 185.1089528571429 22.1992421428571C137.0515457142857 22.1992421428571 98.0966485714286 61.8172478571428 98.0966485714286 110.6880614285714C98.0966485714286 159.5588742857143 137.0515457142857 199.1768807142857 185.1089528571429 199.1768807142857C190.6019885714286 199.1768807142857 195.9660414285714 198.6355371428572 201.1765428571429 197.6465442857143L150.0010235714286 300L0 0L300 0L263.6800407142857 72.6399514285714z" />
13
+ <glyph glyph-name="arrow-up"
14
+ unicode="&#xF102;"
15
+ horiz-adv-x="300" d="M162.8571428571428 14.2857142857143V257.8571428571429L202.8571428571429 217.1428571428571C207.1428571428572 212.8571428571428 214.2857142857143 212.8571428571428 219.2857142857143 217.1428571428571C223.5714285714286 221.4285714285714 223.5714285714286 228.5714285714286 219.2857142857143 233.5714285714286L159.2857142857143 293.5714285714286C159.2857142857143 293.5714285714286 159.2857142857143 293.5714285714286 159.2857142857143 293.5714285714286C155 297.8571428571429 147.1428571428572 297.8571428571429 142.8571428571428 293.5714285714286C142.8571428571428 293.5714285714286 142.8571428571428 293.5714285714286 142.8571428571428 293.5714285714286L82.8571428571428 233.5714285714286C78.5714285714286 229.2857142857143 78.5714285714286 221.4285714285715 82.8571428571428 217.1428571428571C87.1428571428571 212.8571428571428 95 212.8571428571428 99.2857142857143 217.1428571428571L139.2857142857143 257.8571428571429V14.2857142857143C139.2857142857143 7.8571428571428 144.2857142857143 2.8571428571428 150.7142857142857 2.8571428571428S162.8571428571428 7.8571428571428 162.8571428571428 14.2857142857143z" />
16
+ <glyph glyph-name="bell"
17
+ unicode="&#xF103;"
18
+ horiz-adv-x="300" d="M277.9289244140625 165.6257630859375C272.75390625 165.6257630859375 268.5539244140625 169.825744921875 268.5539244140625 175.0007630859375C268.5539244140625 210.90087890625 254.5806884765625 244.6380615234375 229.2045591796875 270.025634765625C225.5424498046875 273.687744140625 225.5424498046875 279.624938671875 229.2045591796875 283.287048046875S238.803863671875 286.949157421875 242.46826171875 283.287048046875C271.380615234375 254.3632505859375 287.3039244140625 215.899658203125 287.3039244140625 175.0007630859375C287.3039244140625 169.825744921875 283.103942578125 165.6257630859375 277.9289244140625 165.6257630859375zM277.9289244140625 165.6257630859375M21.6796875 165.6257630859375C16.5046693359375 165.6257630859375 12.3046875 169.825744921875 12.3046875 175.0007630859375C12.3046875 215.899658203125 28.2302859375 254.3632505859375 57.1540833984375 283.2756041015625C60.8161927734375 286.9377134765625 66.7556765625 286.9377134765625 70.4177859375 283.2756041015625S74.0798953125 273.6740109375 70.4177859375 270.0119015625C45.030212109375 244.6380615234375 31.0546875 210.90087890625 31.0546875 175.0007630859375C31.0546875 169.825744921875 26.8547056640625 165.6257630859375 21.6796875 165.6257630859375zM21.6796875 165.6257630859375M149.8054505859375 0C123.9555357421875 0 102.9304505859375 21.02508515625 102.9304505859375 46.875C102.9304505859375 52.0500181640625 107.130432421875 56.25 112.3054505859375 56.25S121.6804505859375 52.0500181640625 121.6804505859375 46.875C121.6804505859375 31.361389453125 134.291839453125 18.75 149.8054505859375 18.75C165.3167724609375 18.75 177.9304505859375 31.361389453125 177.9304505859375 46.875C177.9304505859375 52.0500181640625 182.130432421875 56.25 187.3054505859375 56.25S196.6804505859375 52.0500181640625 196.6804505859375 46.875C196.6804505859375 21.02508515625 175.65536484375 0 149.8054505859375 0zM149.8054505859375 0M252.9304505859375 37.5H46.6804505859375C34.6160888671875 37.5 24.8039244140625 47.312164453125 24.8039244140625 59.3742369140625C24.8039244140625 65.77606171875 27.59170546875 71.836852734375 32.4554443359375 76.0002134765625C51.466369921875 92.063141015625 62.3039244140625 115.411376953125 62.3039244140625 140.14892578125V175.0007630859375C62.3039244140625 223.2490541015625 101.5548703125 262.5 149.8054505859375 262.5C198.0537416015625 262.5 237.3046875 223.2490541015625 237.3046875 175.0007630859375V140.14892578125C237.3046875 115.411376953125 248.142242578125 92.063141015625 267.0295716796875 76.0871888671875C272.01690703125 71.836852734375 274.8046875 65.77606171875 274.8046875 59.3742369140625C274.8046875 47.312164453125 264.992523046875 37.5 252.9304505859375 37.5zM149.8054505859375 243.75C111.891174609375 243.75 81.0539244140625 212.912750390625 81.0539244140625 175.0007630859375V140.14892578125C81.0539244140625 109.8884583984375 67.7925111328125 81.312561328125 44.680023046875 61.7752078125C44.24285859375 61.399841015625 43.5539244140625 60.62393203125 43.5539244140625 59.3742369140625C43.5539244140625 57.675933984375 44.9798583984375 56.25 46.6804505859375 56.25H252.9304505859375C254.628753515625 56.25 256.0546875 57.675933984375 256.0546875 59.3742369140625C256.0546875 60.62393203125 255.3680419921875 61.399841015625 254.953766015625 61.7500306640625C231.8161007812501 81.312561328125 218.5546875 109.8884583984375 218.5546875 140.14892578125V175.0007630859375C218.5546875 212.912750390625 187.717437890625 243.75 149.8054505859375 243.75zM149.8054505859375 243.75M149.8054505859375 243.75C144.630432421875 243.75 140.4304505859375 247.9499818359375 140.4304505859375 253.125V290.625C140.4304505859375 295.8000181640625 144.630432421875 300 149.8054505859375 300S159.1804505859375 295.8000181640625 159.1804505859375 290.625V253.125C159.1804505859375 247.9499818359375 154.98046875 243.75 149.8054505859375 243.75zM149.8054505859375 243.75" />
19
+ <glyph glyph-name="cart"
20
+ unicode="&#xF104;"
21
+ horiz-adv-x="300" d="M147.5231556666667 285.2459016333334C175.9973366666667 285.2459016333334 199.1625 262.0807376666667 199.1625 233.6065573333334L199.1625 221.3114753333333L95.8838115 221.3114753333333L95.8838115 233.6065573333334C95.8838115 262.0807376666667 119.0489753333334 285.2459016333334 147.5231556666667 285.2459016333334L147.5231556666667 285.2459016333334zM81.1297131666667 206.557377L81.1297131666667 174.590164C81.1297131666667 170.522336 84.4389345 167.2131148333333 88.5067623333333 167.2131148333333C92.5745901666667 167.2131148333333 95.8838115 170.522336 95.8838115 174.590164L95.8838115 206.557377L199.1625 206.557377L199.1625 174.590164C199.1625 170.522336 202.4717216666667 167.2131148333333 206.53955 167.2131148333333C210.6079916666667 167.2131148333333 213.9165983333333 170.522336 213.9165983333333 174.590164L213.9165983333333 206.557377L259.0051233333334 206.557377L280.2049183333334 28.5C280.6180333333334 25.01373 279.5188516666667 21.5096316666666 277.1870900000001 18.88586C274.8602466666667 16.2651633333333 271.5159833333334 14.7590166666666 268.0149583333333 14.7540983333333L27.0516393333333 14.7540983333333C20.2739753333333 14.7540983333333 14.7559426166667 20.2672133333333 14.7559426166667 27.0442616666666C14.7559426166667 27.5299183333333 14.7848360666667 28.0198766666666 14.8420082 28.499385L36.0411885 206.557377L81.1297131666667 206.557377zM294.8797133333334 30.2465166666667L294.6030733333334 32.3649583333333L272.8813516666667 214.8043033333333C272.4411883333334 218.5143443333333 269.2924183333334 221.3114753333333 265.5559433333334 221.3114753333333L213.9165983333333 221.3114753333333L213.9165983333333 233.6065573333334C213.9165983333333 270.2157786666667 184.1323766666667 300 147.5231556666667 300C110.9139345 300 81.1297131666667 270.2157786666667 81.1297131666667 233.6065573333334L81.1297131666667 221.3114753333333L29.4903688333333 221.3114753333333C25.7545081666667 221.3114753333333 22.6057376666667 218.5143443333333 22.164959 214.8055328333333L0.191188525 30.2459016666666C-1.571311475 15.43586 9.0436475333333 1.9524583333333 23.8536885 0.1899583333333C24.9079918333333 0.063935 25.9807376666667 0 27.0405738333333 0L268.0211066666667 0C282.9319666666667 0 295.0690616666667 12.1321716666666 295.0690616666667 27.0424183333333C295.0690616666667 28.1090166666666 295.0063516666667 29.187295 294.8797133333334 30.2465166666667L294.8797133333334 30.2465166666667z" />
22
+ <glyph glyph-name="check"
23
+ unicode="&#xF105;"
24
+ horiz-adv-x="300" d="M106 40C102 40 98 42 94 46L6 136C0 144 0 154 6 162C10 166 14 168 18 168S26 166 30 162L106 82L270 254.0000000000001C274 258 278 260 282 260S290 258 294 254C300 246 300 236 294 228L116 44C114 42 110 40 106 40" />
25
+ <glyph glyph-name="chevron-down"
26
+ unicode="&#xF106;"
27
+ horiz-adv-x="300" d="M277.4999999999999 227.5000000000001L150 100L22.5 227.5C17.5 232.5 7.5 232.5 2.5 227.5C-2.5 222.5 -2.5 212.5 2.5 207.5L140 70C142.5 67.5 145 65 150 65C152.5 65 157.5 67.5 160 70L297.5000000000001 207.5C302.5000000000001 212.5 302.5000000000001 222.5 297.5000000000001 227.5C289.9999999999999 232.5 282.5000000000003 232.5 277.4999999999999 227.5000000000001z" />
28
+ <glyph glyph-name="chevron-end"
29
+ unicode="&#xF107;"
30
+ horiz-adv-x="300" d="M72.5000000000001 22.4999999999999L200 150L72.5 277.5C67.5 282.5 67.5 292.5 72.5 297.5C77.5 302.5 87.5 302.5 92.5 297.5L230 160C232.5 157.5 235 155 235 150C235 147.5 232.5 142.5 230 140L92.5 2.4999999999999C87.5 -2.5000000000001 77.5 -2.5000000000001 72.5 2.4999999999999C67.4999999999997 9.9999999999999 67.4999999999997 17.5 72.5000000000001 22.4999999999999z" />
31
+ <glyph glyph-name="chevron-start"
32
+ unicode="&#xF108;"
33
+ horiz-adv-x="300" d="M227.4999999999999 22.4999999999999L100 150L227.5 277.5C232.5 282.5 232.5 292.5 227.5 297.5C222.5 302.5 212.5 302.5 207.5 297.5L70 160C67.5 157.5 65 155 65 150C65 147.5 67.5 142.5 70 140L207.5 2.4999999999999C212.5 -2.5000000000001 222.5 -2.5000000000001 227.5 2.4999999999999C232.5000000000003 9.9999999999999 232.5000000000003 17.5 227.4999999999999 22.4999999999999z" />
34
+ <glyph glyph-name="chevron-up"
35
+ unicode="&#xF109;"
36
+ horiz-adv-x="300" d="M277.4999999999999 72.5L150 200L22.5 72.5C17.5 67.5 7.5 67.5 2.5 72.5C-2.5 77.5 -2.5 87.5 2.5 92.5L140 230.0000000000001C142.5 232.5000000000001 145 235.0000000000001 150 235.0000000000001C152.5 235.0000000000001 157.5 232.5000000000001 160 230.0000000000001L297.5000000000001 92.5C302.5000000000001 87.5000000000001 302.5000000000001 77.5 297.5000000000001 72.5C289.9999999999999 67.5 282.5000000000003 67.5 277.4999999999999 72.5z" />
37
+ <glyph glyph-name="close"
38
+ unicode="&#xF10A;"
39
+ horiz-adv-x="300" d="M170.3471090625 150.0023971875L295.785789375 275.439073125C301.4047368750001 281.0579304375 301.4047368750001 290.1669996 295.785789375 295.78585696875C290.166841875 301.404714343125 281.057626875 301.404714343125 275.43868125 295.78585696875L150 170.3491809375L24.5613193125 295.766679975C18.9423721875 301.385537355 9.83315754375 301.385537355 4.21421038125 295.766679975C-1.4047367925 290.14782260625 -1.4047367925 281.0387535 4.21421038125 275.4198961875L129.6528909375 149.9832200625L4.233387675 24.56572125C-1.385559496875 18.94686375 -1.385559496875 9.837795 4.233387675 4.2189375C7.05244989375 1.4190975 10.715313075 0 14.39735353125 0C18.07939400625 0 21.7614345 1.39992 24.5613193125 4.2189375L150 129.65561325L275.43868125 4.2189375C278.25774375 1.4190975 281.9206068750001 0 285.602645625 0C289.28468625 0 292.966726875 1.39992 295.766611875 4.2189375C301.385559375 9.837795 301.385559375 18.94686375 295.766611875 24.56572125L170.3471090625 150.0023971875z" />
40
+ <glyph glyph-name="cvc"
41
+ unicode="&#xF10B;"
42
+ horiz-adv-x="300" d="M146.6666666666667 116.6666666666667H30V150H146.6666666666667V116.6666666666667zM31.6666666666667 118.3333333333333H145V148.3333333333333H31.6666666666667V118.3333333333333zM163.3333333333334 150V116.6666666666667H213.3333333333334V150H163.3333333333334zM211.6666666666667 118.3333333333333H165V148.3333333333333H211.6666666666667V118.3333333333333zM178.3333333333334 126.6666666666667L178.3333333333334 126.6666666666667L178.3333333333334 138.3333333333334L175 138.3333333333334L175 136.6666666666667L178.3333333333334 136.6666666666667zM188.3333333333334 133.3333333333333C186.6666666666667 133.3333333333333 186.6666666666667 133.3333333333333 188.3333333333334 133.3333333333333L181.6666666666667 126.6666666666667H190V128.3333333333333H185L188.3333333333334 133.3333333333333C188.3333333333334 131.6666666666667 188.3333333333334 133.3333333333333 188.3333333333334 133.3333333333333C190 133.3333333333333 190 135 190 135C190 135 190 135 190 136.6666666666667S190 136.6666666666667 190 138.3333333333333C190 138.3333333333333 190 138.3333333333333 188.3333333333334 138.3333333333333C188.3333333333334 138.3333333333333 186.6666666666667 138.3333333333333 186.6666666666667 138.3333333333333C186.6666666666667 138.3333333333333 185 138.3333333333333 185 138.3333333333333C185 138.3333333333333 183.3333333333334 136.6666666666667 183.3333333333334 136.6666666666667C183.3333333333334 136.6666666666667 183.3333333333334 135 183.3333333333334 135H183.3333333333334C183.3333333333334 135 183.3333333333334 136.6666666666667 183.3333333333334 136.6666666666667C183.3333333333334 136.6666666666667 183.3333333333334 136.6666666666667 183.3333333333334 138.3333333333333S183.3333333333334 138.3333333333333 185 138.3333333333333C185 138.3333333333333 185 138.3333333333333 186.6666666666667 138.3333333333333C186.6666666666667 138.3333333333333 186.6666666666667 138.3333333333333 186.6666666666667 138.3333333333333S186.6666666666667 138.3333333333333 186.6666666666667 138.3333333333333S186.6666666666667 138.3333333333333 186.6666666666667 138.3333333333333C188.3333333333334 135 188.3333333333334 135 188.3333333333334 133.3333333333333C188.3333333333334 133.3333333333333 188.3333333333334 133.3333333333333 188.3333333333334 133.3333333333333zM196.6666666666667 128.3333333333333C196.6666666666667 128.3333333333333 195 128.3333333333333 196.6666666666667 128.3333333333333C195 128.3333333333333 195 128.3333333333333 195 128.3333333333333S195 128.3333333333333 195 128.3333333333333S195 128.3333333333333 195 130H193.3333333333334C193.3333333333334 130 193.3333333333334 128.3333333333333 193.3333333333334 128.3333333333333C193.3333333333334 128.3333333333333 193.3333333333334 128.3333333333333 193.3333333333334 126.6666666666667C193.3333333333334 126.6666666666667 193.3333333333334 126.6666666666667 195 126.6666666666667S195 126.6666666666667 196.6666666666667 128.3333333333333C196.6666666666667 126.6666666666667 196.6666666666667 126.6666666666667 196.6666666666667 128.3333333333333C198.3333333333334 126.6666666666667 198.3333333333334 128.3333333333333 198.3333333333334 128.3333333333333C198.3333333333334 128.3333333333333 198.3333333333334 130 198.3333333333334 130C198.3333333333334 130 198.3333333333334 131.6666666666666 198.3333333333334 131.6666666666666C198.3333333333334 131.6666666666666 198.3333333333334 131.6666666666666 196.6666666666667 133.3333333333333C196.6666666666667 133.3333333333333 196.6666666666667 133.3333333333333 195 133.3333333333333C195 133.3333333333333 195 133.3333333333333 196.6666666666667 133.3333333333333C196.6666666666667 133.3333333333333 196.6666666666667 133.3333333333333 196.6666666666667 135C196.6666666666667 135 196.6666666666667 135 196.6666666666667 136.6666666666666C196.6666666666667 136.6666666666666 196.6666666666667 138.3333333333333 196.6666666666667 138.3333333333333C196.6666666666667 138.3333333333333 196.6666666666667 140 195 140C195 140 193.3333333333334 140 193.3333333333334 140C193.3333333333334 140 191.6666666666667 140 191.6666666666667 140C191.6666666666667 140 190.0000000000001 140 190.0000000000001 138.3333333333333S190.0000000000001 136.6666666666666 190.0000000000001 136.6666666666666H191.6666666666667C191.6666666666667 136.6666666666666 191.6666666666667 136.6666666666666 191.6666666666667 138.3333333333333C191.6666666666667 138.3333333333333 191.6666666666667 138.3333333333333 191.6666666666667 138.3333333333333C191.6666666666667 138.3333333333333 191.6666666666667 138.3333333333333 193.3333333333334 138.3333333333333C193.3333333333334 138.3333333333333 193.3333333333334 138.3333333333333 195 138.3333333333333C195 138.3333333333333 195 138.3333333333333 195 138.3333333333333C195 138.3333333333333 195 138.3333333333333 195 136.6666666666666C195 136.6666666666666 195 136.6666666666666 195 136.6666666666666C195 136.6666666666666 195 136.6666666666666 195 136.6666666666666C195 136.6666666666666 195 136.6666666666666 195 136.6666666666666C195 136.6666666666666 195 136.6666666666666 193.3333333333334 136.6666666666666V136.6666666666666V136.6666666666666V136.6666666666666C193.3333333333334 136.6666666666666 193.3333333333334 136.6666666666666 195 136.6666666666666C195 136.6666666666666 195 136.6666666666666 196.6666666666667 136.6666666666666C196.6666666666667 136.6666666666666 196.6666666666667 136.6666666666666 196.6666666666667 136.6666666666666C196.6666666666667 136.6666666666666 196.6666666666667 136.6666666666666 196.6666666666667 135C198.3333333333334 130 196.6666666666667 128.3333333333333 196.6666666666667 128.3333333333333C196.6666666666667 128.3333333333333 196.6666666666667 128.3333333333333 196.6666666666667 128.3333333333333zM288.3333333333334 250H11.6666666666667C8.3333333333333 250 6.6666666666667 246.6666666666667 6.6666666666667 245V215V178.3333333333333V55C6.6666666666667 51.6666666666667 8.3333333333333 50 11.6666666666667 50H290C293.3333333333333 50 295 51.6666666666667 295 55V178.3333333333333V215V245C293.3333333333334 246.6666666666667 291.6666666666667 250 288.3333333333334 250zM283.3333333333334 238.3333333333333V220H16.6666666666667V238.3333333333333H283.3333333333334zM16.6666666666667 61.6666666666666V173.3333333333333H283.3333333333334V60L16.6666666666667 61.6666666666666L16.6666666666667 61.6666666666666zM33.3333333333333 88.3333333333333L33.3333333333333 88.3333333333333C30 88.3333333333333 26.6666666666667 86.6666666666667 26.6666666666667 83.3333333333333C26.6666666666667 80 28.3333333333333 78.3333333333333 31.6666666666667 78.3333333333333H33.3333333333333C36.6666666666667 78.3333333333333 38.3333333333333 80 38.3333333333333 83.3333333333333C38.3333333333333 86.6666666666666 36.6666666666667 88.3333333333333 33.3333333333333 88.3333333333333zM48.3333333333333 88.3333333333333L48.3333333333333 88.3333333333333C45 88.3333333333333 41.6666666666667 86.6666666666667 41.6666666666667 83.3333333333333C41.6666666666667 80 43.3333333333333 78.3333333333333 46.6666666666667 78.3333333333333H48.3333333333333C51.6666666666667 78.3333333333333 53.3333333333333 80 53.3333333333333 83.3333333333333C53.3333333333333 86.6666666666666 51.6666666666667 88.3333333333333 48.3333333333333 88.3333333333333zM65 88.3333333333333L65 88.3333333333333C61.6666666666667 88.3333333333333 58.3333333333333 86.6666666666667 58.3333333333333 83.3333333333333C58.3333333333333 80 60 78.3333333333333 63.3333333333333 78.3333333333333H65C68.3333333333333 78.3333333333333 70 80 70 83.3333333333333C70 86.6666666666666 66.6666666666667 88.3333333333333 65 88.3333333333333zM225 88.3333333333333H80C76.6666666666667 88.3333333333333 75 86.6666666666667 75 83.3333333333333C75 80 76.6666666666667 78.3333333333333 80 78.3333333333333H223.3333333333333C226.6666666666667 78.3333333333333 228.3333333333334 80 228.3333333333334 83.3333333333333C230.0000000000001 86.6666666666666 226.6666666666667 88.3333333333333 225 88.3333333333333z" />
43
+ <glyph glyph-name="default"
44
+ unicode="&#xF10C;"
45
+ horiz-adv-x="277.1714827927194" d="M55.5173035252753 90.9665940993519L55.5173035252753 209.0334059006482L97.0093545297309 209.0334059006482L97.0093545297309 209.0334059006482Q113.0327075599068 209.0334059006482 120.8822043884546 199.2507272085408L120.8822043884546 199.2507272085408L120.8822043884546 199.2507272085408Q128.7187268420791 189.4680485164334 128.7187268420791 172.9386948642519L128.7187268420791 172.9386948642519L128.7187268420791 172.9386948642519Q128.7187268420791 162.3126818021352 127.0320581020605 153.8014918525033L127.0320581020605 153.8014918525033L127.0320581020605 153.8014918525033Q125.345389362042 145.2773275279482 118.5987144019679 138.7901400663385L118.5987144019679 138.7901400663385L118.5987144019679 138.7901400663385Q111.8520394418939 132.2899782298056 98.1900226477439 132.2899782298056L98.1900226477439 132.2899782298056L64.9626484693791 132.2899782298056L64.9626484693791 90.9665940993519L55.5173035252753 90.9665940993519zM98.3586895217457 141.5666562999074L98.3586895217457 141.5666562999074Q107.8040344658494 141.5666562999074 112.448860688362 146.626662519963L112.448860688362 146.626662519963L112.448860688362 146.626662519963Q117.0807125359513 151.6866687400186 118.1835344044249 158.0960099520889L118.1835344044249 158.0960099520889L118.1835344044249 158.0960099520889Q119.2733818979754 164.5053511641593 119.2733818979754 172.4326942422463L119.2733818979754 172.4326942422463L119.2733818979754 172.4326942422463Q119.2733818979754 186.2633779103982 113.5387081819124 193.1787197444741L113.5387081819124 193.1787197444741L113.5387081819124 193.1787197444741Q107.8040344658494 200.09406157855 97.6840220257383 200.09406157855L97.6840220257383 200.09406157855L64.9626484693791 200.09406157855L64.9626484693791 141.5666562999074L98.3586895217457 141.5666562999074zM139.5134067781976 90.9665940993519L139.5134067781976 99.3999377994445L208.6668251189568 200.4313953265538L141.7060761402216 200.4313953265538L141.7060761402216 209.0334059006482L220.6421731730883 209.0334059006482L220.6421731730883 200.6000622005556L151.4887548323291 99.5686046734463L221.6541744170994 99.5686046734463L221.6541744170994 90.9665940993519L139.5134067781976 90.9665940993519z" />
46
+ <glyph glyph-name="directions"
47
+ unicode="&#xF10D;"
48
+ horiz-adv-x="300" d="M171.4792969285714 264.0251952857143C169.8925780714286 266.8453125 166.3201172142857 267.8460938571429 163.4994141428571 266.259375L163.2111327857143 266.0970702857143C160.3910155714286 264.5103516428572 159.3902344285714 260.9378905714286 160.9769530714286 258.1171875C162.0521483571429 256.2052733571429 164.0402344285714 255.1294922142858 166.0892577857143 255.1294922142858C167.0619141428571 255.1294922142858 168.0486327857143 255.3726563571429 168.9568358571428 255.8830077857143L169.2451172142857 256.0453125C172.0652344285714 257.6320313571429 173.0660155714286 261.2044922142857 171.4792969285714 264.0251952857143zM298.28379 246.7212891428572L246.72129 298.2837890614286C245.0455071428571 299.9595703125 242.5248042857143 300.460546875 240.3357428571429 299.553515625C238.1466792857143 298.6470703135714 236.71875 296.51015625 236.71875 294.140625L236.71875 278.90625L212.109375 278.90625C203.0636719285714 278.90625 194.0964844285714 277.6927733571429 185.4574219285714 275.2992188571429C182.3390625 274.4349608571429 180.5115233571429 271.2064452857143 181.3751952857143 268.0880858571429C182.2394530714286 264.9697266428572 185.4667969285714 263.1433594285715 188.5863280714286 264.0058594285715C196.2064452857143 266.1169922142857 204.1212891428571 267.1875 212.109375 267.1875L242.578125 267.1875C245.8142571428572 267.1875 248.4375 269.8107422142857 248.4375 273.046875L248.4375 279.9949218642858L285.8542971428572 242.578125L248.4375 205.1613280714286L248.4375 212.109375C248.4375 215.3455077857143 245.8142571428572 217.96875 242.578125 217.96875L212.109375 217.96875C190.7853516428571 217.96875 173.4375 200.6208983571428 173.4375 179.296875L173.4375 103.0828125C162.7042969285714 123.1447266428572 145.3072266428571 139.1273438571429 124.21875 148.0453125L124.21875 179.296875C124.21875 203.5763672142857 133.9019530714286 226.1759766428572 151.4847655714286 242.9320313571429C153.8273436428571 245.1644530714286 153.9164061428571 248.8734375 151.6839844285714 251.2160155714286C149.4509766428572 253.5585938571429 145.7419922142857 253.6482422142857 143.4 251.4152344285715C123.4740233571429 232.4255858571429 112.5 206.8136719285715 112.5 179.296875L112.5 152.1515625C103.9242186428571 154.5650391428571 94.8837891428571 155.859375 85.546875 155.859375L63.28125 155.859375L63.28125 171.09375C63.28125 173.4632813571429 61.8533202857143 175.6001952857143 59.6642577857143 176.5072266428572C57.4751952857143 177.4142577857143 54.9539061428571 176.9121094285715 53.2787108571429 175.2375L1.7162109364286 123.675C-0.571875 121.3869141428572 -0.571875 117.6767577857143 1.7162109364286 115.3880858571429L53.2787108571429 63.825585C54.9544922142857 62.1503914285715 57.4746094285714 61.6482428571429 59.6642577857143 62.5558585714286C61.8539061428571 63.4628914285715 63.28125 65.5992192857143 63.28125 67.969335L63.28125 83.20371L85.546875 83.20371C100.4085936428571 83.20371 112.5 71.1123042857143 112.5 56.250585L112.5 5.85996C112.5 2.6238278571429 115.1232422142857 0.000585 118.359375 0.000585L179.296875 0.000585C182.5330077857143 0.000585 185.15625 2.6238278571429 185.15625 5.85996L185.15625 179.296875C185.15625 194.1585938571429 197.2476561428572 206.25 212.109375 206.25L236.71875 206.25L236.71875 191.015625C236.71875 188.6460938571429 238.1466792857143 186.5091797142857 240.3357428571429 185.6021483571429C242.5248042857143 184.6951172142858 245.0455071428571 185.1960938571429 246.72129 186.871875L298.28379 238.434375C300.571875 240.7230469285714 300.571875 244.4332030714286 298.28379 246.7212891428572zM173.4375 11.71875L157.03125 11.71875L157.03125 50.9308585714286C157.03125 54.1669928571429 154.4080077857143 56.7902335714286 151.171875 56.7902335714286C147.9357422142857 56.7902335714286 145.3125 54.1669928571429 145.3125 50.9308585714286L145.3125 11.71875L124.21875 11.71875L124.21875 56.25C124.21875 77.5740235714286 106.8708983571428 94.921875 85.546875 94.921875L57.421875 94.921875C54.1857422142857 94.921875 51.5625 92.2986327857143 51.5625 89.0625L51.5625 82.1144528571429L14.1457031142857 119.53125L51.5625 156.9480469285715L51.5625 150C51.5625 146.7638672142857 54.1857422142857 144.140625 57.421875 144.140625L85.546875 144.140625C134.0097655714286 144.140625 173.4375 104.7128905714286 173.4375 56.25L173.4375 11.71875zM155.3144530714286 77.6953135714286C154.2246094285714 78.7910164285714 152.7128905714286 79.4121085714286 151.171875 79.4121085714286C149.6308594285714 79.4121085714286 148.1191405714286 78.7910164285714 147.0292969285714 77.6953135714286C145.9394530714286 76.6054692857143 145.3125 75.0996085714286 145.3125 73.5527335714286C145.3125 72.0117192857143 145.9394530714286 70.5 147.0292969285714 69.4101557142857C148.1191405714286 68.3203135714286 149.6308594285714 67.6933585714286 151.171875 67.6933585714286C152.7128905714286 67.6933585714286 154.2246094285714 68.3203135714286 155.3144530714286 69.4101557142857C156.4042969285714 70.5 157.03125 72.0117192857143 157.03125 73.5527335714286C157.03125 75.0996085714286 156.4042969285714 76.6054692857143 155.3144530714286 77.6953135714286z" />
49
+ <glyph glyph-name="eye-off"
50
+ unicode="&#xF10E;"
51
+ horiz-adv-x="300" d="M298.5365853658537 153.6585365853659C297.0731707317073 155.8536585365854 270.7317073170732 193.1707317073171 226.0975609756098 217.3170731707317L292.6829268292683 283.9024390243902C294.8780487804878 286.0975609756097 294.8780487804878 290.4878048780488 292.6829268292683 292.6829268292683C290.4878048780488 294.8780487804878 286.0975609756098 294.8780487804878 283.9024390243902 292.6829268292683L214.390243902439 223.1707317073171C195.3658536585366 231.9512195121951 173.4146341463414 237.8048780487805 149.2682926829268 237.8048780487805C73.1707317073171 237.0731707317073 4.390243902439 157.3170731707317 1.4634146341463 154.3902439024391C-0.7317073170732 152.1951219512195 -0.7317073170732 148.5365853658537 1.4634146341463 146.3414634146342C3.6585365853659 144.1463414634146 33.6585365853659 109.0243902439024 75.3658536585366 84.8780487804878L5.1219512195122 14.6341463414634C2.9268292682927 12.4390243902439 2.9268292682927 8.0487804878049 5.1219512195122 5.8536585365853C6.5853658536585 4.390243902439 8.0487804878049 4.390243902439 9.5121951219512 4.390243902439C10.9756097560976 4.390243902439 12.4390243902439 5.1219512195121 13.9024390243902 5.8536585365853L87.0731707317073 79.0243902439024C106.0975609756098 69.5121951219512 127.3170731707317 62.9268292682926 150 62.9268292682926C226.829268292683 62.9268292682926 295.609756097561 142.6829268292683 298.5365853658537 146.3414634146341C300 147.8048780487805 300 151.4634146341463 298.5365853658537 153.6585365853659zM14.6341463414634 150C29.2682926829268 166.0975609756098 87.8048780487805 224.6341463414634 150 224.6341463414634C170.4878048780488 224.6341463414634 188.7804878048781 220.2439024390244 204.8780487804878 212.9268292682927L180.7317073170732 188.7804878048781C171.9512195121952 195.3658536585366 161.7073170731707 199.7560975609756 150 199.7560975609756C122.1951219512195 199.7560975609756 100.2439024390244 177.0731707317073 100.2439024390244 150C100.2439024390244 138.2926829268293 103.9024390243903 128.0487804878049 111.219512195122 119.2682926829269L85.609756097561 93.6585365853659C51.219512195122 112.6829268292683 24.1463414634146 139.7560975609756 14.6341463414634 150zM187.3170731707317 150C187.3170731707317 129.5121951219512 170.4878048780488 112.6829268292683 150 112.6829268292683C141.9512195121951 112.6829268292683 134.6341463414634 115.609756097561 128.7804878048781 119.2682926829268L180.7317073170732 171.2195121951219C185.1219512195122 165.3658536585366 187.3170731707317 158.0487804878049 187.3170731707317 150zM112.6829268292683 150C112.6829268292683 170.4878048780488 129.5121951219512 187.3170731707317 150 187.3170731707317C158.0487804878049 187.3170731707317 165.3658536585366 184.390243902439 171.9512195121952 180L120 128.0487804878049C114.8780487804878 134.6341463414634 112.6829268292683 141.9512195121951 112.6829268292683 150zM150 75.3658536585366C131.7073170731708 75.3658536585366 113.4146341463415 80.4878048780488 96.5853658536585 88.5365853658537L119.2682926829269 111.219512195122C128.0487804878049 104.6341463414634 138.2926829268293 100.9756097560976 150 100.9756097560976C177.8048780487805 100.9756097560976 199.7560975609756 123.6585365853659 199.7560975609756 150.7317073170732C199.7560975609756 162.439024390244 196.0975609756098 172.6829268292683 189.5121951219512 180.7317073170732L217.3170731707317 207.8048780487805C253.1707317073171 189.5121951219512 278.0487804878049 160.9756097560976 286.0975609756098 150.7317073170732C270.7317073170732 134.6341463414634 212.1951219512195 75.3658536585366 150 75.3658536585366z" />
52
+ <glyph glyph-name="eye-on"
53
+ unicode="&#xF10F;"
54
+ horiz-adv-x="300" d="M298.5365853658537 153.6585365853659C296.3414634146342 157.3170731707317 239.2682926829268 237.8048780487805 150 237.8048780487805C73.1707317073171 237.0731707317073 4.390243902439 157.3170731707317 1.4634146341463 154.3902439024391C-0.7317073170732 152.1951219512195 -0.7317073170732 148.5365853658537 1.4634146341463 146.3414634146342C4.390243902439 142.6829268292683 73.1707317073171 62.9268292682927 150 62.9268292682927S295.609756097561 142.6829268292683 298.5365853658537 146.3414634146342C300 147.8048780487805 300 151.4634146341463 298.5365853658537 153.6585365853659zM150 75.3658536585366C88.5365853658537 75.3658536585366 30 133.9024390243903 14.6341463414634 150C29.2682926829268 166.0975609756098 87.8048780487805 224.6341463414634 150 224.6341463414634C222.4390243902439 224.6341463414634 272.9268292682927 166.0975609756098 285.3658536585366 150C270.7317073170732 134.6341463414634 212.1951219512195 75.3658536585366 150 75.3658536585366zM150 199.7560975609756C122.1951219512195 199.7560975609756 100.2439024390244 177.0731707317073 100.2439024390244 150S122.9268292682927 100.2439024390244 150 100.2439024390244S199.7560975609756 122.9268292682927 199.7560975609756 150S177.0731707317073 199.7560975609756 150 199.7560975609756zM150 112.6829268292683C129.5121951219512 112.6829268292683 112.6829268292683 129.5121951219512 112.6829268292683 150S129.5121951219512 187.3170731707317 150 187.3170731707317S187.3170731707317 170.4878048780488 187.3170731707317 150S170.4878048780488 112.6829268292683 150 112.6829268292683z" />
55
+ <glyph glyph-name="facebook-login"
56
+ unicode="&#xF110;"
57
+ horiz-adv-x="300" d="M172.5 0V136.5H217.5L223.5 190.5H172.5V225C172.5 240 177 250.5 198 250.5H225V298.5C220.5 298.5 204 300 186 300C147 300 120 274.5 120 229.5V190.5H75V136.5H120V0H172.5z" />
58
+ <glyph glyph-name="facebook"
59
+ unicode="&#xF111;"
60
+ horiz-adv-x="300" d="M172 6V108H206L212 150H172V176C172 188 178 200 196 200H214V234C214 234 198 236 182 236C148 236 128 216 128 180V148H90V106H126V4C56 14 4 76 4 148C4 228.0000000000001 70 294 150 294S296 228.0000000000001 296 148C296 76 242 16 172 6z" />
61
+ <glyph glyph-name="giftbox"
62
+ unicode="&#xF112;"
63
+ horiz-adv-x="300" d="M280.4349609375 241.566796875H258.59765625C261.478125 246.125390625 263.37890625 251.2423828125 263.9208984375 256.6541015625C265.65234375 273.94921875 256.5439453125 289.453125 241.037109375 296.3267578125C226.78359375 302.644921875 210.7658203125 300.062109375 199.231640625 289.60078125L171.657421875 264.610546875C166.2873046875 270.483984375 158.567578125 274.175390625 150 274.175390625C141.4171875 274.175390625 133.68515625 270.472265625 128.3138671875 264.5806640625L100.7044921875 289.6037109375C89.1515625 300.0650390625 73.140234375 302.637890625 58.8931640625 296.3232421875C43.3904296875 289.4490234375 34.2802734375 273.93984375 36.0169921875 256.6453125C36.56015625 251.2376953125 38.459765625 246.123046875 41.3396484375 241.566796875H19.5650390625C8.7591796875 241.566796875 0 232.80703125 0 222.0017578125V192.65390625C0 187.2515625 4.3798828125 182.87109375 9.7828125 182.87109375H290.2177734375C295.6201171875 182.87109375 300.0005859375 187.2509765625 300.0005859375 192.65390625V222.0017578125C300 232.80703125 291.2408203125 241.566796875 280.4349609375 241.566796875zM120.6521484375 244.8275390625V241.566796875H74.630859375C62.471484375 241.566796875 52.901953125 252.90234375 55.9388671875 265.562109375C57.2765625 271.1373046875 61.30078125 275.88984375 66.5056640625 278.295703125C73.6529296875 281.59921875 81.5701171875 280.538671875 87.573046875 275.1052734375L120.6603515625 245.1158203125C120.65859375 245.019140625 120.6521484375 244.92421875 120.6521484375 244.8275390625zM244.508203125 259.2515625C243.779296875 249.0837890625 234.5947265625 241.565625 224.401171875 241.565625H179.3478515625V244.8263671875C179.3478515625 244.941796875 179.3408203125 245.0560546875 179.3396484375 245.171484375C186.8349609375 251.966015625 203.0953125 266.703515625 211.9142578125 274.6974609375C216.9263671875 279.240234375 223.939453125 281.3607421875 230.422265625 279.4271484375C239.7251953125 276.6521484375 245.1884765625 268.7408203125 244.508203125 259.2515625zM19.5650390625 163.3060546875V19.8275390625C19.5650390625 9.0216796875 28.32421875 0.2625 39.130078125 0.2625H130.434375V163.3060546875H19.5650390625zM169.5650390625 163.3060546875V0.2625H260.8693359375C271.6751953125 0.2625 280.434375 9.0216796875 280.434375 19.8275390625V163.3060546875H169.5650390625z" />
64
+ <glyph glyph-name="globe"
65
+ unicode="&#xF113;"
66
+ horiz-adv-x="300" d="M150 300L150 300L150 300L150 300C66 300 0 232.5 0 150C0 67.5 67.5 0 150 0H150C232.5 0 298.5 67.5 298.5 150C298.5 234 232.5 300 150 300zM270 78L213 78C217.5 99 220.5 121.5 222 147L289.5 147C289.5 121.5 282 99 270 78zM9 145.5L78 145.5C78 120 81 97.5 87 76.5L30 76.5C16.5 97.5 9 120 9 145.5zM28.5 222L85.5 222C81 202.5 78 178.5 78 154.5L9 154.5C9 178.5 16.5 202.5 28.5 222zM289.5 156L222 156C222 181.5 219 204 213 225L270 225C282 204 289.5 180 289.5 156zM213 154.5L153 154.5L153 223.5L202.5 223.5C210 202.5 213 180 213 154.5zM153 231L153 291C172.5 288 190.5 265.5 201 232.5L153 231zM144 291L144 231L96 231C108 265.5 126 288 144 291zM145.5 223.5L145.5 154.5L85.5 154.5C85.5 180 88.5 202.5 94.5 223.5L145.5 223.5zM85.5 145.5L145.5 145.5L145.5 76.5L96 76.5C90 97.5 87 120 85.5 145.5zM145.5 69L145.5 9C126 12 108 34.5 97.5 67.5L145.5 69zM154.5 9L154.5 69L202.5 69C192 36 174 12 154.5 9zM154.5 78L154.5 147L214.5 147C214.5 121.5 211.5 99 205.5 78L154.5 78zM264 232.5L210 232.5C202.5 258 190.5 277.5 177 289.5C213 282 243 261 264 232.5zM121.5 288C106.5 277.5 96 256.5 88.5 231L34.5 231C54 259.5 85.5 280.5 121.5 288zM34.5 67.5L88.5 67.5C96 42 108 21 123 10.5C87 18 55.5 39 34.5 67.5zM178.5 12C192 24 204 43.5000000000001 211.5 70.5L265.5000000000001 70.5C244.5 40.5 214.5 19.5 178.5 12z" />
67
+ <glyph glyph-name="google-login"
68
+ unicode="&#xF114;"
69
+ horiz-adv-x="300" d="M297.5853516666667 177.7664061666667C298.9189450000001 177.7664061666667 300 176.6853515 300 175.3517578333333L300 150C300 140.5113281666667 299.1187500000001 131.2335933333333 297.42832 122.2335933333334C284.3519533333334 52.3259766666667 222.7640633333334 -0.5050783333334 148.9423828333334 0.0041016666666C66.1089843333333 0.574805 -0.1828125 67.503515 0.00020632282 150.338086C0.1828125 233.0238281666667 67.2714843333333 300.0000000000001 150 300.0000000000001C190.531055 300.0000000000001 227.3056633333334 283.9207031333334 254.3050783333334 257.8019531666667C255.2800783333334 256.8591796666667 255.3052733333334 255.3052735 254.3460933333334 254.3466796666667L218.4802733333334 218.4808593333334C217.5568366666667 217.5574218333333 216.0650383333334 217.5333985 215.11875 218.4339843333334C198.1728516666667 234.5642578333334 175.2451166666667 244.4671875 150 244.4671875C97.8685546666667 244.4671875 55.8890625 202.7859375 55.5351561666667 150.655664C55.1794921666667 98.1832033333333 97.6107421666667 55.5333983333333 150 55.5333983333333C192.5068366666667 55.5333983333333 228.4587883333334 83.6138666666667 240.3140633333334 122.2335933333334L152.4146485 122.2335933333334C151.0810546666667 122.2335933333334 150 123.3146483333333 150 124.6482416666667L150 175.3523436666667C150 176.6859375 151.0810546666667 177.7669921666667 152.4146485 177.7669921666667L297.5853516666667 177.7669921666667L297.5853516666667 177.7664061666667zM297.5853516666667 177.7664063333334L279.4769533333334 177.7664063333334C280.8105466666667 177.7664063333334 281.8916016666667 176.6853515 281.8916016666667 175.3517578333333L281.8916016666667 150C281.8916016666667 140.5113281666667 281.0103516666667 131.2335933333333 279.3199216666667 122.2335933333334C266.8447266666667 55.541015 210.2167966666667 4.3916016666666 140.9361328333333 0.2707033333333C143.586914 0.1142583333333 146.2552735 0.0228516666667 148.9423828333334 0.0041016666666C222.7646483333334 -0.5050783333334 284.3519533333334 52.3265616666667 297.42832 122.2335933333334C299.1187500000001 131.2335933333333 300 140.5113281666667 300 150L300 175.3523436666667C300 176.6853515 298.9189450000001 177.7664063333334 297.5853516666667 177.7664063333334zM64.1953125 189.5613281666667L18.6398436666667 222.4769531666667C44.1972656666667 268.7021485 93.4464843333333 300 150 300C190.531055 300 227.3056633333334 283.9207031333334 254.3050783333334 257.8019531666667C255.2800783333334 256.8591796666667 255.3052733333334 255.3052735 254.3460933333334 254.3466796666667L218.4802733333334 218.4808593333334C217.5585933333334 217.5591796666667 216.0667966666667 217.5304688333333 215.1228516666667 218.4292968333333C198.1769533333333 234.5625 175.2474616666667 244.4666015 150 244.4666015C111.9539061666667 244.4666015 79.1589843333333 221.9759765 64.1953125 189.5613281666667zM51.0439453333333 199.0634765L64.1953125 189.5613281666667C77.8535156666667 219.1476563333333 106.3699218333334 240.4558593333334 140.1726561666667 243.9509765C140.4269531666667 243.9785156666667 140.671289 244.011914 140.9302735 244.0365235C137.9554686666667 244.3189453333333 134.9408203333333 244.4666015 131.8916015 244.4666015C97.5222656666667 244.4666015 67.5691406666667 226.3476563333333 51.0439453333333 199.0634765L51.0439453333333 199.0634765zM236.19668 257.8019531666667C237.17168 256.8591796666667 237.1968750000001 255.3052735 236.2376950000001 254.3460936666667L207.1265616666667 225.234961C209.915625 223.1138671666667 212.5851566666667 220.8451171666667 215.11875 218.4333985C216.0644533333334 217.5328125 217.5568366666667 217.556836 218.4802733333334 218.4802735L254.3460933333334 254.3460936666667C255.3052733333334 255.3052735 255.2794916666667 256.8585936666667 254.3050783333334 257.8019531666667C227.3056633333334 283.9207031333334 190.531055 300 150 300C146.9583985 300 143.9408203333333 299.8986328125 140.944336 299.719921875C177.8818366666667 297.5197265666667 211.222265 281.9613281666667 236.19668 257.8019531666667zM260.034375 48.0603516666666C232.6417966666667 18.5009766666666 193.4789066666667 0 150 0C91.2738281666667 0 40.4308593333333 33.7482416666667 15.80859375 82.9136716666666L62.3173828333333 114.7851566666667C76.2738281666667 80.0583983333333 110.2757811666667 55.5333983333333 150 55.5333983333333C174.9292966666667 55.5333983333333 197.6015616666667 65.1914066666667 214.4789066666667 80.9701166666667L260.034375 48.0603516666666zM62.3179686666667 114.78457L48.6035156666667 105.3867183333333C64.5322265 75.7125 95.8558593333333 55.5333983333333 131.8916015 55.5333983333333C134.9390625 55.5333983333333 137.9513671666667 55.6828133333333 140.925 55.9646483333333C105.1541015 59.374805 75.1980468333334 82.734375 62.3179686666667 114.78457zM150 0C193.4789066666667 0 232.6417966666667 18.5009766666666 260.034375 48.0603516666666L248.8763666666667 56.1210933333333C223.156055 24.1113283333333 184.57207 2.8763666666666 140.9683593333333 0.2730466666666C143.9566406666667 0.0949216666666 146.9671875 0 150 0zM55.5333985 150C55.5333985 137.5535156666667 57.9416015 125.6677733333334 62.3179686666667 114.78457L15.80859375 82.9136716666666C5.6923828166667 103.0986333333333 0 125.8851566666667 0 150C0 176.2875 6.7605468666667 200.9941406666667 18.6398436666667 222.4769531666667L64.1953125 189.5613281666667C58.6359375 177.5314453333333 55.5333985 164.1246093333333 55.5333985 150zM48.6035156666667 105.3867183333333L62.3179686666667 114.78457C57.9416015 125.6677733333334 55.5333985 137.5535156666667 55.5333985 150C55.5333985 164.1246093333333 58.6359375 177.5314453333333 64.1953125 189.5613281666667L51.0439453333333 199.0634765C42.5039061666667 184.9628906666667 37.547461 168.4166015 37.4267578333333 150.6550781666667C37.3154296666667 134.2757811666667 41.3742186666667 118.85332 48.6035156666667 105.3867183333333L48.6035156666667 105.3867183333333z" />
70
+ <glyph glyph-name="google"
71
+ unicode="&#xF115;"
72
+ horiz-adv-x="300" d="M152 4C72 4 6 68 6 150S70 296 152 296C192 296 224 282 250 258L210 220C158 270 62 232 62 150C62 100 102 58 152 58C210 58 232 100 234 120H152V170H290C292 162 292 156 292 146C292 64 236 4 152 4z" />
73
+ <glyph glyph-name="hamburger"
74
+ unicode="&#xF116;"
75
+ horiz-adv-x="300" d="M285 285H15C9 285 3 279 3 273S9 261 15 261H285C292.5 261 297 267 297 273S291 285 285 285zM285 162H15C7.5 162 3 156 3 150C3 142.5 9 138 15 138H285C292.5 138 297 144 297 150C297 157.5 291 162 285 162zM285 40.5H15C7.5 40.5 3 34.5 3 28.5C3 21 9 15 15 15H285C292.5 15 297 21 297 27C297 34.5 291 40.5 285 40.5z" />
76
+ <glyph glyph-name="heart-full"
77
+ unicode="&#xF117;"
78
+ horiz-adv-x="333.33333333333337" d="M166.6666666666667 0C165 0 163.3333333333334 0 163.3333333333334 1.6666666666667C135 16.6666666666666 108.3333333333333 35 83.3333333333333 56.6666666666667C30 103.3333333333333 3.3333333333333 155 3.3333333333333 203.3333333333334C3.3333333333333 255 45 300 95 300C123.3333333333334 300 150 286.6666666666667 166.6666666666667 265C183.3333333333334 286.6666666666667 210 300 238.3333333333334 300C286.6666666666667 300 330.0000000000001 255 330.0000000000001 203.3333333333333C330.0000000000001 153.3333333333333 301.6666666666667 103.3333333333333 250.0000000000001 56.6666666666666C225 34.9999999999999 198.3333333333334 16.6666666666666 170 1.6666666666666C170 0 168.3333333333334 0 166.6666666666667 0L166.6666666666667 0z" />
79
+ <glyph glyph-name="heart-stroke"
80
+ unicode="&#xF118;"
81
+ horiz-adv-x="333.33333333333337" d="M95 283.3333333333333C55 283.3333333333333 20 246.6666666666667 20 203.3333333333333C20 180 26.6666666666667 156.6666666666667 40 133.3333333333333C50 115 66.6666666666667 95 86.6666666666667 76.6666666666667C120 45 155 25 166.6666666666667 18.3333333333333C178.3333333333334 25 213.3333333333334 46.6666666666667 246.6666666666667 76.6666666666667C266.6666666666667 95 281.6666666666668 115 293.3333333333334 133.3333333333334C306.6666666666668 156.6666666666667 313.3333333333334 180 313.3333333333334 203.3333333333334C313.3333333333334 246.6666666666667 278.3333333333333 283.3333333333334 238.3333333333334 283.3333333333334C211.6666666666667 283.3333333333334 186.6666666666667 268.3333333333334 173.3333333333334 245.0000000000001L173.3333333333334 245.0000000000001L173.3333333333334 245.0000000000001C171.6666666666667 243.3333333333334 170 241.6666666666667 166.6666666666667 241.6666666666667C163.3333333333334 241.6666666666667 161.6666666666667 243.3333333333334 160 245.0000000000001L160 245.0000000000001L160 245.0000000000001C146.6666666666667 270 121.6666666666667 283.3333333333333 95 283.3333333333333L95 283.3333333333333zM166.6666666666667 0C165 0 163.3333333333334 0 163.3333333333334 1.6666666666667C135 16.6666666666666 108.3333333333333 35 83.3333333333333 56.6666666666667C30 103.3333333333333 3.3333333333333 155 3.3333333333333 203.3333333333334C3.3333333333333 255 45 300 95 300C123.3333333333334 300 150 286.6666666666667 166.6666666666667 265C183.3333333333334 286.6666666666667 210 300 238.3333333333334 300C286.6666666666667 300 330.0000000000001 255 330.0000000000001 203.3333333333333C330.0000000000001 153.3333333333333 301.6666666666667 103.3333333333333 250.0000000000001 56.6666666666666C225 34.9999999999999 198.3333333333334 16.6666666666666 170 1.6666666666666C170 0 168.3333333333334 0 166.6666666666667 0L166.6666666666667 0z" />
82
+ <glyph glyph-name="info"
83
+ unicode="&#xF119;"
84
+ horiz-adv-x="300" d="M150 288C73.782 288 12 226.218 12 150S73.782 12 150 12S288 73.782 288 150S226.218 288 150 288zM150 234C159.942 234 168 225.942 168 216S159.942 198 150 198S132 206.058 132 216S140.058 234 150 234zM174 72H162H138H126V84H138V162H126V174H138H162V162V84H174V72z" />
85
+ <glyph glyph-name="instagram"
86
+ unicode="&#xF11A;"
87
+ horiz-adv-x="300" d="M294 90C292 66 288 46 270 30C254 12 232 8 210 6C186 4 114 4 90 6C66 8 46 12 30 30S8 68 6 90C4 114 4 186 6 210C8 234 12 254 30 270S68 292 90 294C114 296 186 296 210 294C234 292 254 288 270 270C288 254 292 232 294 210C296 186 296 114 294 90zM268 150C268 172 270 216 262 236C256 248 248 258 234 264C214 272 170 270 148 270S84 270 64 264C52 258 42 248 38 236C30 216 32 172 32 150S30 84 38 64C44 52 52 42 66 36C86 28 130 29.9999999999999 152 29.9999999999999S218 28 238 36C250 42 260 50 266 64C270 84 268 128 268 150zM224 150C224 108 190 76 150 76S76 108 76 150S110 224 150 224S224 192 224 150zM198 150C198 176 176 198 150 198S102 176 102 150S124 102 150 102S198 124 198 150zM228 210C218 210 210 218 210 228S218 246 228 246C238 246 246 238 246 228C244 218 236 210 228 210z" />
88
+ <glyph glyph-name="layout-2"
89
+ unicode="&#xF11B;"
90
+ horiz-adv-x="300" d="M0 300H106.6666666666667V193.3333333333333H0V300zM193.3333333333334 300H300V193.3333333333333H193.3333333333334V300zM0 106.6666666666667H106.6666666666667V0H0V106.6666666666667zM193.3333333333334 106.6666666666667H300V0H193.3333333333334V106.6666666666667z" />
91
+ <glyph glyph-name="layout-3"
92
+ unicode="&#xF11C;"
93
+ horiz-adv-x="300" d="M0 300H88.3333333333333V211.6666666666667H0V300zM211.6666666666667 300H300V211.6666666666667H211.6666666666667V300zM106.6666666666667 300H195V211.6666666666667H106.6666666666667V300zM0 193.3333333333333H88.3333333333333V105H0V193.3333333333333zM211.6666666666667 193.3333333333333H300V105H211.6666666666667V193.3333333333333zM106.6666666666667 193.3333333333333H195V105H106.6666666666667V193.3333333333333zM0 88.3333333333333H88.3333333333333V0H0V88.3333333333333zM211.6666666666667 88.3333333333333H300V0H211.6666666666667V88.3333333333333zM106.6666666666667 88.3333333333333H195V0H106.6666666666667V88.3333333333333z" />
94
+ <glyph glyph-name="logo"
95
+ unicode="&#xF11D;"
96
+ horiz-adv-x="3066.666666666667" d="M86.4 158.9500715C98.7428571666667 158.9500715 109.8 159.7215 119.5714285 161.2643571666667C129.3428571666667 162.8072143333334 137.6357143333334 165.7000715 144.45 169.9429285C151.2642856666667 174.1857856666667 156.5357143333334 179.9715 160.2642856666667 187.3000715C163.9928571666667 194.6286428333333 165.8571428333334 204.2072143333333 165.8571428333334 216.0357856666667C165.8571428333334 233.5215 160.1357143333334 246.7322143333334 148.6928571666667 255.7643571666667C137.25 264.7643571666667 119.0571428333334 269.2643571666667 94.1142856666667 269.2643571666667L26.2285715 269.2643571666667L26.2285715 158.9500715L86.4 158.9500715zM0 13.9215L0 291.6357857166667L101.4428571666667 291.6357857166667C119.4428571666667 291.6357857166667 134.2928571666667 289.5465 145.9928571666667 285.46435715C157.6928571666667 281.3500715 166.95 275.6929285 173.764285 268.4929285C180.5785716666667 261.2929285 185.335715 253.0000715 188.035715 243.6143571666667C190.735715 234.2286428333333 192.085715 224.3929285 192.085715 214.1072143333333C192.085715 198.6786428333333 188.935715 185.9500715 182.635715 175.9215C176.335715 165.8929285 168.1714283333334 157.9857856666667 158.1428571666667 152.2000715C148.1142856666667 146.4143571666666 136.7357143333333 142.3643571666667 124.0071428333334 140.0500715C111.2785715 137.7357856666667 98.4857143333334 136.5786428333333 85.6285715 136.5786428333333L26.2285715 136.5786428333333L26.2285715 13.9215L0 13.9215zM344.4364283333334 162.4215C354.2078566666667 162.4215 363.2721433333334 163.4500715 371.629285 165.5072143333333C379.9864283333333 167.5643571666667 387.250715 170.8429285 393.4221433333334 175.3429285C399.5935716666667 179.8429285 404.479285 185.5643571666667 408.0792850000001 192.5072143333333C411.6792850000001 199.4500715 413.4792850000001 207.8072143333333 413.4792850000001 217.5786428333333C413.4792850000001 227.8643571666667 411.615 236.3500715 407.8864283333334 243.0357856666667C404.1578566666667 249.7215 399.1435716666667 254.9929285 392.8435716666667 258.8500715C386.5435716666667 262.7072143333334 379.3435716666667 265.4072143333334 371.2435716666667 266.9500715C363.1435716666667 268.4929285 354.7221433333334 269.2643571666667 345.979285 269.2643571666667L262.665 269.2643571666667L262.665 162.4215L344.4364283333334 162.4215zM262.665 140.0500715L262.665 13.9215L236.4364283333334 14.307215L236.4364283333334 291.6357857166667L345.2078566666667 291.6357857166667C375.8078566666667 291.6357857166667 399.2078566666667 285.91435715 415.4078566666667 274.4715C431.6078566666667 263.0286428333333 439.7078566666667 244.4500715 439.7078566666667 218.7357856666667C439.7078566666667 201.2500715 436.1721433333334 187.3643571666667 429.1007150000001 177.0786428333333C422.029285 166.7929285 410.5221433333334 158.0500715 394.5792850000001 150.8500715C402.8078566666668 148.0215 409.2364283333334 143.9072143333334 413.8650000000001 138.5072143333333C418.4935716666667 133.107215 421.9650000000001 126.935785 424.279285 119.9929283333334C426.5935716666667 113.0500716666667 428.0721433333334 105.7215 428.7150000000001 98.007215C429.3578566666667 90.2929283333333 429.8078566666667 82.835785 430.065 75.635785C430.3221433333333 65.0929283333333 430.7721433333334 56.3500716666667 431.415 49.407215C432.0578566666667 42.4643566666667 432.8292850000001 36.807215 433.7292850000001 32.435785C434.6292850000001 28.0643566666667 435.7221433333334 24.657215 437.0078566666668 22.2143566666666C438.2935716666667 19.7714999999999 439.8364283333334 17.907215 441.6364283333334 16.6215L441.6364283333334 14.307215L412.7078566666667 13.9215C409.8792850000001 18.5500716666667 407.8864283333334 24.9786433333333 406.729285 33.207215C405.5721433333334 41.435785 404.6721433333334 50.0500716666667 404.0292850000001 59.0500716666666C403.3864283333334 68.0500716666667 402.8721433333334 76.7929283333333 402.4864283333334 85.2786433333333C402.1007150000001 93.7643566666667 401.3935716666668 100.707215 400.365 106.107215C398.8221433333334 113.5643566666667 396.3150000000001 119.5429283333333 392.8435716666667 124.0429283333333C389.3721433333334 128.5429283333333 385.1935716666667 131.9500716666667 380.3078566666667 134.2643571666667C375.4221433333334 136.5786428333333 369.9578566666667 138.1215 363.915 138.8929285C357.8721433333334 139.6643571666667 351.6364283333334 140.0500715 345.2078566666667 140.0500715L262.665 140.0500715zM612.896785 28.9515C630.896785 28.9515 646.3896433333333 32.3586433333333 659.3753566666668 39.1729283333333C672.3610716666667 45.987215 683.0325 55.0515 691.3896433333334 66.365785C699.746785 77.6800716666667 705.9182150000001 90.7943566666666 709.9039283333334 105.7086433333333C713.8896433333334 120.6229283333333 715.8825 136.1800715 715.8825 152.3800715C715.8825 171.6657856666666 713.5039283333334 188.9586428333333 708.746785 204.2586428333334C703.9896433333334 219.5586428333333 697.1110716666667 232.6086428333334 688.1110716666667 243.4086428333333C679.1110716666667 254.2086428333334 668.1825 262.4372143333333 655.3253566666667 268.0943571666667C642.4682150000001 273.7515 628.0682150000001 276.5800715 612.1253566666667 276.5800715C594.3825 276.5800715 579.018215 273.1086428333333 566.0325 266.1657856666667C553.046785 259.2229285 542.3753566666667 250.0300715 534.018215 238.5872143333333C525.6610716666667 227.1443571666667 519.4896433333334 213.9657856666667 515.5039283333334 199.0515C511.5182150000001 184.1372143333333 509.5253566666667 168.5800715 509.5253566666667 152.3800715C509.5253566666667 135.9229285 511.5182150000001 120.237215 515.5039283333334 105.3229283333333C519.4896433333334 90.4086433333334 525.6610716666667 77.2943566666667 534.018215 65.9800716666667C542.3753566666667 54.665785 553.046785 45.665785 566.0325 38.9800716666666C579.018215 32.2943566666667 594.6396433333334 28.9515 612.896785 28.9515M483.296785 152.3800715C483.296785 172.6943571666666 486.0610716666667 191.7229285 491.5896433333334 209.4657856666667C497.118215 227.2086428333334 505.2825 242.7015 516.0825000000001 255.9443571666667C526.8825 269.1872143333333 540.2539283333333 279.6657856666667 556.196785 287.3800714333334C572.1396433333334 295.09435715 590.5253566666668 298.9515 611.3539283333334 298.9515C632.9539283333334 298.9515 651.918215 295.15864285 668.246785 287.5729285666667C684.5753566666667 279.9872143333334 698.2039283333334 269.5729285 709.1325 256.3300715C720.0610716666667 243.0872143333333 728.2896433333334 227.5300715 733.8182150000001 209.6586428333333C739.3467850000001 191.7872143333334 742.1110716666667 172.6943571666666 742.1110716666667 152.3800715C742.1110716666667 132.3229283333333 739.3467850000001 113.487215 733.8182150000001 95.8729283333333C728.2896433333334 78.2586433333333 720.1253566666667 62.8300716666667 709.3253566666667 49.587215C698.5253566666667 36.3443566666667 685.0253566666668 25.865785 668.8253566666667 18.1514999999999C652.6253566666667 10.437215 633.8539283333334 6.5800716666666 612.5110716666667 6.5800716666666C591.168215 6.5800716666666 572.396785 10.437215 556.196785 18.1514999999999C539.9967849999999 25.865785 526.496785 36.3443566666667 515.696785 49.587215C504.896785 62.8300716666667 496.7967850000001 78.2586433333333 491.396785 95.8729283333333C485.996785 113.487215 483.296785 132.3229283333333 483.296785 152.3800715M797.6539283333334 101.854715C797.6539283333334 93.1118566666667 797.9753566666667 84.4975716666666 798.6182150000001 76.0118566666667C799.2610716666668 67.5261433333333 801.1896433333335 59.8761433333333 804.4039283333334 53.0618566666666C807.6182150000001 46.2475716666666 812.6325 40.783285 819.4467850000001 36.669C826.2610716666667 32.554715 835.7110716666667 30.4975716666667 847.7967850000001 30.4975716666667C865.796785 30.4975716666667 878.4610716666667 35.6404283333333 885.7896433333334 45.9261433333333C893.1182150000001 56.2118566666667 896.7825 71.1261433333333 896.7825 90.669L896.7825 291.62614285L923.0110716666666 291.62614285L923.0110716666666 89.8975716666666C923.0110716666666 62.8975716666666 916.7110716666668 42.2618566666666 904.1110716666668 27.9904283333333C891.5110716666667 13.7189999999999 871.7110716666668 6.583285 844.7110716666667 6.583285C829.0253566666668 6.583285 816.4253566666667 9.2189999999999 806.9110716666667 14.4904283333333C797.396785 19.7618566666666 790.0039283333334 26.833285 784.7325000000001 35.704715C779.4610716666667 44.5761433333333 775.9253566666667 54.733285 774.1253566666667 66.1761433333333C772.3253566666667 77.619 771.4253566666667 89.5118566666666 771.4253566666667 101.854715L797.6539283333334 101.854715zM987.0428566666666 13.9150716666667L987.0428566666666 291.62935715L1171.8000000000002 291.62935715L1171.8000000000002 269.2579285L1013.2714283333333 269.2579285L1013.2714283333333 168.9722143333334L1156.3714283333334 168.9722143333334L1156.3714283333334 146.6007856666667L1013.2714283333333 146.6007856666667L1013.2714283333333 36.2865L1175.6571433333334 36.2865L1175.6571433333334 13.9150716666667zM1419.8110716666667 211.0118571666667C1414.4110716666669 234.669 1404.3825000000002 251.5118571666667 1389.7253566666668 261.5404285C1375.0682150000002 271.569 1355.9110716666667 276.5832856666667 1332.2539283333335 276.5832856666667C1315.5396433333335 276.5832856666667 1301.1396433333334 273.2404285 1289.0539283333333 266.5547143333333C1276.9682149999999 259.8690000000001 1267.0039283333335 250.869 1259.1610716666669 239.5547143333333C1251.3182150000002 228.2404285 1245.5325 215.1904285 1241.8039283333335 200.4047143333333C1238.0753566666667 185.619 1236.2110716666666 169.9975715 1236.2110716666666 153.5404285C1236.2110716666666 138.1118571666667 1237.8182150000002 122.9404283333333 1241.0325 108.0261433333333C1244.246785 93.1118566666667 1249.5825000000002 79.804715 1257.0396433333335 68.104715C1264.496785 56.404715 1274.5253566666668 46.954715 1287.1253566666667 39.754715C1299.7253566666668 32.554715 1315.5396433333335 28.954715 1334.568215 28.954715C1346.3967850000001 28.954715 1357.196785 30.883285 1366.968215 34.7404283333333C1376.7396433333336 38.5975716666666 1385.2896433333333 43.933285 1392.6182150000002 50.7475716666667C1399.946785 57.5618566666666 1406.1182150000002 65.5975716666667 1411.1325000000002 74.854715C1416.1467850000001 84.1118566666667 1419.9396433333334 94.269 1422.5110716666668 105.3261433333333L1449.8967850000001 105.3261433333333C1446.8110716666667 91.954715 1442.3110716666667 79.2904283333333 1436.3967850000001 67.333285C1430.4825000000003 55.3761433333333 1422.7039283333334 44.8975716666666 1413.0610716666667 35.8975716666666C1403.4182150000001 26.8975716666666 1391.718215 19.7618566666666 1377.9610716666668 14.4904283333333C1364.2039283333334 9.2189999999999 1348.068215 6.583285 1329.5539283333335 6.583285C1308.2110716666668 6.583285 1289.9539283333334 10.504715 1274.7825 18.3475716666667C1259.611071666667 26.1904283333333 1247.2039283333334 36.7975716666666 1237.5610716666667 50.169C1227.918215 63.5404283333333 1220.9110716666669 79.033285 1216.5396433333333 96.6475716666667C1212.1682150000001 114.2618566666667 1209.9825 132.969 1209.9825 152.769C1209.9825 179.2547143333333 1213.2610716666668 201.7547143333333 1219.8182150000002 220.269C1226.375356666667 238.7832856666667 1235.4396433333334 253.8904285 1247.0110716666668 265.5904285000001C1258.5825 277.2904285 1272.2110716666668 285.77614285 1287.8967850000001 291.0475714333334C1303.5825000000002 296.319 1320.6825000000001 298.954714285 1339.196785 298.954714285C1353.3396433333332 298.954714285 1366.518215 297.0904285666667 1378.7325 293.36185715C1390.946785 289.6332857166667 1401.746785 284.0404285666667 1411.1325000000002 276.5832856666667C1420.518215 269.1261428333334 1428.2325 259.9332856666667 1434.2753566666668 249.0047143333333C1440.318215 238.0761428333334 1444.496785 225.4118571666667 1446.8110716666667 211.0118571666667L1419.8110716666667 211.0118571666667zM1476.1221433333333 291.6357857166667L1678.2364333333335 291.6357857166667L1678.2364333333335 269.2643571666667L1590.2935716666668 269.2643571666667L1590.2935716666668 13.9215L1564.0650000000003 13.9215L1564.0650000000003 269.2643571666667L1476.1221433333333 269.2643571666667zM1818.7392833333336 13.9086433333333L1850.9464333333335 13.9086433333333L1850.9464333333335 294.5157857166667L1818.7392833333336 294.5157857166667zM2008.8514333333335 62.884715L2150.76215 242.3704285L2012.4192833333336 242.3704285L2012.4192833333336 291.51685715L2222.7942833333336 291.51685715L2222.7942833333336 245.0061428333334L2079.0835666666667 62.884715L2223.1800000000003 62.884715L2223.1800000000003 13.9311433333334L2008.8514333333335 13.9311433333334zM2469.3332166666664 242.3704285L2322.44035 242.3704285L2322.44035 183.4204285L2457.2796500000004 183.4204285L2457.2796500000004 135.2061428333333L2322.44035 135.2061428333333L2322.44035 63.8168566666667L2476.1153500000005 63.8168566666667L2476.1153500000005 13.9311433333334L2265.74035 13.9311433333334L2265.74035 291.51685715L2469.3332166666664 291.51685715zM2579.32285 243.3122143333333L2579.32285 168.7407856666667L2641.7442833333334 168.7407856666667C2654.1514333333334 168.7407856666667 2663.440716666667 170.2515 2669.6764333333335 173.2407856666667C2680.605 178.5122143333333 2686.1014333333337 188.9586428333333 2686.1014333333337 204.5157856666667C2686.1014333333337 221.3265 2680.7978500000004 232.6407856666667 2670.190716666667 238.4265C2664.2442833333334 241.6729285 2655.2764333333334 243.3122143333333 2643.3514333333337 243.3122143333333L2579.32285 243.3122143333333zM2699.215716666667 284.35864285C2709.43715 279.9872143333334 2718.0835666666667 273.4943571666667 2725.219283333334 264.9765C2731.0692833333337 257.9372143333333 2735.73 250.1586428333333 2739.1692833333336 241.6086428333334C2742.608566666667 233.0907856666667 2744.31215 223.3515 2744.31215 212.4229285C2744.31215 199.2443571666667 2740.9692833333334 186.2907856666667 2734.315716666667 173.5300715C2727.66215 160.8015 2716.6692833333336 151.7693571666667 2701.3692833333334 146.4979285C2714.16215 141.3550715 2723.258566666667 134.0586428333333 2728.5942833333334 124.5765C2733.9300000000003 115.0943566666667 2736.5978500000006 100.6300716666667 2736.5978500000006 81.1515L2736.5978500000006 62.5086433333333C2736.5978500000006 49.812215 2737.08 41.2300716666666 2738.1085666666672 36.6979283333333C2739.6514333333334 29.562215 2743.2192833333334 24.290785 2748.81215 20.8836433333333L2748.81215 13.9086433333333L2684.783566666667 13.9086433333333C2683.04785 20.0800716666666 2681.7942833333336 25.0300716666666 2681.02285 28.790785C2679.51215 36.5693566666666 2678.7085666666667 44.540785 2678.58 52.7050716666667L2678.1942833333333 78.515785C2677.9692833333334 96.2265 2674.915716666667 108.0229283333333 2669.0335666666665 113.937215C2663.1514333333334 119.8193566666666 2652.126433333334 122.7765 2635.990716666667 122.7765L2579.32285 122.7765L2579.32285 13.9086433333333L2522.62285 13.9086433333333L2522.62285 291.5265L2655.405 291.5265C2674.401433333334 291.1407857166667 2688.9942833333334 288.7622142833333 2699.215716666667 284.35864285L2699.215716666667 284.35864285zM2977.373566666667 80.7754283333333C2990.873566666667 97.714715 2997.623566666667 121.8218566666667 2997.623566666667 153.0968571666667C2997.623566666667 184.2432856666667 2990.873566666667 208.3182856666667 2977.373566666667 225.3218571666667C2963.873566666667 242.3254285 2945.6485666666667 250.8432856666667 2922.6664333333333 250.8432856666667C2899.6842833333335 250.8432856666667 2881.36285 242.3575715 2867.6700000000005 225.4182856666667C2853.97715 208.479 2847.130716666667 184.3718571666667 2847.130716666667 153.0968571666667C2847.130716666667 121.8218566666667 2853.97715 97.714715 2867.6700000000005 80.7754283333333C2881.36285 63.8361433333333 2899.6842833333335 55.3504283333333 2922.6664333333333 55.3504283333333C2945.6485666666667 55.3504283333333 2963.873566666667 63.8361433333333 2977.373566666667 80.7754283333333M3013.630716666667 38.604C2992.673566666667 17.004 2962.330716666667 6.204 2922.6664333333333 6.204C2882.97 6.204 2852.659283333334 17.004 2831.70215 38.604C2803.57715 65.089715 2789.4985666666666 103.243285 2789.4985666666666 153.0968571666667C2789.4985666666666 203.9468571666667 2803.57715 242.1325715 2831.70215 267.5897143333334C2852.659283333334 289.1897142833334 2882.97 299.9897142857167 2922.6664333333333 299.9897142857167C2962.330716666667 299.9897142857167 2992.673566666667 289.1897142833334 3013.630716666667 267.5897143333334C3041.6271500000003 242.1325715 3055.641433333333 203.9468571666667 3055.641433333333 153.0968571666667C3055.641433333333 103.243285 3041.6271500000003 65.089715 3013.630716666667 38.604" />
97
+ <glyph glyph-name="mail"
98
+ unicode="&#xF11E;"
99
+ horiz-adv-x="300" d="M271.8748043034456 262.5001565572436H28.1251956965545C12.6160089175006 262.5001565572436 0 249.884147639743 0 234.3749608606891V65.6250391393109C0 50.115852360257 12.6160089175006 37.4998434427563 28.1251956965545 37.4998434427563H271.8748043034456C287.3839910824995 37.4998434427563 300 50.115852360257 300 65.6250391393109V234.3749608606891C300 249.884147639743 287.3839910824994 262.5001565572436 271.8748043034455 262.5001565572436zM271.8748043034456 243.7502348358654C273.1485540372982 243.7502348358654 274.3603071026891 243.4859662086846 275.4681061583358 243.0244354545796L150 134.2804002855604L24.5312676126899 243.0244354545796C25.6390666683366 243.4853399797102 26.8508197337274 243.7502348358654 28.1245694675801 243.7502348358654zM271.8748043034456 56.250391393109H28.1251956965545C22.9525443683228 56.250391393109 18.7499217213782 60.4523878110792 18.7499217213782 65.6256653682852V223.2149343085806L143.856693761507 114.7890234585374C145.6239119271571 113.2603985321193 147.8119559635786 112.5001565572436 150 112.5001565572436S154.376088072843 113.2597723031449 156.1433062384931 114.7890234585374L281.2500782786219 223.2149343085806V65.6250391393109C281.2494520496475 60.4523878110792 277.0474556316772 56.2503913931089 271.8748043034456 56.2503913931089z" />
100
+ <glyph glyph-name="minus"
101
+ unicode="&#xF11F;"
102
+ horiz-adv-x="300" d="M286.6666666666667 133.3333333333333H13.3333333333333C6.6666666666667 133.3333333333333 0 140 0 146.6666666666667V153.3333333333333C0 160 6.6666666666667 166.6666666666667 13.3333333333333 166.6666666666667H286.6666666666667C293.3333333333334 166.6666666666667 300 160 300 153.3333333333333V146.6666666666666C300 140 293.3333333333334 133.3333333333333 286.6666666666667 133.3333333333333z" />
103
+ <glyph glyph-name="money"
104
+ unicode="&#xF120;"
105
+ horiz-adv-x="300" d="M150.00046875 205.73390625C138.97734375 205.73390625 128.20171875 202.4653125 119.03625 196.34109375C109.87078125 190.216875 102.72703125 181.5121875 98.50875 171.328125C94.29046875 161.1440625 93.1865625 149.93765625 95.3371875 139.12640625C97.4878125 128.3146875 102.7959375 118.38375 110.5903125 110.589375C118.38515625 102.79453125 128.31609375 97.48640625 139.12734375 95.33625C149.93859375 93.185625 161.145 94.2890625 171.3290625 98.5078125C181.513125 102.72609375 190.2178125 109.86984375 196.34203125 119.0353125C202.46625 128.20078125 205.73484375 138.97640625 205.73484375 149.99953125C205.72265625 164.77734375 199.84640625 178.94625 189.39703125 189.39609375C178.94765625 199.84546875 164.77828125 205.72125 150.00046875 205.73390625zM150.00046875 105.98390625C141.29484375 105.98390625 132.78515625 108.5653125 125.54671875 113.401875C118.30828125 118.2384375 112.666875 125.11265625 109.33546875 133.15546875C106.0040625 141.19828125 105.1321875 150.04828125 106.83046875 158.5865625C108.52921875 167.12484375 112.72125 174.9675 118.876875 181.123125C125.0325 187.27875 132.87515625 191.47125 141.4134375 193.16953125C149.95171875 194.8678125 158.80171875 193.9959375 166.84453125 190.66453125C174.88734375 187.333125 181.7615625 181.69171875 186.598125 174.45328125C191.4346875 167.21484375 194.01609375 158.70515625 194.01609375 149.99953125C194.00390625 138.32953125 189.36234375 127.14140625 181.11046875 118.88953125C172.85859375 110.63765625 161.67046875 105.99609375 150.00046875 105.98390625V105.98390625zM267.1875 249.609375H32.8125C27.5326875 249.5971875 22.472671875 247.49390625 18.739265625 243.76078125C15.00590625 240.0271875 12.903 234.9675 12.890625 229.6875V70.3125C12.903 65.0325 15.00590625 59.9728125 18.739265625 56.23921875C22.472671875 52.50609375 27.5326875 50.4028125 32.8125 50.390625H267.1875C272.4675 50.4028125 277.5271875000001 52.50609375 281.26078125 56.23921875C284.99390625 59.9728125 287.0971875 65.0325 287.109375 70.3125V229.6875C287.0971875 234.9675 284.99390625 240.0271875 281.26078125 243.76078125C277.5271875000001 247.49390625 272.4675 249.5971875 267.1875 249.609375zM24.609375 229.6875C24.621703125 231.85921875 25.489875 233.93859375 27.02559375 235.47421875C28.561359375 237.0103125 30.6406875 237.8784375 32.8125 237.890625H56.25C54.98578125 229.95421875 51.24515625 222.62015625 45.56240625 216.9375C39.879703125 211.25484375 32.545921875 207.51421875 24.609375 206.25V229.6875zM32.8125 62.109375C30.6406875 62.1215625 28.561359375 62.9896875 27.02559375 64.52578125C25.489875 66.06140625 24.621703125 68.14078125 24.609375 70.3125V93.75C32.545921875 92.48578125 39.879703125 88.74515625 45.56240625 83.0625C51.24515625 77.37984375 54.98578125 70.04578125 56.25 62.109375H32.8125zM275.390625 70.3125C275.3784375 68.14078125 274.5103125 66.06140625 272.97421875 64.52578125C271.43859375 62.9896875 269.35921875 62.1215625 267.1875 62.109375H243.75C245.01421875 70.04578125 248.75484375 77.37984375 254.4375 83.0625C260.12015625 88.74515625 267.45421875 92.48578125 275.390625 93.75V70.3125zM275.390625 105.609375C264.31453125 104.2809375 254.0053125 99.2709375 246.1171875 91.3828125C238.2290625 83.4946875 233.2190625 73.18546875 231.890625 62.109375H68.109375C66.7809375 73.18546875 61.7709375 83.4946875 53.8828125 91.3828125C45.9946875 99.2709375 35.685609375 104.2809375 24.609375 105.609375V194.390625C35.685609375 195.7190625 45.9946875 200.7290625 53.8828125 208.6171875C61.7709375 216.5053125 66.7809375 226.81453125 68.109375 237.890625H231.890625C233.2190625 226.81453125 238.2290625 216.5053125 246.1171875 208.6171875C254.0053125 200.7290625 264.31453125 195.7190625 275.390625 194.390625V105.609375zM275.390625 206.203125C267.44765625 207.47015625 260.10890625 211.21734375 254.4253125 216.909375C248.74171875 222.60140625 245.00484375 229.94578125 243.75 237.890625H267.1875C269.35921875 237.8784375 271.43859375 237.0103125 272.97421875 235.47421875C274.5103125 233.93859375 275.3784375 231.85921875 275.390625 229.6875V206.203125z" />
106
+ <glyph glyph-name="mp-otp"
107
+ unicode="&#xF121;"
108
+ horiz-adv-x="300" d="M154.6875 262.5H107.8125C105.225 262.5 103.125 264.6 103.125 267.1875S105.225 271.875 107.8125 271.875H154.6875C157.275 271.875 159.375 269.775 159.375 267.1875S157.275 262.5 154.6875 262.5zM135.9375 28.125H126.5625C123.975 28.125 121.875 30.225 121.875 32.8125S123.975 37.5 126.5625 37.5H135.9375C138.525 37.5 140.625 35.4 140.625 32.8125S138.525 28.125 135.9375 28.125zM182.8125 9.375H79.6875C66.759375 9.375 56.25 19.884375 56.25 32.8125V267.1875C56.25 280.115625 66.759375 290.625 79.6875 290.625H182.8125C195.740625 290.625 206.25 280.115625 206.25 267.1875V248.4375C206.25 245.85 204.15 243.75 201.5625 243.75S196.875 245.85 196.875 248.4375V267.1875C196.875 274.940625 190.565625 281.25 182.8125 281.25H79.6875C71.934375 281.25 65.625 274.940625 65.625 267.1875V32.8125C65.625 25.059375 71.934375 18.75 79.6875 18.75H182.8125C190.565625 18.75 196.875 25.059375 196.875 32.8125V107.8125C196.875 110.4 198.975 112.5 201.5625 112.5S206.25 110.4 206.25 107.8125V32.8125C206.25 19.884375 195.740625 9.375 182.8125 9.375zM154.6875 84.375C154.1625 84.375 153.6375 84.46875 153.121875 84.646875C151.246875 85.3125 150 87.075 150 89.0625V121.875H135.9375C128.184375 121.875 121.875 128.184375 121.875 135.9375V220.3125C121.875 228.065625 128.184375 234.375 135.9375 234.375H267.1875C274.940625 234.375 281.25 228.065625 281.25 220.3125V135.9375C281.25 128.184375 274.940625 121.875 267.1875 121.875H187.3875L158.325 86.109375C157.415625 84.984375 156.065625 84.375 154.6875 84.375zM135.9375 225C133.35 225 131.25 222.890625 131.25 220.3125V135.9375C131.25 133.359375 133.35 131.25 135.9375 131.25H154.6875C157.275 131.25 159.375 129.15 159.375 126.5625V102.2625L181.51875 129.515625C182.409375 130.621875 183.75 131.25 185.15625 131.25H267.1875C269.775 131.25 271.875 133.359375 271.875 135.9375V220.3125C271.875 222.890625 269.775 225 267.1875 225H135.9375zM220.3125 159.375L220.3125 159.375C222.9 159.375 225 161.475 225 164.0625S222.9 168.75 220.3125 168.75L220.3125 168.75C217.725 168.75 215.625 166.65 215.625 164.0625S217.725 159.375 220.3125 159.375zM201.7125 159.525L201.7125 159.525C204.3 159.525 206.4 161.625 206.4 164.2125S204.3 168.9 201.7125 168.9L201.7125 168.9C199.125 168.9 197.025 166.8 197.025 164.2125S199.115625 159.525 201.7125 159.525zM182.9625 159.525L182.9625 159.525C185.55 159.525 187.65 161.625 187.65 164.2125S185.55 168.9 182.9625 168.9L182.9625 168.9C180.375 168.9 178.275 166.8 178.275 164.2125S180.365625 159.525 182.9625 159.525z" />
109
+ <glyph glyph-name="pin"
110
+ unicode="&#xF122;"
111
+ horiz-adv-x="300" d="M122.6470588235294 197.6470588235294A27.3529411764706 27.3529411764706 0 0 1 177.3529411764706 197.6470588235294A27.3529411764706 27.3529411764706 0 0 1 122.6470588235294 197.6470588235294M71.4705882352941 127.9411764705882L150 21.1764705882352L228.5294117647059 127.9411764705882C258.5294117647059 165.8823529411765 254.1176470588236 226.764705882353 219.7058823529412 259.4117647058824C201.1764705882353 277.0588235294118 176.4705882352942 286.764705882353 150 286.764705882353S98.8235294117647 277.0588235294118 80.2941176470588 259.4117647058824C45.8823529411765 227.6470588235294 42.3529411764706 165.8823529411765 71.4705882352941 127.9411764705882zM150 236.4705882352941C171.1764705882353 236.4705882352941 188.8235294117647 218.8235294117647 188.8235294117647 197.6470588235294C188.8235294117647 176.4705882352941 171.1764705882353 158.8235294117647 150 158.8235294117647S111.1764705882353 176.4705882352941 111.1764705882353 197.6470588235294C111.1764705882353 218.8235294117647 128.8235294117647 236.4705882352941 150 236.4705882352941zM150 158.8235294117647C171.1764705882353 158.8235294117647 188.8235294117647 176.4705882352941 188.8235294117647 197.6470588235294S171.1764705882353 236.4705882352941 150 236.4705882352941S111.1764705882353 218.8235294117647 111.1764705882353 197.6470588235294S128.8235294117647 158.8235294117647 150 158.8235294117647zM150 225C165 225 177.3529411764706 212.6470588235294 177.3529411764706 197.6470588235294S165 170.2941176470588 150 170.2941176470588S122.6470588235294 182.6470588235294 122.6470588235294 197.6470588235294S135 225 150 225zM150 1.7647058823529L237.3529411764706 121.764705882353C270 163.2352941176471 265.5882352941176 231.1764705882354 226.764705882353 267.3529411764706C206.4705882352941 286.764705882353 178.2352941176471 297.3529411764706 149.1176470588235 297.3529411764706S92.6470588235294 286.764705882353 71.4705882352941 267.3529411764706C34.4117647058824 231.1764705882353 30 163.2352941176471 62.6470588235294 121.7647058823529L150 1.7647058823529zM80.2941176470588 260.2941176470589C98.8235294117647 277.9411764705883 123.5294117647059 287.6470588235294 150 287.6470588235294S201.1764705882353 277.9411764705883 219.7058823529412 260.2941176470589C254.1176470588236 227.6470588235294 258.5294117647059 165.8823529411765 228.5294117647059 128.8235294117647L150 21.1764705882352L71.4705882352941 127.9411764705882C42.3529411764706 165.8823529411765 45.8823529411765 227.6470588235294 80.2941176470588 260.2941176470589z" />
112
+ <glyph glyph-name="pinterest"
113
+ unicode="&#xF123;"
114
+ horiz-adv-x="300" d="M150 4C134 4 120 6 106 10C112 20 120 36 124 48C126 54 134 82 134 82C138 72 152 66 168 66C212 66 244 106 244 156C244 204 204 240 154 240C90 242 58 200 58 154C58 132 70 106 88 98C90 96 92 98 92 100C92 102 94 112 96 116C96 118 96 118 96 120C88 128 84 140 84 152C84 184 108 216 150 216C186 216 210 192 210 156C210 116 190 90 164 90C150 90 140 102 142 116C146 134 154 152 154 164C154 176 148 184 136 184C122 184 110 168 110 148C110 136 114 126 114 126S100 66 98 54C96 42 96 24 98 12C44 34 6 86 6 148C6 228.0000000000001 72 294 152 294S298 228.0000000000001 298 148S230 4 150 4z" />
115
+ <glyph glyph-name="plus"
116
+ unicode="&#xF124;"
117
+ horiz-adv-x="300" d="M286.6666666666667 166.6666666666667H166.6666666666667V286.6666666666667C166.6666666666667 293.3333333333333 160 300 153.3333333333334 300H146.6666666666667C140 300 133.3333333333334 293.3333333333333 133.3333333333334 286.6666666666667V166.6666666666667H13.3333333333333C6.6666666666667 166.6666666666667 0 160 0 153.3333333333333V146.6666666666666C0 140 6.6666666666667 133.3333333333333 13.3333333333333 133.3333333333333H133.3333333333334V13.3333333333333C133.3333333333334 6.6666666666666 140 0 146.6666666666667 0H153.3333333333334C160 0 166.6666666666667 6.6666666666666 166.6666666666667 13.3333333333333V133.3333333333333H286.6666666666668C293.3333333333334 133.3333333333333 300.0000000000001 140 300.0000000000001 146.6666666666667V153.3333333333333C300 160 293.3333333333334 166.6666666666667 286.6666666666667 166.6666666666667z" />
118
+ <glyph glyph-name="search"
119
+ unicode="&#xF125;"
120
+ horiz-adv-x="300" d="M16.9228846666667 193.0771153333333C16.9228846666667 242.7034615 57.2965385 283.0771153333333 106.9228846666667 283.0771153333333C156.5492308333333 283.0771153333333 196.922885 242.7034615 196.922885 193.0771153333333C196.922885 143.4507691666667 156.5492308333333 103.077115 106.9228846666667 103.077115C57.2965385 103.077115 16.9228846666667 143.4507691666667 16.9228846666667 193.0771153333333M297.514615 14.4375L188.2309616666667 123.72173C204.1926916666667 142.4065385 213.84577 166.634423 213.84577 193.0771153333333C213.84577 252.0346153333334 165.8803846666667 300 106.9228846666667 300C47.9653846666667 300 0 252.0346153333334 0 193.0771153333333C0 134.1196153333333 47.9653846666667 86.15423 106.9228846666667 86.15423C133.3598076666667 86.15423 157.581923 95.80327 176.265 111.7580766666667L285.557885 2.4640383333333C287.1646150000001 0.8751916666667 289.28827 0 291.53827 0C293.7980766666667 0 295.9205766666667 0.8780766666666 297.514615 2.47327C300.8134616666667 5.772115 300.8134616666667 11.1392299999999 297.514615 14.4375" />
121
+ <glyph glyph-name="share"
122
+ unicode="&#xF126;"
123
+ horiz-adv-x="300" d="M233.225806451613 107.4193548387097C219.6774193548388 107.4193548387097 207.0967741935484 102.5806451612903 198.3870967741936 92.9032258064516C196.4516129032258 90.9677419354839 194.5161290322581 89.0322580645162 192.5806451612903 86.1290322580645L114.1935483870968 133.5483870967742C116.1290322580645 139.3548387096775 117.0967741935484 144.1935483870968 117.0967741935484 150C117.0967741935484 155.8064516129033 116.1290322580645 161.6129032258065 114.1935483870968 166.4516129032258L192.5806451612903 213.8709677419355C202.258064516129 200.3225806451613 216.7741935483871 192.5806451612903 233.2258064516129 192.5806451612903C260.3225806451613 192.5806451612903 283.5483870967742 214.8387096774194 283.5483870967742 242.9032258064517C283.5483870967742 270 261.2903225806451 293.225806451613 233.2258064516129 293.225806451613S182.9032258064516 270.9677419354839 182.9032258064516 242.9032258064517C182.9032258064516 237.0967741935484 183.8709677419355 232.2580645161291 185.8064516129032 227.4193548387097L107.4193548387097 180C97.741935483871 192.5806451612903 83.2258064516129 200.3225806451613 66.7741935483871 200.3225806451613C39.6774193548387 200.3225806451613 16.4516129032258 178.0645161290323 16.4516129032258 150C16.4516129032258 122.9032258064516 38.7096774193548 99.6774193548387 66.7741935483871 99.6774193548387C83.2258064516129 99.6774193548387 97.741935483871 107.4193548387097 107.4193548387097 120L185.8064516129032 72.5806451612903C183.8709677419355 67.741935483871 182.9032258064516 61.9354838709677 182.9032258064516 57.0967741935484C182.9032258064516 43.5483870967742 187.741935483871 30.9677419354838 197.4193548387097 21.2903225806451C207.0967741935484 11.6129032258065 219.6774193548387 6.7741935483871 232.258064516129 6.7741935483871C245.8064516129033 6.7741935483871 258.3870967741936 11.6129032258065 267.0967741935484 21.2903225806451C276.7741935483872 30.9677419354838 281.6129032258065 43.5483870967742 281.6129032258065 57.0967741935484C281.6129032258065 70.6451612903225 276.7741935483872 83.2258064516129 267.0967741935484 92.9032258064516C259.3548387096775 101.6129032258064 246.7741935483871 107.4193548387097 233.225806451613 107.4193548387097zM269.0322580645162 57.0967741935484C269.0322580645162 47.4193548387097 265.1612903225807 38.7096774193548 258.3870967741936 31.9354838709677C251.6129032258065 25.1612903225806 242.9032258064516 21.2903225806451 233.2258064516129 21.2903225806451C233.2258064516129 21.2903225806451 233.2258064516129 21.2903225806451 233.2258064516129 21.2903225806451C223.5483870967742 21.2903225806451 214.8387096774194 25.1612903225806 208.0645161290322 31.9354838709677C201.2903225806452 38.7096774193548 197.4193548387096 47.4193548387097 197.4193548387096 57.0967741935484S201.2903225806451 75.4838709677419 208.0645161290322 82.258064516129C214.8387096774193 89.0322580645161 223.5483870967742 92.9032258064516 233.2258064516129 92.9032258064516C242.9032258064516 92.9032258064516 251.6129032258065 89.0322580645162 258.3870967741936 82.258064516129C265.1612903225806 75.4838709677419 269.0322580645162 66.7741935483871 269.0322580645162 57.0967741935484zM197.4193548387097 242.9032258064516C197.4193548387097 262.258064516129 212.9032258064516 278.7096774193548 233.2258064516129 278.7096774193548C252.5806451612903 278.7096774193548 269.0322580645161 262.258064516129 269.0322580645161 242.9032258064516C269.0322580645161 223.5483870967742 253.5483870967742 207.0967741935484 233.2258064516129 207.0967741935484C213.8709677419355 207.0967741935484 197.4193548387097 223.5483870967742 197.4193548387097 242.9032258064516zM102.5806451612903 150C102.5806451612903 130.6451612903226 87.0967741935484 114.1935483870968 66.7741935483871 114.1935483870968S30.9677419354839 130.6451612903226 30.9677419354839 150C30.9677419354839 169.3548387096774 46.4516129032258 185.8064516129032 66.7741935483871 185.8064516129032S102.5806451612903 170.3225806451613 102.5806451612903 150z" />
124
+ <glyph glyph-name="spinner"
125
+ unicode="&#xF127;"
126
+ horiz-adv-x="300" d="M248.3333333333334 248.3333333333333L238.3333333333334 238.3333333333333C235.0000000000001 235 235.0000000000001 228.3333333333333 238.3333333333334 225C278.3333333333333 178.3333333333333 275 108.3333333333333 230.0000000000001 65C185 21.6666666666667 111.6666666666667 21.6666666666667 66.6666666666667 65C21.6666666666667 108.3333333333333 20 178.3333333333333 58.3333333333333 225C61.6666666666667 228.3333333333333 61.6666666666667 235 58.3333333333333 238.3333333333333L51.6666666666667 248.3333333333333C48.3333333333333 251.6666666666667 41.6666666666667 251.6666666666667 36.6666666666667 248.3333333333333C-15 188.3333333333333 -11.6666666666667 96.6666666666667 46.6666666666667 40C103.3333333333333 -13.3333333333334 195 -13.3333333333334 253.3333333333334 40C311.6666666666668 96.6666666666667 315.0000000000001 188.3333333333334 263.3333333333334 248.3333333333334C260 253.3333333333334 253.3333333333334 253.3333333333334 248.3333333333334 248.3333333333333z" />
127
+ <glyph glyph-name="store-pin"
128
+ unicode="&#xF128;"
129
+ horiz-adv-x="300" d="M150 169.9999999411765C169.3000000588236 169.9999999411765 184.9999994117647 185.7049999411765 184.9999994117647 205.0000000588235C184.9999994117647 224.295 169.3000000588236 240 150 240C130.6999999411765 240 115.0000000588236 224.295 115.0000000588236 205.0000000588235C115.0000000588236 185.7049999411765 130.6999999411765 169.9999999411765 150 169.9999999411765zM150 229.9999999411765C163.785 229.9999999411765 175.0000000588235 218.7850000588235 175.0000000588235 205.0000000588235C175.0000000588235 191.2150000588235 163.785 180 150 180C136.215 180 124.9999999411765 191.2150000588235 124.9999999411765 205.0000000588235C124.9999999411765 218.7850000588235 136.215 229.9999999411765 150 229.9999999411765zM149.115 26.2150005882353L225.8200005882353 136.9999999411765C254.5900005882353 175.3549999411765 250.4299994117648 238.3999999411765 216.915 271.9099999411765C198.8050005882353 290.025 174.7249999411765 300 149.115 300C123.5050000588235 300 99.4249999411765 290.025 81.315 271.9150000588235C47.8000000588235 238.4050000588236 43.6399999411765 175.3600000588235 72.2950000588235 137.1550000588235L149.115 26.2150005882353zM88.3849999411765 264.8449999411765C104.61 281.0650000588236 126.1750000588235 289.9999999941177 149.115 289.9999999941177C172.0549999411765 289.9999999941177 193.62 281.0650000588236 209.8450005882353 264.8449999411765C240.0949994117647 234.6 243.8200005882353 177.66 217.71 142.8499999411765L149.115 43.785L80.4100000588235 142.9999999411765C54.4099999411765 177.66 58.14 234.6 88.3849999411765 264.8449999411765zM210.585 84.9649994117647C207.8350005882353 85.3000005882353 205.3549994117647 83.3299994117647 205.035 80.5849994117647C204.7150005882353 77.8399994117647 206.6749994117647 75.3550005882353 209.415 75.0349994117647C261.9949994117647 68.8450005882353 289.9999994117648 52.1650005882353 289.9999994117648 42.4999994117647C289.9999994117648 28.9300005882353 236.7400005882353 10.0000005882353 150 10.0000005882353C63.2599999411765 10.0000005882353 10.0000000058824 28.9300005882353 10.0000000058824 42.4999994117647C10.0000000058824 52.1650005882353 38.0050000588235 68.8450005882353 90.585 75.0349994117647C93.3250000588235 75.3550005882353 95.2849999411765 77.8450005882353 94.965 80.5849994117647C94.6399999411765 83.3299994117647 92.16 85.3099994117647 89.415 84.9649994117647C36.7699999411765 78.765 0 61.305 0 42.4999994117647C0 21.3799994117647 51.525 0 150 0C248.475 0 300 21.3799994117647 300 42.4999994117647C300 61.305 263.2300005882354 78.765 210.585 84.9649994117647z" />
130
+ <glyph glyph-name="track-order"
131
+ unicode="&#xF129;"
132
+ horiz-adv-x="300" d="M75 115C55.668945 115 40 99.331055 40 80S55.668945 45 75 45S110 60.668945 110 80S94.331055 115 75 115zM75 55C61.1938475 55 50 66.1938475 50 80S61.1938475 105 75 105S100 93.8061525 100 80S88.8061525 55 75 55zM75 55M75 95C66.71630875 95 60 88.28369125 60 80S66.71630875 65 75 65S90 71.71630875 90 80S83.28369125 95 75 95zM75 75C72.238769375 75 70 77.238769375 70 80S72.238769375 85 75 85S80 82.761230625 80 80S77.761230625 75 75 75zM75 75M235 115C215.668945 115 200 99.331055 200 80S215.668945 45 235 45S270 60.668945 270 80S254.331055 115 235 115zM235 55C221.1938475 55 210 66.1938475 210 80S221.1938475 105 235 105S260 93.8061525 260 80S248.8061525 55 235 55zM235 55M235 95C226.71630875 95 220 88.28369125 220 80S226.71630875 65 235 65S250 71.71630875 250 80S243.28369125 95 235 95zM235 75C232.238769375 75 230 77.238769375 230 80S232.238769375 85 235 85S240 82.761230625 240 80S237.761230625 75 235 75zM235 75M240 155H230V175C230 177.761230625 227.761230625 180 225 180S220 177.761230625 220 175V155C220 149.47753875 224.47753875 145 230 145H240C242.761230625 145 245 147.238769375 245 150S242.761230625 155 240 155zM240 155M90 225C70.668945 225 55 209.331055 55 190C55 172.700195 68.950195 130 90 130S125 172.700195 125 190C125 209.331055 109.331055 225 90 225zM90 140C78.50097625 140 65 173.04931625 65 190C65 203.8061525 76.1938475 215 90 215S115 203.8061525 115 190C115 173.04931625 101.49902375 140 90 140zM90 140M90 205C81.71630875 205 75 198.28369125 75 190S81.71630875 175 90 175S105 181.71630875 105 190S98.28369125 205 90 205zM90 185C87.238769375 185 85 187.238769375 85 190S87.238769375 195 90 195S95 192.761230625 95 190S92.761230625 185 90 185zM90 185M120 140C120 137.238769375 122.238769375 135 125 135H145C147.761230625 135 150 137.238769375 150 140S147.761230625 145 145 145H125C122.238769375 145 120 142.761230625 120 140zM120 140M60 140C60 142.761230625 57.761230625 145 55 145H35C32.238769375 145 30 142.761230625 30 140S32.238769375 135 35 135H55C57.761230625 135 60 137.238769375 60 140zM60 140M275 135H268.75L251.89941375 194.150390625C250.046386875 200.58837875 244.147949375 205.01464875 237.451171875 205H180V230C180 243.8061525 168.8061525 255 155 255H20C8.955078125 255 0 246.044921875 0 235V95C0 83.955078125 8.955078125 75 20 75H25C27.761230625 75 30 77.238769375 30 80S27.761230625 85 25 85H20C14.47753875 85 10 89.47753875 10 95V235C10 240.52246125 14.47753875 245 20 245H155C163.28369125 245 170 238.28369125 170 230V85H125C122.238769375 85 120 82.761230625 120 80S122.238769375 75 125 75H185C187.761230625 75 190 77.238769375 190 80S187.761230625 85 185 85H180V125H275C283.28369125 125 290 118.28369125 290 110V85H285C282.238769375 85 280 82.761230625 280 80S282.238769375 75 285 75H295C297.761230625 75 300 77.238769375 300 80V110C300 123.8061525 288.8061525 135 275 135zM180 195H200V150C200 147.238769375 202.238769375 145 205 145S210 147.238769375 210 150V195H237.451171875C239.74609375 195.090331875 241.809081875 193.605956875 242.451171875 191.398925625L258.349609375 135H180zM180 195" />
133
+ <glyph glyph-name="twitter"
134
+ unicode="&#xF12A;"
135
+ horiz-adv-x="300" d="M270 204C270 122 208 30 96 30C62 30 28 40 2 58C6 58 12 58 16 58C44 58 72 68 92 84C64 84 42 102 34 126C38 126 42 126 46 126C52 126 58 126 62 128C34 134 12 158 12 188V188C20 182 30 178 40 178C24 190 12 208 12 230C12 240 16 252 20 260C50 222 96 198 146 196C146 200 144 206 144 210C144 244 172 272 206 272C224 272 240 264 250 252C264 254 278 260 290 266C286 252 276 240 262 232C274 234 286 236 298 242C290 230 280 218 268 210C270 208 270 206 270 204z" />
136
+ <glyph glyph-name="user"
137
+ unicode="&#xF12B;"
138
+ horiz-adv-x="300" d="M270 0H255.0000000000001V67.5C255.0000000000001 88.75 238.7500000000001 105 217.5 105H82.5C61.25 105 45 88.75 45 67.5V0H30V67.5C30 96.25 53.75 120 82.5 120H217.5C246.25 120 270 96.25 270 67.5V0zM150 135C105 135 67.5 172.5 67.5 217.5S105 300 150 300S232.5000000000001 262.5 232.5000000000001 217.5C232.5000000000001 196.25 223.75 175 208.75 158.75S171.25 135 150 135zM150 285C112.5 285 82.5 255 82.5 217.5S112.5 150 150 150S217.5 180 217.5 217.5S187.5 285 150 285z" />
139
+ <glyph glyph-name="whatsapp"
140
+ unicode="&#xF12C;"
141
+ horiz-adv-x="300" d="M150.0375 300H149.9625C67.25625 300 0 232.725 0 150C0 117.1875 10.575 86.775 28.55625 62.08125L9.8625 6.35625L67.51875 24.7875C91.2375 9.075 119.53125 0 150.0375 0C232.74375 0 300 67.29375 300 150S232.74375 300 150.0375 300zM237.31875 88.18125C233.7 77.9625 219.3375 69.4875 207.88125 67.0125C200.04375 65.34375 189.80625 64.0125 155.34375 78.3C111.2625 96.5625 82.875 141.35625 80.6625 144.2625C78.54375 147.16875 62.85 167.98125 62.85 189.50625S73.78125 221.5125 78.1875 226.0125C81.80625 229.70625 87.7875 231.39375 93.525 231.39375C95.38125 231.39375 97.05 231.3 98.55 231.225C102.95625 231.0375 105.16875 230.7750000000001 108.075 223.81875C111.69375 215.1 120.50625 193.5750000000001 121.55625 191.3625C122.625 189.15 123.69375 186.15 122.19375 183.24375C120.7875 180.24375 119.55 178.9125 117.3375 176.3625C115.125 173.8125 113.025 171.8625 110.8125 169.125C108.7875 166.74375 106.5 164.19375 109.05 159.7875C111.6 155.475 120.4125 141.09375 133.3875 129.54375C150.13125 114.6375 163.70625 109.875 168.5625 107.85C172.18125 106.35 176.49375 106.70625 179.1375 109.51875C182.49375 113.1375 186.6375 119.1375 190.85625 125.04375C193.85625 129.28125 197.64375 129.80625 201.61875 128.30625C205.66875 126.9 227.1 116.30625 231.50625 114.1125C235.9125 111.9 238.81875 110.85 239.8875 108.99375C240.9375 107.1375 240.9375 98.41875 237.31875 88.18125z" />
142
+ </font>
143
+ </defs>
144
+ </svg>