@ikas/storefront 1.0.16-alpha.1 → 1.0.16

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 (323) hide show
  1. package/build/__generated__/global-types.d.ts +632 -0
  2. package/build/analytics/analytics.d.ts +37 -0
  3. package/build/analytics/events.d.ts +36 -0
  4. package/build/analytics/facebookPixel.d.ts +15 -0
  5. package/build/analytics/googleTagManager.d.ts +201 -0
  6. package/build/analytics/head/index.d.ts +7 -0
  7. package/build/analytics/ikas.d.ts +133 -0
  8. package/build/analytics/index.d.ts +2 -0
  9. package/build/api/apollo.d.ts +10 -0
  10. package/build/api/back-in-stock-reminder/__generated__/listProductBackInStockRemind.d.ts +24 -0
  11. package/build/api/back-in-stock-reminder/__generated__/saveProductBackInStockRemind.d.ts +19 -0
  12. package/build/api/back-in-stock-reminder/index.d.ts +23 -0
  13. package/build/api/blog/__generated__/getBlog.d.ts +106 -0
  14. package/build/api/blog/__generated__/listBlog.d.ts +109 -0
  15. package/build/api/blog/__generated__/listBlogCategory.d.ts +61 -0
  16. package/build/api/blog/__generated__/listBlogMetaData.d.ts +53 -0
  17. package/build/api/blog/index.d.ts +32 -0
  18. package/build/api/brand/__generated__/listProductBrand.d.ts +88 -0
  19. package/build/api/brand/index.d.ts +16 -0
  20. package/build/api/cart/__generated__/getCart.d.ts +176 -0
  21. package/build/api/cart/__generated__/saveItemToCart.d.ts +185 -0
  22. package/build/api/cart/index.d.ts +5 -0
  23. package/build/api/category/__generated__/listCategory.d.ts +99 -0
  24. package/build/api/category/__generated__/listCategoryPaths.d.ts +32 -0
  25. package/build/api/category/index.d.ts +18 -0
  26. package/build/api/checkout/__generated__/addCouponCodeToCheckout.d.ts +11 -0
  27. package/build/api/checkout/__generated__/checkStocks.d.ts +18 -0
  28. package/build/api/checkout/__generated__/createSaleTransactionWithCheckout.d.ts +22 -0
  29. package/build/api/checkout/__generated__/getCheckoutByCartId.d.ts +10 -0
  30. package/build/api/checkout/__generated__/getCheckoutById.d.ts +572 -0
  31. package/build/api/checkout/__generated__/getOrder.d.ts +614 -0
  32. package/build/api/checkout/__generated__/listCheckoutSettings.d.ts +34 -0
  33. package/build/api/checkout/__generated__/listPaymentGateway.d.ts +42 -0
  34. package/build/api/checkout/__generated__/retrieveInstallmentInfo.d.ts +23 -0
  35. package/build/api/checkout/__generated__/saveCheckout.d.ts +11 -0
  36. package/build/api/checkout/index.d.ts +29 -0
  37. package/build/api/city/__generated__/listCity.d.ts +20 -0
  38. package/build/api/city/index.d.ts +4 -0
  39. package/build/api/contact-form/__generated__/sendContactFormToMerchant.d.ts +9 -0
  40. package/build/api/contact-form/index.d.ts +10 -0
  41. package/build/api/country/__generated__/getAvailableShippingCountries.d.ts +6 -0
  42. package/build/api/country/__generated__/getMyCountry.d.ts +3 -0
  43. package/build/api/country/__generated__/listCountry.d.ts +41 -0
  44. package/build/api/country/index.d.ts +6 -0
  45. package/build/api/customer/__generated__/checkCustomerEmail.d.ts +10 -0
  46. package/build/api/customer/__generated__/createCustomerEmailSubscription.d.ts +11 -0
  47. package/build/api/customer/__generated__/createOrderRefundRequest.d.ts +584 -0
  48. package/build/api/customer/__generated__/customerForgotPassword.d.ts +7 -0
  49. package/build/api/customer/__generated__/customerLogin.d.ts +162 -0
  50. package/build/api/customer/__generated__/customerRecoverPassword.d.ts +8 -0
  51. package/build/api/customer/__generated__/customerRefreshToken.d.ts +11 -0
  52. package/build/api/customer/__generated__/customerSocialLogin.d.ts +161 -0
  53. package/build/api/customer/__generated__/getCustomerOrders.d.ts +614 -0
  54. package/build/api/customer/__generated__/getLastViewedProducts.d.ts +15 -0
  55. package/build/api/customer/__generated__/getMyCustomer.d.ts +140 -0
  56. package/build/api/customer/__generated__/listOrderRefundSettings.d.ts +13 -0
  57. package/build/api/customer/__generated__/listOrderTransactions.d.ts +53 -0
  58. package/build/api/customer/__generated__/registerCustomer.d.ts +158 -0
  59. package/build/api/customer/__generated__/saveLastViewedProducts.d.ts +11 -0
  60. package/build/api/customer/__generated__/saveMyCustomer.d.ts +155 -0
  61. package/build/api/customer/index.d.ts +49 -0
  62. package/build/api/customer-review/__generated__/createCustomerReview.d.ts +11 -0
  63. package/build/api/customer-review/__generated__/listCustomerReviews.d.ts +48 -0
  64. package/build/api/customer-review/index.d.ts +24 -0
  65. package/build/api/district/__generated__/listDistrict.d.ts +16 -0
  66. package/build/api/district/index.d.ts +4 -0
  67. package/build/api/favorite-product/__generated__/isFavoriteProduct.d.ts +6 -0
  68. package/build/api/favorite-product/__generated__/listFavoriteProducts.d.ts +12 -0
  69. package/build/api/favorite-product/__generated__/saveFavoriteProduct.d.ts +7 -0
  70. package/build/api/favorite-product/index.d.ts +6 -0
  71. package/build/api/html-meta-data/__generated__/listHTMLMetaData.d.ts +28 -0
  72. package/build/api/html-meta-data/index.d.ts +4 -0
  73. package/build/api/index.d.ts +21 -0
  74. package/build/api/merchant/__generated__/listMerchantSettings.d.ts +9 -0
  75. package/build/api/merchant/index.d.ts +4 -0
  76. package/build/api/product-attribute/__generated__/listProductAttribute.d.ts +72 -0
  77. package/build/api/product-attribute/index.d.ts +4 -0
  78. package/build/api/product-option-set/__generated__/ListProductOptionSet.d.ts +90 -0
  79. package/build/api/product-option-set/index.d.ts +6 -0
  80. package/build/api/product-search/__generated__/getProductFilterData.d.ts +61 -0
  81. package/build/api/product-search/__generated__/searchProducts.d.ts +26 -0
  82. package/build/api/product-search/index.d.ts +20 -0
  83. package/build/api/state/__generated__/listState.d.ts +19 -0
  84. package/build/api/state/index.d.ts +4 -0
  85. package/build/api/stock-location/__generated__/listStockLocation.d.ts +7 -0
  86. package/build/api/stock-location/index.d.ts +4 -0
  87. package/build/api/storefront/__generated__/getStorefront.d.ts +52 -0
  88. package/build/api/storefront/index.d.ts +4 -0
  89. package/build/api/variant-type/__generated__/listVariantType.d.ts +72 -0
  90. package/build/api/variant-type/index.d.ts +4 -0
  91. package/build/assets/translations/checkout/en.js +165 -0
  92. package/build/assets/translations/checkout/tr.js +164 -0
  93. package/build/components/checkout/components/address-form/index.d.ts +3 -0
  94. package/build/components/checkout/components/address-form/model.d.ts +131 -0
  95. package/build/components/checkout/components/button/index.d.ts +12 -0
  96. package/build/components/checkout/components/cart-summary/cart-item/index.d.ts +10 -0
  97. package/build/components/checkout/components/cart-summary/index.d.ts +8 -0
  98. package/build/components/checkout/components/checkbox/check.d.ts +6 -0
  99. package/build/components/checkout/components/checkbox/index.d.ts +10 -0
  100. package/build/components/checkout/components/credit-card-form/index.d.ts +7 -0
  101. package/build/components/checkout/components/credit-card-form/model.d.ts +26 -0
  102. package/build/components/checkout/components/credit-card-form/svg/amex.d.ts +6 -0
  103. package/build/components/checkout/components/credit-card-form/svg/master-card.d.ts +6 -0
  104. package/build/components/checkout/components/credit-card-form/svg/troy.d.ts +6 -0
  105. package/build/components/checkout/components/credit-card-form/svg/visa.d.ts +6 -0
  106. package/build/components/checkout/components/customer-addresses/index.d.ts +15 -0
  107. package/build/components/checkout/components/customer-addresses/model.d.ts +21 -0
  108. package/build/components/checkout/components/error/customer-login-required-error/index.d.ts +8 -0
  109. package/build/components/checkout/components/error/index.d.ts +7 -0
  110. package/build/components/checkout/components/error/no-shipping-error/index.d.ts +6 -0
  111. package/build/components/checkout/components/error/payment-error/index.d.ts +8 -0
  112. package/build/components/checkout/components/error/stock-error/index.d.ts +8 -0
  113. package/build/components/checkout/components/error/unknown-error/index.d.ts +6 -0
  114. package/build/components/checkout/components/expandable-section/index.d.ts +6 -0
  115. package/build/components/checkout/components/form-item/caret-down.d.ts +6 -0
  116. package/build/components/checkout/components/form-item/index.d.ts +3 -0
  117. package/build/components/checkout/components/form-item/model.d.ts +59 -0
  118. package/build/components/checkout/components/fullscreen-loading/index.d.ts +2 -0
  119. package/build/components/checkout/components/input-with-button/index.d.ts +11 -0
  120. package/build/components/checkout/components/modal/index.d.ts +8 -0
  121. package/build/components/checkout/components/notification-box/index.d.ts +9 -0
  122. package/build/components/checkout/components/select-box/index.d.ts +13 -0
  123. package/build/components/checkout/components/step-container/index.d.ts +15 -0
  124. package/build/components/checkout/components/svg/arrow-down.d.ts +6 -0
  125. package/build/components/checkout/components/svg/arrow-left.d.ts +6 -0
  126. package/build/components/checkout/components/svg/arrow-right.d.ts +6 -0
  127. package/build/components/checkout/components/svg/cross.d.ts +6 -0
  128. package/build/components/checkout/components/svg/discount.d.ts +6 -0
  129. package/build/components/checkout/components/svg/external.d.ts +6 -0
  130. package/build/components/checkout/components/svg/gift.d.ts +7 -0
  131. package/build/components/checkout/components/svg/ikas.d.ts +6 -0
  132. package/build/components/checkout/components/svg/lock.d.ts +6 -0
  133. package/build/components/checkout/components/svg/shopping-cart.d.ts +6 -0
  134. package/build/components/checkout/components/svg/success-circle.d.ts +6 -0
  135. package/build/components/checkout/components/svg/tag.d.ts +6 -0
  136. package/build/components/checkout/components/svg/warning.d.ts +6 -0
  137. package/build/components/checkout/components/toggle/index.d.ts +10 -0
  138. package/build/components/checkout/components/tooltip/index.d.ts +8 -0
  139. package/build/components/checkout/index.d.ts +32 -0
  140. package/build/components/checkout/model.d.ts +122 -0
  141. package/build/components/checkout/steps/step-info/index.d.ts +7 -0
  142. package/build/components/checkout/steps/step-payment/billing-address/index.d.ts +7 -0
  143. package/build/components/checkout/steps/step-payment/index.d.ts +7 -0
  144. package/build/components/checkout/steps/step-payment/payment-gateways/index.d.ts +7 -0
  145. package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.d.ts +7 -0
  146. package/build/components/checkout/steps/step-shipping/index.d.ts +7 -0
  147. package/build/components/checkout/steps/step-success/index.d.ts +7 -0
  148. package/build/components/error/index.d.ts +5 -0
  149. package/build/components/image/index.d.ts +36 -0
  150. package/build/components/index.d.ts +4 -0
  151. package/build/components/page/ThemeComponent.d.ts +10 -0
  152. package/build/components/page/head.d.ts +12 -0
  153. package/build/components/page/index.d.ts +17 -0
  154. package/build/components/page-editor/ThemeComponentEditor.d.ts +9 -0
  155. package/build/components/page-editor/index.d.ts +2 -0
  156. package/build/components/page-editor/model.d.ts +65 -0
  157. package/build/index.css +1517 -0
  158. package/build/index.d.ts +8 -0
  159. package/build/index.es.css +1517 -0
  160. package/build/index.es.js +74633 -0
  161. package/build/index.js +74762 -0
  162. package/build/models/data/blog/index.d.ts +67 -0
  163. package/build/models/data/brand/index.d.ts +21 -0
  164. package/build/models/data/cart/index.d.ts +47 -0
  165. package/build/models/data/category/index.d.ts +52 -0
  166. package/build/models/data/checkout/index.d.ts +103 -0
  167. package/build/models/data/checkout-settings/index.d.ts +25 -0
  168. package/build/models/data/city/index.d.ts +4 -0
  169. package/build/models/data/contact-form/index.d.ts +7 -0
  170. package/build/models/data/country/index.d.ts +8 -0
  171. package/build/models/data/customer/address/index.d.ts +52 -0
  172. package/build/models/data/customer/index.d.ts +33 -0
  173. package/build/models/data/customer-review/index.d.ts +23 -0
  174. package/build/models/data/customer-review-settings/index.d.ts +4 -0
  175. package/build/models/data/district/index.d.ts +4 -0
  176. package/build/models/data/favorite-product/index.d.ts +6 -0
  177. package/build/models/data/html-meta-data/index.d.ts +23 -0
  178. package/build/models/data/image/index.d.ts +8 -0
  179. package/build/models/data/index.d.ts +33 -0
  180. package/build/models/data/installment-info/index.d.ts +30 -0
  181. package/build/models/data/merchant-settings/index.d.ts +8 -0
  182. package/build/models/data/order/address/index.d.ts +51 -0
  183. package/build/models/data/order/adjustment/index.d.ts +16 -0
  184. package/build/models/data/order/gift-line/index.d.ts +4 -0
  185. package/build/models/data/order/index.d.ts +146 -0
  186. package/build/models/data/order/line-item/discount/index.d.ts +11 -0
  187. package/build/models/data/order/line-item/index.d.ts +43 -0
  188. package/build/models/data/order/line-item/options/index.d.ts +10 -0
  189. package/build/models/data/order/line-item/options/options-value/index.d.ts +6 -0
  190. package/build/models/data/order/line-item/variant/index.d.ts +25 -0
  191. package/build/models/data/order/refund/index.d.ts +6 -0
  192. package/build/models/data/order/refund/refund-line-item/index.d.ts +5 -0
  193. package/build/models/data/order/refund/settings.d.ts +6 -0
  194. package/build/models/data/order/shipping-line/index.d.ts +7 -0
  195. package/build/models/data/order-transaction/index.d.ts +74 -0
  196. package/build/models/data/payment-gateway/index.d.ts +61 -0
  197. package/build/models/data/product/attribute-value/index.d.ts +20 -0
  198. package/build/models/data/product/index.d.ts +35 -0
  199. package/build/models/data/product/variant/index.d.ts +24 -0
  200. package/build/models/data/product/variant/price/index.d.ts +11 -0
  201. package/build/models/data/product/variant-type/index.d.ts +6 -0
  202. package/build/models/data/product-attribute/index.d.ts +34 -0
  203. package/build/models/data/product-attribute/product-attribute-option/index.d.ts +5 -0
  204. package/build/models/data/product-attribute/product-attribute-table-cell/index.d.ts +5 -0
  205. package/build/models/data/product-attribute/product-attribute-table-template/index.d.ts +6 -0
  206. package/build/models/data/product-back-in-stock-settings/index.d.ts +3 -0
  207. package/build/models/data/product-cart-item-options/index.d.ts +6 -0
  208. package/build/models/data/product-filter/index.d.ts +109 -0
  209. package/build/models/data/product-option-set/index.d.ts +104 -0
  210. package/build/models/data/product-tag/index.d.ts +5 -0
  211. package/build/models/data/sales-channel/index.d.ts +18 -0
  212. package/build/models/data/simple-product/index.d.ts +136 -0
  213. package/build/models/data/state/index.d.ts +5 -0
  214. package/build/models/data/storefront/domain/index.d.ts +8 -0
  215. package/build/models/data/storefront/index.d.ts +23 -0
  216. package/build/models/data/storefront/localization/index.d.ts +7 -0
  217. package/build/models/data/storefront/routing/index.d.ts +9 -0
  218. package/build/models/data/storefront/theme/index.d.ts +13 -0
  219. package/build/models/data/storefront/theme-localization/index.d.ts +12 -0
  220. package/build/models/data/variant-type/index.d.ts +26 -0
  221. package/build/models/data/variant-type/variant-value/index.d.ts +11 -0
  222. package/build/models/index.d.ts +3 -0
  223. package/build/models/theme/component/index.d.ts +10 -0
  224. package/build/models/theme/component/prop/index.d.ts +40 -0
  225. package/build/models/theme/custom-data/index.d.ts +24 -0
  226. package/build/models/theme/index.d.ts +18 -0
  227. package/build/models/theme/page/component/index.d.ts +6 -0
  228. package/build/models/theme/page/component/prop-value/attribute-list.d.ts +7 -0
  229. package/build/models/theme/page/component/prop-value/attribute.d.ts +7 -0
  230. package/build/models/theme/page/component/prop-value/blog-category-list.d.ts +7 -0
  231. package/build/models/theme/page/component/prop-value/blog-category.d.ts +5 -0
  232. package/build/models/theme/page/component/prop-value/blog-list.d.ts +9 -0
  233. package/build/models/theme/page/component/prop-value/blog.d.ts +5 -0
  234. package/build/models/theme/page/component/prop-value/brand-list.d.ts +9 -0
  235. package/build/models/theme/page/component/prop-value/brand.d.ts +5 -0
  236. package/build/models/theme/page/component/prop-value/category-list.d.ts +9 -0
  237. package/build/models/theme/page/component/prop-value/category.d.ts +5 -0
  238. package/build/models/theme/page/component/prop-value/link.d.ts +19 -0
  239. package/build/models/theme/page/component/prop-value/product-detail.d.ts +6 -0
  240. package/build/models/theme/page/component/prop-value/product-list.d.ts +17 -0
  241. package/build/models/theme/page/index.d.ts +40 -0
  242. package/build/models/theme/settings/index.d.ts +13 -0
  243. package/build/models/theme/settings/prop/color/index.d.ts +7 -0
  244. package/build/models/theme/settings/prop/favicon/index.d.ts +4 -0
  245. package/build/models/theme/theme.d.ts +16 -0
  246. package/build/models/ui/blog-category-list/index.d.ts +52 -0
  247. package/build/models/ui/blog-list/index.d.ts +56 -0
  248. package/build/models/ui/brand-list/index.d.ts +61 -0
  249. package/build/models/ui/category-list/index.d.ts +61 -0
  250. package/build/models/ui/component-renderer/index.d.ts +7 -0
  251. package/build/models/ui/customer-review-list/index.d.ts +43 -0
  252. package/build/models/ui/index.d.ts +22 -0
  253. package/build/models/ui/navigation-link/index.d.ts +8 -0
  254. package/build/models/ui/product-attribute-detail/index.d.ts +8 -0
  255. package/build/models/ui/product-attribute-list/index.d.ts +9 -0
  256. package/build/models/ui/product-detail/index.d.ts +28 -0
  257. package/build/models/ui/product-list/index.d.ts +132 -0
  258. package/build/models/ui/validator/form/account-info.d.ts +40 -0
  259. package/build/models/ui/validator/form/address.d.ts +75 -0
  260. package/build/models/ui/validator/form/contact-form.d.ts +45 -0
  261. package/build/models/ui/validator/form/customer-review.d.ts +37 -0
  262. package/build/models/ui/validator/form/forgot-password.d.ts +29 -0
  263. package/build/models/ui/validator/form/login.d.ts +35 -0
  264. package/build/models/ui/validator/form/recover-password.d.ts +36 -0
  265. package/build/models/ui/validator/form/register.d.ts +48 -0
  266. package/build/models/ui/validator/index.d.ts +27 -0
  267. package/build/models/ui/validator/rules/index.d.ts +87 -0
  268. package/build/pages/404.d.ts +6 -0
  269. package/build/pages/[slug]/index.d.ts +7 -0
  270. package/build/pages/account/addresses.d.ts +6 -0
  271. package/build/pages/account/favorite-products.d.ts +6 -0
  272. package/build/pages/account/forgot-password.d.ts +6 -0
  273. package/build/pages/account/index.d.ts +6 -0
  274. package/build/pages/account/login.d.ts +6 -0
  275. package/build/pages/account/orders/[id].d.ts +6 -0
  276. package/build/pages/account/orders/index.d.ts +6 -0
  277. package/build/pages/account/recover-password.d.ts +6 -0
  278. package/build/pages/account/register.d.ts +6 -0
  279. package/build/pages/blog/[slug].d.ts +7 -0
  280. package/build/pages/blog/index.d.ts +6 -0
  281. package/build/pages/cart.d.ts +6 -0
  282. package/build/pages/checkout.d.ts +18 -0
  283. package/build/pages/editor.d.ts +8 -0
  284. package/build/pages/home.d.ts +6 -0
  285. package/build/pages/index.d.ts +20 -0
  286. package/build/pages/pages/[slug].d.ts +7 -0
  287. package/build/pages/search.d.ts +6 -0
  288. package/build/providers/page-data-get.d.ts +61 -0
  289. package/build/providers/page-data-init.d.ts +58 -0
  290. package/build/providers/page-data-next.d.ts +243 -0
  291. package/build/providers/placeholders.d.ts +6 -0
  292. package/build/providers/prop-value/attribute-list.d.ts +12 -0
  293. package/build/providers/prop-value/attribute.d.ts +12 -0
  294. package/build/providers/prop-value/blog-category-list.d.ts +7 -0
  295. package/build/providers/prop-value/blog-category.d.ts +11 -0
  296. package/build/providers/prop-value/blog-list.d.ts +9 -0
  297. package/build/providers/prop-value/blog.d.ts +11 -0
  298. package/build/providers/prop-value/boolean.d.ts +6 -0
  299. package/build/providers/prop-value/brand-list.d.ts +7 -0
  300. package/build/providers/prop-value/brand.d.ts +11 -0
  301. package/build/providers/prop-value/category-list.d.ts +7 -0
  302. package/build/providers/prop-value/category.d.ts +11 -0
  303. package/build/providers/prop-value/checkout.d.ts +4 -0
  304. package/build/providers/prop-value/color.d.ts +6 -0
  305. package/build/providers/prop-value/custom.d.ts +42 -0
  306. package/build/providers/prop-value/image-list.d.ts +7 -0
  307. package/build/providers/prop-value/image.d.ts +7 -0
  308. package/build/providers/prop-value/index.d.ts +3 -0
  309. package/build/providers/prop-value/link.d.ts +16 -0
  310. package/build/providers/prop-value/product-detail.d.ts +11 -0
  311. package/build/providers/prop-value/product-list.d.ts +9 -0
  312. package/build/providers/prop-value/rich-text.d.ts +6 -0
  313. package/build/providers/prop-value/text.d.ts +6 -0
  314. package/build/store/base.d.ts +25 -0
  315. package/build/store/cart.d.ts +30 -0
  316. package/build/store/customer.d.ts +91 -0
  317. package/build/store/index.d.ts +1 -0
  318. package/build/storefront/index.d.ts +55 -0
  319. package/build/utils/currency.d.ts +7 -0
  320. package/build/utils/helper.d.ts +8 -0
  321. package/build/utils/i18n.d.ts +20 -0
  322. package/build/utils/index.d.ts +3 -0
  323. package/package.json +4 -3
