@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,528 @@
1
+ <svg width="0" height="0" class="hidden">
2
+ <symbol version="1.1" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 0 42 42" id="akinon">
3
+ <title>Group 3</title>
4
+ <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Group-3" transform="translate(-84.000000, -68.000000)" filter="url(#filter-1)">
6
+ <g transform="translate(84.000000, 68.000000)">
7
+ <path d="M25.9152534,19.9450884 C22.3533177,19.9450884 19.4661061,22.8815846 19.4661061,26.5036714 C19.4661061,30.1257582 22.3533177,33.0622545 25.9152534,33.0622545 C29.4769025,33.0622545 32.3644007,30.1257582 32.3644007,26.5036714 C32.3644007,22.8815846 29.4769025,19.9450884 25.9152534,19.9450884 L25.9152534,19.9450884 Z M36.9152057,31.8304068 C34.9563847,36.0063296 30.7675918,38.8921061 25.9152534,38.8921061 C19.1872164,38.8921061 13.7335308,33.3455853 13.7335308,26.5036714 C13.7335308,19.6617576 19.1872164,14.1152367 25.9152534,14.1152367 C26.6842784,14.1152367 27.4352458,14.1910248 28.164716,14.3294838 L21.0001433,0 L0,42 L42,42 L36.9152057,31.8304068 Z" id="Fill-1" fill="#080200"></path>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </symbol>
12
+ <symbol version="1.1" id="arrow-up" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 42 42">
13
+ <g id="_x30_2-urun-liste">
14
+ <g id="_x30_2_x5F_urunliste_x5F_dektop_x5F_filtreler" transform="translate(-1499.000000, -2191.000000)">
15
+ <g id="Group-2" transform="translate(1479.000000, 2181.000000)">
16
+ <path id="Path" d="M42.8,50V15.9l5.6,5.7c0.6,0.6,1.6,0.6,2.3,0c0.6-0.6,0.6-1.6,0-2.3l-8.4-8.4c0,0,0,0,0,0
17
+ c-0.6-0.6-1.7-0.6-2.3,0c0,0,0,0,0,0l-8.4,8.4c-0.6,0.6-0.6,1.7,0,2.3c0.6,0.6,1.7,0.6,2.3,0l5.6-5.7V50c0,0.9,0.7,1.6,1.6,1.6
18
+ S42.8,50.9,42.8,50z"></path>
19
+ </g>
20
+ </g>
21
+ </g>
22
+ </symbol>
23
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="-21 0 512 512" id="bell">
24
+ <path d="m453.332031 229.332031c-8.832031 0-16-7.167969-16-16 0-61.269531-23.847656-118.847656-67.15625-162.175781-6.25-6.25-6.25-16.382812 0-22.632812s16.382813-6.25 22.636719 0c49.34375 49.363281 76.519531 115.007812 76.519531 184.808593 0 8.832031-7.167969 16-16 16zm0 0"></path>
25
+ <path d="m16 229.332031c-8.832031 0-16-7.167969-16-16 0-69.800781 27.179688-135.445312 76.542969-184.789062 6.25-6.25 16.386719-6.25 22.636719 0s6.25 16.386719 0 22.636719c-43.328126 43.304687-67.179688 100.882812-67.179688 162.152343 0 8.832031-7.167969 16-16 16zm0 0"></path>
26
+ <path d="m234.667969 512c-44.117188 0-80-35.882812-80-80 0-8.832031 7.167969-16 16-16s16 7.167969 16 16c0 26.476562 21.523437 48 48 48 26.472656 0 48-21.523438 48-48 0-8.832031 7.167969-16 16-16s16 7.167969 16 16c0 44.117188-35.882813 80-80 80zm0 0"></path>
27
+ <path d="m410.667969 448h-352c-20.589844 0-37.335938-16.746094-37.335938-37.332031 0-10.925781 4.757813-21.269531 13.058594-28.375 32.445313-27.414063 50.941406-67.261719 50.941406-109.480469v-59.480469c0-82.34375 66.988281-149.332031 149.335938-149.332031 82.34375 0 149.332031 66.988281 149.332031 149.332031v59.480469c0 42.21875 18.496094 82.066406 50.730469 109.332031 8.511719 7.253907 13.269531 17.597657 13.269531 28.523438 0 20.585937-16.746094 37.332031-37.332031 37.332031zm-176-352c-64.707031 0-117.335938 52.628906-117.335938 117.332031v59.480469c0 51.644531-22.632812 100.414062-62.078125 133.757812-.746094.640626-1.921875 1.964844-1.921875 4.097657 0 2.898437 2.433594 5.332031 5.335938 5.332031h352c2.898437 0 5.332031-2.433594 5.332031-5.332031 0-2.132813-1.171875-3.457031-1.878906-4.054688-39.488282-33.386719-62.121094-82.15625-62.121094-133.800781v-59.480469c0-64.703125-52.628906-117.332031-117.332031-117.332031zm0 0"></path>
28
+ <path d="m234.667969 96c-8.832031 0-16-7.167969-16-16v-64c0-8.832031 7.167969-16 16-16s16 7.167969 16 16v64c0 8.832031-7.167969 16-16 16zm0 0"></path>
29
+ </symbol>
30
+ <symbol version="1.1" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 0 18 18" id="cart">
31
+ <title>Group 3</title>
32
+ <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
33
+ <g id="header/mobile" transform="translate(-339.000000, -16.000000)">
34
+ <g id="Group-3" transform="translate(339.000000, 16.000000)">
35
+ <g id="Clip-2"></g>
36
+ <path d="M8.85138934,0.885245902 C10.5598402,0.885245902 11.94975,2.27515574 11.94975,3.98360656 L11.94975,4.72131148 L5.75302869,4.72131148 L5.75302869,3.98360656 C5.75302869,2.27515574 7.14293852,0.885245902 8.85138934,0.885245902 L8.85138934,0.885245902 Z M4.86778279,5.60655738 L4.86778279,7.52459016 C4.86778279,7.76865984 5.06633607,7.96721311 5.31040574,7.96721311 C5.55447541,7.96721311 5.75302869,7.76865984 5.75302869,7.52459016 L5.75302869,5.60655738 L11.94975,5.60655738 L11.94975,7.52459016 C11.94975,7.76865984 12.1483033,7.96721311 12.392373,7.96721311 C12.6364795,7.96721311 12.8349959,7.76865984 12.8349959,7.52459016 L12.8349959,5.60655738 L15.5403074,5.60655738 L16.8122951,16.29 C16.837082,16.4991762 16.7711311,16.7094221 16.6312254,16.8668484 C16.4916148,17.0240902 16.290959,17.114459 16.0808975,17.1147541 L1.62309836,17.1147541 C1.21643852,17.1147541 0.885356557,16.7839672 0.885356557,16.3773443 C0.885356557,16.3482049 0.887090164,16.3188074 0.890520492,16.2900369 L2.16247131,5.60655738 L4.86778279,5.60655738 Z M17.6927828,16.185209 L17.6761844,16.0581025 L16.3728811,5.1117418 C16.3464713,4.88913934 16.1575451,4.72131148 15.9333566,4.72131148 L12.8349959,4.72131148 L12.8349959,3.98360656 C12.8349959,1.78705328 11.0479426,0 8.85138934,0 C6.65483607,0 4.86778279,1.78705328 4.86778279,3.98360656 L4.86778279,4.72131148 L1.76942213,4.72131148 C1.54527049,4.72131148 1.35634426,4.88913934 1.32989754,5.11166803 L0.0114713115,16.1852459 C-0.0942786885,17.0738484 0.542618852,17.8828525 1.43122131,17.9886025 C1.49447951,17.9961639 1.55884426,18 1.62243443,18 L16.0812664,18 C16.975918,18 17.7041437,17.2720697 17.7041437,16.3774549 C17.7041437,16.313459 17.7003811,16.2487623 17.6927828,16.185209 L17.6927828,16.185209 Z" id="Fill-1" fill="#000000" mask="url(#mask-2)"></path>
37
+ </g>
38
+ </g>
39
+ </g>
40
+ </symbol>
41
+ <symbol version="1.1" id="check" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 15 15">
42
+ <g id="_x30_6-checkout">
43
+ <g id="check" transform="translate(-312.000000, -209.000000)">
44
+ <g transform="translate(312.000000, 209.000000)">
45
+ <g id="path-1"></g>
46
+ <path id="Fill-1" d="M5.3,13c-0.2,0-0.4-0.1-0.6-0.3L0.3,8.2c-0.3-0.4-0.3-0.9,0-1.3c0.2-0.2,0.4-0.3,0.6-0.3
47
+ s0.4,0.1,0.6,0.3l3.8,4l8.2-8.6C13.7,2.1,13.9,2,14.1,2s0.4,0.1,0.6,0.3c0.3,0.4,0.3,0.9,0,1.3l-8.9,9.2C5.7,12.9,5.5,13,5.3,13"></path>
48
+ </g>
49
+ </g>
50
+ </g>
51
+ </symbol>
52
+ <symbol version="1.1" id="chevron-down" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 12 12">
53
+ <g id="Symbols">
54
+ <g id="header_x2F_main" transform="translate(-173.000000, -15.000000)">
55
+ <path id="XMLID_89_" d="M184.1,17.9L179,23l-5.1-5.1c-0.2-0.2-0.6-0.2-0.8,0c-0.2,0.2-0.2,0.6,0,0.8l5.5,5.5
56
+ c0.1,0.1,0.2,0.2,0.4,0.2c0.1,0,0.3-0.1,0.4-0.2l5.5-5.5c0.2-0.2,0.2-0.6,0-0.8C184.6,17.7,184.3,17.7,184.1,17.9z"></path>
57
+ </g>
58
+ </g>
59
+ </symbol>
60
+ <symbol version="1.1" id="chevron-end" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 12 12">
61
+ <g id="Symbols">
62
+ <g id="header_x2F_main" transform="translate(-173.000000, -15.000000)">
63
+ <path id="XMLID_89_" d="M175.9,26.1L181,21l-5.1-5.1c-0.2-0.2-0.2-0.6,0-0.8c0.2-0.2,0.6-0.2,0.8,0l5.5,5.5
64
+ c0.1,0.1,0.2,0.2,0.2,0.4c0,0.1-0.1,0.3-0.2,0.4l-5.5,5.5c-0.2,0.2-0.6,0.2-0.8,0C175.7,26.6,175.7,26.3,175.9,26.1z"></path>
65
+ </g>
66
+ </g>
67
+ </symbol>
68
+ <symbol version="1.1" id="chevron-start" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 12 12">
69
+ <g id="Symbols">
70
+ <g id="header_x2F_main" transform="translate(-173.000000, -15.000000)">
71
+ <path id="XMLID_89_" d="M182.1,26.1L177,21l5.1-5.1c0.2-0.2,0.2-0.6,0-0.8c-0.2-0.2-0.6-0.2-0.8,0l-5.5,5.5
72
+ c-0.1,0.1-0.2,0.2-0.2,0.4c0,0.1,0.1,0.3,0.2,0.4l5.5,5.5c0.2,0.2,0.6,0.2,0.8,0C182.3,26.6,182.3,26.3,182.1,26.1z"></path>
73
+ </g>
74
+ </g>
75
+ </symbol>
76
+ <symbol version="1.1" id="chevron-up" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 12 12">
77
+ <g id="Symbols">
78
+ <g id="header_x2F_main" transform="translate(-173.000000, -15.000000)">
79
+ <path id="XMLID_89_" d="M184.1,24.1L179,19l-5.1,5.1c-0.2,0.2-0.6,0.2-0.8,0c-0.2-0.2-0.2-0.6,0-0.8l5.5-5.5
80
+ c0.1-0.1,0.2-0.2,0.4-0.2c0.1,0,0.3,0.1,0.4,0.2l5.5,5.5c0.2,0.2,0.2,0.6,0,0.8C184.6,24.3,184.3,24.3,184.1,24.1z"></path>
81
+ </g>
82
+ </g>
83
+ </symbol>
84
+ <symbol version="1.1" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 0 16 16" id="close">
85
+ <title>Shape 2</title>
86
+ <g id="03-urun-detay" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
87
+ <g id="03_urundetay_magazadabul_01_mobil" transform="translate(-322.000000, -202.000000)" fill="#4A4A4A" fill-rule="nonzero">
88
+ <g id="Group-6" transform="translate(18.000000, 178.000000)">
89
+ <g id="Shape-2" transform="translate(304.000000, 24.000000)">
90
+ <path d="M9.08517915,7.99987215 L15.7752421,1.3099161 C16.0749193,1.01024371 16.0749193,0.524426688 15.7752421,0.224754295 C15.4755649,-0.0749180983 14.9897401,-0.0749180983 14.690063,0.224754295 L8,6.91471035 L1.30993703,0.225777068 C1.01025985,-0.0738953256 0.524435069,-0.0738953256 0.224757887,0.225777068 C-0.0749192956,0.525449461 -0.0749192956,1.01126648 0.224757887,1.31093887 L6.91482085,8.00089493 L0.225780676,14.6898282 C-0.0738965065,14.9895006 -0.0738965065,15.4753176 0.225780676,15.77499 C0.376130661,15.9243148 0.571483364,16 0.767858855,16 C0.964234347,16 1.16060984,15.9253376 1.30993703,15.77499 L8,9.08503396 L14.690063,15.77499 C14.840413,15.9243148 15.0357657,16 15.2321411,16 C15.4285166,16 15.6248921,15.9253376 15.7742193,15.77499 C16.0738965,15.4753176 16.0738965,14.9895006 15.7742193,14.6898282 L9.08517915,7.99987215 Z" id="Shape"></path>
91
+ </g>
92
+ </g>
93
+ </g>
94
+ </g>
95
+ </symbol>
96
+ <symbol version="1.1" id="cvc" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 18 18">
97
+ <g id="_x30_6-checkout">
98
+ <g id="_x30_5_x5F_checkout_x5F_02_x5F_odemebilgileri" transform="translate(-485.000000, -548.000000)">
99
+ <g id="Group-5" transform="translate(485.000000, 548.000000)">
100
+ <g id="Rectangle">
101
+ <path d="M8.8,11h-7V9h7V11z M1.9,10.9h6.8V9.1H1.9V10.9z"></path>
102
+ </g>
103
+ <g>
104
+ <path d="M9.8,9v2h3V9H9.8z M12.7,10.9H9.9V9.1h2.8V10.9z"></path>
105
+ <polygon points="10.7,10.4 10.7,10.4 10.7,9.7 10.5,9.7 10.5,9.8 10.7,9.8 "></polygon>
106
+ <path d="M11.3,10C11.2,10,11.2,10,11.3,10l-0.4,0.4h0.5v-0.1h-0.3L11.3,10C11.3,10.1,11.3,10,11.3,10
107
+ c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0-0.1s0,0,0-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1,0.1-0.1,0.1
108
+ c0,0,0,0.1,0,0.1H11c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1s0,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0
109
+ C11.3,9.9,11.3,9.9,11.3,10C11.3,10,11.3,10,11.3,10z"></path>
110
+ <path d="M11.8,10.3C11.8,10.3,11.7,10.3,11.8,10.3c-0.1,0-0.1,0-0.1,0s0,0,0,0s0,0,0-0.1h-0.1c0,0,0,0.1,0,0.1
111
+ c0,0,0,0,0,0.1c0,0,0,0,0.1,0S11.7,10.4,11.8,10.3C11.8,10.4,11.8,10.4,11.8,10.3c0.1,0.1,0.1,0,0.1,0c0,0,0-0.1,0-0.1
112
+ c0,0,0-0.1,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0-0.1,0c0,0,0,0,0.1,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1-0.1-0.1
113
+ c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0.1s0,0.1,0,0.1h0.1c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0.1,0
114
+ c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0v0v0v0c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0
115
+ c0,0,0,0,0,0.1C11.9,10.2,11.8,10.3,11.8,10.3C11.8,10.3,11.8,10.3,11.8,10.3z"></path>
116
+ </g>
117
+ <g id="credit-card-back-_x28_1_x29_">
118
+ <g transform="translate(-0.000000, 0.000000)">
119
+ <g id="Shape">
120
+ <path d="M17.3,3H0.7C0.5,3,0.4,3.2,0.4,3.3v1.8v2.2v7.4c0,0.2,0.1,0.3,0.3,0.3h16.7c0.2,0,0.3-0.1,0.3-0.3V7.3
121
+ V5.1V3.3C17.6,3.2,17.5,3,17.3,3z M17,3.7v1.1H1V3.7H17z M1,14.3V7.6h16v6.8L1,14.3L1,14.3z"></path>
122
+ </g>
123
+ <g id="Path">
124
+ <path d="M2,12.7L2,12.7c-0.2,0-0.4,0.1-0.4,0.3c0,0.2,0.1,0.3,0.3,0.3H2c0.2,0,0.3-0.1,0.3-0.3
125
+ C2.3,12.8,2.2,12.7,2,12.7z"></path>
126
+ </g>
127
+ <g id="Path_1_">
128
+ <path d="M2.9,12.7L2.9,12.7c-0.2,0-0.4,0.1-0.4,0.3c0,0.2,0.1,0.3,0.3,0.3h0.1c0.2,0,0.3-0.1,0.3-0.3
129
+ C3.2,12.8,3.1,12.7,2.9,12.7z"></path>
130
+ </g>
131
+ <g id="Path_2_">
132
+ <path d="M3.9,12.7L3.9,12.7c-0.2,0-0.4,0.1-0.4,0.3c0,0.2,0.1,0.3,0.3,0.3h0.1c0.2,0,0.3-0.1,0.3-0.3
133
+ C4.2,12.8,4,12.7,3.9,12.7z"></path>
134
+ </g>
135
+ <g id="Path_3_">
136
+ <path d="M13.5,12.7H4.8c-0.2,0-0.3,0.1-0.3,0.3c0,0.2,0.1,0.3,0.3,0.3h8.6c0.2,0,0.3-0.1,0.3-0.3
137
+ C13.8,12.8,13.6,12.7,13.5,12.7z"></path>
138
+ </g>
139
+ </g>
140
+ </g>
141
+ </g>
142
+ </g>
143
+ </g>
144
+ </symbol>
145
+ <symbol xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid" viewBox="143.1850341796875 -40.61250610351563 213.629931640625 231.22501220703126" id="default">
146
+ <g filter="url(#editing-stripe-bk)">
147
+ <g transform="translate(175.83499813079834, 120.5)">
148
+ <path d="M10.14 0L10.14-91L42.12-91L42.12-91Q54.47-91 60.52-83.46L60.52-83.46L60.52-83.46Q66.56-75.92 66.56-63.18L66.56-63.18L66.56-63.18Q66.56-54.99 65.26-48.43L65.26-48.43L65.26-48.43Q63.96-41.86 58.76-36.86L58.76-36.86L58.76-36.86Q53.56-31.85 43.03-31.85L43.03-31.85L17.42-31.85L17.42 0L10.14 0ZM43.16-39L43.16-39Q50.44-39 54.02-42.90L54.02-42.90L54.02-42.90Q57.59-46.80 58.44-51.74L58.44-51.74L58.44-51.74Q59.28-56.68 59.28-62.79L59.28-62.79L59.28-62.79Q59.28-73.45 54.86-78.78L54.86-78.78L54.86-78.78Q50.44-84.11 42.64-84.11L42.64-84.11L17.42-84.11L17.42-39L43.16-39ZM74.88 0L74.88-6.50L128.18-84.37L76.57-84.37L76.57-91L137.41-91L137.41-84.50L84.11-6.63L138.19-6.63L138.19 0L74.88 0Z" fill="#de530f"></path>
149
+ </g>
150
+ </g>
151
+ </symbol>
152
+ <symbol version="1.1" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 0 14 14" id="directions">
153
+ <title>road-sign</title>
154
+ <g id="03-urun-detay" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
155
+ <g id="03_urundetay_magazadabul_03_mobil" transform="translate(-75.000000, -563.000000)" fill="#000000" fill-rule="nonzero">
156
+ <g id="Group-6" transform="translate(48.000000, 549.000000)">
157
+ <g id="road-sign" transform="translate(27.000000, 14.000000)">
158
+ <path d="M8.00236719,1.67882422 C7.92832031,1.54721875 7.76160547,1.50051562 7.62997266,1.5745625 L7.61651953,1.58213672 C7.48491406,1.65618359 7.43821094,1.82289844 7.51225781,1.95453125 C7.56243359,2.04375391 7.65521094,2.09395703 7.75083203,2.09395703 C7.79622266,2.09395703 7.84226953,2.08260937 7.88465234,2.05879297 L7.89810547,2.05121875 C8.02971094,1.97717187 8.07641406,1.81045703 8.00236719,1.67882422 Z" id="Path"></path>
159
+ <path d="M13.9199102,2.48633984 L11.5136602,0.0800898438 C11.435457,0.00188671875 11.3178242,-0.0214921875 11.215668,0.0208359375 C11.1135117,0.0631367187 11.046875,0.162859375 11.046875,0.2734375 L11.046875,0.984375 L9.8984375,0.984375 C9.47630469,0.984375 9.05783594,1.04100391 8.65467969,1.15270312 C8.50915625,1.19303516 8.42387109,1.34369922 8.46417578,1.48922266 C8.50450781,1.63474609 8.65511719,1.71997656 8.80069531,1.67972656 C9.15630078,1.58120703 9.52566016,1.53125 9.8984375,1.53125 L11.3203125,1.53125 C11.471332,1.53125 11.59375,1.40883203 11.59375,1.2578125 L11.59375,0.933570313 L13.3398672,2.6796875 L11.59375,4.42580469 L11.59375,4.1015625 C11.59375,3.95054297 11.471332,3.828125 11.3203125,3.828125 L9.8984375,3.828125 C8.90331641,3.828125 8.09375,4.63769141 8.09375,5.6328125 L8.09375,9.18946875 C7.59286719,8.25324609 6.78100391,7.50739062 5.796875,7.09121875 L5.796875,5.6328125 C5.796875,4.49976953 6.24875781,3.44512109 7.06928906,2.66317187 C7.17860937,2.55899219 7.18276562,2.38590625 7.07858594,2.27658594 C6.97437891,2.16726562 6.80129297,2.16308203 6.692,2.26728906 C5.76212109,3.15347266 5.25,4.34869531 5.25,5.6328125 L5.25,6.89959375 C4.84979687,6.78696484 4.42791016,6.7265625 3.9921875,6.7265625 L2.953125,6.7265625 L2.953125,6.015625 C2.953125,5.90504687 2.88648828,5.80532422 2.78433203,5.76299609 C2.68217578,5.72066797 2.56451562,5.74410156 2.48633984,5.82225 L0.0800898437,8.2285 C-0.0266875,8.33527734 -0.0266875,8.50841797 0.0800898437,8.61522266 L2.48633984,11.0214727 C2.56454297,11.0996484 2.68214844,11.123082 2.78433203,11.0807266 C2.88651562,11.0383984 2.953125,10.9387031 2.953125,10.8280977 L2.953125,10.1171602 L3.9921875,10.1171602 C4.68573437,10.1171602 5.25,10.6814258 5.25,11.3749727 L5.25,13.7265352 C5.25,13.8775547 5.37241797,13.9999727 5.5234375,13.9999727 L8.3671875,13.9999727 C8.51820703,13.9999727 8.640625,13.8775547 8.640625,13.7265352 L8.640625,5.6328125 C8.640625,4.93926562 9.20489062,4.375 9.8984375,4.375 L11.046875,4.375 L11.046875,5.0859375 C11.046875,5.19651562 11.1135117,5.29623828 11.215668,5.33856641 C11.3178242,5.38089453 11.435457,5.35751562 11.5136602,5.2793125 L13.9199102,2.8730625 C14.0266875,2.76625781 14.0266875,2.59311719 13.9199102,2.48633984 Z M8.09375,13.453125 L7.328125,13.453125 L7.328125,11.6232266 C7.328125,11.472207 7.20570703,11.3497891 7.0546875,11.3497891 C6.90366797,11.3497891 6.78125,11.472207 6.78125,11.6232266 L6.78125,13.453125 L5.796875,13.453125 L5.796875,11.375 C5.796875,10.3798789 4.98730859,9.5703125 3.9921875,9.5703125 L2.6796875,9.5703125 C2.52866797,9.5703125 2.40625,9.69273047 2.40625,9.84375 L2.40625,10.1679922 L0.660132812,8.421875 L2.40625,6.67575781 L2.40625,7 C2.40625,7.15101953 2.52866797,7.2734375 2.6796875,7.2734375 L3.9921875,7.2734375 C6.25378906,7.2734375 8.09375,9.11339844 8.09375,11.375 L8.09375,13.453125 Z" id="Shape"></path>
160
+ <path d="M7.24800781,10.3742187 C7.19714844,10.3230859 7.12660156,10.2941016 7.0546875,10.2941016 C6.98277344,10.2941016 6.91222656,10.3230859 6.86136719,10.3742187 C6.81050781,10.4250781 6.78125,10.4953516 6.78125,10.5675391 C6.78125,10.6394531 6.81050781,10.71 6.86136719,10.7608594 C6.91222656,10.8117187 6.98277344,10.8409766 7.0546875,10.8409766 C7.12660156,10.8409766 7.19714844,10.8117187 7.24800781,10.7608594 C7.29886719,10.71 7.328125,10.6394531 7.328125,10.5675391 C7.328125,10.4953516 7.29886719,10.4250781 7.24800781,10.3742187 Z" id="Path"></path>
161
+ </g>
162
+ </g>
163
+ </g>
164
+ </g>
165
+ </symbol>
166
+ <symbol version="1.1" id="eye-off" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 41 41">
167
+ <path d="M40.8,20c-0.2-0.3-3.8-5.4-9.9-8.7l9.1-9.1c0.3-0.3,0.3-0.9,0-1.2c-0.3-0.3-0.9-0.3-1.2,0l-9.5,9.5c-2.6-1.2-5.6-2-8.9-2
168
+ C10,8.6,0.6,19.5,0.2,19.9c-0.3,0.3-0.3,0.8,0,1.1c0.3,0.3,4.4,5.1,10.1,8.4L0.7,39c-0.3,0.3-0.3,0.9,0,1.2c0.2,0.2,0.4,0.2,0.6,0.2
169
+ c0.2,0,0.4-0.1,0.6-0.2l10-10c2.6,1.3,5.5,2.2,8.6,2.2c10.5,0,19.9-10.9,20.3-11.4C41,20.8,41,20.3,40.8,20z M2,20.5
170
+ c2-2.2,10-10.2,18.5-10.2c2.8,0,5.3,0.6,7.5,1.6l-3.3,3.3c-1.2-0.9-2.6-1.5-4.2-1.5c-3.8,0-6.8,3.1-6.8,6.8c0,1.6,0.5,3,1.5,4.2
171
+ l-3.5,3.5C7,25.6,3.3,21.9,2,20.5z M25.6,20.5c0,2.8-2.3,5.1-5.1,5.1c-1.1,0-2.1-0.4-2.9-0.9l7.1-7.1C25.3,18.4,25.6,19.4,25.6,20.5
172
+ z M15.4,20.5c0-2.8,2.3-5.1,5.1-5.1c1.1,0,2.1,0.4,3,1l-7.1,7.1C15.7,22.6,15.4,21.6,15.4,20.5z M20.5,30.7c-2.5,0-5-0.7-7.3-1.8
173
+ l3.1-3.1c1.2,0.9,2.6,1.4,4.2,1.4c3.8,0,6.8-3.1,6.8-6.8c0-1.6-0.5-3-1.4-4.1l3.8-3.7c4.9,2.5,8.3,6.4,9.4,7.8
174
+ C37,22.6,29,30.7,20.5,30.7z"></path>
175
+ </symbol>
176
+ <symbol version="1.1" id="eye-on" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 41 41">
177
+ <g id="_x30_4-login-sign-up">
178
+ <g id="login_signup" transform="translate(-655.000000, -559.000000)">
179
+ <g id="Group" transform="translate(304.000000, 370.000000)">
180
+ <g id="Group-7" transform="translate(0.000000, 174.000000)">
181
+ <g id="visibility" transform="translate(351.000000, 15.000000)">
182
+ <path id="Shape" d="M40.8,20c-0.3-0.5-8.1-11.5-20.3-11.5C10,8.6,0.6,19.5,0.2,19.9c-0.3,0.3-0.3,0.8,0,1.1
183
+ c0.4,0.5,9.8,11.4,20.3,11.4s19.9-10.9,20.3-11.4C41,20.8,41,20.3,40.8,20z M20.5,30.7c-8.4,0-16.4-8-18.5-10.2
184
+ c2-2.2,10-10.2,18.5-10.2c9.9,0,16.8,8,18.5,10.2C37,22.6,29,30.7,20.5,30.7z"></path>
185
+ <path id="Shape_1_" d="M20.5,13.7c-3.8,0-6.8,3.1-6.8,6.8s3.1,6.8,6.8,6.8s6.8-3.1,6.8-6.8S24.2,13.7,20.5,13.7z M20.5,25.6
186
+ c-2.8,0-5.1-2.3-5.1-5.1s2.3-5.1,5.1-5.1s5.1,2.3,5.1,5.1S23.3,25.6,20.5,25.6z"></path>
187
+ </g>
188
+ </g>
189
+ </g>
190
+ </g>
191
+ </g>
192
+ </symbol>
193
+ <symbol version="1.1" id="facebook-login" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 20 20">
194
+ <g id="_x30_4-login-sign-up">
195
+ <g id="login_signup_mobile" transform="translate(-66.000000, -596.000000)">
196
+ <path id="f" d="M77.5,616v-9.1h3l0.4-3.6h-3.4v-2.3c0-1,0.3-1.7,1.7-1.7H81v-3.2c-0.3,0-1.4-0.1-2.6-0.1
197
+ c-2.6,0-4.4,1.7-4.4,4.7v2.6h-3v3.6h3v9.1H77.5z"></path>
198
+ </g>
199
+ </g>
200
+ </symbol>
201
+ <symbol version="1.1" id="facebook" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 15 15">
202
+ <g>
203
+ <path d="M8.6,14.7V9.6h1.7l0.3-2.1h-2V6.2C8.6,5.6,8.9,5,9.8,5h0.9V3.3c0,0-0.8-0.1-1.6-0.1c-1.7,0-2.7,1-2.7,2.8v1.6H4.5v2.1h1.8
204
+ v5.1c-3.5-0.5-6.1-3.6-6.1-7.2c0-4,3.3-7.3,7.3-7.3s7.3,3.3,7.3,7.3C14.8,11.2,12.1,14.2,8.6,14.7z"></path>
205
+ </g>
206
+ </symbol>
207
+ <symbol version="1.1" id="giftbox" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" xml:space="preserve" viewBox="0 0 512 512">
208
+ <g>
209
+ <g>
210
+ <path d="M478.609,99.726H441.34c4.916-7.78,8.16-16.513,9.085-25.749C453.38,44.46,437.835,18,411.37,6.269
211
+ c-24.326-10.783-51.663-6.375-71.348,11.479l-47.06,42.65c-9.165-10.024-22.34-16.324-36.962-16.324
212
+ c-14.648,0-27.844,6.32-37.011,16.375l-47.12-42.706C152.152-0.111,124.826-4.502,100.511,6.275
213
+ C74.053,18.007,58.505,44.476,61.469,73.992c0.927,9.229,4.169,17.958,9.084,25.734H33.391C14.949,99.726,0,114.676,0,133.117
214
+ v50.087c0,9.22,7.475,16.696,16.696,16.696h478.609c9.22,0,16.696-7.475,16.696-16.696v-50.087
215
+ C512,114.676,497.051,99.726,478.609,99.726z M205.913,94.161v5.565H127.37c-20.752,0-37.084-19.346-31.901-40.952
216
+ c2.283-9.515,9.151-17.626,18.034-21.732c12.198-5.638,25.71-3.828,35.955,5.445l56.469,51.182
217
+ C205.924,93.834,205.913,93.996,205.913,94.161z M417.294,69.544c-1.244,17.353-16.919,30.184-34.316,30.184h-76.891v-5.565
218
+ c0-0.197-0.012-0.392-0.014-0.589c12.792-11.596,40.543-36.748,55.594-50.391c8.554-7.753,20.523-11.372,31.587-8.072
219
+ C409.131,39.847,418.455,53.349,417.294,69.544z"></path>
220
+ </g>
221
+ <g>
222
+ <path d="M33.391,233.291v244.87c0,18.442,14.949,33.391,33.391,33.391h155.826V233.291H33.391z"></path>
223
+ </g>
224
+ <g>
225
+ <path d="M289.391,233.291v278.261h155.826c18.442,0,33.391-14.949,33.391-33.391v-244.87H289.391z"></path>
226
+ </g>
227
+ </g>
228
+ </symbol>
229
+ <symbol version="1.1" id="globe" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 20 20">
230
+ <path d="M10,0L10,0L10,0L10,0C4.4,0,0,4.5,0,10c0,5.5,4.5,10,10,10H10c5.5,0,9.9-4.5,9.9-10C19.9,4.4,15.5,0,10,0z M18,14.8l-3.8,0
231
+ c0.3-1.4,0.5-2.9,0.6-4.6l4.5,0C19.3,11.9,18.8,13.4,18,14.8z M0.6,10.3l4.6,0c0,1.7,0.2,3.2,0.6,4.6l-3.8,0
232
+ C1.1,13.5,0.6,12,0.6,10.3z M1.9,5.2l3.8,0C5.4,6.5,5.2,8.1,5.2,9.7l-4.6,0C0.6,8.1,1.1,6.5,1.9,5.2z M19.3,9.6l-4.5,0
233
+ c0-1.7-0.2-3.2-0.6-4.6l3.8,0C18.8,6.4,19.3,8,19.3,9.6z M14.2,9.7l-4,0l0-4.6l3.3,0C14,6.5,14.2,8,14.2,9.7z M10.2,4.6l0-4
234
+ c1.3,0.2,2.5,1.7,3.2,3.9L10.2,4.6z M9.6,0.6l0,4l-3.2,0C7.2,2.3,8.4,0.8,9.6,0.6z M9.7,5.1l0,4.6l-4,0c0-1.7,0.2-3.2,0.6-4.6
235
+ L9.7,5.1z M5.7,10.3l4,0l0,4.6l-3.3,0C6,13.5,5.8,12,5.7,10.3z M9.7,15.4l0,4c-1.3-0.2-2.5-1.7-3.2-3.9L9.7,15.4z M10.3,19.4l0-4
236
+ l3.2,0C12.8,17.6,11.6,19.2,10.3,19.4z M10.3,14.8l0-4.6l4,0c0,1.7-0.2,3.2-0.6,4.6L10.3,14.8z M17.6,4.5l-3.6,0
237
+ c-0.5-1.7-1.3-3-2.2-3.8C14.2,1.2,16.2,2.6,17.6,4.5z M8.1,0.8C7.1,1.5,6.4,2.9,5.9,4.6l-3.6,0C3.6,2.7,5.7,1.3,8.1,0.8z M2.3,15.5
238
+ l3.6,0c0.5,1.7,1.3,3.1,2.3,3.8C5.8,18.8,3.7,17.4,2.3,15.5z M11.9,19.2c0.9-0.8,1.7-2.1,2.2-3.9l3.6,0
239
+ C16.3,17.3,14.3,18.7,11.9,19.2z"></path>
240
+ </symbol>
241
+ <symbol version="1.1" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 0 18 18" id="google-login">
242
+ <title>google-symbol</title>
243
+ <g id="04-login-sign-up" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
244
+ <g id="login_signup_mobile" transform="translate(-225.000000, -597.000000)" fill-rule="nonzero">
245
+ <g id="google-symbol" transform="translate(225.000000, 597.000000)">
246
+ <path d="M17.8551211,7.33401563 C17.9351367,7.33401563 18,7.39887891 18,7.47889453 L18,9 C18,9.56932031 17.947125,10.1259844 17.8456992,10.6659844 C17.0611172,14.8604414 13.3658438,18.0303047 8.93654297,17.9997539 C3.96653906,17.9655117 -0.01096875,13.9497891 1.23793692e-05,8.97971484 C0.01096875,4.01857031 4.03628906,-1.99840144e-15 9,-1.99840144e-15 C11.4318633,-1.99840144e-15 13.6383398,0.964757812 15.2583047,2.53188281 C15.3168047,2.58844922 15.3183164,2.68168359 15.2607656,2.73919922 L13.1088164,4.89114844 C13.0534102,4.94655469 12.9639023,4.94799609 12.907125,4.89396094 C11.8903711,3.92614453 10.514707,3.33196875 9,3.33196875 C5.87211328,3.33196875 3.35334375,5.83284375 3.33210937,8.96066016 C3.31076953,12.1090078 5.85664453,14.6679961 9,14.6679961 C11.5504102,14.6679961 13.7075273,12.983168 14.4188438,10.6659844 L9.14487891,10.6659844 C9.06486328,10.6659844 9,10.6011211 9,10.5211055 L9,7.47885938 C9,7.39884375 9.06486328,7.33398047 9.14487891,7.33398047 L17.8551211,7.33398047 L17.8551211,7.33401563 Z" id="Path" fill="#2196F3"></path>
247
+ <path d="M17.8551211,7.33401562 L16.7686172,7.33401562 C16.8486328,7.33401562 16.9134961,7.39887891 16.9134961,7.47889453 L16.9134961,9 C16.9134961,9.56932031 16.8606211,10.1259844 16.7591953,10.6659844 C16.0106836,14.6675391 12.6130078,17.7365039 8.45616797,17.9837578 C8.61521484,17.9931445 8.77531641,17.9986289 8.93654297,17.9997539 C13.3658789,18.0303047 17.0611172,14.8604063 17.8456992,10.6659844 C17.947125,10.1259844 18,9.56932031 18,9 L18,7.47885938 C18,7.39887891 17.9351367,7.33401562 17.8551211,7.33401562 Z" id="Path" fill="#1E88E5"></path>
248
+ <path d="M3.85171875,6.62632031 L1.11839062,4.65138281 C2.65183594,1.87787109 5.60678906,-9.99200722e-16 9,-9.99200722e-16 C11.4318633,-9.99200722e-16 13.6383398,0.964757812 15.2583047,2.53188281 C15.3168047,2.58844922 15.3183164,2.68168359 15.2607656,2.73919922 L13.1088164,4.89114844 C13.0535156,4.94644922 12.9640078,4.94817187 12.9073711,4.89424219 C11.8906172,3.92625 10.5148477,3.33200391 9,3.33200391 C6.71723437,3.33200391 4.74953906,4.68144141 3.85171875,6.62632031 Z" id="Path" fill="#F44336"></path>
249
+ <path d="M3.06263672,6.05619141 L3.85171875,6.62632031 C4.67121094,4.85114062 6.38219531,3.57264844 8.41035937,3.36294141 C8.42561719,3.36128906 8.44027734,3.35928516 8.45581641,3.35780859 C8.27732812,3.34086328 8.09644922,3.33200391 7.91349609,3.33200391 C5.85133594,3.33200391 4.05414844,4.41914062 3.06263672,6.05619141 L3.06263672,6.05619141 Z" id="Path" fill="#E53935"></path>
250
+ <path d="M14.1718008,2.53188281 C14.2303008,2.58844922 14.2318125,2.68168359 14.1742617,2.73923438 L12.4275937,4.48590234 C12.5949375,4.61316797 12.7551094,4.74929297 12.907125,4.89399609 C12.9638672,4.94803125 13.0534102,4.94658984 13.1088164,4.89118359 L15.2607656,2.73923438 C15.3183164,2.68168359 15.3167695,2.58848438 15.2583047,2.53188281 C13.6383398,0.964757812 11.4318633,-4.99600361e-16 9,-4.99600361e-16 C8.81750391,-4.99600361e-16 8.63644922,0.00608203125 8.45666016,0.0168046875 C10.6729102,0.148816406 12.6733359,1.08232031 14.1718008,2.53188281 Z" id="Path" fill="#E53935"></path>
251
+ <path d="M15.6020625,15.1163789 C13.9585078,16.8899414 11.6087344,18 9,18 C5.47642969,18 2.42585156,15.9751055 0.948515625,13.0251797 L3.73904297,11.1128906 C4.57642969,13.1964961 6.61654687,14.6679961 9,14.6679961 C10.4957578,14.6679961 11.8560937,14.0885156 12.8687344,13.141793 L15.6020625,15.1163789 Z" id="Path" fill="#4CAF50"></path>
252
+ <path d="M3.73907812,11.1129258 L2.91621094,11.6767969 C3.87193359,13.45725 5.75135156,14.6679961 7.91349609,14.6679961 C8.09634375,14.6679961 8.27708203,14.6590312 8.4555,14.6421211 C6.30924609,14.4375117 4.51188281,13.0359375 3.73907812,11.1129258 Z" id="Path" fill="#43A047"></path>
253
+ <path d="M9,18 C11.6087344,18 13.9585078,16.8899414 15.6020625,15.1163789 L14.932582,14.6327344 C13.3893633,16.5533203 11.0743242,17.827418 8.45810156,17.9836172 C8.63739844,17.9943047 8.81803125,18 9,18 Z" id="Path" fill="#43A047"></path>
254
+ <path d="M3.33200391,9 C3.33200391,9.74678906 3.47649609,10.4599336 3.73907812,11.1129258 L0.948515625,13.0251797 C0.341542969,11.814082 -2.49800181e-16,10.4468906 -2.49800181e-16,9 C-2.49800181e-16,7.42275 0.405632812,5.94035156 1.11839062,4.65138281 L3.85171875,6.62632031 C3.51815625,7.34811328 3.33200391,8.15252344 3.33200391,9 Z" id="Path" fill="#FFC107"></path>
255
+ <path d="M2.91621094,11.6767969 L3.73907812,11.1129258 C3.47649609,10.4599336 3.33200391,9.74678906 3.33200391,9 C3.33200391,8.15252344 3.51815625,7.34811328 3.85171875,6.62632031 L3.06263672,6.05619141 C2.55023437,6.90222656 2.25284766,7.89500391 2.24560547,8.96069531 C2.23892578,9.94345313 2.48245312,10.8688008 2.91621094,11.6767969 L2.91621094,11.6767969 Z" id="Path" fill="#FFB300"></path>
256
+ </g>
257
+ </g>
258
+ </g>
259
+ </symbol>
260
+ <symbol version="1.1" id="google" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 15 15">
261
+ <g>
262
+ <path d="M7.6,14.8c-4,0-7.3-3.2-7.3-7.3s3.2-7.3,7.3-7.3c2,0,3.6,0.7,4.9,1.9l-2,1.9C7.9,1.5,3.1,3.4,3.1,7.5c0,2.5,2,4.6,4.5,4.6
263
+ c2.9,0,4-2.1,4.1-3.1H7.6V6.5h6.9c0.1,0.4,0.1,0.7,0.1,1.2C14.6,11.8,11.8,14.8,7.6,14.8z"></path>
264
+ </g>
265
+ </symbol>
266
+ <symbol version="1.1" id="hamburger" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 20 20">
267
+ <path id="Symbols" d="M19,1H1C0.6,1,0.2,1.4,0.2,1.8S0.6,2.6,1,2.6h18c0.5,0,0.8-0.4,0.8-0.8S19.4,1,19,1z M19,9.2H1
268
+ c-0.5,0-0.8,0.4-0.8,0.8c0,0.5,0.4,0.8,0.8,0.8h18c0.5,0,0.8-0.4,0.8-0.8C19.8,9.5,19.4,9.2,19,9.2z M19,17.3H1
269
+ c-0.5,0-0.8,0.4-0.8,0.8C0.2,18.6,0.6,19,1,19h18c0.5,0,0.8-0.4,0.8-0.8C19.8,17.7,19.4,17.3,19,17.3z"></path>
270
+ </symbol>
271
+ <symbol version="1.1" id="heart-full" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 20 18">
272
+ <g id="Symbols">
273
+ <g id="header_x2F_mobile" transform="translate(-300.000000, -16.000000)">
274
+ <g id="Group-3" transform="translate(300.000000, 16.000000)">
275
+ <g id="Clip-2"></g>
276
+ <path id="Fill-1" d="M10,18c-0.1,0-0.2,0-0.2-0.1C8.1,17,6.5,15.9,5,14.6c-3.2-2.8-4.8-5.9-4.8-8.8
277
+ C0.2,2.7,2.7,0,5.7,0C7.4,0,9,0.8,10,2.1C11,0.8,12.6,0,14.3,0c2.9,0,5.5,2.7,5.5,5.8c0,3-1.7,6-4.8,8.8
278
+ c-1.5,1.3-3.1,2.4-4.8,3.3C10.2,18,10.1,18,10,18L10,18z"></path>
279
+ </g>
280
+ </g>
281
+ </g>
282
+ </symbol>
283
+ <symbol version="1.1" id="heart-stroke" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 20 18">
284
+ <g id="Symbols">
285
+ <g id="header_x2F_mobile" transform="translate(-300.000000, -16.000000)">
286
+ <g id="Group-3" transform="translate(300.000000, 16.000000)">
287
+ <g id="Clip-2"></g>
288
+ <path id="Fill-1" d="M5.7,1C3.3,1,1.2,3.2,1.2,5.8c0,1.4,0.4,2.8,1.2,4.2C3,11.1,4,12.3,5.2,13.4
289
+ c2,1.9,4.1,3.1,4.8,3.5c0.7-0.4,2.8-1.7,4.8-3.5c1.2-1.1,2.1-2.3,2.8-3.4c0.8-1.4,1.2-2.8,1.2-4.2c0-2.6-2.1-4.8-4.5-4.8
290
+ c-1.6,0-3.1,0.9-3.9,2.3l0,0l0,0c-0.1,0.1-0.2,0.2-0.4,0.2c-0.2,0-0.3-0.1-0.4-0.2l0,0l0,0C8.8,1.8,7.3,1,5.7,1L5.7,1z M10,18
291
+ c-0.1,0-0.2,0-0.2-0.1C8.1,17,6.5,15.9,5,14.6c-3.2-2.8-4.8-5.9-4.8-8.8C0.2,2.7,2.7,0,5.7,0C7.4,0,9,0.8,10,2.1
292
+ C11,0.8,12.6,0,14.3,0c2.9,0,5.5,2.7,5.5,5.8c0,3-1.7,6-4.8,8.8c-1.5,1.3-3.1,2.4-4.8,3.3C10.2,18,10.1,18,10,18L10,18z"></path>
293
+ </g>
294
+ </g>
295
+ </g>
296
+ </symbol>
297
+ <symbol fill="#000000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" id="info">
298
+ <path d="M25,2C12.297,2,2,12.297,2,25s10.297,23,23,23s23-10.297,23-23S37.703,2,25,2z M25,11c1.657,0,3,1.343,3,3s-1.343,3-3,3 s-3-1.343-3-3S23.343,11,25,11z M29,38h-2h-4h-2v-2h2V23h-2v-2h2h4v2v13h2V38z"></path>
299
+ </symbol>
300
+ <symbol version="1.1" id="instagram" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 15 15">
301
+ <g>
302
+ <path d="M14.7,10.5c-0.1,1.2-0.3,2.2-1.2,3c-0.8,0.9-1.9,1.1-3,1.2c-1.2,0.1-4.8,0.1-6,0c-1.2-0.1-2.2-0.3-3-1.2s-1.1-1.9-1.2-3
303
+ c-0.1-1.2-0.1-4.8,0-6c0.1-1.2,0.3-2.2,1.2-3s1.9-1.1,3-1.2c1.2-0.1,4.8-0.1,6,0c1.2,0.1,2.2,0.3,3,1.2c0.9,0.8,1.1,1.9,1.2,3
304
+ C14.8,5.7,14.8,9.3,14.7,10.5z M13.4,7.5c0-1.1,0.1-3.3-0.3-4.3c-0.3-0.6-0.7-1.1-1.4-1.4c-1-0.4-3.2-0.3-4.3-0.3S4.2,1.5,3.2,1.8
305
+ C2.6,2.1,2.1,2.6,1.9,3.2c-0.4,1-0.3,3.2-0.3,4.3s-0.1,3.3,0.3,4.3c0.3,0.6,0.7,1.1,1.4,1.4c1,0.4,3.2,0.3,4.3,0.3s3.3,0.1,4.3-0.3
306
+ c0.6-0.3,1.1-0.7,1.4-1.4C13.5,10.8,13.4,8.6,13.4,7.5z M11.2,7.5c0,2.1-1.7,3.7-3.7,3.7S3.8,9.6,3.8,7.5s1.7-3.7,3.7-3.7
307
+ S11.2,5.4,11.2,7.5z M9.9,7.5c0-1.3-1.1-2.4-2.4-2.4S5.1,6.2,5.1,7.5s1.1,2.4,2.4,2.4S9.9,8.8,9.9,7.5z M11.4,4.5
308
+ c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9c0.5,0,0.9,0.4,0.9,0.9C12.2,4.1,11.8,4.5,11.4,4.5z"></path>
309
+ </g>
310
+ </symbol>
311
+ <symbol version="1.1" id="layout-2" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 18 18">
312
+ <path id="_x30_2-urun-liste" d="M0,0h6.4v6.4H0V0z M11.6,0H18v6.4h-6.4V0z M0,11.6h6.4V18H0V11.6z M11.6,11.6H18V18
313
+ h-6.4V11.6z"></path>
314
+ </symbol>
315
+ <symbol version="1.1" id="layout-3" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 18 18">
316
+ <path id="_x30_2-urun-liste" d="M0,0h5.3v5.3H0V0z M12.7,0H18v5.3h-5.3V0z M6.4,0h5.3v5.3H6.4V0z M0,6.4h5.3v5.3H0V6.4z M12.7,6.4
317
+ H18v5.3h-5.3V6.4z M6.4,6.4h5.3v5.3H6.4V6.4z M0,12.7h5.3V18H0V12.7z M12.7,12.7H18V18h-5.3V12.7z M6.4,12.7h5.3V18H6.4V12.7z"></path>
318
+ </symbol>
319
+ <symbol version="1.1" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 0 184 18" id="logo">
320
+ <title>Group 21</title>
321
+ <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
322
+ <g id="header/mobile" transform="translate(-59.000000, -16.000000)">
323
+ <g id="Group-21" transform="translate(59.000000, 16.000000)">
324
+ <path d="M5.184,8.46299571 C5.92457143,8.46299571 6.588,8.41671 7.17428571,8.32413857 C7.76057143,8.23156714 8.25814286,8.05799571 8.667,7.80342429 C9.07585714,7.54885286 9.39214286,7.20171 9.61585714,6.76199571 C9.83957143,6.32228143 9.95142857,5.74756714 9.95142857,5.03785286 C9.95142857,3.98871 9.60814286,3.19606714 8.92157143,2.65413857 C8.235,2.11413857 7.14342857,1.84413857 5.64685714,1.84413857 L1.57371429,1.84413857 L1.57371429,8.46299571 L5.184,8.46299571 Z M0,17.16471 L0,0.501852857 L6.08657143,0.501852857 C7.16657143,0.501852857 8.05757143,0.62721 8.75957143,0.872138571 C9.46157143,1.11899571 10.017,1.45842429 10.4258571,1.89042429 C10.8347143,2.32242429 11.1201429,2.81999571 11.2821429,3.38313857 C11.4441429,3.94628143 11.5251429,4.53642429 11.5251429,5.15356714 C11.5251429,6.07928143 11.3361429,6.84299571 10.9581429,7.44471 C10.5801429,8.04642429 10.0902857,8.52085286 9.48857143,8.86799571 C8.88685714,9.21513857 8.20414286,9.45813857 7.44042857,9.59699571 C6.67671429,9.73585286 5.90914286,9.80528143 5.13771429,9.80528143 L1.57371429,9.80528143 L1.57371429,17.16471 L0,17.16471 Z" id="Fill-1" fill="#000000"></path>
325
+ <path d="M20.6661857,8.25471 C21.2524714,8.25471 21.7963286,8.19299571 22.2977571,8.06956714 C22.7991857,7.94613857 23.2350429,7.74942429 23.6053286,7.47942429 C23.9756143,7.20942429 24.2687571,6.86613857 24.4847571,6.44956714 C24.7007571,6.03299571 24.8087571,5.53156714 24.8087571,4.94528143 C24.8087571,4.32813857 24.6969,3.81899571 24.4731857,3.41785286 C24.2494714,3.01671 23.9486143,2.70042429 23.5706143,2.46899571 C23.1926143,2.23756714 22.7606143,2.07556714 22.2746143,1.98299571 C21.7886143,1.89042429 21.2833286,1.84413857 20.7587571,1.84413857 L15.7599,1.84413857 L15.7599,8.25471 L20.6661857,8.25471 Z M15.7599,9.59699571 L15.7599,17.16471 L14.1861857,17.1415671 L14.1861857,0.501852857 L20.7124714,0.501852857 C22.5484714,0.501852857 23.9524714,0.845138571 24.9244714,1.53171 C25.8964714,2.21828143 26.3824714,3.33299571 26.3824714,4.87585286 C26.3824714,5.92499571 26.1703286,6.75813857 25.7460429,7.37528143 C25.3217571,7.99242429 24.6313286,8.51699571 23.6747571,8.94899571 C24.1684714,9.11871 24.5541857,9.36556714 24.8319,9.68956714 C25.1096143,10.0135671 25.3179,10.3838529 25.4567571,10.8004243 C25.5956143,11.2169957 25.6843286,11.65671 25.7229,12.1195671 C25.7614714,12.5824243 25.7884714,13.0298529 25.8039,13.4618529 C25.8193286,14.0944243 25.8463286,14.6189957 25.8849,15.0355671 C25.9234714,15.4521386 25.9697571,15.7915671 26.0237571,16.0538529 C26.0777571,16.3161386 26.1433286,16.5205671 26.2204714,16.6671386 C26.2976143,16.81371 26.3901857,16.9255671 26.4981857,17.00271 L26.4981857,17.1415671 L24.7624714,17.16471 C24.5927571,16.8869957 24.4731857,16.5012814 24.4037571,16.0075671 C24.3343286,15.5138529 24.2803286,14.9969957 24.2417571,14.4569957 C24.2031857,13.9169957 24.1723286,13.3924243 24.1491857,12.8832814 C24.1260429,12.3741386 24.0836143,11.9575671 24.0219,11.6335671 C23.9293286,11.1861386 23.7789,10.8274243 23.5706143,10.5574243 C23.3623286,10.2874243 23.1116143,10.0829957 22.8184714,9.94413857 C22.5253286,9.80528143 22.1974714,9.71271 21.8349,9.66642429 C21.4723286,9.62013857 21.0981857,9.59699571 20.7124714,9.59699571 L15.7599,9.59699571 Z" id="Fill-3" fill="#000000"></path>
326
+ <path d="M36.7738071,16.26291 C37.8538071,16.26291 38.7833786,16.0584814 39.5625214,15.6496243 C40.3416643,15.2407671 40.98195,14.69691 41.4833786,14.0180529 C41.9848071,13.3391957 42.3550929,12.5523386 42.5942357,11.6574814 C42.8333786,10.7626243 42.95295,9.82919571 42.95295,8.85719571 C42.95295,7.70005286 42.8102357,6.66248143 42.5248071,5.74448143 C42.2393786,4.82648143 41.8266643,4.04348143 41.2866643,3.39548143 C40.7466643,2.74748143 40.09095,2.25376714 39.3195214,1.91433857 C38.5480929,1.57491 37.6840929,1.40519571 36.7275214,1.40519571 C35.66295,1.40519571 34.7410929,1.61348143 33.96195,2.03005286 C33.1828071,2.44662429 32.5425214,2.99819571 32.0410929,3.68476714 C31.5396643,4.37133857 31.1693786,5.16205286 30.9302357,6.05691 C30.6910929,6.95176714 30.5715214,7.88519571 30.5715214,8.85719571 C30.5715214,9.84462429 30.6910929,10.7857671 30.9302357,11.6806243 C31.1693786,12.5754814 31.5396643,13.3623386 32.0410929,14.0411957 C32.5425214,14.7200529 33.1828071,15.2600529 33.96195,15.6611957 C34.7410929,16.0623386 35.6783786,16.26291 36.7738071,16.26291 M28.9978071,8.85719571 C28.9978071,7.63833857 29.1636643,6.49662429 29.4953786,5.43205286 C29.8270929,4.36748143 30.31695,3.43791 30.96495,2.64333857 C31.61295,1.84876714 32.4152357,1.22005286 33.3718071,0.757195714 C34.3283786,0.294338571 35.4315214,0.06291 36.6812357,0.06291 C37.9772357,0.06291 39.1150929,0.290481429 40.0948071,0.745624286 C41.0745214,1.20076714 41.8922357,1.82562429 42.54795,2.62019571 C43.2036643,3.41476714 43.6973786,4.34819571 44.0290929,5.42048143 C44.3608071,6.49276714 44.5266643,7.63833857 44.5266643,8.85719571 C44.5266643,10.0606243 44.3608071,11.1907671 44.0290929,12.2476243 C43.6973786,13.3044814 43.2075214,14.2301957 42.5595214,15.0247671 C41.9115214,15.8193386 41.1015214,16.4480529 40.1295214,16.91091 C39.1575214,17.3737671 38.0312357,17.6051957 36.7506643,17.6051957 C35.4700929,17.6051957 34.3438071,17.3737671 33.3718071,16.91091 C32.3998071,16.4480529 31.5898071,15.8193386 30.9418071,15.0247671 C30.2938071,14.2301957 29.8078071,13.3044814 29.4838071,12.2476243 C29.1598071,11.1907671 28.9978071,10.0606243 28.9978071,8.85719571" id="Fill-5" fill="#000000"></path>
327
+ <path d="M47.8592357,11.8887171 C47.8592357,12.4132886 47.8785214,12.9301457 47.9170929,13.4392886 C47.9556643,13.9484314 48.0713786,14.4074314 48.2642357,14.8162886 C48.4570929,15.2251457 48.75795,15.5530029 49.1668071,15.79986 C49.5756643,16.0467171 50.1426643,16.1701457 50.8678071,16.1701457 C51.9478071,16.1701457 52.7076643,15.8615743 53.1473786,15.2444314 C53.5870929,14.6272886 53.80695,13.7324314 53.80695,12.55986 L53.80695,0.502431429 L55.3806643,0.502431429 L55.3806643,12.6061457 C55.3806643,14.2261457 55.0026643,15.4642886 54.2466643,16.3205743 C53.4906643,17.17686 52.3026643,17.6050029 50.6826643,17.6050029 C49.7415214,17.6050029 48.9855214,17.44686 48.4146643,17.1305743 C47.8438071,16.8142886 47.4002357,16.3900029 47.08395,15.8577171 C46.7676643,15.3254314 46.5555214,14.7160029 46.4475214,14.0294314 C46.3395214,13.34286 46.2855214,12.6292886 46.2855214,11.8887171 L47.8592357,11.8887171 Z" id="Fill-7" fill="#000000"></path>
328
+ <polygon id="Fill-9" fill="#000000" points="59.2225714 17.1650957 59.2225714 0.502238571 70.308 0.502238571 70.308 1.84452429 60.7962857 1.84452429 60.7962857 7.86166714 69.3822857 7.86166714 69.3822857 9.20395286 60.7962857 9.20395286 60.7962857 15.82281 70.5394286 15.82281 70.5394286 17.1650957"></polygon>
329
+ <path d="M85.1886643,5.33928857 C84.8646643,3.91986 84.26295,2.90928857 83.3835214,2.30757429 C82.5040929,1.70586 81.3546643,1.40500286 79.9352357,1.40500286 C78.9323786,1.40500286 78.0683786,1.60557429 77.3432357,2.00671714 C76.6180929,2.40786 76.0202357,2.94786 75.5496643,3.62671714 C75.0790929,4.30557429 74.73195,5.08857429 74.5082357,5.97571714 C74.2845214,6.86286 74.1726643,7.80014571 74.1726643,8.78757429 C74.1726643,9.71328857 74.2690929,10.6235743 74.46195,11.5184314 C74.6548071,12.4132886 74.97495,13.2117171 75.4223786,13.9137171 C75.8698071,14.6157171 76.4715214,15.1827171 77.2275214,15.6147171 C77.9835214,16.0467171 78.9323786,16.2627171 80.0740929,16.2627171 C80.7838071,16.2627171 81.4318071,16.1470029 82.0180929,15.9155743 C82.6043786,15.6841457 83.1173786,15.3640029 83.5570929,14.9551457 C83.9968071,14.5462886 84.3670929,14.0641457 84.66795,13.5087171 C84.9688071,12.9532886 85.1963786,12.34386 85.3506643,11.6804314 L86.9938071,11.6804314 C86.8086643,12.4827171 86.5386643,13.2425743 86.1838071,13.9600029 C85.82895,14.6774314 85.3622357,15.3061457 84.7836643,15.8461457 C84.2050929,16.3861457 83.5030929,16.8142886 82.6776643,17.1305743 C81.8522357,17.44686 80.8840929,17.6050029 79.7732357,17.6050029 C78.4926643,17.6050029 77.3972357,17.3697171 76.48695,16.8991457 C75.5766643,16.4285743 74.8322357,15.7921457 74.2536643,14.98986 C73.6750929,14.1875743 73.2546643,13.2580029 72.9923786,12.2011457 C72.7300929,11.1442886 72.59895,10.02186 72.59895,8.83386 C72.59895,7.24471714 72.7956643,5.89471714 73.1890929,4.78386 C73.5825214,3.67300286 74.1263786,2.76657429 74.8206643,2.06457429 C75.51495,1.36257429 76.3326643,0.853431429 77.2738071,0.537145714 C78.21495,0.22086 79.24095,0.0627171429 80.3518071,0.0627171429 C81.2003786,0.0627171429 81.9910929,0.174574286 82.72395,0.398288571 C83.4568071,0.622002857 84.1048071,0.957574286 84.66795,1.40500286 C85.2310929,1.85243143 85.69395,2.40400286 86.0565214,3.05971714 C86.4190929,3.71543143 86.6698071,4.47528857 86.8086643,5.33928857 L85.1886643,5.33928857 Z" id="Fill-11" fill="#000000"></path>
330
+ <polygon id="Fill-13" fill="#000000" points="88.5673286 0.501852857 100.694186 0.501852857 100.694186 1.84413857 95.4176143 1.84413857 95.4176143 17.16471 93.8439 17.16471 93.8439 1.84413857 88.5673286 1.84413857"></polygon>
331
+ <g id="Clip-16"></g>
332
+ <polygon id="Fill-15" fill="#D02B2F" mask="url(#mask-2)" points="109.124357 17.1654814 111.056786 17.1654814 111.056786 0.329052857 109.124357 0.329052857"></polygon>
333
+ <polygon id="Fill-17" fill="#000000" mask="url(#mask-2)" points="120.531086 14.2269171 129.045729 3.45777429 120.745157 3.45777429 120.745157 0.508988571 133.367657 0.508988571 133.367657 3.29963143 124.745014 14.2269171 133.3908 14.2269171 133.3908 17.1641314 120.531086 17.1641314"></polygon>
334
+ <polygon id="Fill-18" fill="#000000" mask="url(#mask-2)" points="148.159993 3.45777429 139.346421 3.45777429 139.346421 6.99477429 147.436779 6.99477429 147.436779 9.88763143 139.346421 9.88763143 139.346421 14.1709886 148.566921 14.1709886 148.566921 17.1641314 135.944421 17.1641314 135.944421 0.508988571 148.159993 0.508988571"></polygon>
335
+ <path d="M154.759371,3.40126714 L154.759371,7.87555286 L158.504657,7.87555286 C159.249086,7.87555286 159.806443,7.78491 160.180586,7.60555286 C160.8363,7.28926714 161.166086,6.66248143 161.166086,5.72905286 C161.166086,4.72041 160.847871,4.04155286 160.211443,3.69441 C159.854657,3.49962429 159.316586,3.40126714 158.601086,3.40126714 L154.759371,3.40126714 Z M161.952943,0.938481429 C162.566229,1.20076714 163.085014,1.59033857 163.513157,2.10141 C163.864157,2.52376714 164.1438,2.99048143 164.350157,3.50348143 C164.556514,4.01455286 164.658729,4.59891 164.658729,5.25462429 C164.658729,6.04533857 164.458157,6.82255286 164.058943,7.58819571 C163.659729,8.35191 163.000157,8.89383857 162.082157,9.21012429 C162.849729,9.51869571 163.395514,9.95648143 163.715657,10.52541 C164.0358,11.0943386 164.195871,11.9621957 164.195871,13.13091 L164.195871,14.2494814 C164.195871,15.0112671 164.2248,15.5261957 164.286514,15.7981243 C164.379086,16.2262671 164.593157,16.5425529 164.928729,16.7469814 L164.928729,17.1654814 L161.087014,17.1654814 C160.982871,16.7951957 160.907657,16.4981957 160.861371,16.2725529 C160.770729,15.8058386 160.722514,15.3275529 160.7148,14.8376957 L160.691657,13.2890529 C160.678157,12.22641 160.494943,11.5186243 160.142014,11.1637671 C159.789086,10.8108386 159.127586,10.63341 158.159443,10.63341 L154.759371,10.63341 L154.759371,17.1654814 L151.357371,17.1654814 L151.357371,0.50841 L159.3243,0.50841 C160.464086,0.531552857 161.339657,0.674267143 161.952943,0.938481429 L161.952943,0.938481429 Z" id="Fill-19" fill="#000000" mask="url(#mask-2)"></path>
336
+ <path d="M178.642414,13.1534743 C179.452414,12.1371171 179.857414,10.6906886 179.857414,8.81418857 C179.857414,6.94540286 179.452414,5.50090286 178.642414,4.48068857 C177.832414,3.46047429 176.738914,2.94940286 175.359986,2.94940286 C173.981057,2.94940286 172.881771,3.45854571 172.0602,4.47490286 C171.238629,5.49126 170.827843,6.93768857 170.827843,8.81418857 C170.827843,10.6906886 171.238629,12.1371171 172.0602,13.1534743 C172.881771,14.1698314 173.981057,14.6789743 175.359986,14.6789743 C176.738914,14.6789743 177.832414,14.1698314 178.642414,13.1534743 M180.817843,15.68376 C179.560414,16.97976 177.739843,17.62776 175.359986,17.62776 C172.9782,17.62776 171.159557,16.97976 169.902129,15.68376 C168.214629,14.0946171 167.369914,11.8054029 167.369914,8.81418857 C167.369914,5.76318857 168.214629,3.47204571 169.902129,1.94461714 C171.159557,0.648617143 172.9782,0.000617142857 175.359986,0.000617142857 C177.739843,0.000617142857 179.560414,0.648617143 180.817843,1.94461714 C182.497629,3.47204571 183.338486,5.76318857 183.338486,8.81418857 C183.338486,11.8054029 182.497629,14.0946171 180.817843,15.68376" id="Fill-20" fill="#000000" mask="url(#mask-2)"></path>
337
+ </g>
338
+ </g>
339
+ </g>
340
+ </symbol>
341
+ <symbol id="mail" enable-background="new 0 0 479.058 479.058" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 479.058 479.058">
342
+ <path d="m434.146 59.882h-389.234c-24.766 0-44.912 20.146-44.912 44.912v269.47c0 24.766 20.146 44.912 44.912 44.912h389.234c24.766 0 44.912-20.146 44.912-44.912v-269.47c0-24.766-20.146-44.912-44.912-44.912zm0 29.941c2.034 0 3.969.422 5.738 1.159l-200.355 173.649-200.356-173.649c1.769-.736 3.704-1.159 5.738-1.159zm0 299.411h-389.234c-8.26 0-14.971-6.71-14.971-14.971v-251.648l199.778 173.141c2.822 2.441 6.316 3.655 9.81 3.655s6.988-1.213 9.81-3.655l199.778-173.141v251.649c-.001 8.26-6.711 14.97-14.971 14.97z"></path>
343
+ </symbol>
344
+ <symbol version="1.1" id="minus" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 18 18">
345
+ <title>Group 3</title>
346
+ <path d="M17.2,10H0.8C0.4,10,0,9.6,0,9.2V8.8C0,8.4,0.4,8,0.8,8h16.4C17.6,8,18,8.4,18,8.8v0.4C18,9.6,17.6,10,17.2,10z"></path>
347
+ </symbol>
348
+ <symbol enable-background="new 0 0 32 32" id="mp-otp" version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 32 32">
349
+ <g id="phone_x2C__mobile_x2C__smartphone_x2C__message">
350
+ <g>
351
+ <g>
352
+ <g>
353
+ <g>
354
+ <g>
355
+ <g>
356
+ <g>
357
+ <path d="M16.5,4h-5C11.224,4,11,3.776,11,3.5S11.224,3,11.5,3h5C16.776,3,17,3.224,17,3.5S16.776,4,16.5,4z" fill="#263238"></path>
358
+ </g>
359
+ </g>
360
+ </g>
361
+ </g>
362
+ <g>
363
+ <g>
364
+ <g>
365
+ <g>
366
+ <path d="M14.5,29h-1c-0.276,0-0.5-0.224-0.5-0.5s0.224-0.5,0.5-0.5h1c0.276,0,0.5,0.224,0.5,0.5 S14.776,29,14.5,29z" fill="#263238"></path>
367
+ </g>
368
+ </g>
369
+ </g>
370
+ </g>
371
+ <g>
372
+ <g>
373
+ <path d="M19.5,31h-11C7.121,31,6,29.879,6,28.5v-25C6,2.121,7.121,1,8.5,1h11C20.879,1,22,2.121,22,3.5v2 C22,5.776,21.776,6,21.5,6S21,5.776,21,5.5v-2C21,2.673,20.327,2,19.5,2h-11C7.673,2,7,2.673,7,3.5v25 C7,29.327,7.673,30,8.5,30h11c0.827,0,1.5-0.673,1.5-1.5v-8c0-0.276,0.224-0.5,0.5-0.5s0.5,0.224,0.5,0.5v8 C22,29.879,20.879,31,19.5,31z" fill="#263238"></path>
374
+ </g>
375
+ </g>
376
+ </g>
377
+ </g>
378
+ </g>
379
+ <g id="mobile_marketing_1_">
380
+ <g>
381
+ <g>
382
+ <path d="M16.5,23c-0.056,0-0.112-0.01-0.167-0.029C16.133,22.9,16,22.712,16,22.5V19h-1.5 c-0.827,0-1.5-0.673-1.5-1.5v-9C13,7.673,13.673,7,14.5,7h14C29.327,7,30,7.673,30,8.5v9c0,0.827-0.673,1.5-1.5,1.5h-8.512 l-3.1,3.815C16.791,22.935,16.647,23,16.5,23z M14.5,8C14.224,8,14,8.225,14,8.5v9c0,0.275,0.224,0.5,0.5,0.5h2 c0.276,0,0.5,0.224,0.5,0.5v2.592l2.362-2.907C19.457,18.067,19.6,18,19.75,18h8.75c0.276,0,0.5-0.225,0.5-0.5v-9 C29,8.225,28.776,8,28.5,8H14.5z" fill="#263238"></path>
383
+ </g>
384
+ </g>
385
+ <g>
386
+ <path d="M23.5,15L23.5,15c0.276,0,0.5-0.224,0.5-0.5S23.776,14,23.5,14l0,0c-0.276,0-0.5,0.224-0.5,0.5 S23.224,15,23.5,15z" fill="#263238"></path>
387
+ <path d="M21.516,14.984L21.516,14.984c0.276,0,0.5-0.224,0.5-0.5s-0.224-0.5-0.5-0.5l0,0 c-0.276,0-0.5,0.224-0.5,0.5S21.239,14.984,21.516,14.984z" fill="#263238"></path>
388
+ <path d="M19.516,14.984L19.516,14.984c0.276,0,0.5-0.224,0.5-0.5s-0.224-0.5-0.5-0.5l0,0 c-0.276,0-0.5,0.224-0.5,0.5S19.239,14.984,19.516,14.984z" fill="#263238"></path>
389
+ </g>
390
+ </g>
391
+ </g>
392
+ </symbol>
393
+ <symbol version="1.1" id="pin" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 34 34">
394
+ <g>
395
+ <g>
396
+ <circle cx="17" cy="11.6" r="3.1"></circle>
397
+ <path d="M8.1,19.5L17,31.6l8.9-12.1c3.4-4.3,2.9-11.2-1-14.9c-2.1-2-4.9-3.1-7.9-3.1s-5.8,1.1-7.9,3.1
398
+ C5.2,8.2,4.8,15.2,8.1,19.5z M17,7.2c2.4,0,4.4,2,4.4,4.4c0,2.4-2,4.4-4.4,4.4s-4.4-2-4.4-4.4C12.6,9.2,14.6,7.2,17,7.2z"></path>
399
+ </g>
400
+ <path d="M17,16c2.4,0,4.4-2,4.4-4.4s-2-4.4-4.4-4.4s-4.4,2-4.4,4.4S14.6,16,17,16z M17,8.5c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1
401
+ s-3.1-1.4-3.1-3.1S15.3,8.5,17,8.5z M17,33.8l9.9-13.6c3.7-4.7,3.2-12.4-1.2-16.5c-2.3-2.2-5.5-3.4-8.8-3.4s-6.4,1.2-8.8,3.4
402
+ C3.9,7.8,3.4,15.5,7.1,20.2L17,33.8z M9.1,4.5c2.1-2,4.9-3.1,7.9-3.1s5.8,1.1,7.9,3.1c3.9,3.7,4.4,10.7,1,14.9L17,31.6L8.1,19.5
403
+ C4.8,15.2,5.2,8.2,9.1,4.5z"></path>
404
+ </g>
405
+ </symbol>
406
+ <symbol version="1.1" id="pinterest" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 15 15">
407
+ <g>
408
+ <path d="M7.5,14.8c-0.8,0-1.5-0.1-2.2-0.3c0.3-0.5,0.7-1.3,0.9-1.9c0.1-0.3,0.5-1.7,0.5-1.7c0.2,0.5,0.9,0.8,1.7,0.8
409
+ c2.2,0,3.8-2,3.8-4.5c0-2.4-2-4.2-4.5-4.2C4.5,2.9,2.9,5,2.9,7.3c0,1.1,0.6,2.4,1.5,2.8c0.1,0.1,0.2,0,0.2-0.1
410
+ c0-0.1,0.1-0.6,0.2-0.8c0-0.1,0-0.1,0-0.2C4.4,8.6,4.2,8,4.2,7.4c0-1.6,1.2-3.2,3.3-3.2c1.8,0,3,1.2,3,3c0,2-1,3.3-2.3,3.3
411
+ c-0.7,0-1.2-0.6-1.1-1.3c0.2-0.9,0.6-1.8,0.6-2.4c0-0.6-0.3-1-0.9-1c-0.7,0-1.3,0.8-1.3,1.8c0,0.6,0.2,1.1,0.2,1.1s-0.7,3-0.8,3.6
412
+ c-0.1,0.6-0.1,1.5,0,2.1c-2.7-1.1-4.6-3.7-4.6-6.8c0-4,3.3-7.3,7.3-7.3s7.3,3.3,7.3,7.3S11.5,14.8,7.5,14.8z"></path>
413
+ </g>
414
+ </symbol>
415
+ <symbol version="1.1" id="plus" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 18 18">
416
+ <title>Group 3</title>
417
+ <path d="M17.2,8H10V0.8C10,0.4,9.6,0,9.2,0H8.8C8.4,0,8,0.4,8,0.8V8H0.8C0.4,8,0,8.4,0,8.8v0.4C0,9.6,0.4,10,0.8,10H8v7.2
418
+ C8,17.6,8.4,18,8.8,18h0.4c0.4,0,0.8-0.4,0.8-0.8V10h7.2c0.4,0,0.8-0.4,0.8-0.8V8.8C18,8.4,17.6,8,17.2,8z"></path>
419
+ </symbol>
420
+ <symbol version="1.1" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 0 18 18" id="search">
421
+ <title>Group 3</title>
422
+ <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
423
+ <g id="header/mobile" transform="translate(-262.000000, -16.000000)">
424
+ <g id="Group-3" transform="translate(262.000000, 16.000000)">
425
+ <g id="Clip-2"></g>
426
+ <path d="M1.01537308,6.41537308 C1.01537308,3.43779231 3.43779231,1.01537308 6.41537308,1.01537308 C9.39295385,1.01537308 11.8153731,3.43779231 11.8153731,6.41537308 C11.8153731,9.39295385 9.39295385,11.8153731 6.41537308,11.8153731 C3.43779231,11.8153731 1.01537308,9.39295385 1.01537308,6.41537308 M17.8508769,17.13375 L11.2938577,10.5766962 C12.2515615,9.45560769 12.8307462,8.00193462 12.8307462,6.41537308 C12.8307462,2.87792308 9.95282308,0 6.41537308,0 C2.87792308,0 0,2.87792308 0,6.41537308 C0,9.95282308 2.87792308,12.8307462 6.41537308,12.8307462 C8.00158846,12.8307462 9.45491538,12.2518038 10.5759,11.2945154 L17.1334731,17.8521577 C17.2298769,17.9474885 17.3572962,18 17.4922962,18 C17.6278846,18 17.7552346,17.9473154 17.8508769,17.8516038 C18.0488077,17.6536731 18.0488077,17.3316462 17.8508769,17.13375" id="Fill-1" fill="#000000" mask="url(#mask-2)"></path>
427
+ </g>
428
+ </g>
429
+ </g>
430
+ </symbol>
431
+ <symbol version="1.1" id="share" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 31 31">
432
+ <path d="M24.1,19.9c-1.4,0-2.7,0.5-3.6,1.5c-0.2,0.2-0.4,0.4-0.6,0.7l-8.1-4.9c0.2-0.6,0.3-1.1,0.3-1.7c0-0.6-0.1-1.2-0.3-1.7
433
+ l8.1-4.9c1,1.4,2.5,2.2,4.2,2.2c2.8,0,5.2-2.3,5.2-5.2c0-2.8-2.3-5.2-5.2-5.2s-5.2,2.3-5.2,5.2c0,0.6,0.1,1.1,0.3,1.6l-8.1,4.9
434
+ c-1-1.3-2.5-2.1-4.2-2.1c-2.8,0-5.2,2.3-5.2,5.2c0,2.8,2.3,5.2,5.2,5.2c1.7,0,3.2-0.8,4.2-2.1l8.1,4.9c-0.2,0.5-0.3,1.1-0.3,1.6
435
+ c0,1.4,0.5,2.7,1.5,3.7c1,1,2.3,1.5,3.6,1.5c1.4,0,2.7-0.5,3.6-1.5c1-1,1.5-2.3,1.5-3.7c0-1.4-0.5-2.7-1.5-3.7
436
+ C26.8,20.5,25.5,19.9,24.1,19.9z M27.8,25.1c0,1-0.4,1.9-1.1,2.6c-0.7,0.7-1.6,1.1-2.6,1.1c0,0,0,0,0,0c-1,0-1.9-0.4-2.6-1.1
437
+ c-0.7-0.7-1.1-1.6-1.1-2.6s0.4-1.9,1.1-2.6c0.7-0.7,1.6-1.1,2.6-1.1c1,0,1.9,0.4,2.6,1.1C27.4,23.2,27.8,24.1,27.8,25.1z M20.4,5.9
438
+ c0-2,1.6-3.7,3.7-3.7c2,0,3.7,1.7,3.7,3.7c0,2-1.6,3.7-3.7,3.7C22.1,9.6,20.4,7.9,20.4,5.9z M10.6,15.5c0,2-1.6,3.7-3.7,3.7
439
+ s-3.7-1.7-3.7-3.7c0-2,1.6-3.7,3.7-3.7S10.6,13.4,10.6,15.5z"></path>
440
+ </symbol>
441
+ <symbol version="1.1" id="spinner" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 18 18">
442
+ <title>Group 3</title>
443
+ <path d="M14.9,3.1l-0.6,0.6c-0.2,0.2-0.2,0.6,0,0.8c2.4,2.8,2.2,7-0.5,9.6c-2.7,2.6-7.1,2.6-9.8,0c-2.7-2.6-2.8-6.8-0.5-9.6
444
+ c0.2-0.2,0.2-0.6,0-0.8L3.1,3.1c-0.2-0.2-0.6-0.2-0.9,0c-3.1,3.6-2.9,9.1,0.6,12.5c3.4,3.2,8.9,3.2,12.4,0c3.5-3.4,3.7-8.9,0.6-12.5
445
+ C15.6,2.8,15.2,2.8,14.9,3.1z"></path>
446
+ </symbol>
447
+ <symbol version="1.1" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 0 17 17" id="store-pin">
448
+ <title>placeholder (1)</title>
449
+ <g id="03-urun-detay" stroke="none" stroke-width="1" fill="current" fill-rule="evenodd">
450
+ <g id="03_urundetay" transform="translate(-1186.000000, -628.000000)" fill="current" fill-rule="nonzero">
451
+ <g id="Group-5" transform="translate(906.000000, 624.000000)">
452
+ <g id="placeholder-(1)" transform="translate(280.000000, 4.000000)">
453
+ <path d="M8.5,7.36666667 C9.59366667,7.36666667 10.4833333,6.47671667 10.4833333,5.38333333 C10.4833333,4.28995 9.59366667,3.4 8.5,3.4 C7.40633333,3.4 6.51666667,4.28995 6.51666667,5.38333333 C6.51666667,6.47671667 7.40633333,7.36666667 8.5,7.36666667 Z M8.5,3.96666667 C9.28115,3.96666667 9.91666667,4.60218333 9.91666667,5.38333333 C9.91666667,6.16448333 9.28115,6.8 8.5,6.8 C7.71885,6.8 7.08333333,6.16448333 7.08333333,5.38333333 C7.08333333,4.60218333 7.71885,3.96666667 8.5,3.96666667 Z" id="Shape"></path>
454
+ <path d="M8.44985,15.5144833 L12.7964667,9.23666667 C14.4267667,7.06321667 14.1910333,3.49066667 12.29185,1.59176667 C11.2656167,0.56525 9.90108333,0 8.44985,0 C6.99861667,0 5.63408333,0.56525 4.60785,1.59148333 C2.70866667,3.49038333 2.47293333,7.06293333 4.09671667,9.22788333 L8.44985,15.5144833 Z M5.00848333,1.99211667 C5.9279,1.07298333 7.14991667,0.566666667 8.44985,0.566666667 C9.74978333,0.566666667 10.9718,1.07298333 11.8912167,1.99211667 C13.6053833,3.706 13.8164667,6.9326 12.3369,8.90516667 L8.44985,14.51885 L4.55656667,8.89666667 C3.08323333,6.9326 3.2946,3.706 5.00848333,1.99211667 Z" id="Shape"></path>
455
+ <path d="M11.93315,12.1853167 C11.7773167,12.1663333 11.6367833,12.2779667 11.61865,12.4335167 C11.6005167,12.5890667 11.7115833,12.7298833 11.86685,12.7480167 C14.8463833,13.0987833 16.4333333,14.0439833 16.4333333,14.5916667 C16.4333333,15.3606333 13.4152667,16.4333333 8.5,16.4333333 C3.58473333,16.4333333 0.566666667,15.3606333 0.566666667,14.5916667 C0.566666667,14.0439833 2.15361667,13.0987833 5.13315,12.7480167 C5.28841667,12.7298833 5.39948333,12.5887833 5.38135,12.4335167 C5.36293333,12.2779667 5.2224,12.1657667 5.06685,12.1853167 C2.08363333,12.53665 0,13.52605 0,14.5916667 C0,15.7884667 2.91975,17 8.5,17 C14.08025,17 17,15.7884667 17,14.5916667 C17,13.52605 14.9163667,12.53665 11.93315,12.1853167 Z" id="Path"></path>
456
+ </g>
457
+ </g>
458
+ </g>
459
+ </g>
460
+ </symbol>
461
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 -72 480 480" id="track-order">
462
+ <path d="m120 224c-30.929688 0-56 25.070312-56 56s25.070312 56 56 56 56-25.070312 56-56-25.070312-56-56-56zm0 96c-22.089844 0-40-17.910156-40-40s17.910156-40 40-40 40 17.910156 40 40-17.910156 40-40 40zm0 0"></path>
463
+ <path d="m120 256c-13.253906 0-24 10.746094-24 24s10.746094 24 24 24 24-10.746094 24-24-10.746094-24-24-24zm0 32c-4.417969 0-8-3.582031-8-8s3.582031-8 8-8 8 3.582031 8 8-3.582031 8-8 8zm0 0"></path>
464
+ <path d="m376 224c-30.929688 0-56 25.070312-56 56s25.070312 56 56 56 56-25.070312 56-56-25.070312-56-56-56zm0 96c-22.089844 0-40-17.910156-40-40s17.910156-40 40-40 40 17.910156 40 40-17.910156 40-40 40zm0 0"></path>
465
+ <path d="m376 256c-13.253906 0-24 10.746094-24 24s10.746094 24 24 24 24-10.746094 24-24-10.746094-24-24-24zm0 32c-4.417969 0-8-3.582031-8-8s3.582031-8 8-8 8 3.582031 8 8-3.582031 8-8 8zm0 0"></path>
466
+ <path d="m384 160h-16v-32c0-4.417969-3.582031-8-8-8s-8 3.582031-8 8v32c0 8.835938 7.164062 16 16 16h16c4.417969 0 8-3.582031 8-8s-3.582031-8-8-8zm0 0"></path>
467
+ <path d="m144 48c-30.929688 0-56 25.070312-56 56 0 27.679688 22.320312 96 56 96s56-68.320312 56-96c0-30.929688-25.070312-56-56-56zm0 136c-18.398438 0-40-52.878906-40-80 0-22.089844 17.910156-40 40-40s40 17.910156 40 40c0 27.121094-21.601562 80-40 80zm0 0"></path>
468
+ <path d="m144 80c-13.253906 0-24 10.746094-24 24s10.746094 24 24 24 24-10.746094 24-24-10.746094-24-24-24zm0 32c-4.417969 0-8-3.582031-8-8s3.582031-8 8-8 8 3.582031 8 8-3.582031 8-8 8zm0 0"></path>
469
+ <path d="m192 184c0 4.417969 3.582031 8 8 8h32c4.417969 0 8-3.582031 8-8s-3.582031-8-8-8h-32c-4.417969 0-8 3.582031-8 8zm0 0"></path>
470
+ <path d="m96 184c0-4.417969-3.582031-8-8-8h-32c-4.417969 0-8 3.582031-8 8s3.582031 8 8 8h32c4.417969 0 8-3.582031 8-8zm0 0"></path>
471
+ <path d="m440 192h-10l-26.960938-94.640625c-2.964843-10.300781-12.402343-17.382813-23.117187-17.359375h-91.921875v-40c0-22.089844-17.910156-40-40-40h-216c-17.671875 0-32 14.328125-32 32v224c0 17.671875 14.328125 32 32 32h8c4.417969 0 8-3.582031 8-8s-3.582031-8-8-8h-8c-8.835938 0-16-7.164062-16-16v-224c0-8.835938 7.164062-16 16-16h216c13.253906 0 24 10.746094 24 24v232h-72c-4.417969 0-8 3.582031-8 8s3.582031 8 8 8h96c4.417969 0 8-3.582031 8-8s-3.582031-8-8-8h-8v-64h152c13.253906 0 24 10.746094 24 24v40h-8c-4.417969 0-8 3.582031-8 8s3.582031 8 8 8h16c4.417969 0 8-3.582031 8-8v-48c0-22.089844-17.910156-40-40-40zm-152-96h32v72c0 4.417969 3.582031 8 8 8s8-3.582031 8-8v-72h43.921875c3.671875-.144531 6.972656 2.230469 8 5.761719l25.4375 90.238281h-125.359375zm0 0"></path>
472
+ </symbol>
473
+ <symbol version="1.1" id="twitter" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 15 15">
474
+ <g>
475
+ <path d="M13.5,4.8c0,4.1-3.1,8.7-8.7,8.7c-1.7,0-3.4-0.5-4.7-1.4c0.2,0,0.5,0,0.7,0c1.4,0,2.8-0.5,3.8-1.3c-1.4,0-2.5-0.9-2.9-2.1
476
+ c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,0.8-0.1c-1.4-0.3-2.5-1.5-2.5-3v0C1,5.9,1.5,6.1,2,6.1C1.2,5.5,0.6,4.6,0.6,3.5C0.6,3,0.8,2.4,1,2
477
+ c1.5,1.9,3.8,3.1,6.3,3.2c0-0.2-0.1-0.5-0.1-0.7c0-1.7,1.4-3.1,3.1-3.1c0.9,0,1.7,0.4,2.2,1c0.7-0.1,1.4-0.4,2-0.7
478
+ c-0.2,0.7-0.7,1.3-1.4,1.7c0.6-0.1,1.2-0.2,1.8-0.5c-0.4,0.6-0.9,1.2-1.5,1.6C13.5,4.6,13.5,4.7,13.5,4.8z"></path>
479
+ </g>
480
+ </symbol>
481
+ <symbol version="1.1" id="user" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 24 24">
482
+ <g id="_x30_7-hesabim">
483
+ <g id="_x30_6_x5F_hesabim_x5F_03_x5F_mobil" transform="translate(-58.000000, -95.000000)">
484
+ <g id="Group" transform="translate(39.000000, 95.000000)">
485
+ <g id="Group-2" transform="translate(19.000000, 0.000000)">
486
+ <path id="Path" d="M21.6,24h-1.2v-5.4c0-1.7-1.3-3-3-3H6.6c-1.7,0-3,1.3-3,3V24H2.4v-5.4c0-2.3,1.9-4.2,4.2-4.2h10.8
487
+ c2.3,0,4.2,1.9,4.2,4.2V24z"></path>
488
+ <path id="Shape" d="M12,13.2c-3.6,0-6.6-3-6.6-6.6S8.4,0,12,0s6.6,3,6.6,6.6c0,1.7-0.7,3.4-1.9,4.7S13.7,13.2,12,13.2z M12,1.2
489
+ c-3,0-5.4,2.4-5.4,5.4S9,12,12,12s5.4-2.4,5.4-5.4S15,1.2,12,1.2z"></path>
490
+ </g>
491
+ </g>
492
+ </g>
493
+ </g>
494
+ </symbol>
495
+ <symbol version="1.1" id="whatsapp" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 512 512">
496
+ <g>
497
+ <g>
498
+ <path d="M256.064,0h-0.128C114.784,0,0,114.816,0,256c0,56,18.048,107.904,48.736,150.048l-31.904,95.104l98.4-31.456
499
+ C155.712,496.512,204,512,256.064,512C397.216,512,512,397.152,512,256S397.216,0,256.064,0z M405.024,361.504
500
+ c-6.176,17.44-30.688,31.904-50.24,36.128c-13.376,2.848-30.848,5.12-89.664-19.264C189.888,347.2,141.44,270.752,137.664,265.792
501
+ c-3.616-4.96-30.4-40.48-30.4-77.216s18.656-54.624,26.176-62.304c6.176-6.304,16.384-9.184,26.176-9.184
502
+ c3.168,0,6.016,0.16,8.576,0.288c7.52,0.32,11.296,0.768,16.256,12.64c6.176,14.88,21.216,51.616,23.008,55.392
503
+ c1.824,3.776,3.648,8.896,1.088,13.856c-2.4,5.12-4.512,7.392-8.288,11.744c-3.776,4.352-7.36,7.68-11.136,12.352
504
+ c-3.456,4.064-7.36,8.416-3.008,15.936c4.352,7.36,19.392,31.904,41.536,51.616c28.576,25.44,51.744,33.568,60.032,37.024
505
+ c6.176,2.56,13.536,1.952,18.048-2.848c5.728-6.176,12.8-16.416,20-26.496c5.12-7.232,11.584-8.128,18.368-5.568
506
+ c6.912,2.4,43.488,20.48,51.008,24.224c7.52,3.776,12.48,5.568,14.304,8.736C411.2,329.152,411.2,344.032,405.024,361.504z"></path>
507
+ </g>
508
+ </g>
509
+ <g></g>
510
+ <g></g>
511
+ <g></g>
512
+ <g></g>
513
+ <g></g>
514
+ <g></g>
515
+ <g></g>
516
+ <g></g>
517
+ <g></g>
518
+ <g></g>
519
+ <g></g>
520
+ <g></g>
521
+ <g></g>
522
+ <g></g>
523
+ <g></g>
524
+ </symbol>
525
+ <symbol version="1.1" id="money" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" space="preserve" viewBox="0 0 24 24">
526
+ <g stroke-width="0"></g><g stroke-linecap="round" stroke-linejoin="round" stroke="#CCCCCC" stroke-width="0.288"></g><g> <path d="M5,6 L5,6.5 C5,7.88071187 3.88071187,9 2.5,9 L2,9 L2,15 L2.54138127,15 C3.92209314,15 5.04138127,16.1192881 5.04138127,17.5 L5.04138127,18 L19,18 L19,17.5 C19,16.1192881 20.1192881,15 21.5,15 L22,15 L22,9 L21.5,9 C20.1192881,9 19,7.88071187 19,6.5 L19,6 L5,6 Z M4,6 L3.5,6 C2.67157288,6 2,6.67157288 2,7.5 L2,8 L2.5,8 C3.32842712,8 4,7.32842712 4,6.5 L4,6 Z M4.04138127,18 L4.04138127,17.5 C4.04138127,16.6715729 3.36980839,16 2.54138127,16 L2,16 L2,16.5 C2,17.3284271 2.67157288,18 3.5,18 L4.04138127,18 L4.04138127,18 Z M4.72515192,19 C4.66826565,19.0224932 4.60626682,19.0348527 4.54138127,19.0348527 C4.47649571,19.0348527 4.41449688,19.0224932 4.35761061,19 L3.5,19 C2.11928813,19 1,17.8807119 1,16.5 L1,7.5 C1,6.11928813 2.11928813,5 3.5,5 L20.5,5 C21.8807119,5 23,6.11928813 23,7.5 L23,16.5 C23,17.8807119 21.8807119,19 20.5,19 L4.72515192,19 L4.72515192,19 Z M20,18 L20.5,18 C21.3284271,18 22,17.3284271 22,16.5 L22,16 L21.5,16 C20.6715729,16 20,16.6715729 20,17.5 L20,18 Z M20,6 L20,6.5 C20,7.32842712 20.6715729,8 21.5,8 L22,8 L22,7.5 C22,6.67157288 21.3284271,6 20.5,6 L20,6 Z M12,16 C9.790861,16 8,14.209139 8,12 C8,9.790861 9.790861,8 12,8 C14.209139,8 16,9.790861 16,12 C16,14.209139 14.209139,16 12,16 Z M12,15 C13.6568542,15 15,13.6568542 15,12 C15,10.3431458 13.6568542,9 12,9 C10.3431458,9 9,10.3431458 9,12 C9,13.6568542 10.3431458,15 12,15 Z"></path> </g>
527
+ </symbol>
528
+ </svg>