@ikas/storefront 1.0.21 → 2.0.0-alpha.1
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.
- package/build/ikas +12055 -0
- package/package.json +22 -21
- package/src/.DS_Store +0 -0
- package/src/__generated__/global-types.ts +753 -0
- package/src/analytics/analytics.ts +497 -0
- package/src/analytics/events.ts +115 -0
- package/src/analytics/facebookPixel.ts +226 -0
- package/src/analytics/googleTagManager.ts +334 -0
- package/src/analytics/head/index.tsx +81 -0
- package/src/analytics/ikas.ts +545 -0
- package/{build/analytics/index.d.ts → src/analytics/index.ts} +2 -2
- package/src/api/.DS_Store +0 -0
- package/src/api/apollo.ts +91 -0
- package/src/api/back-in-stock-reminder/__generated__/listProductBackInStockRemind.ts +36 -0
- package/src/api/back-in-stock-reminder/__generated__/saveProductBackInStockRemind.ts +31 -0
- package/src/api/back-in-stock-reminder/index.ts +131 -0
- package/src/api/blog/__generated__/getBlog.ts +101 -0
- package/src/api/blog/__generated__/listBlog.ts +104 -0
- package/src/api/blog/__generated__/listBlogCategory.ts +52 -0
- package/src/api/blog/__generated__/listBlogMetaData.ts +42 -0
- package/src/api/blog/index.ts +415 -0
- package/src/api/brand/__generated__/listProductBrand.ts +63 -0
- package/src/api/brand/index.ts +127 -0
- package/src/api/cart/__generated__/getCart.ts +104 -0
- package/src/api/cart/__generated__/saveItemToCart.ts +91 -0
- package/src/api/cart/index.ts +213 -0
- package/src/api/category/__generated__/listCategory.ts +68 -0
- package/src/api/category/__generated__/listCategoryPaths.ts +37 -0
- package/src/api/category/index.ts +223 -0
- package/src/api/checkout/__generated__/addCouponCodeToCheckout.ts +22 -0
- package/src/api/checkout/__generated__/checkStocks.ts +31 -0
- package/src/api/checkout/__generated__/createSaleTransactionWithCheckout.ts +35 -0
- package/src/api/checkout/__generated__/getCheckoutByCartId.ts +21 -0
- package/src/api/checkout/__generated__/getCheckoutById.ts +270 -0
- package/src/api/checkout/__generated__/getOrder.ts +248 -0
- package/src/api/checkout/__generated__/listCheckoutSettings.ts +48 -0
- package/src/api/checkout/__generated__/listPaymentGateway.ts +57 -0
- package/src/api/checkout/__generated__/retrieveInstallmentInfo.ts +36 -0
- package/src/api/checkout/__generated__/saveCheckout.ts +23 -0
- package/src/api/checkout/index.ts +884 -0
- package/src/api/city/__generated__/listCity.ts +26 -0
- package/src/api/city/index.ts +56 -0
- package/src/api/contact-form/__generated__/sendContactFormToMerchant.ts +19 -0
- package/src/api/contact-form/index.ts +54 -0
- package/src/api/country/__generated__/getAvailableShippingCountries.ts +16 -0
- package/src/api/country/__generated__/getMyCountry.ts +12 -0
- package/src/api/country/__generated__/listCountry.ts +36 -0
- package/src/api/country/index.ts +129 -0
- package/src/api/customer/__generated__/checkCustomerEmail.ts +21 -0
- package/src/api/customer/__generated__/createCustomerEmailSubscription.ts +23 -0
- package/src/api/customer/__generated__/createOrderRefundRequest.ts +248 -0
- package/src/api/customer/__generated__/customerForgotPassword.ts +17 -0
- package/src/api/customer/__generated__/customerLogin.ts +88 -0
- package/src/api/customer/__generated__/customerRecoverPassword.ts +18 -0
- package/src/api/customer/__generated__/customerRefreshToken.ts +22 -0
- package/src/api/customer/__generated__/getCustomerOrders.ts +248 -0
- package/src/api/customer/__generated__/getLastViewedProducts.ts +27 -0
- package/src/api/customer/__generated__/getMyCustomer.ts +75 -0
- package/src/api/customer/__generated__/listOrderRefundSettings.ts +25 -0
- package/src/api/customer/__generated__/listOrderTransactions.ts +68 -0
- package/src/api/customer/__generated__/registerCustomer.ts +90 -0
- package/src/api/customer/__generated__/saveLastViewedProducts.ts +23 -0
- package/src/api/customer/__generated__/saveMyCustomer.ts +80 -0
- package/src/api/customer/index.ts +1147 -0
- package/src/api/customer-review/__generated__/createCustomerReview.ts +23 -0
- package/src/api/customer-review/__generated__/listCustomerReviews.ts +38 -0
- package/src/api/customer-review/index.ts +122 -0
- package/src/api/district/__generated__/listDistrict.ts +25 -0
- package/src/api/district/index.ts +59 -0
- package/src/api/favorite-product/__generated__/isFavoriteProduct.ts +16 -0
- package/src/api/favorite-product/__generated__/listFavoriteProducts.ts +22 -0
- package/src/api/favorite-product/__generated__/saveFavoriteProduct.ts +17 -0
- package/src/api/favorite-product/index.ts +100 -0
- package/src/api/html-meta-data/__generated__/listHTMLMetaData.ts +30 -0
- package/src/api/html-meta-data/index.ts +72 -0
- package/src/api/index.ts +23 -0
- package/src/api/merchant/__generated__/listMerchantSettings.ts +19 -0
- package/src/api/merchant/index.ts +43 -0
- package/src/api/product-attribute/__generated__/listProductAttribute.ts +54 -0
- package/src/api/product-attribute/index.ts +69 -0
- package/src/api/product-option-set/__generated__/ListProductOptionSet.ts +111 -0
- package/src/api/product-option-set/index.ts +114 -0
- package/src/api/product-search/__generated__/getProductFilterData.ts +69 -0
- package/src/api/product-search/__generated__/searchProducts.ts +40 -0
- package/src/api/product-search/index.ts +329 -0
- package/src/api/raffle/__generated__/getRafflesByCustomerId.ts +55 -0
- package/src/api/raffle/__generated__/listRaffle.ts +74 -0
- package/src/api/raffle/__generated__/listRaffleMetaData.ts +33 -0
- package/src/api/raffle/__generated__/saveRaffleParticipant.ts +43 -0
- package/src/api/raffle/index.ts +369 -0
- package/src/api/state/__generated__/listState.ts +25 -0
- package/src/api/state/index.ts +45 -0
- package/src/api/stock-location/__generated__/listStockLocation.ts +17 -0
- package/src/api/stock-location/index.ts +30 -0
- package/src/api/storefront/__generated__/getStorefront.ts +67 -0
- package/src/api/storefront/index.ts +76 -0
- package/src/api/variant-type/__generated__/listVariantType.ts +54 -0
- package/src/api/variant-type/index.ts +86 -0
- package/{build → src}/assets/translations/checkout/en.js +0 -0
- package/{build → src}/assets/translations/checkout/tr.js +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/checkout/components/address-form/index.tsx +360 -0
- package/src/components/checkout/components/address-form/model.ts +366 -0
- package/src/components/checkout/components/button/index.tsx +34 -0
- package/src/components/checkout/components/button/style.module.scss +103 -0
- package/src/components/checkout/components/cart-summary/cart-item/index.tsx +146 -0
- package/src/components/checkout/components/cart-summary/cart-item/style.module.scss +107 -0
- package/src/components/checkout/components/cart-summary/index.tsx +458 -0
- package/src/components/checkout/components/cart-summary/style.module.scss +237 -0
- package/src/components/checkout/components/checkbox/check.tsx +23 -0
- package/src/components/checkout/components/checkbox/index.tsx +50 -0
- package/src/components/checkout/components/checkbox/style.module.scss +72 -0
- package/src/components/checkout/components/credit-card-form/index.tsx +121 -0
- package/src/components/checkout/components/credit-card-form/model.ts +56 -0
- package/src/components/checkout/components/credit-card-form/style.module.scss +6 -0
- package/src/components/checkout/components/credit-card-form/svg/amex.tsx +30 -0
- package/src/components/checkout/components/credit-card-form/svg/master-card.tsx +38 -0
- package/src/components/checkout/components/credit-card-form/svg/troy.tsx +54 -0
- package/src/components/checkout/components/credit-card-form/svg/visa.tsx +46 -0
- package/src/components/checkout/components/customer-addresses/index.tsx +167 -0
- package/src/components/checkout/components/customer-addresses/model.ts +126 -0
- package/src/components/checkout/components/customer-addresses/style.module.scss +20 -0
- package/src/components/checkout/components/error/customer-login-required-error/index.tsx +23 -0
- package/src/components/checkout/components/error/index.tsx +54 -0
- package/src/components/checkout/components/error/no-shipping-error/index.tsx +19 -0
- package/src/components/checkout/components/error/payment-error/index.tsx +21 -0
- package/src/components/checkout/components/error/stock-error/index.tsx +72 -0
- package/src/components/checkout/components/error/stock-error/style.module.scss +11 -0
- package/src/components/checkout/components/error/unknown-error/index.tsx +19 -0
- package/src/components/checkout/components/expandable-section/index.tsx +37 -0
- package/src/components/checkout/components/expandable-section/style.module.scss +29 -0
- package/src/components/checkout/components/form-item/caret-down.tsx +20 -0
- package/src/components/checkout/components/form-item/index.tsx +205 -0
- package/src/components/checkout/components/form-item/model.ts +131 -0
- package/src/components/checkout/components/form-item/style.module.scss +213 -0
- package/src/components/checkout/components/fullscreen-loading/index.tsx +10 -0
- package/src/components/checkout/components/fullscreen-loading/style.module.scss +56 -0
- package/src/components/checkout/components/input-with-button/index.tsx +53 -0
- package/src/components/checkout/components/input-with-button/style.module.scss +104 -0
- package/src/components/checkout/components/modal/index.tsx +50 -0
- package/src/components/checkout/components/modal/style.module.scss +68 -0
- package/src/components/checkout/components/notification-box/index.tsx +70 -0
- package/src/components/checkout/components/notification-box/style.module.scss +69 -0
- package/src/components/checkout/components/select-box/index.tsx +60 -0
- package/src/components/checkout/components/select-box/style.module.scss +55 -0
- package/src/components/checkout/components/step-container/index.tsx +107 -0
- package/src/components/checkout/components/step-container/style.module.scss +86 -0
- package/src/components/checkout/components/svg/arrow-down.tsx +23 -0
- package/src/components/checkout/components/svg/arrow-left.tsx +23 -0
- package/src/components/checkout/components/svg/arrow-right.tsx +23 -0
- package/src/components/checkout/components/svg/cross.tsx +23 -0
- package/src/components/checkout/components/svg/discount.tsx +34 -0
- package/src/components/checkout/components/svg/external.tsx +101 -0
- package/src/components/checkout/components/svg/gift.tsx +40 -0
- package/src/components/checkout/components/svg/ikas.tsx +39 -0
- package/src/components/checkout/components/svg/lock.tsx +23 -0
- package/src/components/checkout/components/svg/shopping-cart.tsx +23 -0
- package/src/components/checkout/components/svg/success-circle.tsx +26 -0
- package/src/components/checkout/components/svg/tag.tsx +23 -0
- package/src/components/checkout/components/svg/warning.tsx +30 -0
- package/src/components/checkout/components/toggle/index.tsx +51 -0
- package/src/components/checkout/components/toggle/style.module.scss +75 -0
- package/src/components/checkout/components/tooltip/index.tsx +27 -0
- package/src/components/checkout/components/tooltip/style.module.scss +86 -0
- package/src/components/checkout/index.tsx +476 -0
- package/src/components/checkout/model.ts +1007 -0
- package/src/components/checkout/steps/step-info/index.tsx +84 -0
- package/src/components/checkout/steps/step-payment/billing-address/index.tsx +40 -0
- package/src/components/checkout/steps/step-payment/index.tsx +105 -0
- package/src/components/checkout/steps/step-payment/payment-gateways/index.tsx +116 -0
- package/src/components/checkout/steps/step-payment/payment-gateways/installments/index.tsx +51 -0
- package/src/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss +50 -0
- package/src/components/checkout/steps/step-payment/payment-gateways/style.module.scss +15 -0
- package/src/components/checkout/steps/step-payment/style.module.scss +32 -0
- package/src/components/checkout/steps/step-shipping/index.tsx +127 -0
- package/src/components/checkout/steps/step-shipping/style.module.scss +44 -0
- package/src/components/checkout/steps/step-success/index.tsx +437 -0
- package/src/components/checkout/steps/step-success/style.module.scss +160 -0
- package/src/components/checkout/style.module.scss +358 -0
- package/src/components/checkout/styles/common.module.scss +59 -0
- package/src/components/checkout/styles/variables.scss +40 -0
- package/src/components/image/index.tsx +79 -0
- package/src/components/index.ts +4 -0
- package/src/components/page/ThemeComponent.tsx +89 -0
- package/src/components/page/head.tsx +294 -0
- package/src/components/page/index.tsx +216 -0
- package/src/components/page-editor/ThemeComponentEditor.tsx +236 -0
- package/src/components/page-editor/error/index.tsx +18 -0
- package/src/components/page-editor/index.tsx +70 -0
- package/src/components/page-editor/loader/index.tsx +10 -0
- package/src/components/page-editor/loader/style.module.scss +55 -0
- package/src/components/page-editor/model.ts +505 -0
- package/src/index.ts +8 -0
- package/src/models/.DS_Store +0 -0
- package/src/models/data/blog/index.ts +154 -0
- package/src/models/data/brand/index.ts +58 -0
- package/src/models/data/cart/index.ts +82 -0
- package/src/models/data/category/index.ts +130 -0
- package/src/models/data/checkout/index.ts +222 -0
- package/src/models/data/checkout-settings/index.ts +48 -0
- package/src/models/data/city/index.ts +4 -0
- package/src/models/data/contact-form/index.ts +17 -0
- package/src/models/data/country/index.ts +8 -0
- package/src/models/data/customer/address/index.tsx +135 -0
- package/src/models/data/customer/index.ts +65 -0
- package/src/models/data/customer-review/index.ts +43 -0
- package/src/models/data/customer-review-settings/index.ts +4 -0
- package/src/models/data/district/index.ts +4 -0
- package/src/models/data/favorite-product/index.ts +15 -0
- package/src/models/data/html-meta-data/index.ts +56 -0
- package/src/models/data/image/index.ts +34 -0
- package/src/models/data/index.ts +55 -0
- package/src/models/data/installment-info/index.ts +34 -0
- package/src/models/data/merchant-settings/index.ts +14 -0
- package/src/models/data/order/address/index.ts +138 -0
- package/src/models/data/order/adjustment/index.ts +17 -0
- package/src/models/data/order/gift-line/index.ts +4 -0
- package/src/models/data/order/index.ts +289 -0
- package/src/models/data/order/line-item/discount/index.ts +15 -0
- package/src/models/data/order/line-item/index.ts +123 -0
- package/src/models/data/order/line-item/options/index.ts +18 -0
- package/src/models/data/order/line-item/options/options-value/index.ts +11 -0
- package/src/models/data/order/line-item/variant/index.ts +75 -0
- package/src/models/data/order/refund/index.ts +18 -0
- package/src/models/data/order/refund/refund-line-item/index.ts +13 -0
- package/src/models/data/order/refund/settings.ts +15 -0
- package/src/models/data/order/shipping-line/index.ts +7 -0
- package/src/models/data/order-transaction/index.ts +105 -0
- package/src/models/data/payment-gateway/index.ts +150 -0
- package/src/models/data/product/attribute-value/index.ts +42 -0
- package/src/models/data/product/index.ts +95 -0
- package/src/models/data/product/variant/index.ts +93 -0
- package/src/models/data/product/variant/price/index.ts +38 -0
- package/src/models/data/product/variant-type/index.ts +24 -0
- package/src/models/data/product-attribute/index.ts +75 -0
- package/src/models/data/product-attribute/product-attribute-option/index.ts +13 -0
- package/src/models/data/product-attribute/product-attribute-table-cell/index.ts +13 -0
- package/src/models/data/product-attribute/product-attribute-table-template/index.ts +18 -0
- package/src/models/data/product-back-in-stock-settings/index.ts +3 -0
- package/src/models/data/product-cart-item-options/index.ts +15 -0
- package/src/models/data/product-filter/index.ts +412 -0
- package/src/models/data/product-option-set/index.ts +392 -0
- package/src/models/data/product-tag/index.ts +13 -0
- package/src/models/data/raffle/index.ts +159 -0
- package/src/models/data/sales-channel/index.ts +41 -0
- package/src/models/data/simple-product/index.ts +154 -0
- package/src/models/data/state/index.ts +5 -0
- package/src/models/data/storefront/domain/index.ts +19 -0
- package/src/models/data/storefront/index.ts +56 -0
- package/src/models/data/storefront/localization/index.tsx +13 -0
- package/src/models/data/storefront/routing/index.tsx +17 -0
- package/src/models/data/storefront/theme/index.tsx +22 -0
- package/src/models/data/storefront/theme-localization/index.tsx +26 -0
- package/src/models/data/variant-type/index.ts +77 -0
- package/src/models/data/variant-type/variant-value/index.ts +29 -0
- package/src/models/index.ts +3 -0
- package/src/models/theme/component/index.ts +24 -0
- package/src/models/theme/component/prop/index.ts +56 -0
- package/src/models/theme/custom-data/index.ts +71 -0
- package/{build/models/theme/index.d.ts → src/models/theme/index.ts} +26 -18
- package/src/models/theme/page/component/index.ts +21 -0
- package/src/models/theme/page/component/prop-value/attribute-list.ts +18 -0
- package/src/models/theme/page/component/prop-value/attribute.ts +18 -0
- package/src/models/theme/page/component/prop-value/blog-category-list.ts +19 -0
- package/src/models/theme/page/component/prop-value/blog-category.ts +15 -0
- package/src/models/theme/page/component/prop-value/blog-list.ts +25 -0
- package/src/models/theme/page/component/prop-value/blog.ts +15 -0
- package/src/models/theme/page/component/prop-value/brand-list.ts +26 -0
- package/src/models/theme/page/component/prop-value/brand.ts +15 -0
- package/src/models/theme/page/component/prop-value/category-list.ts +26 -0
- package/src/models/theme/page/component/prop-value/category.ts +15 -0
- package/src/models/theme/page/component/prop-value/link.ts +38 -0
- package/src/models/theme/page/component/prop-value/product-detail.ts +17 -0
- package/src/models/theme/page/component/prop-value/product-list.ts +41 -0
- package/src/models/theme/page/component/prop-value/raffle-list.ts +16 -0
- package/src/models/theme/page/component/prop-value/raffle.ts +15 -0
- package/src/models/theme/page/index.ts +71 -0
- package/src/models/theme/settings/.DS_Store +0 -0
- package/src/models/theme/settings/index.ts +27 -0
- package/src/models/theme/settings/prop/color/index.ts +18 -0
- package/src/models/theme/settings/prop/favicon/index.ts +11 -0
- package/src/models/theme/theme.ts +202 -0
- package/src/models/ui/blog-category-list/index.ts +199 -0
- package/src/models/ui/blog-list/index.ts +202 -0
- package/src/models/ui/brand-list/index.ts +239 -0
- package/src/models/ui/category-list/index.ts +239 -0
- package/src/models/ui/component-renderer/index.ts +9 -0
- package/src/models/ui/customer-review-list/index.ts +171 -0
- package/src/models/ui/index.ts +41 -0
- package/src/models/ui/navigation-link/index.ts +22 -0
- package/src/models/ui/product-attribute-detail/index.ts +29 -0
- package/src/models/ui/product-attribute-list/index.ts +53 -0
- package/src/models/ui/product-detail/index.ts +269 -0
- package/src/models/ui/product-list/index.ts +959 -0
- package/src/models/ui/raffle-list/index.ts +208 -0
- package/src/models/ui/validator/form/account-info.ts +155 -0
- package/src/models/ui/validator/form/address.ts +436 -0
- package/src/models/ui/validator/form/contact-form.ts +180 -0
- package/src/models/ui/validator/form/customer-review.ts +134 -0
- package/src/models/ui/validator/form/forgot-password.ts +98 -0
- package/src/models/ui/validator/form/login.ts +130 -0
- package/src/models/ui/validator/form/raffle-form.ts +271 -0
- package/src/models/ui/validator/form/recover-password.ts +150 -0
- package/src/models/ui/validator/form/register.ts +200 -0
- package/src/models/ui/validator/index.ts +121 -0
- package/src/models/ui/validator/rules/index.ts +309 -0
- package/src/pages/.DS_Store +0 -0
- package/src/pages/404.tsx +29 -0
- package/src/pages/[slug]/index.tsx +28 -0
- package/src/pages/account/addresses.tsx +20 -0
- package/src/pages/account/favorite-products.tsx +20 -0
- package/src/pages/account/forgot-password.tsx +20 -0
- package/src/pages/account/index.tsx +20 -0
- package/src/pages/account/login.tsx +20 -0
- package/src/pages/account/orders/[id].tsx +20 -0
- package/src/pages/account/orders/index.tsx +20 -0
- package/src/pages/account/raffles.tsx +20 -0
- package/src/pages/account/recover-password.tsx +20 -0
- package/src/pages/account/register.tsx +20 -0
- package/src/pages/api/getComponentDirs.ts +39 -0
- package/src/pages/api/getTheme.ts +22 -0
- package/src/pages/api/index.ts +14 -0
- package/src/pages/api/middleware.ts +24 -0
- package/src/pages/api/updateTheme.ts +31 -0
- package/src/pages/api/uploadTheme.ts +276 -0
- package/src/pages/blog/[slug].tsx +27 -0
- package/src/pages/blog/index.tsx +20 -0
- package/src/pages/cart.tsx +20 -0
- package/src/pages/checkout.tsx +172 -0
- package/src/pages/editor.tsx +40 -0
- package/src/pages/home.tsx +20 -0
- package/src/pages/index.ts +22 -0
- package/src/pages/pages/[slug].tsx +82 -0
- package/src/pages/raffle/[slug].tsx +27 -0
- package/src/pages/raffle/index.tsx +20 -0
- package/src/pages/search.tsx +20 -0
- package/src/providers/helpers/raffles.ts +68 -0
- package/src/providers/page-data-get.ts +569 -0
- package/src/providers/page-data-init.ts +956 -0
- package/src/providers/page-data-next.ts +422 -0
- package/src/providers/placeholders.ts +39 -0
- package/src/providers/prop-value/attribute-list.ts +73 -0
- package/src/providers/prop-value/attribute.ts +73 -0
- package/src/providers/prop-value/blog-category-list.ts +25 -0
- package/src/providers/prop-value/blog-category.ts +40 -0
- package/src/providers/prop-value/blog-list.ts +56 -0
- package/src/providers/prop-value/blog.ts +37 -0
- package/src/providers/prop-value/boolean.ts +14 -0
- package/src/providers/prop-value/brand-list.ts +21 -0
- package/src/providers/prop-value/brand.ts +47 -0
- package/src/providers/prop-value/category-list.ts +21 -0
- package/src/providers/prop-value/category.ts +47 -0
- package/src/providers/prop-value/color.ts +14 -0
- package/src/providers/prop-value/custom.ts +548 -0
- package/src/providers/prop-value/image-list.ts +15 -0
- package/src/providers/prop-value/image.ts +15 -0
- package/{build/providers/prop-value/index.d.ts → src/providers/prop-value/index.ts} +3 -3
- package/src/providers/prop-value/link.ts +214 -0
- package/src/providers/prop-value/product-detail.ts +87 -0
- package/src/providers/prop-value/product-list.ts +69 -0
- package/src/providers/prop-value/raffle-list.ts +14 -0
- package/src/providers/prop-value/raffle.ts +43 -0
- package/src/providers/prop-value/rich-text.ts +14 -0
- package/src/providers/prop-value/text.ts +14 -0
- package/src/scripts/generators/api/index.ts +24 -0
- package/src/scripts/generators/api/info.ts +47 -0
- package/src/scripts/generators/components/index.ts +235 -0
- package/src/scripts/generators/config/content.ts +125 -0
- package/src/scripts/generators/config/index.ts +93 -0
- package/src/scripts/generators/pages/index.ts +95 -0
- package/src/scripts/generators/pages/info.ts +156 -0
- package/src/scripts/generators/store/content.ts +14 -0
- package/src/scripts/generators/store/index.ts +22 -0
- package/src/scripts/generators/theme/index.ts +37 -0
- package/src/scripts/ikas.ts +47 -0
- package/src/store/base.ts +143 -0
- package/src/store/cart.ts +311 -0
- package/src/store/customer.ts +510 -0
- package/{build/store/index.d.ts → src/store/index.ts} +1 -1
- package/src/storefront/index.ts +96 -0
- package/src/typings/global.d.ts +7 -0
- package/src/utils/currency.ts +229 -0
- package/src/utils/fs.ts +84 -0
- package/src/utils/helper.ts +133 -0
- package/src/utils/i18n.ts +204 -0
- package/{build/utils/index.d.ts → src/utils/index.ts} +3 -3
- package/build/__generated__/global-types.d.ts +0 -632
- package/build/analytics/analytics.d.ts +0 -37
- package/build/analytics/events.d.ts +0 -36
- package/build/analytics/facebookPixel.d.ts +0 -15
- package/build/analytics/googleTagManager.d.ts +0 -201
- package/build/analytics/head/index.d.ts +0 -7
- package/build/analytics/ikas.d.ts +0 -133
- package/build/api/apollo.d.ts +0 -10
- package/build/api/back-in-stock-reminder/__generated__/listProductBackInStockRemind.d.ts +0 -24
- package/build/api/back-in-stock-reminder/__generated__/saveProductBackInStockRemind.d.ts +0 -19
- package/build/api/back-in-stock-reminder/index.d.ts +0 -23
- package/build/api/blog/__generated__/getBlog.d.ts +0 -106
- package/build/api/blog/__generated__/listBlog.d.ts +0 -109
- package/build/api/blog/__generated__/listBlogCategory.d.ts +0 -61
- package/build/api/blog/__generated__/listBlogMetaData.d.ts +0 -53
- package/build/api/blog/index.d.ts +0 -32
- package/build/api/brand/__generated__/listProductBrand.d.ts +0 -88
- package/build/api/brand/index.d.ts +0 -16
- package/build/api/cart/__generated__/getCart.d.ts +0 -176
- package/build/api/cart/__generated__/saveItemToCart.d.ts +0 -185
- package/build/api/cart/index.d.ts +0 -5
- package/build/api/category/__generated__/listCategory.d.ts +0 -99
- package/build/api/category/__generated__/listCategoryPaths.d.ts +0 -32
- package/build/api/category/index.d.ts +0 -18
- package/build/api/checkout/__generated__/addCouponCodeToCheckout.d.ts +0 -11
- package/build/api/checkout/__generated__/checkStocks.d.ts +0 -18
- package/build/api/checkout/__generated__/createSaleTransactionWithCheckout.d.ts +0 -22
- package/build/api/checkout/__generated__/getCheckoutByCartId.d.ts +0 -10
- package/build/api/checkout/__generated__/getCheckoutById.d.ts +0 -572
- package/build/api/checkout/__generated__/getOrder.d.ts +0 -614
- package/build/api/checkout/__generated__/listCheckoutSettings.d.ts +0 -34
- package/build/api/checkout/__generated__/listPaymentGateway.d.ts +0 -42
- package/build/api/checkout/__generated__/retrieveInstallmentInfo.d.ts +0 -23
- package/build/api/checkout/__generated__/saveCheckout.d.ts +0 -11
- package/build/api/checkout/index.d.ts +0 -29
- package/build/api/city/__generated__/listCity.d.ts +0 -20
- package/build/api/city/index.d.ts +0 -4
- package/build/api/contact-form/__generated__/sendContactFormToMerchant.d.ts +0 -9
- package/build/api/contact-form/index.d.ts +0 -10
- package/build/api/country/__generated__/getAvailableShippingCountries.d.ts +0 -6
- package/build/api/country/__generated__/getMyCountry.d.ts +0 -3
- package/build/api/country/__generated__/listCountry.d.ts +0 -41
- package/build/api/country/index.d.ts +0 -6
- package/build/api/customer/__generated__/checkCustomerEmail.d.ts +0 -10
- package/build/api/customer/__generated__/createCustomerEmailSubscription.d.ts +0 -11
- package/build/api/customer/__generated__/createOrderRefundRequest.d.ts +0 -584
- package/build/api/customer/__generated__/customerForgotPassword.d.ts +0 -7
- package/build/api/customer/__generated__/customerLogin.d.ts +0 -162
- package/build/api/customer/__generated__/customerRecoverPassword.d.ts +0 -8
- package/build/api/customer/__generated__/customerRefreshToken.d.ts +0 -11
- package/build/api/customer/__generated__/customerSocialLogin.d.ts +0 -161
- package/build/api/customer/__generated__/getCustomerOrders.d.ts +0 -614
- package/build/api/customer/__generated__/getLastViewedProducts.d.ts +0 -15
- package/build/api/customer/__generated__/getMyCustomer.d.ts +0 -140
- package/build/api/customer/__generated__/listOrderRefundSettings.d.ts +0 -13
- package/build/api/customer/__generated__/listOrderTransactions.d.ts +0 -53
- package/build/api/customer/__generated__/registerCustomer.d.ts +0 -158
- package/build/api/customer/__generated__/saveLastViewedProducts.d.ts +0 -11
- package/build/api/customer/__generated__/saveMyCustomer.d.ts +0 -155
- package/build/api/customer/index.d.ts +0 -49
- package/build/api/customer-review/__generated__/createCustomerReview.d.ts +0 -11
- package/build/api/customer-review/__generated__/listCustomerReviews.d.ts +0 -48
- package/build/api/customer-review/index.d.ts +0 -24
- package/build/api/district/__generated__/listDistrict.d.ts +0 -16
- package/build/api/district/index.d.ts +0 -4
- package/build/api/favorite-product/__generated__/isFavoriteProduct.d.ts +0 -6
- package/build/api/favorite-product/__generated__/listFavoriteProducts.d.ts +0 -12
- package/build/api/favorite-product/__generated__/saveFavoriteProduct.d.ts +0 -7
- package/build/api/favorite-product/index.d.ts +0 -6
- package/build/api/html-meta-data/__generated__/listHTMLMetaData.d.ts +0 -28
- package/build/api/html-meta-data/index.d.ts +0 -4
- package/build/api/index.d.ts +0 -21
- package/build/api/merchant/__generated__/listMerchantSettings.d.ts +0 -9
- package/build/api/merchant/index.d.ts +0 -4
- package/build/api/product-attribute/__generated__/listProductAttribute.d.ts +0 -72
- package/build/api/product-attribute/index.d.ts +0 -4
- package/build/api/product-option-set/__generated__/ListProductOptionSet.d.ts +0 -90
- package/build/api/product-option-set/index.d.ts +0 -6
- package/build/api/product-search/__generated__/getProductFilterData.d.ts +0 -61
- package/build/api/product-search/__generated__/searchProducts.d.ts +0 -26
- package/build/api/product-search/index.d.ts +0 -20
- package/build/api/state/__generated__/listState.d.ts +0 -19
- package/build/api/state/index.d.ts +0 -4
- package/build/api/stock-location/__generated__/listStockLocation.d.ts +0 -7
- package/build/api/stock-location/index.d.ts +0 -4
- package/build/api/storefront/__generated__/getStorefront.d.ts +0 -52
- package/build/api/storefront/index.d.ts +0 -4
- package/build/api/variant-type/__generated__/listVariantType.d.ts +0 -72
- package/build/api/variant-type/index.d.ts +0 -4
- package/build/components/checkout/components/address-form/index.d.ts +0 -3
- package/build/components/checkout/components/address-form/model.d.ts +0 -131
- package/build/components/checkout/components/button/index.d.ts +0 -12
- package/build/components/checkout/components/cart-summary/cart-item/index.d.ts +0 -10
- package/build/components/checkout/components/cart-summary/index.d.ts +0 -8
- package/build/components/checkout/components/checkbox/check.d.ts +0 -6
- package/build/components/checkout/components/checkbox/index.d.ts +0 -10
- package/build/components/checkout/components/credit-card-form/index.d.ts +0 -7
- package/build/components/checkout/components/credit-card-form/model.d.ts +0 -26
- package/build/components/checkout/components/credit-card-form/svg/amex.d.ts +0 -6
- package/build/components/checkout/components/credit-card-form/svg/master-card.d.ts +0 -6
- package/build/components/checkout/components/credit-card-form/svg/troy.d.ts +0 -6
- package/build/components/checkout/components/credit-card-form/svg/visa.d.ts +0 -6
- package/build/components/checkout/components/customer-addresses/index.d.ts +0 -15
- package/build/components/checkout/components/customer-addresses/model.d.ts +0 -21
- package/build/components/checkout/components/error/customer-login-required-error/index.d.ts +0 -8
- package/build/components/checkout/components/error/index.d.ts +0 -7
- package/build/components/checkout/components/error/no-shipping-error/index.d.ts +0 -6
- package/build/components/checkout/components/error/payment-error/index.d.ts +0 -8
- package/build/components/checkout/components/error/stock-error/index.d.ts +0 -8
- package/build/components/checkout/components/error/unknown-error/index.d.ts +0 -6
- package/build/components/checkout/components/expandable-section/index.d.ts +0 -6
- package/build/components/checkout/components/form-item/caret-down.d.ts +0 -6
- package/build/components/checkout/components/form-item/index.d.ts +0 -3
- package/build/components/checkout/components/form-item/model.d.ts +0 -59
- package/build/components/checkout/components/fullscreen-loading/index.d.ts +0 -2
- package/build/components/checkout/components/input-with-button/index.d.ts +0 -11
- package/build/components/checkout/components/modal/index.d.ts +0 -8
- package/build/components/checkout/components/notification-box/index.d.ts +0 -9
- package/build/components/checkout/components/select-box/index.d.ts +0 -13
- package/build/components/checkout/components/step-container/index.d.ts +0 -15
- package/build/components/checkout/components/svg/arrow-down.d.ts +0 -6
- package/build/components/checkout/components/svg/arrow-left.d.ts +0 -6
- package/build/components/checkout/components/svg/arrow-right.d.ts +0 -6
- package/build/components/checkout/components/svg/cross.d.ts +0 -6
- package/build/components/checkout/components/svg/discount.d.ts +0 -6
- package/build/components/checkout/components/svg/external.d.ts +0 -6
- package/build/components/checkout/components/svg/gift.d.ts +0 -7
- package/build/components/checkout/components/svg/ikas.d.ts +0 -6
- package/build/components/checkout/components/svg/lock.d.ts +0 -6
- package/build/components/checkout/components/svg/shopping-cart.d.ts +0 -6
- package/build/components/checkout/components/svg/success-circle.d.ts +0 -6
- package/build/components/checkout/components/svg/tag.d.ts +0 -6
- package/build/components/checkout/components/svg/warning.d.ts +0 -6
- package/build/components/checkout/components/toggle/index.d.ts +0 -10
- package/build/components/checkout/components/tooltip/index.d.ts +0 -8
- package/build/components/checkout/index.d.ts +0 -32
- package/build/components/checkout/model.d.ts +0 -122
- package/build/components/checkout/steps/step-info/index.d.ts +0 -7
- package/build/components/checkout/steps/step-payment/billing-address/index.d.ts +0 -7
- package/build/components/checkout/steps/step-payment/index.d.ts +0 -7
- package/build/components/checkout/steps/step-payment/payment-gateways/index.d.ts +0 -7
- package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.d.ts +0 -7
- package/build/components/checkout/steps/step-shipping/index.d.ts +0 -7
- package/build/components/checkout/steps/step-success/index.d.ts +0 -7
- package/build/components/error/index.d.ts +0 -5
- package/build/components/image/index.d.ts +0 -36
- package/build/components/index.d.ts +0 -4
- package/build/components/page/ThemeComponent.d.ts +0 -10
- package/build/components/page/head.d.ts +0 -12
- package/build/components/page/index.d.ts +0 -17
- package/build/components/page-editor/ThemeComponentEditor.d.ts +0 -9
- package/build/components/page-editor/index.d.ts +0 -2
- package/build/components/page-editor/model.d.ts +0 -65
- package/build/index.css +0 -1521
- package/build/index.d.ts +0 -8
- package/build/index.es.css +0 -1521
- package/build/index.es.js +0 -74627
- package/build/index.js +0 -74756
- package/build/models/data/blog/index.d.ts +0 -67
- package/build/models/data/brand/index.d.ts +0 -21
- package/build/models/data/cart/index.d.ts +0 -47
- package/build/models/data/category/index.d.ts +0 -52
- package/build/models/data/checkout/index.d.ts +0 -103
- package/build/models/data/checkout-settings/index.d.ts +0 -25
- package/build/models/data/city/index.d.ts +0 -4
- package/build/models/data/contact-form/index.d.ts +0 -7
- package/build/models/data/country/index.d.ts +0 -8
- package/build/models/data/customer/address/index.d.ts +0 -52
- package/build/models/data/customer/index.d.ts +0 -33
- package/build/models/data/customer-review/index.d.ts +0 -23
- package/build/models/data/customer-review-settings/index.d.ts +0 -4
- package/build/models/data/district/index.d.ts +0 -4
- package/build/models/data/favorite-product/index.d.ts +0 -6
- package/build/models/data/html-meta-data/index.d.ts +0 -23
- package/build/models/data/image/index.d.ts +0 -8
- package/build/models/data/index.d.ts +0 -33
- package/build/models/data/installment-info/index.d.ts +0 -30
- package/build/models/data/merchant-settings/index.d.ts +0 -8
- package/build/models/data/order/address/index.d.ts +0 -51
- package/build/models/data/order/adjustment/index.d.ts +0 -16
- package/build/models/data/order/gift-line/index.d.ts +0 -4
- package/build/models/data/order/index.d.ts +0 -146
- package/build/models/data/order/line-item/discount/index.d.ts +0 -11
- package/build/models/data/order/line-item/index.d.ts +0 -43
- package/build/models/data/order/line-item/options/index.d.ts +0 -10
- package/build/models/data/order/line-item/options/options-value/index.d.ts +0 -6
- package/build/models/data/order/line-item/variant/index.d.ts +0 -25
- package/build/models/data/order/refund/index.d.ts +0 -6
- package/build/models/data/order/refund/refund-line-item/index.d.ts +0 -5
- package/build/models/data/order/refund/settings.d.ts +0 -6
- package/build/models/data/order/shipping-line/index.d.ts +0 -7
- package/build/models/data/order-transaction/index.d.ts +0 -74
- package/build/models/data/payment-gateway/index.d.ts +0 -61
- package/build/models/data/product/attribute-value/index.d.ts +0 -20
- package/build/models/data/product/index.d.ts +0 -35
- package/build/models/data/product/variant/index.d.ts +0 -24
- package/build/models/data/product/variant/price/index.d.ts +0 -11
- package/build/models/data/product/variant-type/index.d.ts +0 -6
- package/build/models/data/product-attribute/index.d.ts +0 -34
- package/build/models/data/product-attribute/product-attribute-option/index.d.ts +0 -5
- package/build/models/data/product-attribute/product-attribute-table-cell/index.d.ts +0 -5
- package/build/models/data/product-attribute/product-attribute-table-template/index.d.ts +0 -6
- package/build/models/data/product-back-in-stock-settings/index.d.ts +0 -3
- package/build/models/data/product-cart-item-options/index.d.ts +0 -6
- package/build/models/data/product-filter/index.d.ts +0 -109
- package/build/models/data/product-option-set/index.d.ts +0 -104
- package/build/models/data/product-tag/index.d.ts +0 -5
- package/build/models/data/sales-channel/index.d.ts +0 -18
- package/build/models/data/simple-product/index.d.ts +0 -136
- package/build/models/data/state/index.d.ts +0 -5
- package/build/models/data/storefront/domain/index.d.ts +0 -8
- package/build/models/data/storefront/index.d.ts +0 -23
- package/build/models/data/storefront/localization/index.d.ts +0 -7
- package/build/models/data/storefront/routing/index.d.ts +0 -9
- package/build/models/data/storefront/theme/index.d.ts +0 -13
- package/build/models/data/storefront/theme-localization/index.d.ts +0 -12
- package/build/models/data/variant-type/index.d.ts +0 -26
- package/build/models/data/variant-type/variant-value/index.d.ts +0 -11
- package/build/models/index.d.ts +0 -3
- package/build/models/theme/component/index.d.ts +0 -10
- package/build/models/theme/component/prop/index.d.ts +0 -40
- package/build/models/theme/custom-data/index.d.ts +0 -24
- package/build/models/theme/page/component/index.d.ts +0 -6
- package/build/models/theme/page/component/prop-value/attribute-list.d.ts +0 -7
- package/build/models/theme/page/component/prop-value/attribute.d.ts +0 -7
- package/build/models/theme/page/component/prop-value/blog-category-list.d.ts +0 -7
- package/build/models/theme/page/component/prop-value/blog-category.d.ts +0 -5
- package/build/models/theme/page/component/prop-value/blog-list.d.ts +0 -9
- package/build/models/theme/page/component/prop-value/blog.d.ts +0 -5
- package/build/models/theme/page/component/prop-value/brand-list.d.ts +0 -9
- package/build/models/theme/page/component/prop-value/brand.d.ts +0 -5
- package/build/models/theme/page/component/prop-value/category-list.d.ts +0 -9
- package/build/models/theme/page/component/prop-value/category.d.ts +0 -5
- package/build/models/theme/page/component/prop-value/link.d.ts +0 -19
- package/build/models/theme/page/component/prop-value/product-detail.d.ts +0 -6
- package/build/models/theme/page/component/prop-value/product-list.d.ts +0 -17
- package/build/models/theme/page/index.d.ts +0 -40
- package/build/models/theme/settings/index.d.ts +0 -13
- package/build/models/theme/settings/prop/color/index.d.ts +0 -7
- package/build/models/theme/settings/prop/favicon/index.d.ts +0 -4
- package/build/models/theme/theme.d.ts +0 -16
- package/build/models/ui/blog-category-list/index.d.ts +0 -52
- package/build/models/ui/blog-list/index.d.ts +0 -56
- package/build/models/ui/brand-list/index.d.ts +0 -61
- package/build/models/ui/category-list/index.d.ts +0 -61
- package/build/models/ui/component-renderer/index.d.ts +0 -7
- package/build/models/ui/customer-review-list/index.d.ts +0 -43
- package/build/models/ui/index.d.ts +0 -22
- package/build/models/ui/navigation-link/index.d.ts +0 -8
- package/build/models/ui/product-attribute-detail/index.d.ts +0 -8
- package/build/models/ui/product-attribute-list/index.d.ts +0 -9
- package/build/models/ui/product-detail/index.d.ts +0 -28
- package/build/models/ui/product-list/index.d.ts +0 -132
- package/build/models/ui/validator/form/account-info.d.ts +0 -40
- package/build/models/ui/validator/form/address.d.ts +0 -75
- package/build/models/ui/validator/form/contact-form.d.ts +0 -45
- package/build/models/ui/validator/form/customer-review.d.ts +0 -37
- package/build/models/ui/validator/form/forgot-password.d.ts +0 -29
- package/build/models/ui/validator/form/login.d.ts +0 -35
- package/build/models/ui/validator/form/recover-password.d.ts +0 -36
- package/build/models/ui/validator/form/register.d.ts +0 -48
- package/build/models/ui/validator/index.d.ts +0 -27
- package/build/models/ui/validator/rules/index.d.ts +0 -87
- package/build/pages/404.d.ts +0 -6
- package/build/pages/[slug]/index.d.ts +0 -7
- package/build/pages/account/addresses.d.ts +0 -6
- package/build/pages/account/favorite-products.d.ts +0 -6
- package/build/pages/account/forgot-password.d.ts +0 -6
- package/build/pages/account/index.d.ts +0 -6
- package/build/pages/account/login.d.ts +0 -6
- package/build/pages/account/orders/[id].d.ts +0 -6
- package/build/pages/account/orders/index.d.ts +0 -6
- package/build/pages/account/recover-password.d.ts +0 -6
- package/build/pages/account/register.d.ts +0 -6
- package/build/pages/blog/[slug].d.ts +0 -7
- package/build/pages/blog/index.d.ts +0 -6
- package/build/pages/cart.d.ts +0 -6
- package/build/pages/checkout.d.ts +0 -18
- package/build/pages/editor.d.ts +0 -8
- package/build/pages/home.d.ts +0 -6
- package/build/pages/index.d.ts +0 -20
- package/build/pages/pages/[slug].d.ts +0 -7
- package/build/pages/search.d.ts +0 -6
- package/build/providers/page-data-get.d.ts +0 -61
- package/build/providers/page-data-init.d.ts +0 -58
- package/build/providers/page-data-next.d.ts +0 -243
- package/build/providers/placeholders.d.ts +0 -6
- package/build/providers/prop-value/attribute-list.d.ts +0 -12
- package/build/providers/prop-value/attribute.d.ts +0 -12
- package/build/providers/prop-value/blog-category-list.d.ts +0 -7
- package/build/providers/prop-value/blog-category.d.ts +0 -11
- package/build/providers/prop-value/blog-list.d.ts +0 -9
- package/build/providers/prop-value/blog.d.ts +0 -11
- package/build/providers/prop-value/boolean.d.ts +0 -6
- package/build/providers/prop-value/brand-list.d.ts +0 -7
- package/build/providers/prop-value/brand.d.ts +0 -11
- package/build/providers/prop-value/category-list.d.ts +0 -7
- package/build/providers/prop-value/category.d.ts +0 -11
- package/build/providers/prop-value/checkout.d.ts +0 -4
- package/build/providers/prop-value/color.d.ts +0 -6
- package/build/providers/prop-value/custom.d.ts +0 -42
- package/build/providers/prop-value/image-list.d.ts +0 -7
- package/build/providers/prop-value/image.d.ts +0 -7
- package/build/providers/prop-value/link.d.ts +0 -16
- package/build/providers/prop-value/product-detail.d.ts +0 -11
- package/build/providers/prop-value/product-list.d.ts +0 -9
- package/build/providers/prop-value/rich-text.d.ts +0 -6
- package/build/providers/prop-value/text.d.ts +0 -6
- package/build/store/base.d.ts +0 -25
- package/build/store/cart.d.ts +0 -30
- package/build/store/customer.d.ts +0 -91
- package/build/storefront/index.d.ts +0 -55
- package/build/utils/currency.d.ts +0 -7
- package/build/utils/helper.d.ts +0 -8
- package/build/utils/i18n.d.ts +0 -20
package/build/index.es.css
DELETED
|
@@ -1,1521 +0,0 @@
|
|
|
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
|
-
flex: 1 1 auto; }
|
|
1217
|
-
.style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr .style-module_InfoRow__3eZdJ .style-module_Value__3mBvk {
|
|
1218
|
-
flex: 0 0 auto;
|
|
1219
|
-
padding-left: 8px; }
|
|
1220
|
-
.style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr .style-module_InfoRow__3eZdJ:last-of-type {
|
|
1221
|
-
margin-bottom: 0; }
|
|
1222
|
-
|
|
1223
|
-
.style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt {
|
|
1224
|
-
display: flex;
|
|
1225
|
-
justify-content: space-between;
|
|
1226
|
-
align-items: center;
|
|
1227
|
-
margin-top: 12px; }
|
|
1228
|
-
.style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt .style-module_TitleContainer__3ptQE .style-module_Title__16M5E {
|
|
1229
|
-
font-size: 20px;
|
|
1230
|
-
font-weight: 600; }
|
|
1231
|
-
.style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt .style-module_TotalPrice__2s7DC {
|
|
1232
|
-
font-size: 20px;
|
|
1233
|
-
font-weight: 600; }
|
|
1234
|
-
@media only screen and (max-width: 1000px) {
|
|
1235
|
-
.style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt {
|
|
1236
|
-
height: 64px;
|
|
1237
|
-
margin-top: 0px; } }
|
|
1238
|
-
|
|
1239
|
-
.style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 {
|
|
1240
|
-
display: flex;
|
|
1241
|
-
align-items: center;
|
|
1242
|
-
padding: 4px 4px 4px 8px;
|
|
1243
|
-
background-color: white;
|
|
1244
|
-
border-radius: 6px;
|
|
1245
|
-
margin-left: 12px;
|
|
1246
|
-
font-size: 14px;
|
|
1247
|
-
line-height: 20px; }
|
|
1248
|
-
.style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 .style-module_CouponCode__3rgOu {
|
|
1249
|
-
font-size: 14px; }
|
|
1250
|
-
.style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 .style-module_ClearCoupon__1Rx4A {
|
|
1251
|
-
cursor: pointer;
|
|
1252
|
-
display: flex;
|
|
1253
|
-
align-items: center;
|
|
1254
|
-
color: var(--checkout-secondary-text-color); }
|
|
1255
|
-
.style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 .style-module_ClearCoupon__1Rx4A svg {
|
|
1256
|
-
transform: scale(0.8); }
|
|
1257
|
-
|
|
1258
|
-
.style-module_CartSummary__30RcF .style-module_NotificationContainer__Zblek {
|
|
1259
|
-
margin-bottom: 14px; }
|
|
1260
|
-
|
|
1261
|
-
.style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd {
|
|
1262
|
-
margin-top: 24px;
|
|
1263
|
-
width: calc(100% - 2px);
|
|
1264
|
-
margin-left: 1px; }
|
|
1265
|
-
.style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd .style-module_Title__16M5E {
|
|
1266
|
-
font-size: 16px;
|
|
1267
|
-
color: var(--checkout-primary-text-color);
|
|
1268
|
-
margin-bottom: 8px; }
|
|
1269
|
-
.style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd .style-module_CheckoutNoteDisplay__kTFTx {
|
|
1270
|
-
color: var(--checkout-secondary-text-color); }
|
|
1271
|
-
.style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd.style-module_Success__2vqWA {
|
|
1272
|
-
margin-top: 0; }
|
|
1273
|
-
@media only screen and (max-width: 1000px) {
|
|
1274
|
-
.style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd {
|
|
1275
|
-
margin-top: 0px; } }
|
|
1276
|
-
|
|
1277
|
-
.style-module_CartSummary__30RcF .style-module_GiftLabel__2f-wC {
|
|
1278
|
-
display: flex;
|
|
1279
|
-
align-items: center; }
|
|
1280
|
-
.style-module_CartSummary__30RcF .style-module_GiftLabel__2f-wC span {
|
|
1281
|
-
margin-left: 8px; }
|
|
1282
|
-
|
|
1283
|
-
.style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ {
|
|
1284
|
-
width: 100%;
|
|
1285
|
-
height: 50px;
|
|
1286
|
-
justify-content: center;
|
|
1287
|
-
align-items: center;
|
|
1288
|
-
color: var(--checkout-primary-text-color);
|
|
1289
|
-
display: none; }
|
|
1290
|
-
@media only screen and (max-width: 1000px) {
|
|
1291
|
-
.style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ {
|
|
1292
|
-
display: flex; } }
|
|
1293
|
-
.style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ span {
|
|
1294
|
-
font-size: 14px;
|
|
1295
|
-
line-height: 20px;
|
|
1296
|
-
color: var(--checkout-secondary-text-color);
|
|
1297
|
-
margin-right: 8px; }
|
|
1298
|
-
.style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ a {
|
|
1299
|
-
display: flex;
|
|
1300
|
-
align-items: center; }
|
|
1301
|
-
|
|
1302
|
-
.style-module_StepSuccess__36Zg4 {
|
|
1303
|
-
padding-top: 24px; }
|
|
1304
|
-
.style-module_StepSuccess__36Zg4 .style-module_SuccessTitleContainer__3fT9P {
|
|
1305
|
-
margin-bottom: 24px;
|
|
1306
|
-
display: flex;
|
|
1307
|
-
align-items: center; }
|
|
1308
|
-
.style-module_StepSuccess__36Zg4 .style-module_SuccessTitleContainer__3fT9P .style-module_SuccessTitle__2cVxj {
|
|
1309
|
-
font-size: 28px;
|
|
1310
|
-
font-weight: 600;
|
|
1311
|
-
margin-left: 16px; }
|
|
1312
|
-
.style-module_StepSuccess__36Zg4 .style-module_SuccessSubTitle__2UvWI {
|
|
1313
|
-
margin: auto;
|
|
1314
|
-
margin-bottom: 32px; }
|
|
1315
|
-
.style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk {
|
|
1316
|
-
display: grid;
|
|
1317
|
-
grid-template-columns: 1fr 1fr;
|
|
1318
|
-
grid-gap: 48px; }
|
|
1319
|
-
.style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_InfoTitle__2Whku {
|
|
1320
|
-
font-size: 16px;
|
|
1321
|
-
line-height: 24px;
|
|
1322
|
-
margin-bottom: 12px; }
|
|
1323
|
-
.style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_InfoText__1LHFw {
|
|
1324
|
-
font-size: 14px;
|
|
1325
|
-
color: var(--checkout-secondary-text-color);
|
|
1326
|
-
display: flex;
|
|
1327
|
-
align-items: center; }
|
|
1328
|
-
.style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_InfoTextBold__21977 {
|
|
1329
|
-
font-weight: 600;
|
|
1330
|
-
color: var(--checkout-primary-text-color); }
|
|
1331
|
-
.style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk.style-module_WithBorder__1aBHw {
|
|
1332
|
-
border-bottom: 1px solid var(--checkout-border-color);
|
|
1333
|
-
padding-bottom: 24px; }
|
|
1334
|
-
.style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_CardLogoContainer__3tymO {
|
|
1335
|
-
display: flex;
|
|
1336
|
-
align-items: center;
|
|
1337
|
-
margin-right: 4px; }
|
|
1338
|
-
.style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk .style-module_PaymentLogoContainer__AN08p img {
|
|
1339
|
-
height: 20px; }
|
|
1340
|
-
.style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ {
|
|
1341
|
-
width: 100%;
|
|
1342
|
-
display: flex;
|
|
1343
|
-
justify-content: space-between;
|
|
1344
|
-
margin: auto;
|
|
1345
|
-
margin-top: 24px; }
|
|
1346
|
-
.style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 {
|
|
1347
|
-
display: flex;
|
|
1348
|
-
align-items: center;
|
|
1349
|
-
color: var(--checkout-secondary-text-color);
|
|
1350
|
-
flex-wrap: wrap; }
|
|
1351
|
-
.style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 .style-module_Cta__3sxNK {
|
|
1352
|
-
color: var(--checkout-primary-text-color);
|
|
1353
|
-
margin-left: 4px; }
|
|
1354
|
-
.style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 .style-module_Cta__3sxNK:hover {
|
|
1355
|
-
cursor: pointer;
|
|
1356
|
-
text-decoration: underline; }
|
|
1357
|
-
@media only screen and (max-width: 400px) {
|
|
1358
|
-
.style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ {
|
|
1359
|
-
flex-direction: column; }
|
|
1360
|
-
.style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 {
|
|
1361
|
-
margin-bottom: 12px; }
|
|
1362
|
-
.style-module_StepSuccess__36Zg4 .style-module_Actions__3ZXaJ .style-module_HelpText__39LA1 .style-module_Cta__3sxNK {
|
|
1363
|
-
margin-left: 0; } }
|
|
1364
|
-
.style-module_StepSuccess__36Zg4 .style-module_OrderStatus__CPd7s {
|
|
1365
|
-
padding: 4px 8px;
|
|
1366
|
-
border-radius: 6px;
|
|
1367
|
-
margin-top: 8px;
|
|
1368
|
-
font-size: 14px;
|
|
1369
|
-
font-weight: 500;
|
|
1370
|
-
display: inline-flex; }
|
|
1371
|
-
.style-module_StepSuccess__36Zg4 .style-module_OrderStatus__CPd7s.style-module_Yellow__1mZZm {
|
|
1372
|
-
color: var(--checkout-warning-color);
|
|
1373
|
-
background-color: var(--checkout-warning-light-color);
|
|
1374
|
-
border: 1px solid var(--checkout-warning-color); }
|
|
1375
|
-
.style-module_StepSuccess__36Zg4 .style-module_OrderStatus__CPd7s.style-module_Green__2qwNg {
|
|
1376
|
-
color: var(--checkout-success-color);
|
|
1377
|
-
background-color: var(--checkout-success-light-color);
|
|
1378
|
-
border: 1px solid var(--checkout-success-color); }
|
|
1379
|
-
.style-module_StepSuccess__36Zg4 .style-module_OrderStatus__CPd7s.style-module_Red__TKRy8 {
|
|
1380
|
-
color: var(--checkout-error-color);
|
|
1381
|
-
background-color: var(--checkout-error-light-color);
|
|
1382
|
-
border: 1px solid var(--checkout-error-color); }
|
|
1383
|
-
@media only screen and (max-width: 1000px) {
|
|
1384
|
-
.style-module_StepSuccess__36Zg4 {
|
|
1385
|
-
padding-left: 24px;
|
|
1386
|
-
padding-right: 24px; }
|
|
1387
|
-
.style-module_StepSuccess__36Zg4 .style-module_SuccessTitleContainer__3fT9P {
|
|
1388
|
-
margin-bottom: 12px; }
|
|
1389
|
-
.style-module_StepSuccess__36Zg4 .style-module_SuccessTitleContainer__3fT9P .style-module_SuccessTitle__2cVxj {
|
|
1390
|
-
font-size: 20px; }
|
|
1391
|
-
.style-module_StepSuccess__36Zg4 .style-module_SuccessSubTitle__2UvWI {
|
|
1392
|
-
max-width: 400px;
|
|
1393
|
-
margin-left: 56px; } }
|
|
1394
|
-
@media only screen and (max-width: 400px) {
|
|
1395
|
-
.style-module_StepSuccess__36Zg4 .style-module_InfoGrid__2VYXk {
|
|
1396
|
-
grid-template-columns: 1fr;
|
|
1397
|
-
grid-gap: 24px; }
|
|
1398
|
-
.style-module_StepSuccess__36Zg4 .style-module_SuccessSubTitle__2UvWI {
|
|
1399
|
-
margin-left: 0; } }
|
|
1400
|
-
|
|
1401
|
-
.style-module_ExpandableSection__2JTCI {
|
|
1402
|
-
border-bottom: 1px solid var(--checkout-border-color); }
|
|
1403
|
-
.style-module_ExpandableSection__2JTCI .style-module_Top__3j_E0 {
|
|
1404
|
-
padding: 24px 0;
|
|
1405
|
-
display: flex;
|
|
1406
|
-
justify-content: space-between;
|
|
1407
|
-
align-items: center;
|
|
1408
|
-
user-select: none; }
|
|
1409
|
-
.style-module_ExpandableSection__2JTCI .style-module_Top__3j_E0 .style-module_Title__2w3G9 {
|
|
1410
|
-
font-weight: 600;
|
|
1411
|
-
font-size: 20px;
|
|
1412
|
-
line-height: 32px; }
|
|
1413
|
-
.style-module_ExpandableSection__2JTCI .style-module_Top__3j_E0 .style-module_HideBtn__xC3Ix {
|
|
1414
|
-
font-size: 14px;
|
|
1415
|
-
cursor: pointer;
|
|
1416
|
-
user-select: none; }
|
|
1417
|
-
.style-module_ExpandableSection__2JTCI .style-module_Content__3TXDF {
|
|
1418
|
-
padding-bottom: 24px; }
|
|
1419
|
-
|
|
1420
|
-
.style-module_StepContainer__1O2dD {
|
|
1421
|
-
width: 100%; }
|
|
1422
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA {
|
|
1423
|
-
width: 100%; }
|
|
1424
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 {
|
|
1425
|
-
padding: 24px 0;
|
|
1426
|
-
border-top: 1px solid var(--checkout-border-color); }
|
|
1427
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2.style-module_First__cAzdJ {
|
|
1428
|
-
border-top: none; }
|
|
1429
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitleTop__3zfsj {
|
|
1430
|
-
display: flex;
|
|
1431
|
-
align-items: center; }
|
|
1432
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitleTop__3zfsj.style-module_WithRightContent__2fqb1 {
|
|
1433
|
-
align-items: flex-start; }
|
|
1434
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepCircle__36A5q {
|
|
1435
|
-
width: 32px;
|
|
1436
|
-
height: 32px;
|
|
1437
|
-
border-radius: 100%;
|
|
1438
|
-
border: 1px solid var(--checkout-button-bg-color);
|
|
1439
|
-
color: var(--checkout-button-bg-color);
|
|
1440
|
-
display: flex;
|
|
1441
|
-
justify-content: center;
|
|
1442
|
-
align-items: center;
|
|
1443
|
-
margin-right: 16px;
|
|
1444
|
-
flex: 0 0 auto;
|
|
1445
|
-
font-size: 20px; }
|
|
1446
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepCircle__36A5q.style-module_Selected__3j91L {
|
|
1447
|
-
background-color: var(--checkout-button-bg-color);
|
|
1448
|
-
color: var(--checkout-button-text-color); }
|
|
1449
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepCircle__36A5q.style-module_Selected__3j91L svg {
|
|
1450
|
-
transform: scale(1.5);
|
|
1451
|
-
position: relative;
|
|
1452
|
-
right: -1px; }
|
|
1453
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitle__10YDP {
|
|
1454
|
-
font-size: 22px;
|
|
1455
|
-
color: var(--checkout-primary-text-color);
|
|
1456
|
-
flex: 0 0 auto;
|
|
1457
|
-
font-weight: 600;
|
|
1458
|
-
line-height: 32px; }
|
|
1459
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitle__10YDP.style-module_Light__15wSX {
|
|
1460
|
-
color: var(--checkout-button-disabled-text-color); }
|
|
1461
|
-
.style-module_StepContainer__1O2dD .style-module_Step__1iOYA .style-module_StepTitleContainer__2GUg2 .style-module_StepTitleRightContent__2Q43m {
|
|
1462
|
-
flex: 1 1 auto; }
|
|
1463
|
-
.style-module_StepContainer__1O2dD .style-module_StepContent__20QIi {
|
|
1464
|
-
padding-bottom: 24px;
|
|
1465
|
-
padding-left: 48px;
|
|
1466
|
-
width: 100%; }
|
|
1467
|
-
@media only screen and (max-width: 1000px) {
|
|
1468
|
-
.style-module_StepContainer__1O2dD {
|
|
1469
|
-
padding: 0 24px; }
|
|
1470
|
-
.style-module_StepContainer__1O2dD .style-module_StepContent__20QIi {
|
|
1471
|
-
padding-left: 0px; } }
|
|
1472
|
-
|
|
1473
|
-
.style-module_Actions__ttsEZ {
|
|
1474
|
-
display: grid;
|
|
1475
|
-
grid-template-columns: 1fr 1fr;
|
|
1476
|
-
grid-gap: 16px; }
|
|
1477
|
-
|
|
1478
|
-
.style-module_Description__3BMvk {
|
|
1479
|
-
margin-bottom: 24px; }
|
|
1480
|
-
|
|
1481
|
-
.style-module_Container__1f6or {
|
|
1482
|
-
width: 100vw;
|
|
1483
|
-
height: 100vh;
|
|
1484
|
-
background-color: var(--checkout-primary-bg-color);
|
|
1485
|
-
display: flex;
|
|
1486
|
-
justify-content: center;
|
|
1487
|
-
align-items: center; }
|
|
1488
|
-
.style-module_Container__1f6or .style-module_loader__VCfEE,
|
|
1489
|
-
.style-module_Container__1f6or .style-module_loader__VCfEE:after {
|
|
1490
|
-
border-radius: 50%;
|
|
1491
|
-
width: 5em;
|
|
1492
|
-
height: 5em; }
|
|
1493
|
-
.style-module_Container__1f6or .style-module_loader__VCfEE {
|
|
1494
|
-
font-size: 6px;
|
|
1495
|
-
position: relative;
|
|
1496
|
-
text-indent: -9999em;
|
|
1497
|
-
border-top: 0.5em solid rgba(255, 255, 255, 0.2);
|
|
1498
|
-
border-right: 0.5em solid rgba(255, 255, 255, 0.2);
|
|
1499
|
-
border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
|
|
1500
|
-
border-left: 0.5em solid var(--checkout-button-bg-color);
|
|
1501
|
-
-webkit-transform: translateZ(0);
|
|
1502
|
-
-ms-transform: translateZ(0);
|
|
1503
|
-
transform: translateZ(0);
|
|
1504
|
-
-webkit-animation: style-module_load8__3N32j 1.1s infinite linear;
|
|
1505
|
-
animation: style-module_load8__3N32j 1.1s infinite linear; }
|
|
1506
|
-
|
|
1507
|
-
@-webkit-keyframes style-module_load8__3N32j {
|
|
1508
|
-
0% {
|
|
1509
|
-
-webkit-transform: rotate(0deg);
|
|
1510
|
-
transform: rotate(0deg); }
|
|
1511
|
-
100% {
|
|
1512
|
-
-webkit-transform: rotate(360deg);
|
|
1513
|
-
transform: rotate(360deg); } }
|
|
1514
|
-
|
|
1515
|
-
@keyframes style-module_load8__3N32j {
|
|
1516
|
-
0% {
|
|
1517
|
-
-webkit-transform: rotate(0deg);
|
|
1518
|
-
transform: rotate(0deg); }
|
|
1519
|
-
100% {
|
|
1520
|
-
-webkit-transform: rotate(360deg);
|
|
1521
|
-
transform: rotate(360deg); } }
|