@@ -0,0 +1,1517 @@
1
+ .style-module_FormSectionTitle__2LxF2 {
2
+ width: 100%;
3
+ display: flex;
4
+ justify-content: space-between;
5
+ align-items: center; }
6
+ .style-module_FormSectionTitle__2LxF2 .style-module_Title__2PxW0 {
7
+ flex: 1 1 auto;
8
+ padding-bottom: 16px;
9
+ color: var(--checkout-primary-text-color);
10
+ font-size: 20px;
11
+ line-height: 32px; }
12
+ .style-module_FormSectionTitle__2LxF2 .style-module_Title__2PxW0.style-module_WithSubTitle__36X7i {
13
+ line-height: auto;
14
+ padding-bottom: 0; }
15
+
16
+ .style-module_SubTitle__2UOsH {
17
+ color: var(--checkout-secondary-text-color);
18
+ font-size: 14px;
19
+ padding-bottom: 16px;
20
+ padding-top: 2px; }
21
+
22
+ .style-module_Grid__1eODF {
23
+ display: grid;
24
+ grid-gap: 16px;
25
+ grid-template-columns: 1fr; }
26
+ .style-module_Grid__1eODF.style-module_Grid2__1HTRV {
27
+ grid-template-columns: repeat(2, 1fr); }
28
+ .style-module_Grid__1eODF.style-module_Grid3__uN7io {
29
+ grid-template-columns: repeat(3, 1fr); }
30
+ @media only screen and (max-width: 768px) {
31
+ .style-module_Grid__1eODF {
32
+ grid-template-columns: 1fr !important; } }
33
+
34
+ @keyframes style-module_fadeInFromRight__L_PAx {
35
+ from {
36
+ opacity: 0;
37
+ transform: translateY(10px); }
38
+ to {
39
+ opacity: 1;
40
+ transform: translateY(0); } }
41
+
42
+ .style-module_FormItem__1o0fc {
43
+ width: 100%; }
44
+ .style-module_FormItemWrapper__2NOxU {
45
+ width: 100%;
46
+ position: relative; }
47
+ .style-module_FormItemWrapper__2NOxU .style-module_RightContent__1fjX9 {
48
+ position: absolute;
49
+ height: 100%;
50
+ top: 0;
51
+ right: 0; }
52
+ .style-module_FormItemInputWrapper__2eOdJ {
53
+ position: relative;
54
+ width: 100%; }
55
+ .style-module_FormItemInputWrapper__2eOdJ label.style-module_FieldLabel__2Tx0b {
56
+ color: var(--checkout-secondary-text-color);
57
+ position: absolute;
58
+ top: 0;
59
+ left: 17px;
60
+ width: 100%;
61
+ z-index: 1;
62
+ user-select: none;
63
+ pointer-events: none;
64
+ overflow: hidden;
65
+ white-space: nowrap;
66
+ text-overflow: ellipsis;
67
+ transition: transform .1s;
68
+ transform: translateY(18px);
69
+ font-size: 0.85em;
70
+ line-height: 22px; }
71
+ .style-module_FormItemInputWrapper__2eOdJ label.style-module_FieldLabelTop__1nOBq {
72
+ transform: translateY(8px);
73
+ font-size: 0.7em; }
74
+ .style-module_FormItemInputWrapper__2eOdJ input,
75
+ .style-module_FormItemInputWrapper__2eOdJ select,
76
+ .style-module_FormItemInputWrapper__2eOdJ textarea {
77
+ border: 1px solid var(--checkout-border-color);
78
+ background-color: var(--checkout-primary-bg-color);
79
+ color: var(--checkout-primary-text-color);
80
+ background-clip: padding-box;
81
+ border-radius: 8px;
82
+ display: block;
83
+ width: 100%;
84
+ height: 56px;
85
+ padding: 8px 16px;
86
+ outline: none;
87
+ transition: padding .1s, border-color .5s, box-shadow .5s;
88
+ box-shadow: 0 0 0 1px transparent;
89
+ -moz-appearance: none;
90
+ -webkit-appearance: none; }
91
+ .style-module_FormItemInputWrapper__2eOdJ input:focus,
92
+ .style-module_FormItemInputWrapper__2eOdJ select:focus,
93
+ .style-module_FormItemInputWrapper__2eOdJ textarea:focus {
94
+ box-shadow: 0 0 0 1px var(--checkout-button-bg-color);
95
+ border-color: var(--checkout-button-bg-color); }
96
+ .style-module_FormItemInputWrapper__2eOdJ input.style-module_Bottom__3s4pZ,
97
+ .style-module_FormItemInputWrapper__2eOdJ select.style-module_Bottom__3s4pZ,
98
+ .style-module_FormItemInputWrapper__2eOdJ textarea.style-module_Bottom__3s4pZ {
99
+ padding-top: 1.2em;
100
+ padding-bottom: 0.2em; }
101
+ .style-module_FormItemInputWrapper__2eOdJ input.style-module_Error__nif12,
102
+ .style-module_FormItemInputWrapper__2eOdJ select.style-module_Error__nif12,
103
+ .style-module_FormItemInputWrapper__2eOdJ textarea.style-module_Error__nif12 {
104
+ box-shadow: 0 0 0 1px var(--checkout-error-color);
105
+ border-color: var(--checkout-error-color); }
106
+ .style-module_FormItemInputWrapper__2eOdJ input.style-module_WithTooltip__1KRSQ,
107
+ .style-module_FormItemInputWrapper__2eOdJ select.style-module_WithTooltip__1KRSQ,
108
+ .style-module_FormItemInputWrapper__2eOdJ textarea.style-module_WithTooltip__1KRSQ {
109
+ padding-right: 40px; }
110
+ .style-module_FormItemInputWrapper__2eOdJ input::-ms-expand,
111
+ .style-module_FormItemInputWrapper__2eOdJ select::-ms-expand,
112
+ .style-module_FormItemInputWrapper__2eOdJ textarea::-ms-expand {
113
+ display: none; }
114
+ .style-module_FormItemInputWrapper__2eOdJ input::placeholder,
115
+ .style-module_FormItemInputWrapper__2eOdJ select::placeholder,
116
+ .style-module_FormItemInputWrapper__2eOdJ textarea::placeholder {
117
+ color: var(--checkout-secondary-text-color) !important; }
118
+ .style-module_FormItemInputWrapper__2eOdJ textarea {
119
+ min-height: 120px; }
120
+ .style-module_FormItemInputWrapper__2eOdJ .style-module_ArrowContainer__27ejm {
121
+ position: absolute;
122
+ right: 1px;
123
+ padding-right: 0.5em;
124
+ top: 1px;
125
+ height: calc(100% - 2px);
126
+ display: flex;
127
+ align-items: center;
128
+ color: var(--checkout-secondary-text-color);
129
+ background-color: var(--checkout-primary-bg-color);
130
+ z-index: 2;
131
+ border-radius: 6px; }
132
+ .style-module_FormItemInputWrapper__2eOdJ .PhoneInput {
133
+ display: flex;
134
+ align-items: center; }
135
+ .style-module_FormItemInputWrapper__2eOdJ .PhoneInputInput {
136
+ padding-left: 64px; }
137
+ .style-module_FormItemInputWrapper__2eOdJ .PhoneInputInput::placeholder {
138
+ color: var(--checkout-secondary-text-color) !important;
139
+ font-size: 14px !important; }
140
+ .style-module_FormItemInputWrapper__2eOdJ .PhoneInputCountry {
141
+ position: absolute;
142
+ align-self: stretch;
143
+ display: flex;
144
+ align-items: center;
145
+ top: 26px;
146
+ left: 16px; }
147
+ .style-module_FormItemInputWrapper__2eOdJ .PhoneInputCountrySelect {
148
+ border: none;
149
+ display: inline-flex;
150
+ width: 60px;
151
+ position: absolute;
152
+ top: 0;
153
+ left: 0;
154
+ height: 100%;
155
+ width: 100%;
156
+ z-index: 1;
157
+ border: 0;
158
+ opacity: 0;
159
+ cursor: pointer; }
160
+ .style-module_FormItemInputWrapper__2eOdJ .PhoneInputCountryIcon {
161
+ width: calc(1em * 1.5);
162
+ height: 1em; }
163
+ .style-module_FormItemInputWrapper__2eOdJ .PhoneInputCountrySelectArrow {
164
+ display: block;
165
+ content: '';
166
+ width: 0.3em;
167
+ height: 0.3em;
168
+ margin-left: 0.35em;
169
+ border-style: solid;
170
+ border-color: inherit;
171
+ border-top-width: 0;
172
+ border-bottom-width: 1px;
173
+ border-left-width: 0;
174
+ border-right-width: 1px;
175
+ transform: rotate(45deg);
176
+ opacity: 0.45; }
177
+ .style-module_FormItemInputWrapper__2eOdJ .PhoneInputCountryIconImg {
178
+ width: 24px; }
179
+ .style-module_FormItem__1o0fc .style-module_ErrorMsg__3How6 {
180
+ color: var(--checkout-error-color);
181
+ font-size: 12px;
182
+ margin-top: 8px;
183
+ animation-name: style-module_fadeInFromRight__L_PAx;
184
+ animation-duration: .3s; }
185
+ .style-module_FormItem__1o0fc.style-module_PhoneError__2FrSf input {
186
+ box-shadow: 0 0 0 1px var(--checkout-error-color) !important;
187
+ border-color: var(--checkout-error-color) !important; }
188
+
189
+ .style-module_FormItemWrapper__2NOxU {
190
+ position: relative; }
191
+
192
+ .style-module_FormItemTooltipContainer__13wpt {
193
+ width: 16px;
194
+ height: 16px;
195
+ border-radius: 100%;
196
+ color: white;
197
+ background-color: var(--checkout-secondary-text-color);
198
+ position: absolute;
199
+ top: 0;
200
+ right: 16px;
201
+ bottom: 0;
202
+ margin: auto;
203
+ display: flex;
204
+ justify-content: center;
205
+ align-items: center;
206
+ font-size: 12px !important;
207
+ line-height: 16px !important;
208
+ cursor: pointer; }
209
+
210
+ .style-module_Button__1UPMN {
211
+ cursor: pointer;
212
+ user-select: none;
213
+ border: 1px transparent solid;
214
+ border-radius: 8px;
215
+ font-weight: 600 !important;
216
+ text-align: center;
217
+ position: relative;
218
+ transition: all .2s;
219
+ display: flex;
220
+ justify-content: center;
221
+ align-items: center; }
222
+ .style-module_Button__1UPMN:focus {
223
+ outline: 0; }
224
+ .style-module_Button__1UPMN.style-module_Large__2wPlw {
225
+ height: 56px;
226
+ padding: 0 24px; }
227
+ .style-module_Button__1UPMN.style-module_Medium__3t0pu {
228
+ height: 48px;
229
+ padding: 0 16px; }
230
+ .style-module_Button__1UPMN.style-module_Dark__1Z_hs {
231
+ background-color: var(--checkout-button-bg-color);
232
+ color: var(--checkout-button-text-color); }
233
+ .style-module_Button__1UPMN.style-module_Disabled__3HYF_ {
234
+ background-color: var(--checkout-button-disabled-bg-color);
235
+ color: var(--checkout-button-disabled-text-color);
236
+ pointer-events: none; }
237
+ @media only screen and (max-width: 1000px) {
238
+ .style-module_Button__1UPMN.style-module_FullWidthMobile__3MTFv {
239
+ width: 100%; } }
240
+ .style-module_Button__1UPMN.style-module_Line__1kche {
241
+ background-color: transparent;
242
+ border-color: var(--checkout-border-color);
243
+ color: var(--checkout-button-bg-color); }
244
+ .style-module_Button__1UPMN.style-module_Line__1kche .style-module_loader__3v6kq {
245
+ border-left: 0.5em solid var(--checkout-button-bg-color); }
246
+ .style-module_Button__1UPMN .style-module_loader__3v6kq,
247
+ .style-module_Button__1UPMN .style-module_loader__3v6kq:after {
248
+ border-radius: 50%;
249
+ width: 5em;
250
+ height: 5em; }
251
+ .style-module_Button__1UPMN .style-module_loader__3v6kq {
252
+ font-size: 6px;
253
+ position: relative;
254
+ text-indent: -9999em;
255
+ border-top: 0.5em solid rgba(255, 255, 255, 0.2);
256
+ border-right: 0.5em solid rgba(255, 255, 255, 0.2);
257
+ border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
258
+ border-left: 0.5em solid var(--checkout-button-text-color);
259
+ -webkit-transform: translateZ(0);
260
+ -ms-transform: translateZ(0);
261
+ transform: translateZ(0);
262
+ -webkit-animation: style-module_load8__2z7nj 1.1s infinite linear;
263
+ animation: style-module_load8__2z7nj 1.1s infinite linear; }
264
+
265
+ @-webkit-keyframes style-module_load8__2z7nj {
266
+ 0% {
267
+ -webkit-transform: rotate(0deg);
268
+ transform: rotate(0deg); }
269
+ 100% {
270
+ -webkit-transform: rotate(360deg);
271
+ transform: rotate(360deg); } }
272
+
273
+ @keyframes style-module_load8__2z7nj {
274
+ 0% {
275
+ -webkit-transform: rotate(0deg);
276
+ transform: rotate(0deg); }
277
+ 100% {
278
+ -webkit-transform: rotate(360deg);
279
+ transform: rotate(360deg); } }
280
+
281
+ .style-module_CheckboxWrapper__2tSbx {
282
+ width: 100%;
283
+ display: flex;
284
+ padding: 8px 0;
285
+ cursor: pointer;
286
+ user-select: none;
287
+ align-items: center; }
288
+ .style-module_CheckboxWrapper__2tSbx.style-module_WithoutPadding__3Azhr {
289
+ padding: 0; }
290
+ .style-module_CheckboxWrapper__2tSbx .style-module_CheckboxContainer__1zRvT {
291
+ flex: 0 0 auto;
292
+ position: relative;
293
+ width: 20px;
294
+ height: 20px;
295
+ margin-right: 12px; }
296
+ .style-module_CheckboxWrapper__2tSbx .style-module_CheckboxBorder__281X3 {
297
+ flex: 0 0 auto;
298
+ width: 20px;
299
+ height: 20px;
300
+ border-radius: 4px;
301
+ border: 1px solid var(--checkout-border-color);
302
+ position: absolute;
303
+ top: 0;
304
+ left: 0;
305
+ transition: border-width .2s ease-in-out; }
306
+ .style-module_CheckboxWrapper__2tSbx .style-module_CheckboxBorder__281X3.style-module_Checked__3-ZM4 {
307
+ border: 10px solid var(--checkout-button-bg-color); }
308
+ .style-module_CheckboxWrapper__2tSbx .style-module_CheckboxTick__2LpQ- {
309
+ width: 20px;
310
+ height: 20px;
311
+ display: flex;
312
+ justify-content: center;
313
+ align-items: center;
314
+ position: absolute;
315
+ top: 0;
316
+ left: 0;
317
+ color: var(--checkout-button-text-color);
318
+ z-index: 2;
319
+ transition: all 0.2s ease-in-out;
320
+ transition-delay: .1s;
321
+ opacity: 0;
322
+ transform: scale(0.2); }
323
+ .style-module_CheckboxWrapper__2tSbx .style-module_CheckboxTick__2LpQ-.style-module_Visible__2Ng5Q {
324
+ opacity: 1;
325
+ transform: scale(1.2); }
326
+ .style-module_CheckboxWrapper__2tSbx .style-module_CheckboxLabel__30uMC {
327
+ flex: 1 1 auto;
328
+ font-weight: normal;
329
+ color: var(--checkout-secondary-text-color); }
330
+ .style-module_CheckboxWrapper__2tSbx .style-module_CheckboxLabelError__FmdxF {
331
+ color: var(--checkout-error-color); }
332
+
333
+ .style-module_NotificationBox__1XbTC {
334
+ padding: 16px;
335
+ border-radius: 8px;
336
+ color: var(--checkout-primary-text-color);
337
+ display: flex; }
338
+ .style-module_NotificationBox__1XbTC.style-module_Error__2muwO {
339
+ border: 1px solid var(--checkout-error-color);
340
+ background-color: var(--checkout-error-light-color); }
341
+ .style-module_NotificationBox__1XbTC.style-module_Error__2muwO svg {
342
+ color: var(--checkout-error-color); }
343
+ .style-module_NotificationBox__1XbTC.style-module_Warning__1BFJi {
344
+ border: 1px solid var(--checkout-warning-color);
345
+ background-color: var(--checkout-warning-light-color); }
346
+ .style-module_NotificationBox__1XbTC.style-module_Warning__1BFJi svg {
347
+ color: var(--checkout-warning-color); }
348
+ .style-module_NotificationBox__1XbTC.style-module_Success__3E9Q7 {
349
+ border: 1px solid var(--checkout-success-color);
350
+ background-color: var(--checkout-success-light-color); }
351
+ .style-module_NotificationBox__1XbTC.style-module_Success__3E9Q7 svg {
352
+ color: var(--checkout-success-color); }
353
+ .style-module_NotificationBox__1XbTC .style-module_Left__2oQNx {
354
+ flex: 0 0 auto;
355
+ padding-right: 10px;
356
+ display: flex;
357
+ align-items: center;
358
+ height: 24px; }
359
+ .style-module_NotificationBox__1XbTC .style-module_Center__3DJ2K {
360
+ flex: 1 1 auto; }
361
+ .style-module_NotificationBox__1XbTC .style-module_Center__3DJ2K .style-module_Title__1Ae11 {
362
+ font-size: 16px;
363
+ font-weight: 600;
364
+ margin-bottom: 4px; }
365
+ .style-module_NotificationBox__1XbTC .style-module_Right__Uf0Z6 {
366
+ flex: 0 0 auto;
367
+ padding-left: 10px;
368
+ color: var(--checkout-secondary-text-color);
369
+ cursor: pointer;
370
+ display: flex; }
371
+ .style-module_NotificationBox__1XbTC .style-module_Right__Uf0Z6 svg {
372
+ color: var(--checkout-secondary-text-color); }
373
+
374
+ .common-module_FormSectionTitle___Mykh {
375
+ width: 100%;
376
+ display: flex;
377
+ justify-content: space-between;
378
+ align-items: center; }
379
+ .common-module_FormSectionTitle___Mykh .common-module_Title__3JTHt {
380
+ flex: 1 1 auto;
381
+ padding-bottom: 16px;
382
+ color: var(--checkout-primary-text-color);
383
+ font-size: 20px;
384
+ line-height: 32px; }
385
+ .common-module_FormSectionTitle___Mykh .common-module_Title__3JTHt.common-module_WithSubTitle__1VHWv {
386
+ line-height: auto;
387
+ padding-bottom: 0; }
388
+
389
+ .common-module_SubTitle__1H4kH {
390
+ color: var(--checkout-secondary-text-color);
391
+ font-size: 14px;
392
+ padding-bottom: 16px;
393
+ padding-top: 2px; }
394
+
395
+ .common-module_Grid__2CuvH {
396
+ display: grid;
397
+ grid-gap: 16px;
398
+ grid-template-columns: 1fr; }
399
+ .common-module_Grid__2CuvH.common-module_Grid2__9CCag {
400
+ grid-template-columns: repeat(2, 1fr); }
401
+ .common-module_Grid__2CuvH.common-module_Grid3__3p0jJ {
402
+ grid-template-columns: repeat(3, 1fr); }
403
+ @media only screen and (max-width: 768px) {
404
+ .common-module_Grid__2CuvH {
405
+ grid-template-columns: 1fr !important; } }
406
+
407
+ @keyframes common-module_fadeInFromRight__3RYk5 {
408
+ from {
409
+ opacity: 0;
410
+ transform: translateY(10px); }
411
+ to {
412
+ opacity: 1;
413
+ transform: translateY(0); } }
414
+
415
+ .style-module_CheckoutPage__A_f2V {
416
+ all: unset;
417
+ font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
418
+ font-size: 16px !important;
419
+ width: 100%;
420
+ height: 100vh;
421
+ overflow: auto;
422
+ overflow-x: hidden;
423
+ display: flex;
424
+ color: var(--checkout-primary-text-color);
425
+ background-color: var(--checkout-primary-bg-color); }
426
+ .style-module_CheckoutPage__A_f2V input::placeholder, .style-module_CheckoutPage__A_f2V textarea::placeholder {
427
+ all: unset; }
428
+ .style-module_CheckoutPage__A_f2V a, .style-module_CheckoutPage__A_f2V a:hover, .style-module_CheckoutPage__A_f2V a:focus, .style-module_CheckoutPage__A_f2V a:active {
429
+ color: inherit; }
430
+ .style-module_CheckoutPage__A_f2V * {
431
+ box-sizing: border-box !important;
432
+ font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
433
+ font-size: 16px;
434
+ letter-spacing: normal;
435
+ font-weight: normal;
436
+ line-height: unset; }
437
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 {
438
+ width: 50%;
439
+ flex: 0 0 auto;
440
+ display: flex;
441
+ justify-content: flex-end;
442
+ padding-left: 20px;
443
+ padding-right: 64px;
444
+ background-color: var(--checkout-primary-bg-color);
445
+ z-index: 1; }
446
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 {
447
+ width: 100%;
448
+ min-width: 400px;
449
+ max-width: 600px;
450
+ display: flex;
451
+ flex-direction: column;
452
+ justify-content: space-between;
453
+ min-height: 100vh; }
454
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_Space__1e2de {
455
+ width: 100%;
456
+ height: 100px; }
457
+ @media only screen and (max-width: 1000px) {
458
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_Space__1e2de {
459
+ height: 48px; } }
460
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_Footer__ebdyg {
461
+ flex: 0 0 auto;
462
+ height: 50px;
463
+ background-color: transparent;
464
+ width: 100%;
465
+ display: flex;
466
+ justify-content: center;
467
+ align-items: center; }
468
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_Footer__ebdyg .style-module_FooterItem__1ofBc {
469
+ font-size: 14px;
470
+ color: var(--checkout-secondary-text-color);
471
+ cursor: pointer;
472
+ user-select: none; }
473
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_Footer__ebdyg .style-module_FooterItem__1ofBc:hover {
474
+ color: var(--checkout-primary-text-color); }
475
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_Footer__ebdyg .style-module_FooterBullet__1dD9S {
476
+ margin: 0 12px;
477
+ color: var(--checkout-secondary-text-color); }
478
+ @media only screen and (max-width: 1000px) {
479
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_Footer__ebdyg {
480
+ width: 100%; }
481
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_Footer__ebdyg .style-module_FooterItem__1ofBc {
482
+ text-align: center; } }
483
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AdressStepInfo__27aR0 {
484
+ display: flex;
485
+ justify-content: space-between;
486
+ padding-left: 78px;
487
+ padding-top: 5px;
488
+ width: 100%; }
489
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AdressStepInfo__27aR0 .style-module_Address__2tYiR {
490
+ font-size: 16px; }
491
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AdressStepInfo__27aR0 .style-module_Address__2tYiR .style-module_Text__FkGkR {
492
+ font-size: 14px; }
493
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AdressStepInfo__27aR0 .style-module_Address__2tYiR .style-module_Text__FkGkR.style-module_WithMBottom__TQbZL {
494
+ margin-bottom: 12px; }
495
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AdressStepInfo__27aR0 .style-module_Address__2tYiR .style-module_Text__FkGkR.style-module_Gray__3vyMM {
496
+ color: var(--checkout-secondary-text-color); }
497
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AdressStepInfo__27aR0 .style-module_EditBtn__3aAlL {
498
+ cursor: pointer;
499
+ user-select: none;
500
+ align-self: flex-start; }
501
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AdressStepInfo__27aR0 .style-module_EditBtn__3aAlL:hover {
502
+ text-decoration: underline; }
503
+ @media only screen and (max-width: 1000px) {
504
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AdressStepInfo__27aR0 {
505
+ padding-top: 0;
506
+ justify-content: flex-end; }
507
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AdressStepInfo__27aR0 .style-module_Address__2tYiR {
508
+ display: none; } }
509
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AddressStepInfoMobile__uwl92 {
510
+ display: none; }
511
+ @media only screen and (max-width: 1000px) {
512
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AddressStepInfoMobile__uwl92 {
513
+ display: block;
514
+ padding-top: 16px; } }
515
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AddressStepInfoMobile__uwl92 .style-module_Address__2tYiR {
516
+ font-size: 16px; }
517
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AddressStepInfoMobile__uwl92 .style-module_Address__2tYiR .style-module_Text__FkGkR {
518
+ font-size: 14px; }
519
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AddressStepInfoMobile__uwl92 .style-module_Address__2tYiR .style-module_Text__FkGkR.style-module_WithMBottom__TQbZL {
520
+ margin-bottom: 12px; }
521
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_AddressStepInfoMobile__uwl92 .style-module_Address__2tYiR .style-module_Text__FkGkR.style-module_Gray__3vyMM {
522
+ color: var(--checkout-secondary-text-color); }
523
+ @media only screen and (max-width: 1000px) {
524
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_ErrorContainer__3B5Gx {
525
+ padding: 0 24px; } }
526
+ @media only screen and (max-width: 480px) {
527
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 .style-module_ErrorContainer__3B5Gx {
528
+ padding: 0 10px; } }
529
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 {
530
+ width: 100%;
531
+ height: 96px;
532
+ display: flex;
533
+ justify-content: space-between;
534
+ align-items: center;
535
+ font-weight: 500;
536
+ font-size: 20px;
537
+ margin-bottom: 44px; }
538
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 a {
539
+ flex: 1 1 auto; }
540
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_Logo__2E8Do {
541
+ width: calc(100% - 24px);
542
+ max-width: 200px;
543
+ height: 64px;
544
+ position: relative;
545
+ user-select: none;
546
+ cursor: pointer; }
547
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_Logo__2E8Do img {
548
+ object-fit: contain;
549
+ object-position: left;
550
+ pointer-events: none; }
551
+ @media only screen and (max-width: 1280px) {
552
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_Logo__2E8Do {
553
+ max-width: 150px; } }
554
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_LoginText__3FSC9 {
555
+ font-size: 14px;
556
+ text-align: right;
557
+ flex: 0 0 auto; }
558
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_LoginText__3FSC9 span {
559
+ color: var(--checkout-secondary-text-color); }
560
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_LoginBtn__XVF05 {
561
+ margin-left: 4px;
562
+ font-weight: bold;
563
+ user-select: none;
564
+ cursor: pointer;
565
+ font-weight: 500; }
566
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_CustomerInfo__3aAq9 {
567
+ display: flex;
568
+ flex-direction: column;
569
+ align-items: flex-end; }
570
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_CustomerInfo__3aAq9 .style-module_Name__11iSh {
571
+ font-size: 20px;
572
+ font-weight: 600; }
573
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_CustomerInfo__3aAq9 .style-module_Email__1AITY {
574
+ font-weight: 500;
575
+ font-size: 14px;
576
+ user-select: none;
577
+ color: var(--checkout-secondary-text-color); }
578
+ @media only screen and (max-width: 1000px) {
579
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 {
580
+ height: 72px;
581
+ margin-bottom: 0;
582
+ padding: 0 24px; }
583
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_CustomerInfo__3aAq9 .style-module_Name__11iSh {
584
+ font-size: 15px; }
585
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_CustomerInfo__3aAq9 .style-module_Email__1AITY {
586
+ font-size: 13px; }
587
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_LoginText__3FSC9 {
588
+ display: flex;
589
+ flex-direction: column;
590
+ padding-bottom: 0; }
591
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_Header__1vfF1 .style-module_LoginText__3FSC9 .style-module_LoginCta__2sZZF {
592
+ display: none; } }
593
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_MobileCartSummary__3NrcP {
594
+ position: sticky;
595
+ top: 0;
596
+ z-index: 10; }
597
+ @media only screen and (min-width: 1000px) {
598
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_MobileCartSummary__3NrcP {
599
+ display: none; } }
600
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_RowPB__3M7Tz {
601
+ padding-bottom: 16px; }
602
+ @media only screen and (max-width: 1000px) {
603
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 {
604
+ width: 100%;
605
+ justify-content: center;
606
+ padding-right: 0px;
607
+ padding-left: 0px; }
608
+ .style-module_CheckoutPage__A_f2V .style-module_Left__2dWz6 .style-module_LeftContent__1Tyb7 {
609
+ width: 100%;
610
+ min-width: auto;
611
+ max-width: 100%; } }
612
+ .style-module_CheckoutPage__A_f2V .style-module_Right__3AN4f {
613
+ width: 50%;
614
+ min-height: 100%;
615
+ flex: 0 0 auto;
616
+ background-color: var(--checkout-secondary-bg-color);
617
+ display: flex;
618
+ padding-left: 64px;
619
+ padding-right: 20px;
620
+ position: sticky;
621
+ top: 0;
622
+ overflow-y: auto;
623
+ z-index: 1; }
624
+ .style-module_CheckoutPage__A_f2V .style-module_Right__3AN4f .style-module_RightContent__1TcO5 {
625
+ width: 100%;
626
+ max-width: 600px;
627
+ padding-top: 168px;
628
+ display: flex;
629
+ flex-direction: column;
630
+ justify-content: space-between; }
631
+ .style-module_CheckoutPage__A_f2V .style-module_Right__3AN4f .style-module_RightContent__1TcO5 .style-module_PoweredBy__2kV_J {
632
+ width: 100%;
633
+ padding: 16px 0;
634
+ display: flex;
635
+ justify-content: center;
636
+ align-items: center;
637
+ color: var(--checkout-primary-text-color);
638
+ user-select: none; }
639
+ .style-module_CheckoutPage__A_f2V .style-module_Right__3AN4f .style-module_RightContent__1TcO5 .style-module_PoweredBy__2kV_J span {
640
+ font-size: 14px;
641
+ line-height: 20px;
642
+ color: var(--checkout-secondary-text-color);
643
+ margin-right: 8px; }
644
+ .style-module_CheckoutPage__A_f2V .style-module_Right__3AN4f .style-module_RightContent__1TcO5 .style-module_PoweredBy__2kV_J a {
645
+ display: flex;
646
+ align-items: center; }
647
+ @media only screen and (max-width: 1000px) {
648
+ .style-module_CheckoutPage__A_f2V .style-module_Right__3AN4f {
649
+ display: none; } }
650
+
651
+ .style-module_LightText__3dSVB {
652
+ color: var(--checkout-secondary-text-color); }
653
+
654
+ .style-module_ReactTooltipWrap__2hp2P {
655
+ max-width: 300px; }
656
+
657
+ .style-module_SelectBoxContainer__1T9C7 {
658
+ margin-bottom: 16px; }
659
+
660
+ .style-module_SelectBoxError__2diiS {
661
+ color: var(--checkout-error-color);
662
+ font-size: 12px;
663
+ margin-top: 8px;
664
+ animation-name: style-module_fadeInFromRight__9YMxj;
665
+ animation-duration: .3s; }
666
+
667
+ .style-module_SelectBox__1xZZi {
668
+ padding: 16px;
669
+ width: 100%;
670
+ transition: all .2s;
671
+ border-radius: 8px;
672
+ cursor: pointer;
673
+ border: 1px solid var(--checkout-border-color);
674
+ box-shadow: 0 0 0 1px transparent; }
675
+ .style-module_SelectBox__1xZZi .style-module_TopContent__oUtcc {
676
+ display: flex;
677
+ align-items: center;
678
+ user-select: none; }
679
+ .style-module_SelectBox__1xZZi .style-module_TopContent__oUtcc .style-module_Label__1I8Bm {
680
+ flex: 1 1 auto;
681
+ margin-left: 16px; }
682
+ .style-module_SelectBox__1xZZi .style-module_TopContent__oUtcc .style-module_RightContent__2Ob1u {
683
+ flex: 0 0 auto;
684
+ margin-left: 16px; }
685
+ .style-module_SelectBox__1xZZi .style-module_BottomContent__1AMWK {
686
+ padding-top: 16px;
687
+ width: 100%; }
688
+ .style-module_SelectBox__1xZZi.style-module_Selected__Ipn0q {
689
+ box-shadow: 0 0 0 1px var(--checkout-button-bg-color);
690
+ border-color: var(--checkout-button-bg-color);
691
+ background-color: var(--checkout-card-bg-color); }
692
+ .style-module_SelectBox__1xZZi.style-module_Selected__Ipn0q.style-module_Error__2TFZc {
693
+ box-shadow: 0 0 0 1px var(--checkout-error-color);
694
+ border-color: var(--checkout-error-color); }
695
+
696
+ .style-module_CheckboxWrapper__3CzTt {
697
+ width: 100%;
698
+ display: flex;
699
+ padding: 0.5em 0;
700
+ cursor: pointer;
701
+ user-select: none;
702
+ align-items: center; }
703
+ .style-module_CheckboxWrapper__3CzTt.style-module_WithoutPadding__2le2B {
704
+ padding: 0; }
705
+ .style-module_CheckboxWrapper__3CzTt.style-module_WithoutLabel__1s1q8 {
706
+ padding: 0;
707
+ width: auto; }
708
+ .style-module_CheckboxWrapper__3CzTt .style-module_CheckboxContainer__lWDtJ {
709
+ position: relative;
710
+ width: 20px;
711
+ height: 20px;
712
+ margin-right: 16px; }
713
+ .style-module_CheckboxWrapper__3CzTt .style-module_CheckboxBorder__EYjFT {
714
+ flex: 0 0 auto;
715
+ width: 20px;
716
+ height: 20px;
717
+ border-radius: 100%;
718
+ border: 1px solid var(--checkout-border-color);
719
+ position: absolute;
720
+ top: 0;
721
+ left: 0;
722
+ transition: border-width .2s ease-in-out; }
723
+ .style-module_CheckboxWrapper__3CzTt .style-module_CheckboxBorder__EYjFT.style-module_Checked__2kb9S {
724
+ border: 10px solid var(--checkout-button-bg-color); }
725
+ .style-module_CheckboxWrapper__3CzTt .style-module_CheckboxTick__149cN {
726
+ width: 20px;
727
+ height: 20px;
728
+ display: flex;
729
+ justify-content: center;
730
+ align-items: center;
731
+ position: absolute;
732
+ top: 0;
733
+ left: 0;
734
+ color: var(--checkout-button-text-color);
735
+ z-index: 2;
736
+ transition: all 0.2s ease-in-out;
737
+ transition-delay: .1s;
738
+ opacity: 0;
739
+ transform: scale(0.2); }
740
+ .style-module_CheckboxWrapper__3CzTt .style-module_CheckboxTick__149cN.style-module_Visible__gf4pv {
741
+ opacity: 1;
742
+ transform: scale(1.2); }
743
+ .style-module_CheckboxWrapper__3CzTt .style-module_CheckboxLabel__D36H4 {
744
+ flex: 1 1 auto;
745
+ font-weight: normal; }
746
+ .style-module_CheckboxWrapper__3CzTt .style-module_CheckboxLabelError__1x08H {
747
+ color: var(--checkout-error-color); }
748
+
749
+ .style-module_AddressText__2J31s {
750
+ padding-left: 32px;
751
+ color: var(--checkout-secondary-text-color); }
752
+
753
+ .style-module_CancelEdit__2MXfO {
754
+ font-size: 16px;
755
+ padding-bottom: 16px;
756
+ cursor: pointer;
757
+ user-select: none; }
758
+
759
+ .style-module_EditAddressActions__1TY0T {
760
+ display: grid;
761
+ grid-template-columns: 1fr 1fr;
762
+ grid-gap: 16px;
763
+ margin-top: 16px; }
764
+
765
+ .style-module_BackButtonContainer__2bAOw {
766
+ display: flex;
767
+ justify-content: center;
768
+ position: relative; }
769
+ .style-module_BackButtonContainer__2bAOw a {
770
+ line-height: 0.9em; }
771
+
772
+ .style-module_Actions__3fU7l {
773
+ display: flex;
774
+ align-items: center;
775
+ justify-content: space-between; }
776
+ @media only screen and (max-width: 1000px) {
777
+ .style-module_Actions__3fU7l {
778
+ flex-direction: column-reverse;
779
+ justify-content: flex-start; }
780
+ .style-module_Actions__3fU7l a {
781
+ margin-top: 1em; } }
782
+
783
+ .style-module_StepShipping__3nOPT {
784
+ margin-top: 8px; }
785
+
786
+ .style-module_InfoBox__kyrCZ.style-module_Dimmed__3dkFw {
787
+ opacity: 0.5; }
788
+
789
+ .style-module_GiftSection__2phwh {
790
+ margin-top: 32px; }
791
+
792
+ .style-module_ShippingPrice__KaEps {
793
+ font-weight: 600; }
794
+
795
+ .style-module_CardLogo__1jFyp {
796
+ display: flex;
797
+ align-items: center;
798
+ height: 100%;
799
+ padding-right: 16px; }
800
+
801
+ .style-module_Installments__aM2lS {
802
+ margin-top: 32px; }
803
+ .style-module_Installments__aM2lS .style-module_Title__15N6L {
804
+ font-size: 16px;
805
+ line-height: 24px;
806
+ margin-bottom: 16px; }
807
+ .style-module_Installments__aM2lS .style-module_Container__12sJp {
808
+ border: 1px solid var(--checkout-border-color);
809
+ border-radius: 8px;
810
+ background: var(--checkout-primary-bg-color); }
811
+ .style-module_Installments__aM2lS .style-module_Container__12sJp .style-module_Row__dxeKi {
812
+ height: 56px;
813
+ display: flex;
814
+ align-items: center;
815
+ padding: 0 16px;
816
+ border-bottom: 1px solid var(--checkout-border-color); }
817
+ .style-module_Installments__aM2lS .style-module_Container__12sJp .style-module_Row__dxeKi:last-of-type {
818
+ border-bottom: none; }
819
+ .style-module_Installments__aM2lS .style-module_Container__12sJp .style-module_Row__dxeKi .style-module_InstallmentInfo__G8QDB {
820
+ flex: 1 1 auto; }
821
+ .style-module_Installments__aM2lS .style-module_Container__12sJp .style-module_Row__dxeKi .style-module_InstallmentInfo__G8QDB .style-module_InstallmentCount__22FOH {
822
+ font-size: 16px; }
823
+ .style-module_Installments__aM2lS .style-module_Container__12sJp .style-module_Row__dxeKi .style-module_InstallmentInfo__G8QDB .style-module_InstallmentPrice__1cJHw {
824
+ font-size: 12px;
825
+ color: var(--checkout-secondary-text-color); }
826
+ .style-module_Installments__aM2lS .style-module_Container__12sJp .style-module_Row__dxeKi .style-module_Price__3gzwQ {
827
+ flex: 0 0 auto;
828
+ font-weight: 600;
829
+ font-size: 16px;
830
+ line-height: 24px; }
831
+
832
+ .style-module_PaymentLogoContainer__224HZ {
833
+ margin-left: 10px;
834
+ font-size: 0.7em; }
835
+ .style-module_PaymentLogoContainer__224HZ img {
836
+ height: 20px; }
837
+
838
+ .style-module_AdditionalPrice__gW28c {
839
+ color: var(--checkout-primary-text-color);
840
+ font-weight: 600; }
841
+
842
+ .style-module_StepPayment__3STxe {
843
+ margin-top: 8px; }
844
+ .style-module_StepPayment__3STxe .style-module_TermsLabelSpan__35xVC {
845
+ color: var(--checkout-primary-text-color); }
846
+ .style-module_StepPayment__3STxe .style-module_TermsLabelSpan__35xVC:hover {
847
+ text-decoration: underline; }
848
+ .style-module_StepPayment__3STxe .style-module_SecurePaymentContainer__8jSz4 {
849
+ width: 100%;
850
+ display: flex;
851
+ justify-content: center;
852
+ align-items: center;
853
+ margin-top: 24px;
854
+ color: var(--checkout-secondary-text-color); }
855
+ .style-module_StepPayment__3STxe .style-module_SecurePaymentContainer__8jSz4 .style-module_Lock__2gl_x {
856
+ color: #CFCED3;
857
+ margin-right: 8px;
858
+ display: flex;
859
+ align-items: center;
860
+ position: relative;
861
+ top: -1px; }
862
+
863
+ .style-module_Container__2_f6f {
864
+ width: 100%;
865
+ height: 44px;
866
+ background-color: white;
867
+ border-radius: 8px;
868
+ display: flex;
869
+ justify-content: flex-end;
870
+ position: relative; }
871
+ .style-module_Container__2_f6f input {
872
+ width: calc(100% - 2px);
873
+ height: 100%;
874
+ padding: 10px 16px;
875
+ outline: none;
876
+ -moz-appearance: none;
877
+ -webkit-appearance: none;
878
+ transition: all .5s;
879
+ box-shadow: 0 0 0 1px transparent;
880
+ border: 1px solid transparent;
881
+ border-radius: 9px;
882
+ margin-left: 1px;
883
+ color: var(--checkout-primary-text-color);
884
+ position: absolute;
885
+ top: 0px;
886
+ left: 0px;
887
+ padding-right: calc(33% + 16px); }
888
+ .style-module_Container__2_f6f input::placeholder {
889
+ color: var(--checkout-secondary-text-color) !important; }
890
+ .style-module_Container__2_f6f input:focus {
891
+ box-shadow: 0 0 0 1px var(--checkout-button-bg-color);
892
+ border-color: var(--checkout-button-bg-color); }
893
+ .style-module_Container__2_f6f .style-module_Button__38WsW {
894
+ flex: 0 0 auto;
895
+ height: 100%;
896
+ width: 33%;
897
+ color: var(--checkout-button-text-color);
898
+ background-color: var(--checkout-button-bg-color);
899
+ border-radius: 8px;
900
+ font-weight: 600;
901
+ text-align: center;
902
+ position: relative;
903
+ transition: all .2s;
904
+ display: flex;
905
+ justify-content: center;
906
+ align-items: center;
907
+ user-select: none;
908
+ cursor: pointer; }
909
+ .style-module_Container__2_f6f .style-module_Button__38WsW .style-module_loader__2oUyh,
910
+ .style-module_Container__2_f6f .style-module_Button__38WsW .style-module_loader__2oUyh:after {
911
+ border-radius: 50%;
912
+ width: 5em;
913
+ height: 5em; }
914
+ .style-module_Container__2_f6f .style-module_Button__38WsW .style-module_loader__2oUyh {
915
+ font-size: 4px;
916
+ position: relative;
917
+ text-indent: -9999em;
918
+ border-top: 0.5em solid rgba(255, 255, 255, 0.2);
919
+ border-right: 0.5em solid rgba(255, 255, 255, 0.2);
920
+ border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
921
+ border-left: 0.5em solid var(--checkout-button-text-color);
922
+ -webkit-transform: translateZ(0);
923
+ -ms-transform: translateZ(0);
924
+ transform: translateZ(0);
925
+ -webkit-animation: style-module_load8__2JtWU 1.1s infinite linear;
926
+ animation: style-module_load8__2JtWU 1.1s infinite linear; }
927
+
928
+ @-webkit-keyframes style-module_load8__2JtWU {
929
+ 0% {
930
+ -webkit-transform: rotate(0deg);
931
+ transform: rotate(0deg); }
932
+ 100% {
933
+ -webkit-transform: rotate(360deg);
934
+ transform: rotate(360deg); } }
935
+
936
+ @keyframes style-module_load8__2JtWU {
937
+ 0% {
938
+ -webkit-transform: rotate(0deg);
939
+ transform: rotate(0deg); }
940
+ 100% {
941
+ -webkit-transform: rotate(360deg);
942
+ transform: rotate(360deg); } }
943
+
944
+ .style-module_CheckoutItem__2JjSt {
945
+ display: flex;
946
+ width: 100%;
947
+ margin-bottom: 24px; }
948
+ .style-module_CheckoutItem__2JjSt .style-module_ImageContainer__2K2RG {
949
+ flex: 0 0 auto;
950
+ width: 114px;
951
+ height: 114px;
952
+ position: relative;
953
+ margin-right: 16px; }
954
+ .style-module_CheckoutItem__2JjSt .style-module_ImageContainer__2K2RG .style-module_Image__w2Q_P {
955
+ width: 100%;
956
+ height: 100%;
957
+ object-fit: cover;
958
+ border-radius: 8px; }
959
+ .style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l {
960
+ position: relative; }
961
+ .style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l .style-module_Name__nPgw1 {
962
+ font-size: 16px;
963
+ font-weight: 600;
964
+ color: var(--checkout-primary-text-color);
965
+ line-height: 24px;
966
+ max-height: 48px;
967
+ overflow: hidden;
968
+ text-overflow: ellipsis;
969
+ display: -webkit-box;
970
+ -webkit-line-clamp: 2;
971
+ -webkit-box-orient: vertical; }
972
+ .style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l .style-module_LightText__2P69D {
973
+ font-size: 14px;
974
+ color: var(--checkout-secondary-text-color);
975
+ line-height: 20px;
976
+ margin-top: 2px; }
977
+ .style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l .style-module_OptionsText__3z7sK {
978
+ font-size: 14px;
979
+ color: var(--checkout-primary-text-color);
980
+ line-height: 20px;
981
+ margin-top: 2px;
982
+ user-select: none; }
983
+ .style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l .style-module_OptionsText__3z7sK:hover {
984
+ cursor: pointer;
985
+ text-decoration: underline; }
986
+ .style-module_CheckoutItem__2JjSt .style-module_Price__1Vw31 {
987
+ font-size: 14px;
988
+ display: flex;
989
+ align-items: center;
990
+ color: var(--checkout-primary-text-color); }
991
+ .style-module_CheckoutItem__2JjSt .style-module_Price__1Vw31 .style-module_GrayPrice__2wDyJ {
992
+ font-size: 14px;
993
+ color: var(--checkout-secondary-text-color);
994
+ text-decoration: line-through;
995
+ margin-right: 8px; }
996
+ .style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 {
997
+ display: flex;
998
+ flex-direction: column;
999
+ margin-bottom: 24px;
1000
+ max-width: 400px; }
1001
+ .style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 .style-module_OptionName__3X0-1 {
1002
+ font-size: 14px;
1003
+ color: var(--checkout-primary-text-color);
1004
+ margin-right: 8px;
1005
+ font-weight: 500; }
1006
+ .style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 .style-module_OptionValue__2AnCA {
1007
+ font-size: 14px;
1008
+ color: var(--checkout-secondary-text-color); }
1009
+ .style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 .style-module_OptionsHorContainer__3D8xk {
1010
+ display: flex;
1011
+ align-items: center;
1012
+ flex-wrap: wrap; }
1013
+ .style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 .style-module_OptionColorValue__36zoV {
1014
+ width: 24px;
1015
+ height: 24px;
1016
+ border-radius: 4px;
1017
+ margin-right: 4px; }
1018
+
1019
+ .style-module_ModalContainer__3JCG6 {
1020
+ position: fixed;
1021
+ top: 0;
1022
+ left: 0;
1023
+ width: 100vw;
1024
+ height: 100vh;
1025
+ background-color: rgba(0, 0, 0, 0.6);
1026
+ backdrop-filter: blur(6px);
1027
+ z-index: 99999999;
1028
+ display: flex;
1029
+ justify-content: center;
1030
+ align-items: center; }
1031
+ .style-module_ModalContainer__3JCG6 .style-module_Modal__s3oha {
1032
+ border-radius: 8px;
1033
+ background-color: white;
1034
+ color: var(--checkout-primary-text-color);
1035
+ min-width: 400px;
1036
+ max-width: 750px;
1037
+ max-height: 90%;
1038
+ display: flex;
1039
+ flex-direction: column;
1040
+ overflow: hidden; }
1041
+ .style-module_ModalContainer__3JCG6 .style-module_Modal__s3oha .style-module_ModalHeader__vEeDs {
1042
+ flex: 0 0 auto;
1043
+ padding: 16px;
1044
+ font-size: 18px;
1045
+ border-bottom: 1px solid var(--checkout-border-color);
1046
+ display: flex;
1047
+ justify-content: space-between;
1048
+ align-items: center; }
1049
+ .style-module_ModalContainer__3JCG6 .style-module_Modal__s3oha .style-module_ModalHeader__vEeDs .style-module_ModalTitle__3hZYI {
1050
+ font-weight: 500;
1051
+ max-width: 300px; }
1052
+ .style-module_ModalContainer__3JCG6 .style-module_Modal__s3oha .style-module_ModalHeader__vEeDs .style-module_CloseButton__3VdYY {
1053
+ cursor: pointer;
1054
+ display: flex;
1055
+ align-items: center; }
1056
+ .style-module_ModalContainer__3JCG6 .style-module_Modal__s3oha .style-module_ModalContent__2jGi3 {
1057
+ flex: 1 1 auto;
1058
+ padding: 24px;
1059
+ overflow-y: auto; }
1060
+ @media only screen and (max-width: 1000px) {
1061
+ .style-module_ModalContainer__3JCG6 .style-module_Modal__s3oha {
1062
+ max-width: unset;
1063
+ max-height: unset;
1064
+ min-width: unset;
1065
+ width: 100%;
1066
+ height: 100%;
1067
+ margin: 0;
1068
+ border-radius: 0; }
1069
+ .style-module_ModalContainer__3JCG6 .style-module_Modal__s3oha .style-module_ModalHeader__vEeDs {
1070
+ padding: 1.5em; } }
1071
+
1072
+ .style-module_TooltipContainer__1IW8v {
1073
+ width: 16px;
1074
+ height: 16px;
1075
+ border-radius: 100%;
1076
+ color: white;
1077
+ background-color: var(--checkout-secondary-text-color);
1078
+ display: flex;
1079
+ justify-content: center;
1080
+ align-items: center;
1081
+ font-size: 12px !important;
1082
+ cursor: pointer;
1083
+ position: relative; }
1084
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6 {
1085
+ position: absolute;
1086
+ margin: auto;
1087
+ color: white;
1088
+ background-color: #404040;
1089
+ border-radius: 4px;
1090
+ padding: 12px;
1091
+ font-size: 12px;
1092
+ display: none;
1093
+ width: 280px;
1094
+ text-align: center;
1095
+ z-index: 999;
1096
+ font-size: 16px !important; }
1097
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6 .style-module_TooltipArrow__1l6q_ {
1098
+ background-color: #404040;
1099
+ width: 12px;
1100
+ height: 12px;
1101
+ transform: rotate(45deg);
1102
+ position: absolute;
1103
+ margin: auto;
1104
+ border-radius: 2px; }
1105
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6.style-module_Top__1_7C6 {
1106
+ bottom: 26px; }
1107
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6.style-module_Top__1_7C6 .style-module_TooltipArrow__1l6q_ {
1108
+ bottom: -4px;
1109
+ left: 0;
1110
+ right: 0; }
1111
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6.style-module_Bottom__2qCpQ {
1112
+ top: 26px; }
1113
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6.style-module_Bottom__2qCpQ .style-module_TooltipArrow__1l6q_ {
1114
+ top: -4px;
1115
+ left: 0;
1116
+ right: 0; }
1117
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6.style-module_Left__1T6gj {
1118
+ right: 26px; }
1119
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6.style-module_Left__1T6gj .style-module_TooltipArrow__1l6q_ {
1120
+ right: -4px;
1121
+ top: 0;
1122
+ bottom: 0; }
1123
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6.style-module_Right__uCMMF {
1124
+ left: 26px; }
1125
+ .style-module_TooltipContainer__1IW8v .style-module_Tooltip__1Pxw6.style-module_Right__uCMMF .style-module_TooltipArrow__1l6q_ {
1126
+ left: -4px;
1127
+ top: 0;
1128
+ bottom: 0; }
1129
+ .style-module_TooltipContainer__1IW8v:hover .style-module_Tooltip__1Pxw6 {
1130
+ display: inline-flex; }
1131
+
1132
+ @media only screen and (max-width: 1000px) {
1133
+ .style-module_CartSummary__30RcF {
1134
+ width: 100%;
1135
+ background-color: var(--checkout-card-bg-color); } }
1136
+
1137
+ .style-module_CartSummary__30RcF.style-module_AllowExpand__3kDXF {
1138
+ border-top: 1px solid var(--checkout-border-color); }
1139
+
1140
+ .style-module_CartSummary__30RcF .style-module_ExpandHeader__2ICjA {
1141
+ display: flex;
1142
+ justify-content: space-between;
1143
+ align-items: center;
1144
+ height: 48px;
1145
+ padding: 0 24px;
1146
+ width: 100%;
1147
+ border-bottom: 1px solid var(--checkout-border-color);
1148
+ transition: border-bottom .3s;
1149
+ user-select: none;
1150
+ background-color: var(--checkout-primary-bg-color); }
1151
+ .style-module_CartSummary__30RcF .style-module_ExpandHeader__2ICjA .style-module_Left__A54sv {
1152
+ display: flex;
1153
+ align-items: center;
1154
+ font-size: 16px;
1155
+ font-weight: 600; }
1156
+ .style-module_CartSummary__30RcF .style-module_ExpandHeader__2ICjA .style-module_Price__sosrJ {
1157
+ font-weight: 600;
1158
+ display: flex;
1159
+ align-items: center; }
1160
+ .style-module_CartSummary__30RcF .style-module_ExpandHeader__2ICjA .style-module_Price__sosrJ .style-module_PriceText__1ePGb {
1161
+ font-weight: 600;
1162
+ margin-right: 8px; }
1163
+ .style-module_CartSummary__30RcF .style-module_ExpandHeader__2ICjA .style-module_Price__sosrJ .style-module_ArrowDown__2ET-d {
1164
+ transition: all .3s;
1165
+ display: flex;
1166
+ align-items: center; }
1167
+ .style-module_CartSummary__30RcF .style-module_ExpandHeader__2ICjA .style-module_Price__sosrJ .style-module_ArrowDown__2ET-d.style-module_Rotated__3sgbm {
1168
+ transform: rotate(-180deg); }
1169
+
1170
+ .style-module_CartSummary__30RcF .style-module_DetailsContainer__FBBIP {
1171
+ overflow: hidden;
1172
+ width: 100%;
1173
+ transition: height .3s ease-in-out; }
1174
+ @media only screen and (max-width: 1000px) {
1175
+ .style-module_CartSummary__30RcF .style-module_DetailsContainer__FBBIP {
1176
+ padding: 0 24px;
1177
+ box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2); } }
1178
+
1179
+ .style-module_CartSummary__30RcF .style-module_Details__3-X_i {
1180
+ overflow: hidden; }
1181
+ @media only screen and (max-width: 1000px) {
1182
+ .style-module_CartSummary__30RcF .style-module_Details__3-X_i {
1183
+ padding-top: 24px; } }
1184
+
1185
+ .style-module_CartSummary__30RcF .style-module_Divider__2d0Zk {
1186
+ width: 100%;
1187
+ height: 1px;
1188
+ margin: auto;
1189
+ background-color: var(--checkout-border-color); }
1190
+
1191
+ .style-module_CartSummary__30RcF .style-module_ActionTextBtn__FXJQX {
1192
+ color: var(--checkout-primary-text-color);
1193
+ user-select: none;
1194
+ cursor: pointer;
1195
+ display: flex;
1196
+ align-items: center; }
1197
+ .style-module_CartSummary__30RcF .style-module_ActionTextBtn__FXJQX:hover {
1198
+ text-decoration: underline; }
1199
+ .style-module_CartSummary__30RcF .style-module_ActionTextBtn__FXJQX.style-module_NoUnderline__34-1r:hover {
1200
+ text-decoration: none; }
1201
+ .style-module_CartSummary__30RcF .style-module_ActionTextBtn__FXJQX.style-module_Light__WFzH8 {
1202
+ color: var(--checkout-secondary-text-color); }
1203
+
1204
+ .style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr {
1205
+ padding: 24px 0;
1206
+ border-bottom: 1px solid var(--checkout-border-color); }
1207
+ .style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr .style-module_InfoRow__3eZdJ {
1208
+ display: flex;
1209
+ justify-content: space-between;
1210
+ align-items: center;
1211
+ margin-bottom: 10px; }
1212
+ .style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr .style-module_InfoRow__3eZdJ .style-module_Label__3E7LF {
1213
+ color: var(--checkout-secondary-text-color);
1214
+ display: flex;
1215
+ align-items: center; }
1216
+ .style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr .style-module_InfoRow__3eZdJ:last-of-type {
1217
+ margin-bottom: 0; }
1218
+
1219
+ .style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt {
1220
+ display: flex;
1221
+ justify-content: space-between;
1222
+ align-items: center;
1223
+ margin-top: 12px; }
1224
+ .style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt .style-module_TitleContainer__3ptQE .style-module_Title__16M5E {
1225
+ font-size: 20px;
1226
+ font-weight: 600; }
1227
+ .style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt .style-module_TotalPrice__2s7DC {
1228
+ font-size: 20px;
1229
+ font-weight: 600; }
1230
+ @media only screen and (max-width: 1000px) {
1231
+ .style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt {
1232
+ height: 64px;
1233
+ margin-top: 0px; } }
1234
+
1235
+ .style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 {
1236
+ display: flex;
1237
+ align-items: center;
1238
+ padding: 4px 4px 4px 8px;
1239
+ background-color: white;
1240
+ border-radius: 6px;
1241
+ margin-left: 12px;
1242
+ font-size: 14px;
1243
+ line-height: 20px; }
1244
+ .style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 .style-module_CouponCode__3rgOu {
1245
+ font-size: 14px; }
1246
+ .style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 .style-module_ClearCoupon__1Rx4A {
1247
+ cursor: pointer;
1248
+ display: flex;
1249
+ align-items: center;
1250
+ color: var(--checkout-secondary-text-color); }
1251
+ .style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 .style-module_ClearCoupon__1Rx4A svg {
1252
+ transform: scale(0.8); }
1253
+
1254
+ .style-module_CartSummary__30RcF .style-module_NotificationContainer__Zblek {
1255
+ margin-bottom: 14px; }
1256
+
1257
+ .style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd {
1258
+ margin-top: 24px;
1259
+ width: calc(100% - 2px);
1260
+ margin-left: 1px; }
1261
+ .style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd .style-module_Title__16M5E {
1262
+ font-size: 16px;
1263
+ color: var(--checkout-primary-text-color);
1264
+ margin-bottom: 8px; }
1265
+ .style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd .style-module_CheckoutNoteDisplay__kTFTx {
1266
+ color: var(--checkout-secondary-text-color); }
1267
+ .style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd.style-module_Success__2vqWA {
1268
+ margin-top: 0; }
1269
+ @media only screen and (max-width: 1000px) {
1270
+ .style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd {
1271
+ margin-top: 0px; } }
1272
+
1273
+ .style-module_CartSummary__30RcF .style-module_GiftLabel__2f-wC {
1274
+ display: flex;
1275
+ align-items: center; }
1276
+ .style-module_CartSummary__30RcF .style-module_GiftLabel__2f-wC span {
1277
+ margin-left: 8px; }
1278
+
1279
+ .style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ {
1280
+ width: 100%;
1281
+ height: 50px;
1282
+ justify-content: center;
1283
+ align-items: center;
1284
+ color: var(--checkout-primary-text-color);
1285
+ display: none; }
1286
+ @media only screen and (max-width: 1000px) {
1287
+ .style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ {
1288
+ display: flex; } }
1289
+ .style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ span {
1290
+ font-size: 14px;
1291
+ line-height: 20px;
1292
+ color: var(--checkout-secondary-text-color);
1293
+ margin-right: 8px; }
1294
+ .style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ a {
1295
+ display: flex;
1296
+ align-items: center; }
1297
+
1298
+ .style-module_StepSuccess__36Zg4 {
1299
+ padding-top: 24px; }
1300
+ .style-module_StepSuccess__36Zg4 .style-module_SuccessTitleContainer__3fT9P {
1301
+ margin-bottom: 24px;
1302
+ display: flex;
1303
+ align-items: center; }
1304
+ .style-module_StepSuccess__36Zg4 .style-module_SuccessTitleContainer__3fT9P .style-module_SuccessTitle__2cVxj {
1305
+ font-size: 28px;
1306
+ font-weight: 600;
1307
+ margin-left: 16px; }
1308
+ .style-module_StepSuccess__36Zg4 .style-module_SuccessSubTitle__2UvWI {
1309
+ margin: auto;
1310
+ margin-bottom: 32px; }
1311
+ .style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk {
1312
+ display: grid;
1313
+ grid-template-columns: 1fr 1fr;
1314
+ grid-gap: 48px; }
1315
+ .style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_InfoTitle__2Whku {
1316
+ font-size: 16px;
1317
+ line-height: 24px;
1318
+ margin-bottom: 12px; }
1319
+ .style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_InfoText__1LHFw {
1320
+ font-size: 14px;
1321
+ color: var(--checkout-secondary-text-color);
1322
+ display: flex;
1323
+ align-items: center; }
1324
+ .style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_InfoTextBold__21977 {
1325
+ font-weight: 600;
1326
+ color: var(--checkout-primary-text-color); }
1327
+ .style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk.style-module_WithBorder__1aBHw {
1328
+ border-bottom: 1px solid var(--checkout-border-color);
1329
+ padding-bottom: 24px; }
1330
+ .style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_CardLogoContainer__3tymO {
1331
+ display: flex;
1332
+ align-items: center;
1333
+ margin-right: 4px; }
1334
+ .style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_PaymentLogoContainer__AN08p img {
1335
+ height: 20px; }
1336
+ .style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ {
1337
+ width: 100%;
1338
+ display: flex;
1339
+ justify-content: space-between;
1340
+ margin: auto;
1341
+ margin-top: 24px; }
1342
+ .style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 {
1343
+ display: flex;
1344
+ align-items: center;
1345
+ color: var(--checkout-secondary-text-color);
1346
+ flex-wrap: wrap; }
1347
+ .style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 .style-module_Cta__3sxNK {
1348
+ color: var(--checkout-primary-text-color);
1349
+ margin-left: 4px; }
1350
+ .style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 .style-module_Cta__3sxNK:hover {
1351
+ cursor: pointer;
1352
+ text-decoration: underline; }
1353
+ @media only screen and (max-width: 400px) {
1354
+ .style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ {
1355
+ flex-direction: column; }
1356
+ .style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 {
1357
+ margin-bottom: 12px; }
1358
+ .style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 .style-module_Cta__3sxNK {
1359
+ margin-left: 0; } }
1360
+ .style-module_StepSuccess__36Zg4 .style-module_OrderStatus__CPd7s {
1361
+ padding: 4px 8px;
1362
+ border-radius: 6px;
1363
+ margin-top: 8px;
1364
+ font-size: 14px;
1365
+ font-weight: 500;
1366
+ display: inline-flex; }
1367
+ .style-module_StepSuccess__36Zg4 .style-module_OrderStatus__CPd7s.style-module_Yellow__1mZZm {
1368
+ color: var(--checkout-warning-color);
1369
+ background-color: var(--checkout-warning-light-color);
1370
+ border: 1px solid var(--checkout-warning-color); }
1371
+ .style-module_StepSuccess__36Zg4 .style-module_OrderStatus__CPd7s.style-module_Green__2qwNg {
1372
+ color: var(--checkout-success-color);
1373
+ background-color: var(--checkout-success-light-color);
1374
+ border: 1px solid var(--checkout-success-color); }
1375
+ .style-module_StepSuccess__36Zg4 .style-module_OrderStatus__CPd7s.style-module_Red__TKRy8 {
1376
+ color: var(--checkout-error-color);
1377
+ background-color: var(--checkout-error-light-color);
1378
+ border: 1px solid var(--checkout-error-color); }
1379
+ @media only screen and (max-width: 1000px) {
1380
+ .style-module_StepSuccess__36Zg4 {
1381
+ padding-left: 24px;
1382
+ padding-right: 24px; }
1383
+ .style-module_StepSuccess__36Zg4 .style-module_SuccessTitleContainer__3fT9P {
1384
+ margin-bottom: 12px; }
1385
+ .style-module_StepSuccess__36Zg4 .style-module_SuccessTitleContainer__3fT9P .style-module_SuccessTitle__2cVxj {
1386
+ font-size: 20px; }
1387
+ .style-module_StepSuccess__36Zg4 .style-module_SuccessSubTitle__2UvWI {
1388
+ max-width: 400px;
1389
+ margin-left: 56px; } }
1390
+ @media only screen and (max-width: 400px) {
1391
+ .style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk {
1392
+ grid-template-columns: 1fr;
1393
+ grid-gap: 24px; }
1394
+ .style-module_StepSuccess__36Zg4 .style-module_SuccessSubTitle__2UvWI {
1395
+ margin-left: 0; } }
1396
+
1397
+ .style-module_ExpandableSection__2JTCI {
1398
+ border-bottom: 1px solid var(--checkout-border-color); }
1399
+ .style-module_ExpandableSection__2JTCI .style-module_Top__3j_E0 {
1400
+ padding: 24px 0;
1401
+ display: flex;
1402
+ justify-content: space-between;
1403
+ align-items: center;
1404
+ user-select: none; }
1405
+ .style-module_ExpandableSection__2JTCI .style-module_Top__3j_E0 .style-module_Title__2w3G9 {
1406
+ font-weight: 600;
1407
+ font-size: 20px;
1408
+ line-height: 32px; }
1409
+ .style-module_ExpandableSection__2JTCI .style-module_Top__3j_E0 .style-module_HideBtn__xC3Ix {
1410
+ font-size: 14px;
1411
+ cursor: pointer;
1412
+ user-select: none; }
1413
+ .style-module_ExpandableSection__2JTCI .style-module_Content__3TXDF {
1414
+ padding-bottom: 24px; }
1415
+
1416
+ .style-module_StepContainer__1O2dD {
1417
+ width: 100%; }
1418
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA {
1419
+ width: 100%; }
1420
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 {
1421
+ padding: 24px 0;
1422
+ border-top: 1px solid var(--checkout-border-color); }
1423
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2.style-module_First__cAzdJ {
1424
+ border-top: none; }
1425
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitleTop__3zfsj {
1426
+ display: flex;
1427
+ align-items: center; }
1428
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitleTop__3zfsj.style-module_WithRightContent__2fqb1 {
1429
+ align-items: flex-start; }
1430
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepCircle__36A5q {
1431
+ width: 32px;
1432
+ height: 32px;
1433
+ border-radius: 100%;
1434
+ border: 1px solid var(--checkout-button-bg-color);
1435
+ color: var(--checkout-button-bg-color);
1436
+ display: flex;
1437
+ justify-content: center;
1438
+ align-items: center;
1439
+ margin-right: 16px;
1440
+ flex: 0 0 auto;
1441
+ font-size: 20px; }
1442
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepCircle__36A5q.style-module_Selected__3j91L {
1443
+ background-color: var(--checkout-button-bg-color);
1444
+ color: var(--checkout-button-text-color); }
1445
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepCircle__36A5q.style-module_Selected__3j91L svg {
1446
+ transform: scale(1.5);
1447
+ position: relative;
1448
+ right: -1px; }
1449
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitle__10YDP {
1450
+ font-size: 22px;
1451
+ color: var(--checkout-primary-text-color);
1452
+ flex: 0 0 auto;
1453
+ font-weight: 600;
1454
+ line-height: 32px; }
1455
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitle__10YDP.style-module_Light__15wSX {
1456
+ color: var(--checkout-button-disabled-text-color); }
1457
+ .style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitleRightContent__2Q43m {
1458
+ flex: 1 1 auto; }
1459
+ .style-module_StepContainer__1O2dD .style-module_StepContent__20QIi {
1460
+ padding-bottom: 24px;
1461
+ padding-left: 48px;
1462
+ width: 100%; }
1463
+ @media only screen and (max-width: 1000px) {
1464
+ .style-module_StepContainer__1O2dD {
1465
+ padding: 0 24px; }
1466
+ .style-module_StepContainer__1O2dD .style-module_StepContent__20QIi {
1467
+ padding-left: 0px; } }
1468
+
1469
+ .style-module_Actions__ttsEZ {
1470
+ display: grid;
1471
+ grid-template-columns: 1fr 1fr;
1472
+ grid-gap: 16px; }
1473
+
1474
+ .style-module_Description__3BMvk {
1475
+ margin-bottom: 24px; }
1476
+
1477
+ .style-module_Container__1f6or {
1478
+ width: 100vw;
1479
+ height: 100vh;
1480
+ background-color: var(--checkout-primary-bg-color);
1481
+ display: flex;
1482
+ justify-content: center;
1483
+ align-items: center; }
1484
+ .style-module_Container__1f6or .style-module_loader__VCfEE,
1485
+ .style-module_Container__1f6or .style-module_loader__VCfEE:after {
1486
+ border-radius: 50%;
1487
+ width: 5em;
1488
+ height: 5em; }
1489
+ .style-module_Container__1f6or .style-module_loader__VCfEE {
1490
+ font-size: 6px;
1491
+ position: relative;
1492
+ text-indent: -9999em;
1493
+ border-top: 0.5em solid rgba(255, 255, 255, 0.2);
1494
+ border-right: 0.5em solid rgba(255, 255, 255, 0.2);
1495
+ border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
1496
+ border-left: 0.5em solid var(--checkout-button-bg-color);
1497
+ -webkit-transform: translateZ(0);
1498
+ -ms-transform: translateZ(0);
1499
+ transform: translateZ(0);
1500
+ -webkit-animation: style-module_load8__3N32j 1.1s infinite linear;
1501
+ animation: style-module_load8__3N32j 1.1s infinite linear; }
1502
+
1503
+ @-webkit-keyframes style-module_load8__3N32j {
1504
+ 0% {
1505
+ -webkit-transform: rotate(0deg);
1506
+ transform: rotate(0deg); }
1507
+ 100% {
1508
+ -webkit-transform: rotate(360deg);
1509
+ transform: rotate(360deg); } }
1510
+
1511
+ @keyframes style-module_load8__3N32j {
1512
+ 0% {
1513
+ -webkit-transform: rotate(0deg);
1514
+ transform: rotate(0deg); }
1515
+ 100% {
1516
+ -webkit-transform: rotate(360deg);
1517
+ transform: rotate(360deg); } }