wickes-css2 2.98.0-develop.1 → 2.98.0-develop.10
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/Readme.md +4 -3
- package/build/css/category-main.css +1 -1
- package/build/css/components/checkout-payment-details-v2.css +1 -1
- package/build/css/components/global-search.css +1 -1
- package/build/css/components/loader.css +1 -1
- package/build/css/components/price-block-v2-critical.css +1 -1
- package/build/css/components/price-block-v2.css +1 -1
- package/build/css/homepage-main.css +1 -1
- package/build/css/main.css +1 -1
- package/build/css/my-account-main-v2.css +1 -1
- package/build/css/my-account-main.css +1 -1
- package/build/css/pages/checkout-new.css +1 -1
- package/build/css/pages/checkout.css +1 -1
- package/build/css/pages/my-account-v2.css +1 -1
- package/build/css/pages/page_home.css +1 -1
- package/build/css/pages/page_my-order.css +1 -1
- package/build/css/pages/page_my-orders.css +1 -1
- package/build/css/pages/page_wismo-details.css +1 -1
- package/build/css/pdp-main-before-combine.css +1 -1
- package/build/css/pdp-main-critical.css +1 -1
- package/build/css/pdp-main-non-critical.css +1 -1
- package/build/css/pdp-main.css +1 -1
- package/build/css/plp-main.css +1 -1
- package/build/css/store-locator-main.css +1 -1
- package/build/img/billie-logo.svg +4 -0
- package/build/img/billie-modal.svg +4 -0
- package/build/img/billie-pdp.svg +11 -0
- package/build/img/billie-spinner.svg +5 -0
- package/build/img/billie.svg +4 -0
- package/build/img/calm-primary-logo.png +0 -0
- package/build/img/payment/checkout/billie.svg +4 -0
- package/build/img/payment/footer/billie.svg +4 -0
- package/build/js/basket.min.js +2 -2
- package/build/js/bundle.min.js +1 -1
- package/build/js/checkout.min.js +1 -1
- package/build/js/emulation.min.js +23 -11
- package/build/js/general.bundle.min.js +1 -1
- package/build/js/merged-checkout.min.js +1 -1
- package/build/js/page/basket-v2.js +16 -7
- package/build/js/page/billie-business-type.js +34 -0
- package/build/js/page/checkout-payment-details.js +8 -0
- package/build/js/page/components/charity.js +58 -43
- package/build/js/page/components/modal-observer.js +51 -0
- package/build/js/page/smart-banner.js +4 -1
- package/build/js/pdp.bundle.min.js +1 -1
- package/build/js/plp.bundle.min.js +1 -1
- package/build/js/project-list.min.js +1 -1
- package/build/js/smart-banner.min.js +1 -1
- package/package.json +1 -9
- package/src/components/address-billie.hbs +42 -0
- package/src/components/address-postcode-look-up.hbs +2 -2
- package/src/components/basket-charity-donations-new.hbs +40 -0
- package/src/components/billie-modal.hbs +41 -0
- package/src/components/billie-online-messaging.hbs +14 -0
- package/src/components/checkout-edit-billing-address.hbs +20 -6
- package/src/components/checkout-payment-details-v2.hbs +94 -55
- package/src/components/checkout-payment-info-block.hbs +49 -0
- package/src/components/checkout-payment-option.hbs +40 -0
- package/src/components/checkout_payment-new.hbs +10 -1
- package/src/components/donation-cart-new.hbs +38 -0
- package/src/components/modal.hbs +4 -1
- package/src/components/my-account/active-orders/list-orders.hbs +1 -1
- package/src/components/my-account/active-orders/order.hbs +2 -0
- package/src/components/my-account/active-orders/payment-status.hbs +17 -0
- package/src/components/my-account/payment-status.hbs +19 -0
- package/src/components/my-account/saving-totaliser.hbs +52 -0
- package/src/components/order-summary.hbs +3 -0
- package/src/components/payment-loader.hbs +59 -21
- package/src/components/payments-checkout-v2.hbs +12 -6
- package/src/components/payments-checkout.hbs +6 -0
- package/src/components/payments.hbs +10 -4
- package/src/components/price-block-v2.hbs +13 -8
- package/src/components/smart-banner.hbs +1 -1
- package/src/components/wismo-payment.hbs +16 -0
- package/src/data/data_shopping-cart-v2.json +51 -0
- package/src/data/data_wismo.json +53 -0
- package/src/data/my-account/data_my-account.json +57 -0
- package/src/elements/radiobutton.hbs +7 -0
- package/src/img/billie-logo.svg +4 -0
- package/src/img/billie-modal.svg +4 -0
- package/src/img/billie-pdp.svg +11 -0
- package/src/img/billie-spinner.svg +5 -0
- package/src/img/billie.svg +4 -0
- package/src/img/calm-primary-logo.png +0 -0
- package/src/img/payment/checkout/billie.svg +4 -0
- package/src/img/payment/footer/billie.svg +4 -0
- package/src/js/components/general/notification.js +1 -1
- package/src/js/emulation/paymentLoader.js +22 -11
- package/src/js/page/basket-v2.js +16 -7
- package/src/js/page/billie-business-type.js +34 -0
- package/src/js/page/checkout-payment-details.js +8 -0
- package/src/js/page/components/charity.js +58 -43
- package/src/js/page/components/modal-observer.js +51 -0
- package/src/js/page/smart-banner.js +4 -1
- package/src/layouts/base.hbs +0 -3
- package/src/layouts/bicester-kitchen.hbs +0 -3
- package/src/layouts/my-account.hbs +0 -3
- package/src/page_basket-billie.html +54 -0
- package/src/page_checkout_confirmation-billie.html +339 -0
- package/src/page_checkout_delivery-address-customer-journey.html +2 -2
- package/src/page_my-account-trade-pro-components.html +27 -0
- package/src/page_my-account-trade-pro.html +7 -0
- package/src/page_my-account.html +1 -0
- package/src/page_my-order.html +1 -1
- package/src/page_payment-details-with-billie.html +67 -0
- package/src/page_product-details-billie.html +87 -0
- package/src/page_shopping-cart-v2.html +4 -3
- package/src/page_wismo-details.html +2 -2
- package/src/partials/head.hbs +1 -5
- package/src/scss/common/_app.scss +0 -1
- package/src/scss/common/_elements.scss +4 -0
- package/src/scss/components/_billie-modal.scss +181 -0
- package/src/scss/components/_billie-online-messaging.scss +46 -0
- package/src/scss/components/_charity-donations.scss +114 -186
- package/src/scss/components/_donation-cart-new.scss +192 -0
- package/src/scss/components/_payments-checkout.scss +2 -1
- package/src/scss/components/_payments-v2.scss +8 -0
- package/src/scss/components/_smart-banner.scss +4 -2
- package/src/scss/components/_tooltip.scss +19 -0
- package/src/scss/components/checkout-payment-details-v2.scss +237 -0
- package/src/scss/components/loader.scss +8 -0
- package/src/scss/components/my-account/_active-orders.scss +2 -0
- package/src/scss/components/my-account/_payment-status.scss +84 -0
- package/src/scss/components/my-account/_saving-totaliser.scss +175 -0
- package/src/scss/components/price-block-v2-critical.scss +4 -0
- package/src/scss/components/price-block-v2.scss +4 -0
- package/src/scss/globals/_global-components.scss +0 -1
- package/src/scss/main.scss +0 -1
- package/src/scss/pages/_checkout-confirmation-new.scss +10 -3
- package/src/scss/pages/checkout-new.scss +3 -0
- package/src/scss/pages/my-account-v2.scss +3 -0
- package/src/scss/pages/page_wismo-details.scss +1 -0
- package/src/scss/pdp-main-critical.scss +1 -1
- package/src/scss/pdp-main.scss +2 -0
- package/src/sitemap.html +32 -16
- package/src/components/google-banner.hbs +0 -29
- package/src/page_app_google_banner.html +0 -176
- package/src/page_my-account_tradePro-with-google-banner.html +0 -147
- package/src/page_product-details_google-banner.html +0 -124
- package/src/page_shopping-cart-charity.html +0 -56
- package/src/scss/components/_google_banner-critical.scss +0 -66
- package/src/scss/components/_google_banner.scss +0 -80
|
@@ -1 +1 @@
|
|
|
1
|
-
.header-wrapper--checkout .header-inner{margin-right:-15px;justify-content:space-between}.header-wrapper--checkout .header-logo{display:block;padding-left:0}.header-wrapper--checkout .header-logo .header-logo__link{display:block}.header-wrapper--checkout .header-logo .header-logo__link,.header-wrapper--checkout .header-logo .header-logo__link-tp,.header-wrapper--checkout .header-logo .header-logo_wickes{height:92px;width:130px}.header-wrapper--checkout .header-logo .header-logo__link-tp_small,.header-wrapper--checkout .header-logo .header-logo__link_small,.header-wrapper--checkout .header-logo .header-logo_wickes_small{height:72px;width:109px}.header-wrapper--checkout .header-logo .header-logo__link,.header-wrapper--checkout .header-logo .header-logo_wickes{background-image:url(../../img/wickes-logo.svg)}.header-wrapper--checkout .header-logo .header-logo__link-tp{background-image:url(../../img/tradePro-logo_desk.png);transform:translateY(7px)}.header__main-title{color:#fff;font-size:21px;text-align:right}@media (min-width:768px){.header__main-title{font-size:26px;text-align:center;top:auto}}@media (min-width:992px){.header__main-title{font-size:33px}.header-wrapper--checkout .header-logo{padding-left:15px}}.header__contact-data{display:flex;flex-direction:column;justify-content:center;font-weight:500;padding-right:15px;color:#fff;text-align:right}@media (max-width:767.98px){.header-wrapper--checkout .header-logo .header-logo__link,.header-wrapper--checkout .header-logo .header-logo__link-tp,.header-wrapper--checkout .header-logo .header-logo_wickes{height:59px;width:130px}.header__contact-data{padding-left:0;font-size:.75rem;line-height:1rem;white-space:nowrap;-ms-grid-row-align:center;align-self:center}}.header__logout{display:block;margin-bottom:5px;text-decoration:none;font-weight:400;color:#fff}.header__logout:hover{color:#fff;text-decoration:underline}@media (min-width:768px){.header__contact-data{padding-left:25px;min-height:50px;border-left:1px solid #eee}.header__help{font-size:1rem;line-height:2.125rem}.header__logout+.header__help{line-height:normal}.header__logout{font-size:.75rem;line-height:1rem}.header-wrapper--checkout .header-logo .header-logo__link-tp{margin-top:0}}.footer-checkout{padding:0}.footer-checkout-holder{width:100%;margin-right:auto;margin-left:auto;display:flex;align-items:center;flex-direction:column;background-color:#f8f8f8;padding:25px 0}@media (min-width:576px){.footer-checkout-holder{max-width:540px}}@media (min-width:768px){.footer-checkout-holder{max-width:720px}}@media (min-width:992px){.footer-checkout-holder{max-width:960px}}@media (min-width:1200px){.footer-checkout-holder{max-width:1140px}}.footer-checkout .payments{margin-bottom:15px;position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}.footer-checkout .payments .payments__item{margin-right:10px;vertical-align:middle}.footer-checkout .payments .payments__item .payments__icons{display:block;background:url(../../img/payments-sprite.png) no-repeat;border-radius:3px;text-indent:-9999px}.footer-checkout .payments .payments__item .payments__icons.payments-mastercard{background-position:-110px -9px;height:28px;width:36px}.footer-checkout .payments .payments__item .payments__icons.payments-maestro{background-position:-110px -49px;height:33px;width:36px;transform:translateY(3px)}.footer-checkout .payments .payments__item .payments__icons.payments-visa{background-position:-10px -54px;height:22px;width:68px}.footer-checkout .payments .payments__item .payments__icons.payments-paypal{background-position:-10px -9px;height:24px;width:80px}.footer-checkout__copyright{font-size:.75rem;line-height:1rem;white-space:nowrap}@media (min-width:768px){.footer-checkout{padding:0 15px}.footer-checkout-holder{flex-direction:row;justify-content:space-between}.footer-checkout .payments{text-align:left;margin-bottom:0;flex:0 0 50%;max-width:50%}.footer-checkout .payments .payments__item{margin-right:25px}}.checkout-session-expired{border:1px solid #0277bd;padding:10px 15px;margin-bottom:40px;background-color:rgba(2,119,189,.05)}.checkout-session-expired .session-icon{float:left}.checkout-session-expired .session-icon .fa-exclamation-circle{color:#0277bd;margin-right:8px;font-size:1rem}.checkout-session-expired .session-icon .fa-times{float:right;margin-top:3px;color:#8b8b8b;font-size:1rem}.checkout-session-expired p{display:inline-block;margin-bottom:0;font-size:.95rem}@media (max-width:991.98px){.checkout-session-expired .session-icon{width:8%}.checkout-session-expired .session-icon .fa-exclamation-circle{vertical-align:top;height:100%}.checkout-session-expired .session-icon .fa-times{margin-top:0}.checkout-session-expired p{width:84%}}.checkout-sign-in{background-color:#f8f8f8;padding-top:40px;padding-bottom:40px}@media (max-width:767.98px){.checkout-sign-in{margin-left:-15px;margin-right:-15px}.checkout-sign-in .form-row__col-btn,.checkout-sign-in .form-row__field,.checkout-sign-in .form-row__label{padding:0}.checkout-sign-in__header{font-size:1.5rem;font-weight:500;line-height:2rem}}.checkout-sign-in h5{margin-top:30px}.checkout-sign-in__inner{padding:0 15px;max-width:570px;margin:0 auto}.checkout-sign-in__checkbox-wrap{margin-top:20px}.checkout-sign-in__password-wrap{margin-top:10px;margin-bottom:-20px}.checkout-sign-in__btn{min-width:160px}.date-selection{position:relative}.date-selection.date-selection_selected{border:1px solid #ccc}.delivery-date{width:100%;height:324px}.delivery-time{position:relative;background:#fff}.delivery-time__no-selection{font-size:1.125rem;line-height:1.5rem;position:absolute;top:50%;right:0;transform:translateY(-50%);font-weight:500;color:#3e3e3e;text-align:center}@media (max-width:767.98px){.checkout-sign-in__btn{width:100%}.delivery-time__no-selection{font-weight:500}}.date-selection_selected .delivery-time__no-selection{display:none}.calendar{height:100%;padding:20px;border:1px solid #ccc;text-align:center}.date-selection_selected .calendar{border:0}.calendar__month{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:20px}@media (max-width:767.98px){.calendar__month{font-weight:500}}.calendar__row{justify-content:space-between}.calendar__row_names{margin-bottom:10px;background:#eee}.calendar__cell{width:14.2857%;height:34px;line-height:2.375rem}.calendar__cell_cnt{font-size:1rem;cursor:pointer;border:1px solid transparent;-webkit-user-select:none;-ms-user-select:none;user-select:none}.calendar__cell_cnt:hover{border-color:#0277bd}.calendar__cell_inactive{pointer-events:none;color:#ccc}.calendar__cell_selected{background:#0277bd;color:#fff}.delivery-types{display:none;background:rgba(2,119,189,.05);margin:10px 10px 10px -20px;position:relative;padding:20px 20px 10px}.delivery-types__date{font-size:1.125rem;font-weight:500}.date-selection_selected .delivery-types{display:block}.delivery-types__name{font-size:1rem;font-weight:500;line-height:1.5rem;display:inline-block;margin-bottom:5px}.delivery-types__name .icon{display:inline;padding-left:5px;color:#0277bd}.delivery-types__slots{margin:10px 0 0;padding:0;list-style:none}.delivery-types__slot{margin-bottom:15px;display:flex;justify-content:flex-start}.delivery-types__slot .rbn{display:inline-block;width:175px;padding-right:20px}.delivery-types__cost{display:inline-block;text-transform:uppercase;font-weight:700;line-height:1.5rem;padding-right:20px}.delivery-types__confirm{width:76px;padding:8px 12px;margin:22px 0 0}.delivery-types__error{display:none;color:#cf000f;margin-bottom:15px;margin-top:-2px}.delivery-types__error-show{display:block}.delivery-types.delivery-types-hide{display:none}.delivery-types__accordion{display:none;pointer-events:auto}.delivery-types__accordion.collapsed{transform:rotate(0)}.delivery-types:after{top:0;right:-1px}.delivery-types:before{top:0;left:-1px}.delivery-types-fixed-height{height:280px!important}.delivery-type{padding-top:10px}.delivery-type+.delivery-type{border-top:1px solid #eee;margin-top:5px}.calendar__row{display:block}.calendar__row:not(.calendar__row_names):not(:last-child){padding-bottom:6px}.calendar__row_days,.calendar__row_names{display:flex}.calendar__row_extended{position:relative;border-top:1px solid #ccc;border-bottom:1px solid #ccc;height:auto;overflow-y:scroll;text-align:left}.calendar__row_extended-hide,.calendar__row_extended-hide .delivery-types{display:none}.calendar__row_names{pointer-events:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}@media (min-width:768px){.date-selection__inner{grid-gap:10px;display:flex}.delivery-date{width:100%}.date-selection_selected .delivery-date:after{top:20px;bottom:20px}.delivery-time{width:100%}.date-selection .delivery-time{background:initial}}@media (min-width:992px) and (max-width:1199.98px){.delivery-date,.delivery-time{max-width:50%;flex:1 1 50%}}@media (max-width:991.98px){.delivery-types{margin:10px;padding:20px}}@media (max-width:767.98px){.delivery-date,.delivery-time{flex:0 0 100%;max-width:100%;height:auto}.date-selection_time-visible .delivery-time{display:block}.delivery-types{margin:0;height:auto;padding:10px 20px 20px}.delivery-types__date{padding-top:10px}.delivery-types__slot{justify-content:space-between}.delivery-types__confirm{margin:5px 0 0}.delivery-types__accordion{display:block;position:absolute;z-index:1;top:20px;right:20px;font-size:1.125rem;color:#0277bd;transition:.5s;transform:rotate(180deg)}.calendar__row_extended{overflow-y:inherit}.calendar__row_extended-hide .delivery-types{display:block}.delivery-type{padding-top:10px}.delivery-type,.delivery-types__name,.rbn{text-align:left}}@media (max-width:575.98px){.delivery-types__error{margin-right:10px}}.delivery-details-product-oos{border:1px solid #ccc;width:100%;max-width:100%;margin:0 15px 30px;padding:15px 0}.delivery-details-product-oos .product-oos-inner{padding:0 50px}.delivery-details-product-oos .product-oos-inner .order-line:first-of-type{border-top:0}.delivery-details-product-oos .product-oos-inner .order-line__info a{color:#0277bd;text-decoration:underline}.delivery-details-product-oos .product-oos-inner .order-line__info a:hover{color:#0a3055}.delivery-details-product-oos .product-oos-inner p{display:inline-block;margin-right:20px}.delivery-details-product-oos .product-oos-inner .fa-question-circle{color:#0277bd;font-size:1.2rem;display:inline-block}.delivery-details-product-oos .product-oos-inner .btn{color:#fff;position:absolute;bottom:15px;width:calc(100% - 30px)}.delivery-details-product-oos .product-oos-inner .btn-notify{bottom:70px}.delivery-details-product-oos .product-oos-inner .btn-notify:focus{color:#0a3055}.delivery-details-product-oos .product-oos-inner .btn:hover{color:inherit}.component-date-selection{padding-top:0}.delivery-details__payment-details{margin-top:40px;min-width:210px}.delivery-details__payment-details_mobile{width:100%;margin-bottom:20px}.delivery-details-option{margin-top:40px;margin-bottom:20px}.delivery-details-option:first-child{margin-top:0}.delivery-details-option__delivery-info{display:flex;flex-wrap:wrap;align-items:stretch;margin:30px 0 10px}.delivery-details-option__delivery-info-left{width:50%;margin-right:10%}.delivery-details-option__delivery-info-left .checkout-address-time{height:100%}.delivery-details-option__delivery-info-right{width:40%}.delivery-details-option__delivery-info-right .schedule-item{font-size:.75rem;font-weight:500;line-height:1.5rem}.delivery-details-option__delivery-info-right .schedule-item:nth-child(odd){background:#eee}.delivery-details-option__delivery-info-right .schedule-item:nth-child(2n){background:0 0}.delivery-details-option__contact-details{margin-top:40px}.delivery-details-option__contact-details:first-child{margin-top:0}.delivery-details-option__contact-details .your-contact-details__row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.delivery-details-option__contact-details .your-contact-details__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}.delivery-details-option__contact-details .your-contact-details .row-tel{margin-bottom:30px}.delivery-details-option__contact-details .your-contact-details h3:not(:first-child){padding-top:30px;border-top:1px solid #ccc}.delivery-details-option__contact-details .your-contact-details .order-update{margin:30px 0 40px}.delivery-details-option__contact-details .your-contact-details .form-row__action{margin-top:0}.delivery-details-option__contact-details .your-contact-details .form-row__col-btn{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.delivery-details-option__contact-details .your-contact-details__checkbox{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.delivery-details-option__contact-details .your-contact-details__checkbox span:first-of-type{font-size:1rem;font-weight:500;line-height:1.5rem}.delivery-details-option__contact-details .your-contact-details__checkbox .distance{font-size:1rem;font-weight:500;line-height:1.5rem;color:#8b8b8b;padding-left:10px}.delivery-details-option__contact-details .your-contact-details__checkbox .store-address{color:#8b8b8b}.delivery-details-option__contact-details .your-contact-details__checkbox .store-address__postcode{text-transform:uppercase}.delivery-details-option__contact-details .your-contact-details__checkbox-wrap{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.delivery-details-option__contact-details .your-contact-details .btn{min-width:160px}.right-aside{display:flex;flex-direction:column}@media (min-width:576px){.page_checkout-delivery-details .right-aside .checkout-widget__actions{display:none}}@media (min-width:768px){.delivery-details__payment-details_mobile{display:none}.delivery-details-option__contact-details .your-contact-details__descr{flex:0 0 77.77778%;max-width:77.77778%;margin-left:11.11111%}.delivery-details-option__contact-details .your-contact-details .form-row__action:before{left:70px;right:70px}.right-aside .checkout-voucher{order:0}}@media (min-width:992px){.delivery-details__payment-details_mobile{display:none}.delivery-details-option__contact-details .your-contact-details__descr{flex:0 0 55.55556%;max-width:55.55556%;margin-left:22.22222%}.delivery-details-option__contact-details .your-contact-details .form-row__action:before{left:8.33333%;right:8.33333%}.delivery-details-option__contact-details .your-contact-details .form-row__col-btn{margin-left:22.22222%}.delivery-details-option__contact-details .your-contact-details__checkbox{flex:0 0 50%;max-width:50%}.right-aside .checkout-voucher{order:0}}@media (min-width:768px) and (max-width:991.98px){.header-wrapper--checkout .header-logo .header-logo__link-tp{transform:translateY(0)}.delivery-details-option__contact-details .your-contact-details .form-row__col-btn{margin-left:11.11111%}}@media (max-width:1199.98px){.delivery-details-product-oos .product-oos-inner{padding:0 30px}.delivery-details-product-oos .product-oos-inner .content{width:100%;flex:100%;max-width:100%}.delivery-details-product-oos .product-oos-inner .content p{width:calc(90% - 20px);float:left}.delivery-details-product-oos .product-oos-inner .content .icon-info-component{float:right;width:10%;text-align:center;margin-top:5px}.delivery-details-product-oos .product-oos-inner .content .order-line:first-of-type{clear:both}.delivery-details-product-oos .product-oos-inner .right-aside{width:100%;flex:100%;max-width:100%;text-align:center}.delivery-details-product-oos .product-oos-inner .right-aside .btn{position:relative;bottom:auto;max-width:280px}}@media (max-width:991.98px){.delivery-details-product-oos{border:0;border-top:2px solid #ccc;padding-top:20px}.delivery-details-option__delivery-info{flex-direction:column}.delivery-details-option__delivery-info-left{width:100%;margin-right:0;margin-bottom:10px}.delivery-details-option__delivery-info-right{width:100%}.delivery-details-option__contact-details .your-contact-details__checkbox:not(:last-child){padding-bottom:10px}}@media (max-width:767.98px){.delivery-details-option__contact-details .your-contact-details .btn{width:100%}.delivery-details-product-oos .product-oos-inner .btn-notify{margin-bottom:1rem}.component-date-selection{padding-bottom:20px}.delivery-details__payment-details{display:none}.delivery-details-option_time-slot{margin-top:30px}.delivery-details-option__contact-details .your-contact-details .form-row__action:before{left:15px;right:15px}.delivery-details-option__contact-details .your-contact-details .form-row__col-btn{margin-bottom:20px}.continue-to-payment{padding-bottom:20px;width:100%}.continue-to-payment a{width:100%}.right-aside .checkout-voucher{order:-1}.right-aside .checkout-voucher .accordion__content .form-row__field{padding:0}}.edit-delivery-address .user-address,.page_checkout-delivery-address .user-address{padding:20px}.edit-delivery-address .user-address__content .user-address__links,.page_checkout-delivery-address .user-address__content .user-address__links{flex:0 0 16.66667%;max-width:16.66667%;margin:0;position:relative}.edit-delivery-address .user-address__content .user-address__links .default-mark-full,.page_checkout-delivery-address .user-address__content .user-address__links .default-mark-full{margin:0;position:absolute;bottom:0;right:15px;width:70px}.edit-delivery-address .user-address__content .user-address__address,.edit-delivery-address .user-address__content .user-address__phone,.page_checkout-delivery-address .user-address__content .user-address__address,.page_checkout-delivery-address .user-address__content .user-address__phone{flex:0 0 41.66667%;max-width:41.66667%;margin:0}.edit-delivery-address .user-address__content .user-address__btn,.page_checkout-delivery-address .user-address__content .user-address__btn{display:flex;flex-direction:column}.edit-delivery-address .user-address__content .user-address__btn .btn-remove-address,.page_checkout-delivery-address .user-address__content .user-address__btn .btn-remove-address{margin-bottom:15px}.edit-delivery-address .user-address__content .user-address__btn .btn-remove-address .icon,.page_checkout-delivery-address .user-address__content .user-address__btn .btn-remove-address .icon{position:relative;right:2px}.edit-delivery-address .user-address__content .user-address__btn .link-secondary,.page_checkout-delivery-address .user-address__content .user-address__btn .link-secondary{display:block;text-decoration:none;font-weight:500}.edit-delivery-address .user-address__wrapper .user-address:nth-of-type(2) .default-mark-full,.page_checkout-delivery-address .user-address__wrapper .user-address:nth-of-type(2) .default-mark-full{display:none}.edit-delivery-address .delivery-address__btn-back,.page_checkout-delivery-address .delivery-address__btn-back{margin-bottom:20px}.edit-delivery-address .delivery-address .btn-back-to-addresses,.page_checkout-delivery-address .delivery-address .btn-back-to-addresses{font-size:1rem;font-weight:500;line-height:1.5rem}.edit-delivery-address .delivery-address .user-address__title,.page_checkout-delivery-address .delivery-address .user-address__title{display:none}.edit-delivery-address .delivery-address .selected-address,.page_checkout-delivery-address .delivery-address .selected-address{display:block;font-weight:700;padding-bottom:10px}.edit-delivery-address a.btn-new-address,.page_checkout-delivery-address a.btn-new-address{display:block;margin-top:20px;font-size:16px}.edit-delivery-address div[data-auto-find] .form-row,.edit-delivery-address div[modaldata-auto-find] .form-row,.page_checkout-delivery-address div[data-auto-find] .form-row,.page_checkout-delivery-address div[modaldata-auto-find] .form-row{margin-bottom:0}.edit-delivery-address div[data-finded-address] a,.edit-delivery-address div[modaldata-finded-address] a,.page_checkout-delivery-address div[data-finded-address] a,.page_checkout-delivery-address div[modaldata-finded-address] a{margin-bottom:25px;text-align:center;display:block}.edit-delivery-address .btn-edit-manually,.page_checkout-delivery-address .btn-edit-manually{font-weight:700}.edit-delivery-address_guest .delivery-address-form .form-row__col-btn .btn-action,.page_checkout-delivery-address_guest .delivery-address-form .form-row__col-btn .btn-action{display:block;min-width:220px}.delivery-address-form{padding-right:0;padding-left:0;padding-bottom:30px}.delivery-address-form .form-row__col-btn{margin-top:20px}.delivery-address-form .form-row__col-btn .btn-action{width:220px}.delivery-address-form__inner{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.edit-delivery-address .btn-action .icon,.page_checkout-delivery-address .btn-action .icon,.page_checkout-delivery-details .btn-action .icon{height:0}.page_checkout-delivery-address .user-address__content{flex:0 0 100%;max-width:100%}@media (min-width:576px){.page_checkout-delivery-address .delivery-address__actions{width:220px}.page_checkout-delivery-address .right-aside .btn-delivery-details{display:none}#new-address-placeholder{padding:40px 0}}@media (min-width:768px){.page_checkout-delivery-address .edit-delivery-addr-guest .form-row__action .edit-delivery-address__delivery-btn{flex:0 0 41.66667%;max-width:41.66667%}.page_checkout-delivery-address_guest .right-aside .form-row__col-btn .btn-action{display:none}.page_checkout-delivery-address_guest .content .form-row__col-btn .btn-action{display:block!important}}@media (min-width:992px){.page_checkout-delivery-address_guest .delivery-address-form__inner,.page_checkout-delivery-address div[data-new-address] .delivery-address-form__inner{margin-left:22.22222%;flex:0 0 55.55556%;max-width:55.55556%}}@media (min-width:768px) and (max-width:991.98px){.delivery-address-form .form-row__col-btn{flex:0 0 50%;max-width:50%}}.page_checkout-delivery-address_guest .delivery-address-form+.form-row__col-btn{width:220px;margin-top:20px}@media (max-width:991.98px){.page_checkout-delivery-address .user-address__content .user-address__address,.page_checkout-delivery-address .user-address__content .user-address__phone{flex:0 0 50%;max-width:50%}.page_checkout-delivery-address .user-address__content .user-address__links{flex:0 0 100%;max-width:100%;padding:15px 15px 0}}.page_checkout-delivery-details_asm .checkout-widget__header{display:block}.page_checkout-delivery-details_asm .checkout-widget__email{word-break:break-all}.page_checkout-delivery-details_asm .btn-delivery-details{width:220px}.checkout-your-details .form-row__action_custom:before{height:0}@media (max-width:767.98px){.page_checkout-delivery-address #new-address-form .btn-md-lg-continue-delivery-details{display:none}.page_checkout-delivery-address .user-address__content .user-address__address,.page_checkout-delivery-address .user-address__content .user-address__phone{flex:0 0 100%;max-width:100%}.page_checkout-delivery-address .user-address__content .user-address__phone{padding-top:15px}.page_checkout-delivery-address .user-address__content .user-address__links{flex:0 0 100%;max-width:100%;padding:15px 15px 0}.page_checkout-delivery-address .user-address__wrapper .checkout-widget__outer-button{display:none}.page_checkout-delivery-address .delivery-address__actions .btn-action{width:100%;display:none}.page_checkout-delivery-address .right-aside{margin-top:20px;display:block}.page_checkout-delivery-address .right-aside .btn-delivery-details{margin-bottom:0;display:block}.page_checkout-delivery-address.modal-open{margin-top:0!important}.page_checkout-delivery-address_guest .delivery-address-form+.form-row__col-btn{width:100%}.page_checkout-delivery-address_guest .delivery-address-form__inner .form-row__action{padding-bottom:30px}.page_checkout-delivery-address_guest .delivery-address-form .form-wrapper{padding-bottom:1px}.page_checkout-delivery-address_guest .content .form-row__col-btn .btn-action{display:none}.page_checkout-delivery-address_guest .right-aside{margin-top:inherit;display:block}.page_checkout-delivery-address_guest .right-aside .checkout-widget__outer-button{margin:0}.page_checkout-delivery-details #new-address-placeholder{padding-top:20px;padding-bottom:20px}.delivery-address-form{margin:0 -15px;padding-bottom:10px}.edit-delivery-addr-guest .form-row__action .edit-delivery-address__delivery-btn{margin-top:15px}.edit-delivery-addr-guest .form-row__action .edit-delivery-address__delivery-btn .btn-action{width:100%}div[data-finded-address]{margin-bottom:20px}.page_checkout-delivery-details_asm .btn-delivery-details{width:100%}.page_checkout-delivery-details_asm .checkout-widget_email{padding:20px 45px;margin:0 -15px 20px;order:2}.page_checkout-delivery-details_asm .checkout-widget_order-summary{order:1}.page_checkout-delivery-details_asm .checkout-voucher{order:3}.page_checkout-delivery-details_asm .right-aside{margin-top:0}.checkout-your-details .form-row__action{margin-top:20px}.checkout-your-details .form-row__col-btn{flex:0 0 100%;max-width:100%;text-align:center}}.checkout-your-details .row-tel{margin-bottom:30px}.checkout-your-details .form-row__col-btn{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-your-details .edit-address{line-height:2.25rem;font-weight:500}.checkout-your-details__finded-address{margin-bottom:10px}.page-header__order-number{font-size:1.875rem;font-weight:300;line-height:2.875rem;text-align:center;margin-top:20px}@media (min-width:768px){.checkout-your-details .form-row__col-btn{flex:0 0 50%;max-width:50%}.page-header__order-number{text-align:center}}.page-header__order-number_strong{font-weight:700}.checkout-confirmation-shopping-card{margin-bottom:40px}@media (max-width:767.98px){.checkout-your-details .edit-address{margin-top:20px}.checkout-your-details .icon-info{width:40px;height:40px;line-height:40px}.page-header__order-number{font-size:1.5rem;line-height:2rem;text-align:left}.checkout-confirmation-shopping-card{margin-top:30px}}.shopping-card-container_bordered{margin-top:20px;border:1px solid #ccc}.shopping-card-container .delivery-details-option__delivery-info{margin:0;padding:20px 0}@media (min-width:992px){.shopping-card-container .delivery-details-option__delivery-info{padding:20px 20px 20px 0}.product-delivery-table .checkout-address-time__time-additional{display:none}}.shopping-card-container .order-line{margin-top:0;padding:20px}.product-delivery-table{margin-bottom:40px;border:1px solid #ccc}.product-delivery-table__delivery-info{padding:20px 0}.product-delivery-table h4{margin-bottom:10px}.product-delivery-table__content{font-size:1rem;line-height:1.5rem}.product-delivery-table__date{flex:0 0 22.22222%;max-width:22.22222%;position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;text-align:center}@media (max-width:991.98px){.shopping-card-container .delivery-details-option__delivery-info-left{margin-bottom:20px}.product-delivery-table__date{flex:0 0 50%;max-width:50%}.product-delivery-table__time{display:none}}.product-delivery-table__date-inner{margin-top:10px;color:#8b8b8b;border-right:1px solid #ccc}.product-delivery-table .checkout-address-time__time-additional{font-size:.625rem}.product-delivery-table__time{margin-left:11.11111%}.product-delivery-table__address,.product-delivery-table__time{flex:0 0 33.33333%;max-width:33.33333%;position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}@media (max-width:991.98px){.product-delivery-table__address{flex:0 0 50%;max-width:50%}.c__card-holder{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}}.product-delivery-table__charity .order-line{border-top:0}.product-delivery-table__charity .order-line__calc.area-total,.product-delivery-table__charity .order-line__calc_quant{display:none}.product-delivery-table__charity .order-line__img-static img{padding:20px}.product-delivery-table__charity .order-line__title{padding-top:20px}@media (max-width:767.98px){.product-delivery-table{margin-bottom:30px}.product-delivery-table h4{display:none}.product-delivery-table__charity .order-line__img-static img{padding:10px 10px 0}.product-delivery-table__charity .order-line__title{padding-top:10px}}.product-supplier-delivery{border-top:0}.c{margin-top:40px;padding-bottom:40px}@media (max-width:575.98px){.c{margin-left:-15px;margin-right:-15px}}.c .checkout-register__row:first-child .checkout-register__descr:first-child{padding-bottom:10px}.c .checkout-register__row:first-child .checkout-register__descr:first-child:after{position:absolute;content:"";height:1px;background:#eee;left:15px;right:15px;bottom:0}.c__paragraph{font-size:1rem;line-height:1.5rem;margin-bottom:0}.c__row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.c__title{margin:30px 0}.c__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}@media (min-width:768px){.c__descr{flex:0 0 77.77778%;max-width:77.77778%;margin-left:11.11111%}}@media (min-width:992px){.c__descr{flex:0 0 55.55556%;max-width:55.55556%;margin-left:22.22222%}}.c__card-title{margin:30px 0 20px}.c__card,.c__card-holder{flex:0 0 100%;max-width:100%}.c__card{position:relative;width:100%;min-height:1px;padding:20px;margin-bottom:20px;border:1px solid #ccc}.c__card-info{display:flex;flex-wrap:wrap;margin:0;padding:0;line-height:1.375rem;color:#8b8b8b}.c__card-info dt{flex:0 0 50%;max-width:50%;color:#3e3e3e;font-weight:700}@media (max-width:767.98px){.c__card-info dt{flex:0 0 100%;max-width:100%}}.c__card-info dd{flex:0 0 50%;max-width:50%;text-align:right}.c__card-info dd:last-child{margin-bottom:0}@media (max-width:767.98px){.c__card-info dd{text-align:left}.c .row-title .form-row__field,.c__card-info dd{flex:0 0 100%;max-width:100%}.c .form-row__action_custom{display:none}}@media (min-width:768px) and (max-width:991.98px){.c .row-title .form-row__field{flex:0 0 44.44444%;max-width:44.44444%}}@media (min-width:992px){.c .row-title .form-row__field{flex:0 0 40%;max-width:40%}}.c .form-row__action .form-row__col-btn{min-width:190px}@media (min-width:768px) and (max-width:991.98px){.c .form-row__action .form-row__col-btn{flex:0 0 50%;max-width:50%}.c .form-row__action .form-row__col-btn .btn,.c .form-row__action .form-row__col-btn .btn-secondary{padding-left:0;padding-right:0;max-width:145px}.c .form-row__action .form-row__col-btn .btn-secondary{margin-left:50px}.c .form-row__action_custom:before,.c .form-row__action_device-customized:before{left:65px;right:65px}}.c .form-row__action_custom,.c .form-row__action_device-customized{margin-top:20px}@media (min-width:992px){.c .form-row__action .form-row__col-btn{flex:0 0 22.22222%;max-width:22.22222%}.c .form-row__action .form-row__col-btn:first-child{margin-left:22.22222%}.c .form-row__action_custom:before,.c .form-row__action_device-customized:before{left:8.33333%;right:8.33333%}}@media (min-width:768px){.page_checkout-confirmation .content .header-descr{max-width:153%;width:153%}.page_checkout-confirmation .right-aside{top:100px;margin-bottom:100px}}@media (min-width:992px){.page_checkout-confirmation .content .header-descr{max-width:135%;width:135%}.page_checkout-confirmation .right-aside{top:78px;margin-bottom:78px}}@media (min-width:576px){.page_checkout-confirmation .right-aside .form-row__action{display:none}}@media (max-width:767.98px){.page_checkout-confirmation .right-aside .form-row__action{display:block}.page_checkout-confirmation .right-aside .form-row__action .form-row__col-btn{flex:0 0 100%;max-width:100%;margin-bottom:20px}.page_checkout-confirmation .right-aside .form-row__action_custom{margin-top:0;padding-top:0}.page_checkout-confirmation .right-aside .form-row__action_custom:before{background:0 0}}.checkout-widget{padding:20px;background-color:#f8f8f8;margin-bottom:20px}.checkout-widget:last-child{margin-bottom:0}.checkout-widget .heading-3{margin-bottom:15px}.checkout-widget .heading-3_checkout-widget-supply .checkout-widget__edit-link{margin-top:2px}.checkout-widget .accordion{padding:0;border-bottom:0}.checkout-widget .accordion .accordion__content{padding:0;margin-top:20px}.checkout-widget .accordion .accordion__content-inner>:last-child{border-bottom:0;padding-bottom:0}.checkout-widget .accordion .accordion__header{padding-left:0}.checkout-widget .accordion .accordion__header-icon{left:-30px}.checkout-widget__accordion-wrap{position:relative}.checkout-widget__accordion-wrap .collapsed .accordion__header-icon-small{transform:rotate(180deg)}.checkout-widget__accordion-wrap .accordion__header-icon-small{display:block;position:absolute;left:80px;top:-2px;color:#0277bd;font-size:1.25rem}.checkout-widget__detail-name_accordion{display:block;cursor:pointer}.checkout-widget .accordion+.checkout-widget__detail-value,.checkout-widget__detail-name_accordion+.checkout-widget__details-hidden+span{position:absolute;top:0;right:0}.checkout-widget__details{font-size:.875rem;font-weight:500;line-height:1.375rem;padding-left:0;margin-bottom:0;list-style-type:none}.checkout-widget__details>li:last-child{margin:0}.checkout-widget__details>li:not(:first-of-type){margin-top:5px}.checkout-widget__details>.checkout-widget__accordion-wrap.checkout-widget__details-discount{margin-top:8px}.checkout-widget__details .checkout-widget__details-hidden{padding-left:15px;list-style:disc;margin-top:5px}.checkout-widget__details .checkout-widget__details-hidden li{font-size:.75rem;line-height:1rem;position:relative;font-weight:400;padding-right:20px}.checkout-widget__details .checkout-widget__details-hidden li.checkout-widget__voucher-removed{color:#cf000f;list-style:none}.checkout-widget__details .checkout-widget__details-hidden li .icon{width:16px;height:16px;line-height:16px;position:absolute;right:0;top:0;cursor:pointer;color:#8b8b8b;font-size:.875rem}.checkout-widget__details>.checkout-widget__details__item{overflow:hidden}.checkout-widget__details>.checkout-widget__details__item .checkout-widget__detail-name{white-space:nowrap}.checkout-widget__detail-block:first-child,.checkout-widget__detail-name{font-weight:700}.checkout-widget__detail-value:not(.checkout-widget__details-hidden),.checkout-widget__detail-value_no-float,.checkout-widget__detail-value_payment:not(.checkout-widget__details-hidden){display:block;color:#8b8b8b}.checkout-widget__detail-value:not(.checkout-widget__details-hidden){float:right}.checkout-widget .checkout-widget__detail-text_accented{color:#cf000f}.checkout-widget__total{margin-top:20px;padding-top:20px;border-top:1px solid #ccc}.checkout-widget__total-legend{font-weight:700}.checkout-widget__price{color:#0a3055;font-size:2.125rem;font-weight:700;line-height:2.25rem}.checkout-widget__actions,.checkout-widget__basket-block{margin-top:20px;padding-top:20px;border-top:1px solid #ccc}.checkout-widget__basket-block_cards{text-align:center;border-top:0;margin-top:0}.checkout-widget__basket-block_small{border-top:0;background:#f8f8f8;margin:0 -15px 15px;padding:30px 15px}.checkout-widget__basket-block_small .form-row__col-btn.pay-pal_container{padding-top:20px;border-bottom:0;margin-bottom:-10px}.checkout-widget__basket-block .pay-pal_container{padding:20px 0 0;border-bottom:1px solid #ccc}.checkout-widget__basket-block .pay-pal_container .paypal-button-container{min-width:inherit}.checkout-widget__basket-block .pay-pal_container .paypal-button-text{line-height:35px;font-size:.875rem;font-weight:500;padding-left:5px}.checkout-widget__basket-block .pay-pal_container .checkout-payment-details__link{margin:0}.checkout-widget__basket-block .pay-pal_container-link{margin-top:20px;width:100%;text-align:center;font-size:.75rem;display:inline-block}.checkout-widget__basket-block .pay-pal_container-email{position:relative;bottom:5px;margin:20px auto 0;text-align:center;font-size:.75rem;line-height:1.25rem}.checkout-widget__basket-block .pay-pal_container-email .pay-pal_email-heading{color:#8b8b8b;font-weight:500}.checkout-widget__payment-wrapper{position:relative;margin-top:10px;margin-left:-5px;margin-right:-5px;border:1px solid #ccc}.checkout-widget__secure-header{position:absolute;top:-10px;left:calc(50% - 100px);text-align:center;width:200px;font-weight:700;font-size:.8125rem;background:#f8f8f8}.checkout-widget__secure-icon{display:inline-block;margin-right:5px}.checkout-widget__secure-message,.checkout-widget__secure-ssl{font-size:.625rem;margin-bottom:0}.checkout-widget__secure-ssl{padding-top:9px;line-height:1rem}.checkout-widget__secure-message{position:absolute;bottom:-7px;left:calc(50% - 80px);text-align:center;width:160px;background:#f8f8f8}.checkout-widget__secure-link{display:block;text-align:center;margin-top:10px;padding-bottom:20px;border-bottom:1px solid #ccc}.checkout-widget__payment-list{margin:13px 20px 20px}.checkout-widget__payment-item{display:inline-block;margin:0 1px 6px}.checkout-widget__payment-img{height:24px}.checkout-widget__payment-img_large{height:30px;display:block}.checkout-widget__payment-img_large.verified-by-visa{background:url(../../img/visa-secure-border.png) 0 0/contain no-repeat;width:38px}.checkout-widget__payment-img_large.mastercard-secure-code{background:url(../../img/payments-small-2.png) 0 0/contain no-repeat;width:48px}.checkout-widget__payment-img_large.mastercard{background:url(../../img/basket-mastercard.png) 0 0/contain no-repeat;width:36px}.checkout-widget__payment-img_large.visa{background:url(../../img/visa.png) 0 0/contain no-repeat;width:39px}.checkout-widget__payment-img_large.paypal{background:url(../../img/basket-paypal.png) 0 0/contain no-repeat;width:39px}.checkout-widget__card-save .error,.checkout-widget__card-save .success{text-align:center;width:100%;color:#67a509;font-size:4rem;margin:10px 0 20px}.checkout-widget__card-save .error{color:#cf000f}.checkout-widget__action-description{font-size:.75rem;line-height:1rem;margin-top:16px}.checkout-widget__action-description_accented{font-size:.75rem;line-height:1rem;font-weight:500;color:#8b8b8b}.checkout-widget__edit-link{font-size:.875rem;font-weight:500;margin-top:4px;text-align:right;float:right}.checkout-widget__delivery-option{margin:0 -15px}.checkout-widget__subscribe-message{font-size:.75rem}.checkout-widget__detail-name.checkout-widget__detail-block,.checkout-widget__detail-value.checkout-widget__detail-block{width:100%;text-align:left}.content .checkout-widget_order-summary{margin-bottom:40px}.checkout-widget_order-summary_paypal-add .checkout-widget_order-summary{padding:0}.checkout-widget_order-summary_paypal-add .checkout-widget__header{text-align:center}.checkout-widget_order-summary_paypal-add .voucher-applied{display:none}.checkout-widget.voucher-applied .fa-check-circle{text-align:center;width:100%;color:#67a509;font-size:1rem;margin-bottom:10px}.checkout-widget #voucher-code{text-transform:uppercase}.checkout-widget__tooltip-bb{position:relative;display:inline-block}.tooltip-bb__element{display:inline-block;text-align:center;background:#0a3055;color:#fff;font-weight:400;border-radius:50%;width:20px;height:20px;cursor:pointer}.tooltip-bb__element:hover+.tooltip-bb__info,.tooltip-bb__element:hover+.tooltip-bb__info:after{visibility:visible}.tooltip-bb__info{width:154px;height:50px;padding:5px 5px 5px 10px;background:#0a3055;color:#fff;font-weight:400;bottom:130%;left:80%}.tooltip-bb__info,.tooltip-bb__info:after{position:absolute;display:block;visibility:hidden}.tooltip-bb__info:after{content:"";width:0;height:0;border-top:15px solid #0a3055;border-right:15px solid transparent;left:0;bottom:-20%}#checkout-widget-information{line-height:1.375rem}.checkout-widget__outer-button{margin-top:20px;margin-bottom:20px}.simplebar-content .checkout-widget__outer-button{width:calc(100% - 1px)}.checkout-voucher-hide{display:none}.checkout-voucher .form-row__field{padding-left:0;padding-right:0}.checkout-voucher input{text-transform:uppercase}.checkout-voucher input:-ms-input-placeholder,.checkout-voucher input::-ms-input-placeholder{color:transparent}.checkout-voucher input::placeholder{color:transparent}.voucher{padding-bottom:10px}.voucher .checkout-widget.checkout-voucher.checkout-voucher_fixed{padding:0}.voucher .checkout-widget.checkout-voucher{margin-bottom:0}.voucher .checkout-widget.checkout-voucher-hide{display:none}.voucher .checkout-widget.checkout-voucher.voucher-applied{background:#fff;height:40px;padding:8px 0;margin:0}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner{display:flex;align-items:center;justify-content:center;gap:8px}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner .icon{display:inline-block}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner .icon__check{width:24px;height:24px;display:flex;justify-content:center;align-items:center}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner .icon__check i{font-size:24px;line-height:24px}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner .fa-check-circle{font-size:1rem;margin:0}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner h5{font-size:.875rem;margin:0}.voucher .checkout-widget.checkout-voucher form{display:flex;justify-content:space-between;width:100%}.voucher .checkout-widget.checkout-voucher form .form-row{max-width:100%;flex:1;margin-right:16px;margin-bottom:0;padding:0}.voucher .checkout-widget.checkout-voucher form .form-row__field{margin-left:30px}.voucher .checkout-widget.checkout-voucher form .form-row__error{margin-left:30px;font-weight:400}.voucher .checkout-widget.checkout-voucher form .voucher__btn{margin-top:0;margin-right:15px;height:40px}.voucher .checkout-widget{margin-left:-15px;margin-right:-15px}@media (min-width:576px){.voucher .checkout-widget.checkout-voucher form .form-row__field{margin-right:0;margin-left:15px}.voucher .checkout-widget.checkout-voucher form .form-row__error{margin-left:15px}.page_checkout-confirmation-new .checkout-tradepro .page-header__info:nth-child(2),.page_checkout-tradePro .checkout-tradepro .page-header__info:nth-child(2){margin-top:0}}@media (min-width:768px){.checkout-widget .accordion .accordion__content{display:block!important;margin-top:0}.checkout-widget .accordion .accordion__header,.checkout-widget__basket-block_small,.content .checkout-widget_order-summary{display:none}.basket-checkout-widget{position:sticky;top:35px}.checkout-voucher form .form-row__error{margin-left:15px}.checkout-voucher form .voucher__btn{max-width:115px;height:40px}.checkout-voucher form .form-row{flex:0 0 100%;max-width:100%}.checkout-voucher .form-row__field{margin-left:15px;margin-right:-15px}.voucher .checkout-widget.checkout-voucher form .form-row__field{margin-right:0;margin-left:30px}}@media (min-width:1200px){.checkout-widget__detail-value_payment:not(.checkout-widget__details-hidden){float:right}.tooltip-bb__element{margin-left:5px}.tooltip-bb__info{width:160px}}@media (max-width:1199.98px){.page_checkout-delivery-address .user-address__content .user-address__links .default-mark-full{text-align:right;right:35px}.checkout-widget__secure-header{font-size:.6875rem;left:calc(50% - 85px);width:170px;top:-9px}}@media (min-width:992px){.checkout-voucher{display:flex;justify-content:center;align-items:center;margin-bottom:30px}.checkout-voucher form{align-items:flex-start}}@media (max-width:991.98px){.checkout-widget__secure-ssl{padding-top:10px}}@media (max-width:767.98px){.checkout-widget .heading-3{font-size:1.5rem}.checkout-widget__actions,.checkout-widget__header{display:none}.checkout-widget__detail-value_payment:not(.checkout-widget__details-hidden){float:right}.checkout-widget__total{padding-top:10px}.checkout-widget__price{margin-top:5px}.checkout-widget__basket-block .pay-pal_container-link{font-size:.875rem}.checkout-widget__basket-block .pay-pal_container-email{font-size:.875rem;line-height:1.5rem}.checkout-widget__secure-header{top:-12px;left:calc(50% - 110px);text-align:center;width:220px;font-size:.875rem}.checkout-widget__secure-ssl{padding-top:14px}.checkout-widget__secure-message,.checkout-widget__secure-ssl{font-size:.75rem}.checkout-widget__secure-message{left:calc(50% - 100px);width:200px;bottom:-9px}.checkout-widget_order-summary .accordion__header-text{margin-left:4px}.checkout-widget_order-summary .accordion__content-inner{padding-left:4px}.checkout-widget_email .checkout-widget__header{display:block}.tooltip-bb__element{margin-left:5px}.tooltip-bb__info{width:160px}.checkout-widget__click-collect{display:none}}@media (min-width:992px) and (max-width:1199.98px){.checkout-widget .heading-3_checkout-widget-supply{font-size:1.125rem}.checkout-widget__detail-name,.checkout-widget__detail-value:not(.checkout-widget__details-hidden){display:block}.checkout-widget__detail-value:not(.checkout-widget__details-hidden){float:none}}@media (min-width:768px) and (max-width:991.98px){.checkout-widget .heading-3_checkout-widget-supply{font-size:1.125rem}.checkout-widget__detail-name_accordion{padding-bottom:20px}.checkout-widget__detail-name,.checkout-widget__detail-value:not(.checkout-widget__details-hidden){display:block}.checkout-widget__detail-value:not(.checkout-widget__details-hidden){float:none}.checkout-widget__action-description_accented{font-size:.625rem}}@media (max-width:575.98px){.checkout-widget__payment-wrapper{margin-left:-30px;margin-right:-25px}.checkout-widget__detail-value_payment:not(.checkout-widget__details-hidden){float:none;display:block}}.edit-delivery-address__actions{padding:40px 0}.edit-delivery-address__actions .btn-action,.edit-delivery-address__actions .btn-secondary{width:100%}.edit-delivery-address__add-btn,.edit-delivery-address__delivery-btn{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}.edit-delivery-address .modal-content .user-address__content{flex:0 0 100%;max-width:100%}.edit-delivery-address .modal-content .user-address__address,.edit-delivery-address .modal-content .user-address__phone{flex:0 0 37.5%;max-width:37.5%}.edit-delivery-address .modal-content .user-address__links{flex:0 0 25%;max-width:25%}.edit-delivery-address .modal-content .user-address__btn{min-width:90px}.edit-delivery-address .modal-content .edit-delivery-address__actions .btn-action{min-width:220px}@media (min-width:1200px){.edit-delivery-address__add-btn,.edit-delivery-address__delivery-btn{flex:0 0 33.33333%;max-width:33.33333%}}@media (max-width:1199.98px){.edit-delivery-address__add-btn{margin-bottom:20px}.edit-delivery-address .user-address__content .user-address__links .default-mark-full{right:0}}@media (max-width:767.98px){.edit-delivery-address .modal-content .user-address__address,.edit-delivery-address .modal-content .user-address__links,.edit-delivery-address .modal-content .user-address__phone{flex:0 0 100%;max-width:100%}.edit-delivery-address .modal-content .user-address__links,.edit-delivery-address .modal-content .user-address__phone{padding-top:15px}.edit-delivery-address .modal-content .user-address__links{padding:15px 15px 0}.edit-delivery-address .modal-content .user-address__links .default-mark-full{padding-right:15px;text-align:right}.edit-delivery-address .modal-content .user-address__wrapper .btn-delivery-details{display:none!important}.edit-delivery-address .modal-content .edit-delivery-address__actions .btn-action{min-width:220px}.baskets__basket-summary .checkout-widget .accordion__header{padding-left:35px}.baskets__basket-summary .checkout-widget .accordion__header-icon{left:0}}.terms-and-conditions__section{padding:20px 0}.terms-and-conditions__section+.terms-and-conditions__section{border-top:1px solid #ccc}.terms-and-conditions__section-title{margin-bottom:20px}.terms-and-conditions__list{padding-left:20px}.terms-and-conditions__print-btn{margin-bottom:10px}.baskets{margin-top:40px}@media (min-width:768px){.baskets__basket{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.baskets__basket-lines{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}}@media (min-width:768px) and (max-width:991.98px){.baskets__basket-lines{flex:0 0 66.66667%;max-width:66.66667%}}@media (min-width:992px){.baskets__basket-lines{flex:0 0 75%;max-width:75%}}@media (min-width:768px) and (max-width:991.98px){.baskets__basket-summary{flex:0 0 33.33333%;max-width:33.33333%}}@media (min-width:768px){.baskets__basket-summary{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}}@media (min-width:992px){.baskets__basket-summary{flex:0 0 25%;max-width:25%}}.baskets__basket-summary .checkout-widget__header{white-space:nowrap}.baskets .order-line__img-static,.baskets .order-line__title_static{display:block!important}.baskets .order-line__img-link,.baskets .order-line__title_link{display:none!important}.page_checkout-payment-details .lines-group{margin-top:20px}.checkout-payment-details .rbn_align{line-height:1.375em}.checkout-payment-details__card-details_hidden,.checkout-payment-details__payment-method_hidden{display:none}.checkout-payment-details__card-details{margin-bottom:20px}.checkout-payment-details__payment-method .checkout-payment-details__row:first-child .checkout-payment-details__descr:first-child{margin-bottom:30px}.checkout-payment-details__payment-method .checkout-payment-details__row:first-child .checkout-payment-details__descr:first-child:after{position:absolute;content:"";height:2px;background:#eee;left:15px;right:15px}.checkout-payment-details__holder{margin:0 0 30px}.checkout-payment-details__link{margin-left:20px;vertical-align:bottom}.checkout-payment-details__paypal-email{margin:10px 0 0 34px;font-size:.9rem}.checkout-payment-details__paypal-email a{margin-left:10px}.checkout-payment-details__row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.checkout-payment-details__title{margin-bottom:20px}.checkout-payment-details__info{flex:0 0 100%;max-width:100%;flex:1 0 auto;margin-bottom:0}.checkout-payment-details__descr{flex:0 0 100%;max-width:100%}.checkout-payment-details__descr,.checkout-payment-details__descr_full,.checkout-payment-details__descr_large{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details__descr_full{flex:0 0 100%;max-width:100%}.checkout-payment-details__card-title{flex:0 0 100%;max-width:100%;margin-bottom:30px}.checkout-payment-details__card-heading{margin-bottom:10px}.checkout-payment-details__card-holder{margin-bottom:20px;flex:0 0 100%;max-width:100%}.checkout-payment-details__card-holder:last-of-type{margin-bottom:0}.checkout-payment-details__card{padding:20px 30px 20px 20px;background:#fff;border:1px solid #ccc}.checkout-payment-details__card .card-warning{flex-basis:100%}.checkout-payment-details__card-content{margin-bottom:20px}.checkout-payment-details__card-content .row .card__links{position:relative}.checkout-payment-details__card-content .row .card__links .link-secondary{display:block;text-decoration:none;font-weight:500}.checkout-payment-details__card-content .row .card__links .link-secondary:first-child{margin-bottom:15px}.checkout-payment-details__action .btn-primary,.checkout-payment-details__action .btn-secondary{display:block}.checkout-payment-details__action .btn-primary+.btn-secondary,.checkout-payment-details__action .btn-secondary+.btn-secondary{margin-top:20px}.checkout-payment-details__action .btn-primary+.rbn,.checkout-payment-details__action .btn-secondary+.rbn{margin-top:35px}.checkout-payment-details__card-info{margin:0;padding:0;line-height:1.375rem;color:#8b8b8b}.checkout-payment-details__card-info dt{color:#3e3e3e;font-weight:500}.checkout-payment-details__delete .delete-heading{margin:20px 0 10px;font-size:1.2rem}.checkout-payment-details__delete .btn{margin-right:20px;padding:8px 40px}.checkout-payment-details__delete .delete-warning{display:inline-block}.checkout-payment-details .form-row__col-field{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details .form-row__action{margin-top:20px}.checkout-payment-details .form-row__action .form-row__col-terms{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details .form-row__action .btn_full{min-width:145px}.checkout-payment-details .link-secondary{display:inline-block}.checkout-payment-details .form-row__action_normal{position:relative;margin-top:0;margin-bottom:0;padding-top:40px}.checkout-payment-details .form-row__action_normal:before{content:"";background:#ccc;position:absolute;top:0;left:15px;right:15px;height:1px}.checkout-payment-details .form-row__action_normal .form-row__col-btn,.checkout-payment-details__back-btn{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details__back-btn{font-size:1rem;font-weight:500;line-height:1.5rem;margin-bottom:20px}.checkout-payment-details__place-order_visible{display:flex!important}.checkout-payment-details__icon{pointer-events:none}.checkout-payment-card-ineligible__excuse{font-weight:700}.confirm-delete .rbn{visibility:hidden}.address-data{margin:0;padding:0;line-height:1.375rem}.address-data__address1,.address-data__address2,.address-data__city,.address-data__country,.address-data__name,.address-data__postal-code{display:block}.default-mark{margin-top:20px;text-align:center}a.pay-pal_wrap{text-decoration:none}a.pay-pal_wrap .paypal-logo{padding:0;display:inline-block;background:0 0;border:0}a.pay-pal_wrap .paypal-button>.paypal-logo{vertical-align:top;position:relative;top:50%;transform:translateY(-50%);text-align:left;height:17px;max-height:21px;min-height:14px}a.pay-pal_wrap .paypal-button>.paypal-logo_icon{width:16px}a.pay-pal_wrap .paypal-button>.paypal-logo_icon-text{width:60px}a.pay-pal_wrap .paypal-button .paypal-button-text{vertical-align:top;position:relative;top:50%;transform:translateY(-50%);text-align:left;display:inline-block;white-space:pre-wrap;margin-right:5px}a.pay-pal_wrap .paypal-button{border:1px solid transparent;border-radius:4px;position:relative;width:100%;padding:4px;box-sizing:border-box;vertical-align:top;cursor:pointer;overflow:hidden;text-align:center;background:#ffc439;color:#111;height:40px}a.pay-pal_wrap .paypal-button:hover{filter:brightness(.95)}a.pay-pal_wrap .paypal-button iframe{z-index:1!important}a.pay-pal_wrap .paypal-button iframe .paypal-button-row{height:50px;min-height:50px;max-height:50px}a.pay-pal_wrap .paypal-button-container{min-width:200px;max-width:300px;font-size:11px}@media (max-width:767px) and (min-width:321px){a.pay-pal_wrap .paypal-button-container{min-width:300px;max-width:500px;font-size:14px}a.pay-pal_wrap .paypal-button>.paypal-logo{height:21px;max-height:27px;min-height:18px}}@media (min-width:768px){.checkout-payment-details .checkout-payment-details__info-holder{display:flex;width:100%}.checkout-payment-details__descr{flex:0 0 77.77778%;max-width:77.77778%;margin-left:11.11111%}.checkout-payment-details__card-content .row .billing-address,.checkout-payment-details__card-content .row .payment-card{flex:0 0 37.5%;max-width:37.5%}.checkout-payment-details__card-content .card__links{flex:0 0 25%;max-width:25%}.checkout-payment-details__card-content .card__links .default-mark-full{position:absolute;bottom:0;left:45px}.checkout-payment-details__action .btn-primary,.checkout-payment-details__action .btn-secondary{min-width:130px}.checkout-payment-details .form-row__action_normal .form-row__col-btn,.checkout-payment-details .form-row__col-field{flex:0 0 40%;max-width:40%}.checkout-payment-details__back-btn{margin-left:11.11111%}}@media (min-width:992px){.checkout-payment-details__info{line-height:2.5rem}.checkout-payment-details .checkout-payment-details__col-btn_info{min-width:160px}.checkout-payment-details__descr{flex:0 0 55.55556%;max-width:55.55556%;margin-left:22.22222%}.checkout-payment-details__descr_large{margin-left:8.33333%;margin-right:8.33333%}.checkout-payment-details .form-row__save .form-row__field{margin-left:22.22222%}.checkout-payment-details__card{flex-wrap:wrap;margin-left:8.33333%;margin-right:8.33333%}.checkout-payment-details__card-content{flex:1 0 auto}.checkout-payment-details__action{border-left:1px solid #ccc;padding:0 0 0 30px;display:flex;flex-direction:column;justify-content:center}.checkout-payment-details .form-row__col-img{flex:0 0 33.33333%;max-width:33.33333%;margin-left:15px}.checkout-payment-details .form-row__action .form-row__col-btn{flex:0 0 22.22222%;max-width:22.22222%}.checkout-payment-details .form-row__action .form-row__col-btn:first-child{margin-left:22.22222%}.checkout-payment-details .form-row__action .form-row__col-terms{flex:0 0 33.33333%;max-width:33.33333%;padding-left:0;padding-right:0;margin-left:30px}.checkout-payment-details .form-row__action.paypal__row .form-row__col-btn{flex:0 0 33.33333%;max-width:33.33333%}.checkout-payment-details .form-row__action_custom:before{left:8.33333%;right:8.33333%}.checkout-payment-details__back-btn{margin-left:22.22222%}.signup-tradepro__modal-fields .tradepro-field .icon__camera{display:none}}@media (min-width:768px) and (max-width:991.98px){.checkout-payment-details__payment-method .checkout-payment-details__row:first-child .checkout-payment-details__descr:first-child:after{left:0;right:0}.checkout-payment-details__info{flex:0 0 44.44444%;max-width:44.44444%;margin-left:11.11111%}.checkout-payment-details .checkout-payment-details__col-btn_info{flex:0 0 33.33333%;max-width:33.33333%}.checkout-payment-details .form-row__save .form-row__field,.checkout-payment-details__card-title{margin-left:11.11111%}.checkout-payment-details__card{flex:0 0 83.33333%;max-width:83.33333%;margin-left:8.33333%}.checkout-payment-details .form-row__action .form-row__col-btn{flex:0 0 44.44444%;max-width:44.44444%;margin-left:11.11111%}.checkout-payment-details .form-row__action .form-row__col-terms{flex:0 0 44.44444%;max-width:44.44444%;padding-right:40px}.checkout-payment-details .form-row__action.paypal__row .form-row__col-btn{flex:0 0 100%;max-width:100%;margin-bottom:20px}.checkout-payment-details .form-row__action.paypal__row .form-row__col-terms{flex:0 0 100%;max-width:100%;text-align:center}.checkout-payment-details .form-row__action_custom:before{left:50px;right:50px}}@media (max-width:1199.98px){.checkout-payment-details__delete .btn{width:100%;margin:0 0 15px}}@media (max-width:991.98px){.checkout-payment-details__card-holder{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details__card-content .row .billing-address,.checkout-payment-details__card-content .row .payment-card{flex:0 0 100%;max-width:100%}.checkout-payment-details__card-content .row .card__links{flex:0 0 100%;max-width:100%;padding-top:15px}.checkout-payment-details__card-content .row .card__links .default-mark-full{position:absolute;right:0;bottom:-2px;left:inherit}.checkout-payment-details__action{flex:0 0 100%;max-width:100%;border-top:1px solid #ccc;padding:30px 0;text-align:center}.checkout-payment-details .form-row__col-img{flex:0 0 66.66667%;max-width:66.66667%}.confirm-delete,.signup-tradepro__modal-fields .tradepro-field .icon__paperclip{display:none}}@media (max-width:767.98px){.checkout-payment-details__info{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;margin-bottom:20px}.checkout-payment-details .checkout-payment-details__info-holder{flex:0 0 100%;max-width:100%}.checkout-payment-details .checkout-payment-details__col-btn_info{flex:0 0 100%;max-width:100%}.checkout-payment-details .checkout-payment-details__col-btn_info,.checkout-payment-details__card-title{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details__card{flex:0 0 100%;max-width:100%;padding:20px}.checkout-payment-details__card-content .row .card__links .default-mark-full{position:absolute;right:15px}.checkout-payment-details .form-row__col-field{flex:0 0 50%;max-width:50%}.checkout-payment-details .form-row__action .form-row__col-btn{flex:0 0 100%;max-width:100%;margin-bottom:20px}.checkout-payment-details .form-row__action .form-row__col-terms{flex:0 0 100%;max-width:100%;text-align:center}.checkout-payment-details .form-row__action_custom:before{left:15px;right:15px}}.signup-tradepro__modal-info{font-size:1rem;padding:15px 0}.signup-tradepro__modal-info .tradepro-id-counter_wrap{display:inline-block;font-weight:700}.signup-tradepro__modal-fields{margin-bottom:30px}.signup-tradepro__modal-fields .form-row{margin-bottom:10px}.signup-tradepro__modal-fields .form-row__field{margin-top:-12px}.signup-tradepro__modal-fields .tradepro-field{font-size:1rem;padding:15px 0;border-bottom:1px solid #eee;position:relative}.signup-tradepro__modal-fields .tradepro-field:hover{border-bottom:1px solid #0277bd;cursor:pointer}.signup-tradepro__modal-fields .tradepro-field:hover .icon__camera,.signup-tradepro__modal-fields .tradepro-field:hover .icon__edit,.signup-tradepro__modal-fields .tradepro-field:hover .icon__link,.signup-tradepro__modal-fields .tradepro-field:hover .icon__paperclip,.signup-tradepro__modal-fields .tradepro-field:hover .icon__pencil{color:#3e3e3e}.signup-tradepro__modal-fields .tradepro-field .icon__camera,.signup-tradepro__modal-fields .tradepro-field .icon__edit,.signup-tradepro__modal-fields .tradepro-field .icon__link,.signup-tradepro__modal-fields .tradepro-field .icon__paperclip,.signup-tradepro__modal-fields .tradepro-field .icon__pencil{font-size:1.25rem;color:#0277bd;margin-right:10px}.signup-tradepro__modal-fields .tradepro-field .icon__camera,.signup-tradepro__modal-fields .tradepro-field .icon__camera+a{vertical-align:middle}.signup-tradepro__modal-fields .tradepro-field .tradepro-attachment{position:absolute;left:0;opacity:0;cursor:pointer}.signup-tradepro__modal-fields .tradepro-field img{margin-right:10px;width:30px;height:30px}.signup-tradepro__modal-fields .tradepro-field .tradepro-field{border:0;padding:0}@media (min-width:768px){.signup-tradepro__modal-fields .btn{width:120px}}.signup-tradepro__modal-action{padding-top:10px;display:none}.signup-tradepro__modal-action input:hover{border:1px solid #0277bd}.signup-tradepro__modal-buttons .row{margin:0}.signup-tradepro__modal-buttons .button-done{margin-right:15px}@media (max-width:767.98px){.signup-tradepro__modal-action .form-row{padding-right:0}.signup-tradepro__modal-buttons{position:relative;width:100%;min-height:1px;flex:0 0 100%;max-width:100%;padding:0}.signup-tradepro__modal-buttons .button-cancel,.signup-tradepro__modal-buttons .button-delete,.signup-tradepro__modal-buttons .button-done{position:relative;width:100%;min-height:1px;flex:0 0 50%;max-width:50%}.signup-tradepro__modal-buttons .button-cancel button,.signup-tradepro__modal-buttons .button-delete button,.signup-tradepro__modal-buttons .button-done button{width:100%}.signup-tradepro__modal-buttons .button-done{padding-left:0;padding-right:10px;margin-right:0}.signup-tradepro__modal-buttons .button-cancel,.signup-tradepro__modal-buttons .button-delete{padding-right:0;padding-left:10px}}.signup-tradepro__modal-trigger{color:#3e3e3e;text-decoration:none}.signup-tradepro__modal-trigger:hover{text-decoration:none}@media (min-width:768px){.id-type-signup .modal-box__inner-columns{flex:0 0 90%;max-width:90%}}.id-type-signup .modal-box__inner-columns .notification_warning{margin:20px 0 0}.id-type .modal-content .modal-header .modal-title{margin-bottom:0}.id-capture{padding-bottom:30px}.capture__heading{font-size:1rem;padding:10px 0}.capture__heading .icon__camera{font-size:1.25rem;color:#0277bd;margin-right:10px}.capture__img{padding:0 30px}.capture__img img{width:100%}.capture__info{margin-top:1rem;text-align:center}.capture__actions{padding:0 30px}.capture__actions .btn{width:100%}.capture__actions .btn:last-of-type{margin-top:1rem}.capture .modal-header .modal-title{margin-bottom:0!important}.page_checkout-confirmation-new .checkout-tradepro,.page_checkout-tradePro .checkout-tradepro{margin-top:40px;padding-bottom:30px}@media (max-width:575.98px){.checkout-payment-details,.page_checkout-confirmation-new .checkout-tradepro,.page_checkout-tradePro .checkout-tradepro{margin-right:-15px;margin-left:-15px}}.page_checkout-confirmation-new .checkout-tradepro .checkout-tradepro__row:first-child .checkout-tradepro__descr:first-child,.page_checkout-tradePro .checkout-tradepro .checkout-tradepro__row:first-child .checkout-tradepro__descr:first-child{padding-bottom:10px}.page_checkout-confirmation-new .checkout-tradepro .checkout-tradepro__row:nth-child(2) .checkout-tradepro__descr .form-row:last-of-type:after,.page_checkout-tradePro .checkout-tradepro .checkout-tradepro__row:nth-child(2) .checkout-tradepro__descr .form-row:last-of-type:after{position:absolute;content:"";height:1px;background:#ccc;left:15px;right:15px;bottom:0}.page_checkout-confirmation-new .checkout-tradepro__paragraph,.page_checkout-tradePro .checkout-tradepro__paragraph{font-size:.875rem;line-height:1.57143}.page_checkout-confirmation-new .checkout-tradepro__row,.page_checkout-tradePro .checkout-tradepro__row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.page_checkout-confirmation-new .checkout-tradepro__title,.page_checkout-tradePro .checkout-tradepro__title{margin:10px 0;font-size:1.25rem}.page_checkout-confirmation-new .checkout-tradepro__descr,.page_checkout-tradePro .checkout-tradepro__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}@media (min-width:768px){.page_checkout-confirmation-new .checkout-tradepro__descr,.page_checkout-tradePro .checkout-tradepro__descr{flex:0 0 77.77778%;max-width:77.77778%;margin-left:11.11111%}}@media (min-width:992px){.page_checkout-confirmation-new .checkout-tradepro__descr,.page_checkout-tradePro .checkout-tradepro__descr{flex:0 0 55.55556%;max-width:55.55556%;margin-left:22.22222%}}.page_checkout-confirmation-new .checkout-tradepro__descr .warning-required,.page_checkout-tradePro .checkout-tradepro__descr .warning-required{font-size:.875rem;line-height:1.57143;font-weight:400}@media (max-width:767.98px){.page_checkout-confirmation-new .checkout-tradepro__descr,.page_checkout-tradePro .checkout-tradepro__descr{padding-left:25px;padding-right:25px}.page_checkout-confirmation-new .checkout-tradepro__descr .warning-required,.page_checkout-tradePro .checkout-tradepro__descr .warning-required{margin:20px 0}}.page_checkout-confirmation-new .checkout-tradepro__descr .warning-required:first-of-type,.page_checkout-tradePro .checkout-tradepro__descr .warning-required:first-of-type{font-size:.75rem;margin-bottom:10px;font-weight:500}.page_checkout-confirmation-new .checkout-tradepro__descr .row-title .ddn,.page_checkout-tradePro .checkout-tradepro__descr .row-title .ddn{width:160px}.page_checkout-confirmation-new .checkout-tradepro__descr .tradepro-terms .warning-required,.page_checkout-tradePro .checkout-tradepro__descr .tradepro-terms .warning-required{font-size:inherit;font-weight:400}.page_checkout-confirmation-new .checkout-tradepro__descr h3:first-of-type,.page_checkout-tradePro .checkout-tradepro__descr h3:first-of-type{margin-bottom:20px}.page_checkout-confirmation-new .checkout-tradepro__descr h3:first-of-type+.warning-required,.page_checkout-tradePro .checkout-tradepro__descr h3:first-of-type+.warning-required{font-size:.75rem;font-weight:500}.page_checkout-confirmation-new .checkout-tradepro__descr .signup-tradepro__title,.page_checkout-tradePro .checkout-tradepro__descr .signup-tradepro__title{font-size:1.25rem;margin-top:1rem}.page_checkout-confirmation-new .checkout-tradepro__descr .form-row.chosen-proofs-error,.page_checkout-tradePro .checkout-tradepro__descr .form-row.chosen-proofs-error{margin:0}.page_checkout-confirmation-new .checkout-tradepro__descr .form-row.chosen-proofs-error .form-row__error,.page_checkout-tradePro .checkout-tradepro__descr .form-row.chosen-proofs-error .form-row__error{padding-left:0}.page_checkout-confirmation-new .checkout-tradepro__card-title,.page_checkout-tradePro .checkout-tradepro__card-title{margin:30px 0 20px}.page_checkout-confirmation-new .checkout-tradepro__card-holder,.page_checkout-tradePro .checkout-tradepro__card-holder{flex:0 0 100%;max-width:100%}@media (max-width:991.98px){.page_checkout-confirmation-new .checkout-tradepro__card-holder,.page_checkout-tradePro .checkout-tradepro__card-holder{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}}.page_checkout-confirmation-new .checkout-tradepro__card,.page_checkout-tradePro .checkout-tradepro__card{flex:0 0 100%;max-width:100%;position:relative;width:100%;min-height:1px;padding:20px;margin-bottom:20px;border:1px solid #ccc}.page_checkout-confirmation-new .checkout-tradepro__card-info,.page_checkout-tradePro .checkout-tradepro__card-info{display:flex;flex-wrap:wrap;margin:0;padding:0;line-height:1.375rem;color:#8b8b8b}.page_checkout-confirmation-new .checkout-tradepro__card-info dt,.page_checkout-tradePro .checkout-tradepro__card-info dt{flex:0 0 50%;max-width:50%;color:#3e3e3e;font-weight:700}@media (max-width:767.98px){.page_checkout-confirmation-new .checkout-tradepro__card-info dt,.page_checkout-tradePro .checkout-tradepro__card-info dt{flex:0 0 100%;max-width:100%}}.page_checkout-confirmation-new .checkout-tradepro__card-info dd,.page_checkout-tradePro .checkout-tradepro__card-info dd{flex:0 0 50%;max-width:50%;text-align:right}.page_checkout-confirmation-new .checkout-tradepro__card-info dd:last-child,.page_checkout-tradePro .checkout-tradepro__card-info dd:last-child{margin-bottom:0}.page_checkout-confirmation-new .checkout-tradepro__info,.page_checkout-tradePro .checkout-tradepro__info{font-size:1.25rem}.page_checkout-confirmation-new .checkout-tradepro__learn-more,.page_checkout-tradePro .checkout-tradepro__learn-more{display:inline-block;padding:15px 0}.page_checkout-confirmation-new .checkout-tradepro__attach_id,.page_checkout-tradePro .checkout-tradepro__attach_id{margin:15px 0}.page_checkout-confirmation-new .checkout-tradepro__attach_first-form,.page_checkout-tradePro .checkout-tradepro__attach_first-form{margin:15px 0 20px}.page_checkout-confirmation-new .checkout-tradepro__attach .btn-primary,.page_checkout-tradePro .checkout-tradepro__attach .btn-primary{padding:0 10px;margin-right:10px}.page_checkout-confirmation-new .checkout-tradepro__attach .btn-primary .btn__text,.page_checkout-tradePro .checkout-tradepro__attach .btn-primary .btn__text{font-size:1.75rem}.page_checkout-confirmation-new .checkout-tradepro__attach a,.page_checkout-tradePro .checkout-tradepro__attach a{font-size:1rem}@media (max-width:767.98px){.page_checkout-confirmation-new .checkout-tradepro__card-info dd,.page_checkout-tradePro .checkout-tradepro__card-info dd{flex:0 0 100%;max-width:100%;text-align:left}.page_checkout-confirmation-new .checkout-tradepro__info,.page_checkout-tradePro .checkout-tradepro__info{font-size:1.125rem}.page_checkout-confirmation-new .checkout-tradepro .row-title .form-row__field,.page_checkout-tradePro .checkout-tradepro .row-title .form-row__field{flex:0 0 100%;max-width:100%}.page_checkout-confirmation-new .checkout-tradepro .form-row,.page_checkout-tradePro .checkout-tradepro .form-row{padding:0}}@media (min-width:768px) and (max-width:991.98px){.page_checkout-confirmation-new .checkout-tradepro .row-title .form-row__field,.page_checkout-tradePro .checkout-tradepro .row-title .form-row__field{flex:0 0 44.44444%;max-width:44.44444%}}@media (min-width:992px){.page_checkout-confirmation-new .checkout-tradepro .row-title .form-row__field,.page_checkout-tradePro .checkout-tradepro .row-title .form-row__field{flex:0 0 40%;max-width:40%}}.page_checkout-confirmation-new .checkout-tradepro .form-row__action,.page_checkout-tradePro .checkout-tradepro .form-row__action{padding-top:0}.page_checkout-confirmation-new .checkout-tradepro .form-row__action:before,.page_checkout-tradePro .checkout-tradepro .form-row__action:before{content:none}.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn{min-width:190px}@media (min-width:768px) and (max-width:991.98px){.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn{flex:0 0 50%;max-width:50%}.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn .btn,.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn .btn-secondary,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn .btn,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn .btn-secondary{padding-left:0;padding-right:0;max-width:145px}.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn .btn-secondary,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn .btn-secondary{margin-left:50px}.page_checkout-confirmation-new .checkout-tradepro .form-row__action_custom:before,.page_checkout-confirmation-new .checkout-tradepro .form-row__action_device-customized:before,.page_checkout-tradePro .checkout-tradepro .form-row__action_custom:before,.page_checkout-tradePro .checkout-tradepro .form-row__action_device-customized:before{left:65px;right:65px}}.page_checkout-confirmation-new .checkout-tradepro .form-row__action_custom,.page_checkout-confirmation-new .checkout-tradepro .form-row__action_device-customized,.page_checkout-tradePro .checkout-tradepro .form-row__action_custom,.page_checkout-tradePro .checkout-tradepro .form-row__action_device-customized{margin-top:20px}@media (min-width:992px){.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn{flex:0 0 22.22222%;max-width:22.22222%}.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn:first-child,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn:first-child{margin-left:22.22222%}.page_checkout-confirmation-new .checkout-tradepro .form-row__action_custom:before,.page_checkout-confirmation-new .checkout-tradepro .form-row__action_device-customized:before,.page_checkout-tradePro .checkout-tradepro .form-row__action_custom:before,.page_checkout-tradePro .checkout-tradepro .form-row__action_device-customized:before{left:8.33333%;right:8.33333%}.page_checkout-confirmation-new .form-row__continue .form-row__col-btn,.page_checkout-tradePro .form-row__continue .form-row__col-btn{padding-left:25%}}.page_checkout-confirmation-new .checkout-tradepro .choose-id,.page_checkout-tradePro .checkout-tradepro .choose-id{display:inline-block}.page_checkout-confirmation-new .checkout-tradepro .choose-id .actions__link,.page_checkout-tradePro .checkout-tradepro .choose-id .actions__link{text-decoration:underline;font-weight:500;font-size:1rem}.page_checkout-confirmation-new .checkout-tradepro .choose-id .btn,.page_checkout-tradePro .checkout-tradepro .choose-id .btn{color:#fff;margin-right:10px}.page_checkout-confirmation-new .checkout-tradepro .choose-id .btn:hover .btn,.page_checkout-confirmation-new .checkout-tradepro .choose-id:hover .btn,.page_checkout-tradePro .checkout-tradepro .choose-id .btn:hover .btn,.page_checkout-tradePro .checkout-tradepro .choose-id:hover .btn{background-color:#fff;border-color:#0277bd;color:#0277bd}.page_checkout-confirmation-new .checkout-tradepro__paragraph.warning-required,.page_checkout-tradePro .checkout-tradepro__paragraph.warning-required{font-size:.875rem!important;margin-top:0;font-weight:400!important}.page_checkout-confirmation-new .checkout-tradepro .icon__notification,.page_checkout-tradePro .checkout-tradepro .icon__notification{position:absolute;right:0;color:#67a509}.page_checkout-confirmation-new .checkout-tradepro .icon__notification svg,.page_checkout-tradePro .checkout-tradepro .icon__notification svg{vertical-align:middle}.page_checkout-confirmation-new .checkout-tradepro .chosen-form,.page_checkout-tradePro .checkout-tradepro .chosen-form{position:relative;display:flex;justify-content:space-between;line-height:30px}.page_checkout-confirmation-new .checkout-tradepro .chosen-form img,.page_checkout-tradePro .checkout-tradepro .chosen-form img{width:30px;height:30px}.page_checkout-confirmation-new .checkout-tradepro .chosen-form-container .chosen-form-wrap,.page_checkout-tradePro .checkout-tradepro .chosen-form-container .chosen-form-wrap{display:table}.page_checkout-confirmation-new .checkout-tradepro .chosen-form-container .chosen-form-wrap .form-row__error,.page_checkout-tradePro .checkout-tradepro .chosen-form-container .chosen-form-wrap .form-row__error{margin-top:0;padding:5px 0}.page_checkout-confirmation-new .checkout-tradepro .chosen-form-container .chosen-form-wrap.chosen-proofs-error,.page_checkout-tradePro .checkout-tradepro .chosen-form-container .chosen-form-wrap.chosen-proofs-error{margin:0;display:flex}.page_checkout-confirmation-new .checkout-tradepro .chosen-form .icon__notification,.page_checkout-tradePro .checkout-tradepro .chosen-form .icon__notification{position:inherit;top:3px;min-width:24px}.page_checkout-confirmation-new .form-bg,.page_checkout-tradePro .form-bg{padding-top:30px}.page_checkout-confirmation-new .warning-required,.page_checkout-tradePro .warning-required{font-weight:400;margin:10px 0}.page_checkout-confirmation-new .tradepro-terms,.page_checkout-tradePro .tradepro-terms{margin-top:15px}@media (min-width:768px) and (max-width:991.98px){.page_checkout-confirmation-new .tradepro-submit,.page_checkout-tradePro .tradepro-submit{margin-left:25%}}@media (max-width:767.98px){.page_checkout-confirmation-new .form-row__continue,.page_checkout-tradePro .form-row__continue{display:none}.page_checkout-confirmation-new .right-aside .form-row__continue,.page_checkout-tradePro .right-aside .form-row__continue{display:block}}@media (min-width:768px){.page_checkout-confirmation-new .checkout-tradepro .form-row__action_custom .form-row__col-btn:first-child,.page_checkout-tradePro .checkout-tradepro .form-row__action_custom .form-row__col-btn:first-child{margin-left:0}.page_checkout-confirmation-new .checkout-tradepro .tradepro-submit,.page_checkout-tradePro .checkout-tradepro .tradepro-submit{width:260px}.page_checkout-confirmation-new .form-row__continue .form-row__col-btn,.page_checkout-tradePro .form-row__continue .form-row__col-btn{flex:0 0 50%;max-width:50%}.page_checkout-confirmation-new .form-row__continue .form-row__col-btn .tradepro-shop-continue,.page_checkout-tradePro .form-row__continue .form-row__col-btn .tradepro-shop-continue{max-width:160px}.page_checkout-confirmation-new .right-aside .form-row__continue,.page_checkout-tradePro .right-aside .form-row__continue{display:none}.page_checkout-confirmation-new .container .form-row__action:last-child,.page_checkout-tradePro .container .form-row__action:last-child{padding-top:0}.page_checkout-confirmation-new .container .form-row__action:last-child:before,.page_checkout-tradePro .container .form-row__action:last-child:before{content:none}.page_split-orders .container .row .right-aside{top:0;margin-bottom:100px}}.page_split-orders .product-delivery-table.product-supplier-delivery{border-left:0;border-right:0}.page_split-orders .product-delivery-table.product-supplier-delivery .shopping-card-container{border-left:1px solid #ccc;border-right:1px solid #ccc}.page_split-orders .product-delivery-table.product-supplier-delivery .shopping-card-heading{display:block}.page_split-orders .product-delivery-table.product-supplier-delivery .checkout__text-highlighted{display:inline-block}.payments-checkout{margin-left:0;margin-bottom:10px}.payments-checkout__list{display:flex;align-items:center;justify-content:center;gap:15px;font-size:0;padding:0;margin:0;white-space:nowrap;flex-wrap:wrap;max-width:240px}.payments-checkout__item{display:inline-block;list-style-type:none}.payments-checkout__image{height:30px;width:48px}.payments-checkout-klarna{display:block;height:30px;width:48px}.payments-checkout__title{text-align:center;color:#0a3055;font-size:1rem;font-weight:500;line-height:1.5rem;margin-bottom:8px}.summary__payment .payments-checkout{margin-bottom:0;margin-left:0;flex:1}.summary__payment .payments-checkout__list{justify-content:center;gap:12px}.summary__payment .payments-checkout__list--small{flex-wrap:wrap;padding:0 25px}.summary__payment .payments-checkout__image{height:22px;width:36px}.summary__payment .payments-checkout-klarna{height:22px;width:38px}.summary__payment .footer-checkout-holder--payways .payments-checkout__list{gap:8px}.basket .summary__payment.footer-checkout .payments-checkout__list--small{padding:0 40px}@media (min-width:768px){.payments-checkout{margin-bottom:0;margin-left:15px}.payments-checkout__list{flex-wrap:nowrap;max-width:100%}.payments-checkout-klarna{height:30px;width:50px}}body.page_checkout,html{height:100%}body.page_checkout main{min-height:calc(100% - 160px)}.checkout-heading{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%;margin-bottom:30px}.checkout-heading h3{margin-bottom:0}.checkout-heading__info-block{display:flex;flex-wrap:wrap;margin:10px -15px}.checkout-heading__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-heading__paragraph{margin-bottom:0}.checkout-heading__notify{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;margin-top:15px;margin-bottom:-20px}.checkout__text-highlighted,.supply-info__header-remark{color:#8b8b8b}.supply-info__info-block{display:flex;flex-wrap:wrap;margin:30px -15px 10px}.supply-info__time{flex:0 0 33.33333%;max-width:33.33333%;position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.supply-info__time-inner{padding:10px 50px;background:#f8f8f8;text-align:center}.supply-info__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 66.66667%;max-width:66.66667%}.supply-info .supplier-delivery-heading .supply-info__time{display:none}.supply-info .supplier-delivery-heading .supply-info__descr{flex:0 0 100%;max-width:100%}.supply-info__paragraph{margin-bottom:0}.supply-info__remark{font-size:.75rem;line-height:.875rem;color:#8b8b8b;margin-top:5px}.supply-info__remark_mobile{padding-left:15px;padding-right:15px;line-height:1.25rem}.checkout-address-time{display:flex;flex-wrap:wrap;align-items:center}.checkout-address-time__address-wrap{border-left:1px solid #ccc;height:100%;width:50%;padding:0 30px}.checkout-address-time__address{font-size:.875rem;line-height:1.375rem}.checkout-address-time__time-wrap{font-weight:700;width:50%;color:#8b8b8b;text-align:center}.checkout-address-time__time-regular{font-size:1.125rem;line-height:1.5rem;font-weight:700;text-transform:uppercase}.checkout-address-time__time-primary{font-size:2.875rem;line-height:2.875rem;font-weight:700}.checkout-address-time__time-additional{font-weight:700}.checkout-address-time__undefined-time{color:#ccc;font-weight:500;line-height:1.375rem;padding:0 15px}.checkout-address-time_sidebar{width:100%}.checkout-address-time_sidebar .checkout-address-time__time-regular{font-size:1.125rem;font-weight:700;line-height:1.5rem}.checkout-address-time_sidebar .checkout-address-time__time-primary{font-size:2.875rem;line-height:2.875rem}.checkout-address-time_sidebar .checkout-address-time__time-additional{font-size:.625rem;line-height:1rem}.checkout-address-time_sidebar .checkout-address-time__address-wrap{padding:0 5px 0 15px}.checkout-address-time_sidebar .checkout-address-time__address{font-size:.875rem;line-height:1.375rem}.checkout-continue-shopping_mobile{width:100%}.order-line__img-link,.order-line__title_link{display:none!important}.order-line__img-static,.order-line__title_static{display:block!important}.address-list-wrap{height:180px;border:1px solid #ccc;border-radius:3px;background:#fff;overflow-y:scroll;padding:2px 5px;margin-bottom:20px}.address-list-item:hover{background:#0277bd;color:#fff;cursor:pointer}.checkout-address-select{display:none}.notification_reminder{margin:0 15px 1.5rem}@media (min-width:992px){.page_split-orders .container .row .right-aside{top:0;margin-bottom:78px}.supply-info__remark_mobile{display:none}}@media (min-width:992px) and (max-width:1199.98px){.supply-info__time-inner{padding:10px 25px}}@media (max-width:1199.98px){.checkout-address-time__address-wrap{padding:0 20px;width:55%}.checkout-address-time__time-wrap{width:45%}}@media (min-width:768px){.checkout-continue-shopping_mobile,.content .checkout-widget.delivery-widget{display:none}}@media (min-width:768px) and (max-width:991.98px){.supply-info__info-block{margin-bottom:20px}.supply-info__time{flex:0 0 50%;max-width:50%}.supply-info__time-inner{padding:20px 25px}.supply-info__descr{flex:0 0 50%;max-width:50%}.checkout-address-time_sidebar .checkout-address-time__address{font-size:.75rem;line-height:1.25rem}}@media (max-width:991.98px){.checkout-heading{margin-bottom:20px}.checkout-heading__notify{margin-bottom:0}.supply-info__remark_desktop{display:none}}@media (max-width:767.98px){.checkout-address-time_sidebar .checkout-address-time__time-regular{font-weight:500}.checkout-heading__info-block{margin-bottom:0}.checkout__text-highlighted{display:block}.supply-info__info-block{margin-top:20px;margin-bottom:0}.supply-info__time{flex:0 0 100%;max-width:100%;margin-bottom:10px}.supply-info__time-inner{padding:10px 65px}.supply-info__descr{flex:0 0 100%;max-width:100%}.checkout-continue-shopping,aside .checkout-widget.delivery-widget{display:none}}
|
|
1
|
+
.header-wrapper--checkout .header-inner{margin-right:-15px;justify-content:space-between}.header-wrapper--checkout .header-logo{display:block;padding-left:0}.header-wrapper--checkout .header-logo .header-logo__link{display:block}.header-wrapper--checkout .header-logo .header-logo__link,.header-wrapper--checkout .header-logo .header-logo__link-tp,.header-wrapper--checkout .header-logo .header-logo_wickes{height:92px;width:130px}.header-wrapper--checkout .header-logo .header-logo__link-tp_small,.header-wrapper--checkout .header-logo .header-logo__link_small,.header-wrapper--checkout .header-logo .header-logo_wickes_small{height:72px;width:109px}.header-wrapper--checkout .header-logo .header-logo__link,.header-wrapper--checkout .header-logo .header-logo_wickes{background-image:url(../../img/wickes-logo.svg)}.header-wrapper--checkout .header-logo .header-logo__link-tp{background-image:url(../../img/tradePro-logo_desk.png);transform:translateY(7px)}.header__main-title{color:#fff;font-size:21px;text-align:right}@media (min-width:768px){.header__main-title{font-size:26px;text-align:center;top:auto}}@media (min-width:992px){.header__main-title{font-size:33px}.header-wrapper--checkout .header-logo{padding-left:15px}}.header__contact-data{display:flex;flex-direction:column;justify-content:center;font-weight:500;padding-right:15px;color:#fff;text-align:right}@media (max-width:767.98px){.header-wrapper--checkout .header-logo .header-logo__link,.header-wrapper--checkout .header-logo .header-logo__link-tp,.header-wrapper--checkout .header-logo .header-logo_wickes{height:59px;width:130px}.header__contact-data{padding-left:0;font-size:.75rem;line-height:1rem;white-space:nowrap;-ms-grid-row-align:center;align-self:center}}.header__logout{display:block;margin-bottom:5px;text-decoration:none;font-weight:400;color:#fff}.header__logout:hover{color:#fff;text-decoration:underline}@media (min-width:768px){.header__contact-data{padding-left:25px;min-height:50px;border-left:1px solid #eee}.header__help{font-size:1rem;line-height:2.125rem}.header__logout+.header__help{line-height:normal}.header__logout{font-size:.75rem;line-height:1rem}.header-wrapper--checkout .header-logo .header-logo__link-tp{margin-top:0}}.footer-checkout{padding:0}.footer-checkout-holder{width:100%;margin-right:auto;margin-left:auto;display:flex;align-items:center;flex-direction:column;background-color:#f8f8f8;padding:25px 0}@media (min-width:576px){.footer-checkout-holder{max-width:540px}}@media (min-width:768px){.footer-checkout-holder{max-width:720px}}@media (min-width:992px){.footer-checkout-holder{max-width:960px}}@media (min-width:1200px){.footer-checkout-holder{max-width:1140px}}.footer-checkout .payments{margin-bottom:15px;position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}.footer-checkout .payments .payments__item{margin-right:10px;vertical-align:middle}.footer-checkout .payments .payments__item .payments__icons{display:block;background:url(../../img/payments-sprite.png) no-repeat;border-radius:3px;text-indent:-9999px}.footer-checkout .payments .payments__item .payments__icons.payments-mastercard{background-position:-110px -9px;height:28px;width:36px}.footer-checkout .payments .payments__item .payments__icons.payments-maestro{background-position:-110px -49px;height:33px;width:36px;transform:translateY(3px)}.footer-checkout .payments .payments__item .payments__icons.payments-visa{background-position:-10px -54px;height:22px;width:68px}.footer-checkout .payments .payments__item .payments__icons.payments-paypal{background-position:-10px -9px;height:24px;width:80px}.footer-checkout__copyright{font-size:.75rem;line-height:1rem;white-space:nowrap}@media (min-width:768px){.footer-checkout{padding:0 15px}.footer-checkout-holder{flex-direction:row;justify-content:space-between}.footer-checkout .payments{text-align:left;margin-bottom:0;flex:0 0 50%;max-width:50%}.footer-checkout .payments .payments__item{margin-right:25px}}.checkout-session-expired{border:1px solid #0277bd;padding:10px 15px;margin-bottom:40px;background-color:rgba(2,119,189,.05)}.checkout-session-expired .session-icon{float:left}.checkout-session-expired .session-icon .fa-exclamation-circle{color:#0277bd;margin-right:8px;font-size:1rem}.checkout-session-expired .session-icon .fa-times{float:right;margin-top:3px;color:#8b8b8b;font-size:1rem}.checkout-session-expired p{display:inline-block;margin-bottom:0;font-size:.95rem}@media (max-width:991.98px){.checkout-session-expired .session-icon{width:8%}.checkout-session-expired .session-icon .fa-exclamation-circle{vertical-align:top;height:100%}.checkout-session-expired .session-icon .fa-times{margin-top:0}.checkout-session-expired p{width:84%}}.checkout-sign-in{background-color:#f8f8f8;padding-top:40px;padding-bottom:40px}@media (max-width:767.98px){.checkout-sign-in{margin-left:-15px;margin-right:-15px}.checkout-sign-in .form-row__col-btn,.checkout-sign-in .form-row__field,.checkout-sign-in .form-row__label{padding:0}.checkout-sign-in__header{font-size:1.5rem;font-weight:500;line-height:2rem}}.checkout-sign-in h5{margin-top:30px}.checkout-sign-in__inner{padding:0 15px;max-width:570px;margin:0 auto}.checkout-sign-in__checkbox-wrap{margin-top:20px}.checkout-sign-in__password-wrap{margin-top:10px;margin-bottom:-20px}.checkout-sign-in__btn{min-width:160px}.date-selection{position:relative}.date-selection.date-selection_selected{border:1px solid #ccc}.delivery-date{width:100%;height:324px}.delivery-time{position:relative;background:#fff}.delivery-time__no-selection{font-size:1.125rem;line-height:1.5rem;position:absolute;top:50%;right:0;transform:translateY(-50%);font-weight:500;color:#3e3e3e;text-align:center}@media (max-width:767.98px){.checkout-sign-in__btn{width:100%}.delivery-time__no-selection{font-weight:500}}.date-selection_selected .delivery-time__no-selection{display:none}.calendar{height:100%;padding:20px;border:1px solid #ccc;text-align:center}.date-selection_selected .calendar{border:0}.calendar__month{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:20px}@media (max-width:767.98px){.calendar__month{font-weight:500}}.calendar__row{justify-content:space-between}.calendar__row_names{margin-bottom:10px;background:#eee}.calendar__cell{width:14.2857%;height:34px;line-height:2.375rem}.calendar__cell_cnt{font-size:1rem;cursor:pointer;border:1px solid transparent;-webkit-user-select:none;-ms-user-select:none;user-select:none}.calendar__cell_cnt:hover{border-color:#0277bd}.calendar__cell_inactive{pointer-events:none;color:#ccc}.calendar__cell_selected{background:#0277bd;color:#fff}.delivery-types{display:none;background:rgba(2,119,189,.05);margin:10px 10px 10px -20px;position:relative;padding:20px 20px 10px}.delivery-types__date{font-size:1.125rem;font-weight:500}.date-selection_selected .delivery-types{display:block}.delivery-types__name{font-size:1rem;font-weight:500;line-height:1.5rem;display:inline-block;margin-bottom:5px}.delivery-types__name .icon{display:inline;padding-left:5px;color:#0277bd}.delivery-types__slots{margin:10px 0 0;padding:0;list-style:none}.delivery-types__slot{margin-bottom:15px;display:flex;justify-content:flex-start}.delivery-types__slot .rbn{display:inline-block;width:175px;padding-right:20px}.delivery-types__cost{display:inline-block;text-transform:uppercase;font-weight:700;line-height:1.5rem;padding-right:20px}.delivery-types__confirm{width:76px;padding:8px 12px;margin:22px 0 0}.delivery-types__error{display:none;color:#cf000f;margin-bottom:15px;margin-top:-2px}.delivery-types__error-show{display:block}.delivery-types.delivery-types-hide{display:none}.delivery-types__accordion{display:none;pointer-events:auto}.delivery-types__accordion.collapsed{transform:rotate(0)}.delivery-types:after{top:0;right:-1px}.delivery-types:before{top:0;left:-1px}.delivery-types-fixed-height{height:280px!important}.delivery-type{padding-top:10px}.delivery-type+.delivery-type{border-top:1px solid #eee;margin-top:5px}.calendar__row{display:block}.calendar__row:not(.calendar__row_names):not(:last-child){padding-bottom:6px}.calendar__row_days,.calendar__row_names{display:flex}.calendar__row_extended{position:relative;border-top:1px solid #ccc;border-bottom:1px solid #ccc;height:auto;overflow-y:scroll;text-align:left}.calendar__row_extended-hide,.calendar__row_extended-hide .delivery-types{display:none}.calendar__row_names{pointer-events:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}@media (min-width:768px){.date-selection__inner{grid-gap:10px;display:flex}.delivery-date{width:100%}.date-selection_selected .delivery-date:after{top:20px;bottom:20px}.delivery-time{width:100%}.date-selection .delivery-time{background:initial}}@media (min-width:992px) and (max-width:1199.98px){.delivery-date,.delivery-time{max-width:50%;flex:1 1 50%}}@media (max-width:991.98px){.delivery-types{margin:10px;padding:20px}}@media (max-width:767.98px){.delivery-date,.delivery-time{flex:0 0 100%;max-width:100%;height:auto}.date-selection_time-visible .delivery-time{display:block}.delivery-types{margin:0;height:auto;padding:10px 20px 20px}.delivery-types__date{padding-top:10px}.delivery-types__slot{justify-content:space-between}.delivery-types__confirm{margin:5px 0 0}.delivery-types__accordion{display:block;position:absolute;z-index:1;top:20px;right:20px;font-size:1.125rem;color:#0277bd;transition:.5s;transform:rotate(180deg)}.calendar__row_extended{overflow-y:inherit}.calendar__row_extended-hide .delivery-types{display:block}.delivery-type{padding-top:10px}.delivery-type,.delivery-types__name,.rbn{text-align:left}}@media (max-width:575.98px){.delivery-types__error{margin-right:10px}}.delivery-details-product-oos{border:1px solid #ccc;width:100%;max-width:100%;margin:0 15px 30px;padding:15px 0}.delivery-details-product-oos .product-oos-inner{padding:0 50px}.delivery-details-product-oos .product-oos-inner .order-line:first-of-type{border-top:0}.delivery-details-product-oos .product-oos-inner .order-line__info a{color:#0277bd;text-decoration:underline}.delivery-details-product-oos .product-oos-inner .order-line__info a:hover{color:#0a3055}.delivery-details-product-oos .product-oos-inner p{display:inline-block;margin-right:20px}.delivery-details-product-oos .product-oos-inner .fa-question-circle{color:#0277bd;font-size:1.2rem;display:inline-block}.delivery-details-product-oos .product-oos-inner .btn{color:#fff;position:absolute;bottom:15px;width:calc(100% - 30px)}.delivery-details-product-oos .product-oos-inner .btn-notify{bottom:70px}.delivery-details-product-oos .product-oos-inner .btn-notify:focus{color:#0a3055}.delivery-details-product-oos .product-oos-inner .btn:hover{color:inherit}.component-date-selection{padding-top:0}.delivery-details__payment-details{margin-top:40px;min-width:210px}.delivery-details__payment-details_mobile{width:100%;margin-bottom:20px}.delivery-details-option{margin-top:40px;margin-bottom:20px}.delivery-details-option:first-child{margin-top:0}.delivery-details-option__delivery-info{display:flex;flex-wrap:wrap;align-items:stretch;margin:30px 0 10px}.delivery-details-option__delivery-info-left{width:50%;margin-right:10%}.delivery-details-option__delivery-info-left .checkout-address-time{height:100%}.delivery-details-option__delivery-info-right{width:40%}.delivery-details-option__delivery-info-right .schedule-item{font-size:.75rem;font-weight:500;line-height:1.5rem}.delivery-details-option__delivery-info-right .schedule-item:nth-child(odd){background:#eee}.delivery-details-option__delivery-info-right .schedule-item:nth-child(2n){background:0 0}.delivery-details-option__contact-details{margin-top:40px}.delivery-details-option__contact-details:first-child{margin-top:0}.delivery-details-option__contact-details .your-contact-details__row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.delivery-details-option__contact-details .your-contact-details__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}.delivery-details-option__contact-details .your-contact-details .row-tel{margin-bottom:30px}.delivery-details-option__contact-details .your-contact-details h3:not(:first-child){padding-top:30px;border-top:1px solid #ccc}.delivery-details-option__contact-details .your-contact-details .order-update{margin:30px 0 40px}.delivery-details-option__contact-details .your-contact-details .form-row__action{margin-top:0}.delivery-details-option__contact-details .your-contact-details .form-row__col-btn{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.delivery-details-option__contact-details .your-contact-details__checkbox{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.delivery-details-option__contact-details .your-contact-details__checkbox span:first-of-type{font-size:1rem;font-weight:500;line-height:1.5rem}.delivery-details-option__contact-details .your-contact-details__checkbox .distance{font-size:1rem;font-weight:500;line-height:1.5rem;color:#8b8b8b;padding-left:10px}.delivery-details-option__contact-details .your-contact-details__checkbox .store-address{color:#8b8b8b}.delivery-details-option__contact-details .your-contact-details__checkbox .store-address__postcode{text-transform:uppercase}.delivery-details-option__contact-details .your-contact-details__checkbox-wrap{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.delivery-details-option__contact-details .your-contact-details .btn{min-width:160px}.right-aside{display:flex;flex-direction:column}@media (min-width:576px){.page_checkout-delivery-details .right-aside .checkout-widget__actions{display:none}}@media (min-width:768px){.delivery-details__payment-details_mobile{display:none}.delivery-details-option__contact-details .your-contact-details__descr{flex:0 0 77.77778%;max-width:77.77778%;margin-left:11.11111%}.delivery-details-option__contact-details .your-contact-details .form-row__action:before{left:70px;right:70px}.right-aside .checkout-voucher{order:0}}@media (min-width:992px){.delivery-details__payment-details_mobile{display:none}.delivery-details-option__contact-details .your-contact-details__descr{flex:0 0 55.55556%;max-width:55.55556%;margin-left:22.22222%}.delivery-details-option__contact-details .your-contact-details .form-row__action:before{left:8.33333%;right:8.33333%}.delivery-details-option__contact-details .your-contact-details .form-row__col-btn{margin-left:22.22222%}.delivery-details-option__contact-details .your-contact-details__checkbox{flex:0 0 50%;max-width:50%}.right-aside .checkout-voucher{order:0}}@media (min-width:768px) and (max-width:991.98px){.header-wrapper--checkout .header-logo .header-logo__link-tp{transform:translateY(0)}.delivery-details-option__contact-details .your-contact-details .form-row__col-btn{margin-left:11.11111%}}@media (max-width:1199.98px){.delivery-details-product-oos .product-oos-inner{padding:0 30px}.delivery-details-product-oos .product-oos-inner .content{width:100%;flex:100%;max-width:100%}.delivery-details-product-oos .product-oos-inner .content p{width:calc(90% - 20px);float:left}.delivery-details-product-oos .product-oos-inner .content .icon-info-component{float:right;width:10%;text-align:center;margin-top:5px}.delivery-details-product-oos .product-oos-inner .content .order-line:first-of-type{clear:both}.delivery-details-product-oos .product-oos-inner .right-aside{width:100%;flex:100%;max-width:100%;text-align:center}.delivery-details-product-oos .product-oos-inner .right-aside .btn{position:relative;bottom:auto;max-width:280px}}@media (max-width:991.98px){.delivery-details-product-oos{border:0;border-top:2px solid #ccc;padding-top:20px}.delivery-details-option__delivery-info{flex-direction:column}.delivery-details-option__delivery-info-left{width:100%;margin-right:0;margin-bottom:10px}.delivery-details-option__delivery-info-right{width:100%}.delivery-details-option__contact-details .your-contact-details__checkbox:not(:last-child){padding-bottom:10px}}@media (max-width:767.98px){.delivery-details-option__contact-details .your-contact-details .btn{width:100%}.delivery-details-product-oos .product-oos-inner .btn-notify{margin-bottom:1rem}.component-date-selection{padding-bottom:20px}.delivery-details__payment-details{display:none}.delivery-details-option_time-slot{margin-top:30px}.delivery-details-option__contact-details .your-contact-details .form-row__action:before{left:15px;right:15px}.delivery-details-option__contact-details .your-contact-details .form-row__col-btn{margin-bottom:20px}.continue-to-payment{padding-bottom:20px;width:100%}.continue-to-payment a{width:100%}.right-aside .checkout-voucher{order:-1}.right-aside .checkout-voucher .accordion__content .form-row__field{padding:0}}.edit-delivery-address .user-address,.page_checkout-delivery-address .user-address{padding:20px}.edit-delivery-address .user-address__content .user-address__links,.page_checkout-delivery-address .user-address__content .user-address__links{flex:0 0 16.66667%;max-width:16.66667%;margin:0;position:relative}.edit-delivery-address .user-address__content .user-address__links .default-mark-full,.page_checkout-delivery-address .user-address__content .user-address__links .default-mark-full{margin:0;position:absolute;bottom:0;right:15px;width:70px}.edit-delivery-address .user-address__content .user-address__address,.edit-delivery-address .user-address__content .user-address__phone,.page_checkout-delivery-address .user-address__content .user-address__address,.page_checkout-delivery-address .user-address__content .user-address__phone{flex:0 0 41.66667%;max-width:41.66667%;margin:0}.edit-delivery-address .user-address__content .user-address__btn,.page_checkout-delivery-address .user-address__content .user-address__btn{display:flex;flex-direction:column}.edit-delivery-address .user-address__content .user-address__btn .btn-remove-address,.page_checkout-delivery-address .user-address__content .user-address__btn .btn-remove-address{margin-bottom:15px}.edit-delivery-address .user-address__content .user-address__btn .btn-remove-address .icon,.page_checkout-delivery-address .user-address__content .user-address__btn .btn-remove-address .icon{position:relative;right:2px}.edit-delivery-address .user-address__content .user-address__btn .link-secondary,.page_checkout-delivery-address .user-address__content .user-address__btn .link-secondary{display:block;text-decoration:none;font-weight:500}.edit-delivery-address .user-address__wrapper .user-address:nth-of-type(2) .default-mark-full,.page_checkout-delivery-address .user-address__wrapper .user-address:nth-of-type(2) .default-mark-full{display:none}.edit-delivery-address .delivery-address__btn-back,.page_checkout-delivery-address .delivery-address__btn-back{margin-bottom:20px}.edit-delivery-address .delivery-address .btn-back-to-addresses,.page_checkout-delivery-address .delivery-address .btn-back-to-addresses{font-size:1rem;font-weight:500;line-height:1.5rem}.edit-delivery-address .delivery-address .user-address__title,.page_checkout-delivery-address .delivery-address .user-address__title{display:none}.edit-delivery-address .delivery-address .selected-address,.page_checkout-delivery-address .delivery-address .selected-address{display:block;font-weight:700;padding-bottom:10px}.edit-delivery-address a.btn-new-address,.page_checkout-delivery-address a.btn-new-address{display:block;margin-top:20px;font-size:16px}.edit-delivery-address div[data-auto-find] .form-row,.edit-delivery-address div[modaldata-auto-find] .form-row,.page_checkout-delivery-address div[data-auto-find] .form-row,.page_checkout-delivery-address div[modaldata-auto-find] .form-row{margin-bottom:0}.edit-delivery-address div[data-finded-address] a,.edit-delivery-address div[modaldata-finded-address] a,.page_checkout-delivery-address div[data-finded-address] a,.page_checkout-delivery-address div[modaldata-finded-address] a{margin-bottom:25px;text-align:center;display:block}.edit-delivery-address .btn-edit-manually,.page_checkout-delivery-address .btn-edit-manually{font-weight:700}.edit-delivery-address_guest .delivery-address-form .form-row__col-btn .btn-action,.page_checkout-delivery-address_guest .delivery-address-form .form-row__col-btn .btn-action{display:block;min-width:220px}.delivery-address-form{padding-right:0;padding-left:0;padding-bottom:30px}.delivery-address-form .form-row__col-btn{margin-top:20px}.delivery-address-form .form-row__col-btn .btn-action{width:220px}.delivery-address-form__inner{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.edit-delivery-address .btn-action .icon,.page_checkout-delivery-address .btn-action .icon,.page_checkout-delivery-details .btn-action .icon{height:0}.page_checkout-delivery-address .user-address__content{flex:0 0 100%;max-width:100%}@media (min-width:576px){.page_checkout-delivery-address .delivery-address__actions{width:220px}.page_checkout-delivery-address .right-aside .btn-delivery-details{display:none}#new-address-placeholder{padding:40px 0}}@media (min-width:768px){.page_checkout-delivery-address .edit-delivery-addr-guest .form-row__action .edit-delivery-address__delivery-btn{flex:0 0 41.66667%;max-width:41.66667%}.page_checkout-delivery-address_guest .right-aside .form-row__col-btn .btn-action{display:none}.page_checkout-delivery-address_guest .content .form-row__col-btn .btn-action{display:block!important}}@media (min-width:992px){.page_checkout-delivery-address_guest .delivery-address-form__inner,.page_checkout-delivery-address div[data-new-address] .delivery-address-form__inner{margin-left:22.22222%;flex:0 0 55.55556%;max-width:55.55556%}}@media (min-width:768px) and (max-width:991.98px){.delivery-address-form .form-row__col-btn{flex:0 0 50%;max-width:50%}}.page_checkout-delivery-address_guest .delivery-address-form+.form-row__col-btn{width:220px;margin-top:20px}@media (max-width:991.98px){.page_checkout-delivery-address .user-address__content .user-address__address,.page_checkout-delivery-address .user-address__content .user-address__phone{flex:0 0 50%;max-width:50%}.page_checkout-delivery-address .user-address__content .user-address__links{flex:0 0 100%;max-width:100%;padding:15px 15px 0}}.page_checkout-delivery-details_asm .checkout-widget__header{display:block}.page_checkout-delivery-details_asm .checkout-widget__email{word-break:break-all}.page_checkout-delivery-details_asm .btn-delivery-details{width:220px}.checkout-your-details .form-row__action_custom:before{height:0}@media (max-width:767.98px){.page_checkout-delivery-address #new-address-form .btn-md-lg-continue-delivery-details{display:none}.page_checkout-delivery-address .user-address__content .user-address__address,.page_checkout-delivery-address .user-address__content .user-address__phone{flex:0 0 100%;max-width:100%}.page_checkout-delivery-address .user-address__content .user-address__phone{padding-top:15px}.page_checkout-delivery-address .user-address__content .user-address__links{flex:0 0 100%;max-width:100%;padding:15px 15px 0}.page_checkout-delivery-address .user-address__wrapper .checkout-widget__outer-button{display:none}.page_checkout-delivery-address .delivery-address__actions .btn-action{width:100%;display:none}.page_checkout-delivery-address .right-aside{margin-top:20px;display:block}.page_checkout-delivery-address .right-aside .btn-delivery-details{margin-bottom:0;display:block}.page_checkout-delivery-address.modal-open{margin-top:0!important}.page_checkout-delivery-address_guest .delivery-address-form+.form-row__col-btn{width:100%}.page_checkout-delivery-address_guest .delivery-address-form__inner .form-row__action{padding-bottom:30px}.page_checkout-delivery-address_guest .delivery-address-form .form-wrapper{padding-bottom:1px}.page_checkout-delivery-address_guest .content .form-row__col-btn .btn-action{display:none}.page_checkout-delivery-address_guest .right-aside{margin-top:inherit;display:block}.page_checkout-delivery-address_guest .right-aside .checkout-widget__outer-button{margin:0}.page_checkout-delivery-details #new-address-placeholder{padding-top:20px;padding-bottom:20px}.delivery-address-form{margin:0 -15px;padding-bottom:10px}.edit-delivery-addr-guest .form-row__action .edit-delivery-address__delivery-btn{margin-top:15px}.edit-delivery-addr-guest .form-row__action .edit-delivery-address__delivery-btn .btn-action{width:100%}div[data-finded-address]{margin-bottom:20px}.page_checkout-delivery-details_asm .btn-delivery-details{width:100%}.page_checkout-delivery-details_asm .checkout-widget_email{padding:20px 45px;margin:0 -15px 20px;order:2}.page_checkout-delivery-details_asm .checkout-widget_order-summary{order:1}.page_checkout-delivery-details_asm .checkout-voucher{order:3}.page_checkout-delivery-details_asm .right-aside{margin-top:0}.checkout-your-details .form-row__action{margin-top:20px}.checkout-your-details .form-row__col-btn{flex:0 0 100%;max-width:100%;text-align:center}}.checkout-your-details .row-tel{margin-bottom:30px}.checkout-your-details .form-row__col-btn{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-your-details .edit-address{line-height:2.25rem;font-weight:500}.checkout-your-details__finded-address{margin-bottom:10px}.page-header__order-number{font-size:1.875rem;font-weight:300;line-height:2.875rem;text-align:center;margin-top:20px}@media (min-width:768px){.checkout-your-details .form-row__col-btn{flex:0 0 50%;max-width:50%}.page-header__order-number{text-align:center}}.page-header__order-number_strong{font-weight:700}.checkout-confirmation-shopping-card{margin-bottom:40px}@media (max-width:767.98px){.checkout-your-details .edit-address{margin-top:20px}.checkout-your-details .icon-info{width:40px;height:40px;line-height:40px}.page-header__order-number{font-size:1.5rem;line-height:2rem;text-align:left}.checkout-confirmation-shopping-card{margin-top:30px}}.shopping-card-container_bordered{margin-top:20px;border:1px solid #ccc}.shopping-card-container .delivery-details-option__delivery-info{margin:0;padding:20px 0}@media (min-width:992px){.shopping-card-container .delivery-details-option__delivery-info{padding:20px 20px 20px 0}.product-delivery-table .checkout-address-time__time-additional{display:none}}.shopping-card-container .order-line{margin-top:0;padding:20px}.product-delivery-table{margin-bottom:40px;border:1px solid #ccc}.product-delivery-table__delivery-info{padding:20px 0}.product-delivery-table h4{margin-bottom:10px}.product-delivery-table__content{font-size:1rem;line-height:1.5rem}.product-delivery-table__date{flex:0 0 22.22222%;max-width:22.22222%;position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;text-align:center}@media (max-width:991.98px){.shopping-card-container .delivery-details-option__delivery-info-left{margin-bottom:20px}.product-delivery-table__date{flex:0 0 50%;max-width:50%}.product-delivery-table__time{display:none}}.product-delivery-table__date-inner{margin-top:10px;color:#8b8b8b;border-right:1px solid #ccc}.product-delivery-table .checkout-address-time__time-additional{font-size:.625rem}.product-delivery-table__time{margin-left:11.11111%}.product-delivery-table__address,.product-delivery-table__time{flex:0 0 33.33333%;max-width:33.33333%;position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}@media (max-width:991.98px){.product-delivery-table__address{flex:0 0 50%;max-width:50%}.c__card-holder{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}}.product-delivery-table__charity .order-line{border-top:0}.product-delivery-table__charity .order-line__calc.area-total,.product-delivery-table__charity .order-line__calc_quant{display:none}.product-delivery-table__charity .order-line__img-static img{padding:20px}.product-delivery-table__charity .order-line__title{padding-top:20px}@media (max-width:767.98px){.product-delivery-table{margin-bottom:30px}.product-delivery-table h4{display:none}.product-delivery-table__charity .order-line__img-static img{padding:10px 10px 0}.product-delivery-table__charity .order-line__title{padding-top:10px}}.product-supplier-delivery{border-top:0}.c{margin-top:40px;padding-bottom:40px}@media (max-width:575.98px){.c{margin-left:-15px;margin-right:-15px}}.c .checkout-register__row:first-child .checkout-register__descr:first-child{padding-bottom:10px}.c .checkout-register__row:first-child .checkout-register__descr:first-child:after{position:absolute;content:"";height:1px;background:#eee;left:15px;right:15px;bottom:0}.c__paragraph{font-size:1rem;line-height:1.5rem;margin-bottom:0}.c__row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.c__title{margin:30px 0}.c__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}@media (min-width:768px){.c__descr{flex:0 0 77.77778%;max-width:77.77778%;margin-left:11.11111%}}@media (min-width:992px){.c__descr{flex:0 0 55.55556%;max-width:55.55556%;margin-left:22.22222%}}.c__card-title{margin:30px 0 20px}.c__card,.c__card-holder{flex:0 0 100%;max-width:100%}.c__card{position:relative;width:100%;min-height:1px;padding:20px;margin-bottom:20px;border:1px solid #ccc}.c__card-info{display:flex;flex-wrap:wrap;margin:0;padding:0;line-height:1.375rem;color:#8b8b8b}.c__card-info dt{flex:0 0 50%;max-width:50%;color:#3e3e3e;font-weight:700}@media (max-width:767.98px){.c__card-info dt{flex:0 0 100%;max-width:100%}}.c__card-info dd{flex:0 0 50%;max-width:50%;text-align:right}.c__card-info dd:last-child{margin-bottom:0}@media (max-width:767.98px){.c__card-info dd{text-align:left}.c .row-title .form-row__field,.c__card-info dd{flex:0 0 100%;max-width:100%}.c .form-row__action_custom{display:none}}@media (min-width:768px) and (max-width:991.98px){.c .row-title .form-row__field{flex:0 0 44.44444%;max-width:44.44444%}}@media (min-width:992px){.c .row-title .form-row__field{flex:0 0 40%;max-width:40%}}.c .form-row__action .form-row__col-btn{min-width:190px}@media (min-width:768px) and (max-width:991.98px){.c .form-row__action .form-row__col-btn{flex:0 0 50%;max-width:50%}.c .form-row__action .form-row__col-btn .btn,.c .form-row__action .form-row__col-btn .btn-secondary{padding-left:0;padding-right:0;max-width:145px}.c .form-row__action .form-row__col-btn .btn-secondary{margin-left:50px}.c .form-row__action_custom:before,.c .form-row__action_device-customized:before{left:65px;right:65px}}.c .form-row__action_custom,.c .form-row__action_device-customized{margin-top:20px}@media (min-width:992px){.c .form-row__action .form-row__col-btn{flex:0 0 22.22222%;max-width:22.22222%}.c .form-row__action .form-row__col-btn:first-child{margin-left:22.22222%}.c .form-row__action_custom:before,.c .form-row__action_device-customized:before{left:8.33333%;right:8.33333%}}@media (min-width:768px){.page_checkout-confirmation .content .header-descr{max-width:153%;width:153%}.page_checkout-confirmation .right-aside{top:100px;margin-bottom:100px}}@media (min-width:992px){.page_checkout-confirmation .content .header-descr{max-width:135%;width:135%}.page_checkout-confirmation .right-aside{top:78px;margin-bottom:78px}}@media (min-width:576px){.page_checkout-confirmation .right-aside .form-row__action{display:none}}@media (max-width:767.98px){.page_checkout-confirmation .right-aside .form-row__action{display:block}.page_checkout-confirmation .right-aside .form-row__action .form-row__col-btn{flex:0 0 100%;max-width:100%;margin-bottom:20px}.page_checkout-confirmation .right-aside .form-row__action_custom{margin-top:0;padding-top:0}.page_checkout-confirmation .right-aside .form-row__action_custom:before{background:0 0}}.checkout-widget{padding:20px;background-color:#f8f8f8;margin-bottom:20px}.checkout-widget:last-child{margin-bottom:0}.checkout-widget .heading-3{margin-bottom:15px}.checkout-widget .heading-3_checkout-widget-supply .checkout-widget__edit-link{margin-top:2px}.checkout-widget .accordion{padding:0;border-bottom:0}.checkout-widget .accordion .accordion__content{padding:0;margin-top:20px}.checkout-widget .accordion .accordion__content-inner>:last-child{border-bottom:0;padding-bottom:0}.checkout-widget .accordion .accordion__header{padding-left:0}.checkout-widget .accordion .accordion__header-icon{left:-30px}.checkout-widget__accordion-wrap{position:relative}.checkout-widget__accordion-wrap .collapsed .accordion__header-icon-small{transform:rotate(180deg)}.checkout-widget__accordion-wrap .accordion__header-icon-small{display:block;position:absolute;left:80px;top:-2px;color:#0277bd;font-size:1.25rem}.checkout-widget__detail-name_accordion{display:block;cursor:pointer}.checkout-widget .accordion+.checkout-widget__detail-value,.checkout-widget__detail-name_accordion+.checkout-widget__details-hidden+span{position:absolute;top:0;right:0}.checkout-widget__details{font-size:.875rem;font-weight:500;line-height:1.375rem;padding-left:0;margin-bottom:0;list-style-type:none}.checkout-widget__details>li:last-child{margin:0}.checkout-widget__details>li:not(:first-of-type){margin-top:5px}.checkout-widget__details>.checkout-widget__accordion-wrap.checkout-widget__details-discount{margin-top:8px}.checkout-widget__details .checkout-widget__details-hidden{padding-left:15px;list-style:disc;margin-top:5px}.checkout-widget__details .checkout-widget__details-hidden li{font-size:.75rem;line-height:1rem;position:relative;font-weight:400;padding-right:20px}.checkout-widget__details .checkout-widget__details-hidden li.checkout-widget__voucher-removed{color:#cf000f;list-style:none}.checkout-widget__details .checkout-widget__details-hidden li .icon{width:16px;height:16px;line-height:16px;position:absolute;right:0;top:0;cursor:pointer;color:#8b8b8b;font-size:.875rem}.checkout-widget__details>.checkout-widget__details__item{overflow:hidden}.checkout-widget__details>.checkout-widget__details__item .checkout-widget__detail-name{white-space:nowrap}.checkout-widget__detail-block:first-child,.checkout-widget__detail-name{font-weight:700}.checkout-widget__detail-value:not(.checkout-widget__details-hidden),.checkout-widget__detail-value_no-float,.checkout-widget__detail-value_payment:not(.checkout-widget__details-hidden){display:block;color:#8b8b8b}.checkout-widget__detail-value:not(.checkout-widget__details-hidden){float:right}.checkout-widget .checkout-widget__detail-text_accented{color:#cf000f}.checkout-widget__total{margin-top:20px;padding-top:20px;border-top:1px solid #ccc}.checkout-widget__total-legend{font-weight:700}.checkout-widget__price{color:#0a3055;font-size:2.125rem;font-weight:700;line-height:2.25rem}.checkout-widget__actions,.checkout-widget__basket-block{margin-top:20px;padding-top:20px;border-top:1px solid #ccc}.checkout-widget__basket-block_cards{text-align:center;border-top:0;margin-top:0}.checkout-widget__basket-block_small{border-top:0;background:#f8f8f8;margin:0 -15px 15px;padding:30px 15px}.checkout-widget__basket-block_small .form-row__col-btn.pay-pal_container{padding-top:20px;border-bottom:0;margin-bottom:-10px}.checkout-widget__basket-block .pay-pal_container{padding:20px 0 0;border-bottom:1px solid #ccc}.checkout-widget__basket-block .pay-pal_container .paypal-button-container{min-width:inherit}.checkout-widget__basket-block .pay-pal_container .paypal-button-text{line-height:35px;font-size:.875rem;font-weight:500;padding-left:5px}.checkout-widget__basket-block .pay-pal_container .checkout-payment-details__link{margin:0}.checkout-widget__basket-block .pay-pal_container-link{margin-top:20px;width:100%;text-align:center;font-size:.75rem;display:inline-block}.checkout-widget__basket-block .pay-pal_container-email{position:relative;bottom:5px;margin:20px auto 0;text-align:center;font-size:.75rem;line-height:1.25rem}.checkout-widget__basket-block .pay-pal_container-email .pay-pal_email-heading{color:#8b8b8b;font-weight:500}.checkout-widget__payment-wrapper{position:relative;margin-top:10px;margin-left:-5px;margin-right:-5px;border:1px solid #ccc}.checkout-widget__secure-header{position:absolute;top:-10px;left:calc(50% - 100px);text-align:center;width:200px;font-weight:700;font-size:.8125rem;background:#f8f8f8}.checkout-widget__secure-icon{display:inline-block;margin-right:5px}.checkout-widget__secure-message,.checkout-widget__secure-ssl{font-size:.625rem;margin-bottom:0}.checkout-widget__secure-ssl{padding-top:9px;line-height:1rem}.checkout-widget__secure-message{position:absolute;bottom:-7px;left:calc(50% - 80px);text-align:center;width:160px;background:#f8f8f8}.checkout-widget__secure-link{display:block;text-align:center;margin-top:10px;padding-bottom:20px;border-bottom:1px solid #ccc}.checkout-widget__payment-list{margin:13px 20px 20px}.checkout-widget__payment-item{display:inline-block;margin:0 1px 6px}.checkout-widget__payment-img{height:24px}.checkout-widget__payment-img_large{height:30px;display:block}.checkout-widget__payment-img_large.verified-by-visa{background:url(../../img/visa-secure-border.png) 0 0/contain no-repeat;width:38px}.checkout-widget__payment-img_large.mastercard-secure-code{background:url(../../img/payments-small-2.png) 0 0/contain no-repeat;width:48px}.checkout-widget__payment-img_large.mastercard{background:url(../../img/basket-mastercard.png) 0 0/contain no-repeat;width:36px}.checkout-widget__payment-img_large.visa{background:url(../../img/visa.png) 0 0/contain no-repeat;width:39px}.checkout-widget__payment-img_large.paypal{background:url(../../img/basket-paypal.png) 0 0/contain no-repeat;width:39px}.checkout-widget__card-save .error,.checkout-widget__card-save .success{text-align:center;width:100%;color:#67a509;font-size:4rem;margin:10px 0 20px}.checkout-widget__card-save .error{color:#cf000f}.checkout-widget__action-description{font-size:.75rem;line-height:1rem;margin-top:16px}.checkout-widget__action-description_accented{font-size:.75rem;line-height:1rem;font-weight:500;color:#8b8b8b}.checkout-widget__edit-link{font-size:.875rem;font-weight:500;margin-top:4px;text-align:right;float:right}.checkout-widget__delivery-option{margin:0 -15px}.checkout-widget__subscribe-message{font-size:.75rem}.checkout-widget__detail-name.checkout-widget__detail-block,.checkout-widget__detail-value.checkout-widget__detail-block{width:100%;text-align:left}.content .checkout-widget_order-summary{margin-bottom:40px}.checkout-widget_order-summary_paypal-add .checkout-widget_order-summary{padding:0}.checkout-widget_order-summary_paypal-add .checkout-widget__header{text-align:center}.checkout-widget_order-summary_paypal-add .voucher-applied{display:none}.checkout-widget.voucher-applied .fa-check-circle{text-align:center;width:100%;color:#67a509;font-size:1rem;margin-bottom:10px}.checkout-widget #voucher-code{text-transform:uppercase}.checkout-widget__tooltip-bb{position:relative;display:inline-block}.tooltip-bb__element{display:inline-block;text-align:center;background:#0a3055;color:#fff;font-weight:400;border-radius:50%;width:20px;height:20px;cursor:pointer}.tooltip-bb__element:hover+.tooltip-bb__info,.tooltip-bb__element:hover+.tooltip-bb__info:after{visibility:visible}.tooltip-bb__info{width:154px;height:50px;padding:5px 5px 5px 10px;background:#0a3055;color:#fff;font-weight:400;bottom:130%;left:80%}.tooltip-bb__info,.tooltip-bb__info:after{position:absolute;display:block;visibility:hidden}.tooltip-bb__info:after{content:"";width:0;height:0;border-top:15px solid #0a3055;border-right:15px solid transparent;left:0;bottom:-20%}#checkout-widget-information{line-height:1.375rem}.checkout-widget__outer-button{margin-top:20px;margin-bottom:20px}.simplebar-content .checkout-widget__outer-button{width:calc(100% - 1px)}.checkout-voucher-hide{display:none}.checkout-voucher .form-row__field{padding-left:0;padding-right:0}.checkout-voucher input{text-transform:uppercase}.checkout-voucher input:-ms-input-placeholder,.checkout-voucher input::-ms-input-placeholder{color:transparent}.checkout-voucher input::placeholder{color:transparent}.voucher{padding-bottom:10px}.voucher .checkout-widget.checkout-voucher.checkout-voucher_fixed{padding:0}.voucher .checkout-widget.checkout-voucher{margin-bottom:0}.voucher .checkout-widget.checkout-voucher-hide{display:none}.voucher .checkout-widget.checkout-voucher.voucher-applied{background:#fff;height:40px;padding:8px 0;margin:0}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner{display:flex;align-items:center;justify-content:center;gap:8px}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner .icon{display:inline-block}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner .icon__check{width:24px;height:24px;display:flex;justify-content:center;align-items:center}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner .icon__check i{font-size:24px;line-height:24px}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner .fa-check-circle{font-size:1rem;margin:0}.voucher .checkout-widget.checkout-voucher.voucher-applied .voucher-applied__inner h5{font-size:.875rem;margin:0}.voucher .checkout-widget.checkout-voucher form{display:flex;justify-content:space-between;width:100%}.voucher .checkout-widget.checkout-voucher form .form-row{max-width:100%;flex:1;margin-right:16px;margin-bottom:0;padding:0}.voucher .checkout-widget.checkout-voucher form .form-row__field{margin-left:30px}.voucher .checkout-widget.checkout-voucher form .form-row__error{margin-left:30px;font-weight:400}.voucher .checkout-widget.checkout-voucher form .voucher__btn{margin-top:0;margin-right:15px;height:40px}.voucher .checkout-widget{margin-left:-15px;margin-right:-15px}@media (min-width:576px){.voucher .checkout-widget.checkout-voucher form .form-row__field{margin-right:0;margin-left:15px}.voucher .checkout-widget.checkout-voucher form .form-row__error{margin-left:15px}.page_checkout-confirmation-new .checkout-tradepro .page-header__info:nth-child(2),.page_checkout-tradePro .checkout-tradepro .page-header__info:nth-child(2){margin-top:0}}@media (min-width:768px){.checkout-widget .accordion .accordion__content{display:block!important;margin-top:0}.checkout-widget .accordion .accordion__header,.checkout-widget__basket-block_small,.content .checkout-widget_order-summary{display:none}.basket-checkout-widget{position:sticky;top:35px}.checkout-voucher form .form-row__error{margin-left:15px}.checkout-voucher form .voucher__btn{max-width:115px;height:40px}.checkout-voucher form .form-row{flex:0 0 100%;max-width:100%}.checkout-voucher .form-row__field{margin-left:15px;margin-right:-15px}.voucher .checkout-widget.checkout-voucher form .form-row__field{margin-right:0;margin-left:30px}}@media (min-width:1200px){.checkout-widget__detail-value_payment:not(.checkout-widget__details-hidden){float:right}.tooltip-bb__element{margin-left:5px}.tooltip-bb__info{width:160px}}@media (max-width:1199.98px){.page_checkout-delivery-address .user-address__content .user-address__links .default-mark-full{text-align:right;right:35px}.checkout-widget__secure-header{font-size:.6875rem;left:calc(50% - 85px);width:170px;top:-9px}}@media (min-width:992px){.checkout-voucher{display:flex;justify-content:center;align-items:center;margin-bottom:30px}.checkout-voucher form{align-items:flex-start}}@media (max-width:991.98px){.checkout-widget__secure-ssl{padding-top:10px}}@media (max-width:767.98px){.checkout-widget .heading-3{font-size:1.5rem}.checkout-widget__actions,.checkout-widget__header{display:none}.checkout-widget__detail-value_payment:not(.checkout-widget__details-hidden){float:right}.checkout-widget__total{padding-top:10px}.checkout-widget__price{margin-top:5px}.checkout-widget__basket-block .pay-pal_container-link{font-size:.875rem}.checkout-widget__basket-block .pay-pal_container-email{font-size:.875rem;line-height:1.5rem}.checkout-widget__secure-header{top:-12px;left:calc(50% - 110px);text-align:center;width:220px;font-size:.875rem}.checkout-widget__secure-ssl{padding-top:14px}.checkout-widget__secure-message,.checkout-widget__secure-ssl{font-size:.75rem}.checkout-widget__secure-message{left:calc(50% - 100px);width:200px;bottom:-9px}.checkout-widget_order-summary .accordion__header-text{margin-left:4px}.checkout-widget_order-summary .accordion__content-inner{padding-left:4px}.checkout-widget_email .checkout-widget__header{display:block}.tooltip-bb__element{margin-left:5px}.tooltip-bb__info{width:160px}.checkout-widget__click-collect{display:none}}@media (min-width:992px) and (max-width:1199.98px){.checkout-widget .heading-3_checkout-widget-supply{font-size:1.125rem}.checkout-widget__detail-name,.checkout-widget__detail-value:not(.checkout-widget__details-hidden){display:block}.checkout-widget__detail-value:not(.checkout-widget__details-hidden){float:none}}@media (min-width:768px) and (max-width:991.98px){.checkout-widget .heading-3_checkout-widget-supply{font-size:1.125rem}.checkout-widget__detail-name_accordion{padding-bottom:20px}.checkout-widget__detail-name,.checkout-widget__detail-value:not(.checkout-widget__details-hidden){display:block}.checkout-widget__detail-value:not(.checkout-widget__details-hidden){float:none}.checkout-widget__action-description_accented{font-size:.625rem}}@media (max-width:575.98px){.checkout-widget__payment-wrapper{margin-left:-30px;margin-right:-25px}.checkout-widget__detail-value_payment:not(.checkout-widget__details-hidden){float:none;display:block}}.edit-delivery-address__actions{padding:40px 0}.edit-delivery-address__actions .btn-action,.edit-delivery-address__actions .btn-secondary{width:100%}.edit-delivery-address__add-btn,.edit-delivery-address__delivery-btn{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}.edit-delivery-address .modal-content .user-address__content{flex:0 0 100%;max-width:100%}.edit-delivery-address .modal-content .user-address__address,.edit-delivery-address .modal-content .user-address__phone{flex:0 0 37.5%;max-width:37.5%}.edit-delivery-address .modal-content .user-address__links{flex:0 0 25%;max-width:25%}.edit-delivery-address .modal-content .user-address__btn{min-width:90px}.edit-delivery-address .modal-content .edit-delivery-address__actions .btn-action{min-width:220px}@media (min-width:1200px){.edit-delivery-address__add-btn,.edit-delivery-address__delivery-btn{flex:0 0 33.33333%;max-width:33.33333%}}@media (max-width:1199.98px){.edit-delivery-address__add-btn{margin-bottom:20px}.edit-delivery-address .user-address__content .user-address__links .default-mark-full{right:0}}@media (max-width:767.98px){.edit-delivery-address .modal-content .user-address__address,.edit-delivery-address .modal-content .user-address__links,.edit-delivery-address .modal-content .user-address__phone{flex:0 0 100%;max-width:100%}.edit-delivery-address .modal-content .user-address__links,.edit-delivery-address .modal-content .user-address__phone{padding-top:15px}.edit-delivery-address .modal-content .user-address__links{padding:15px 15px 0}.edit-delivery-address .modal-content .user-address__links .default-mark-full{padding-right:15px;text-align:right}.edit-delivery-address .modal-content .user-address__wrapper .btn-delivery-details{display:none!important}.edit-delivery-address .modal-content .edit-delivery-address__actions .btn-action{min-width:220px}.baskets__basket-summary .checkout-widget .accordion__header{padding-left:35px}.baskets__basket-summary .checkout-widget .accordion__header-icon{left:0}}.terms-and-conditions__section{padding:20px 0}.terms-and-conditions__section+.terms-and-conditions__section{border-top:1px solid #ccc}.terms-and-conditions__section-title{margin-bottom:20px}.terms-and-conditions__list{padding-left:20px}.terms-and-conditions__print-btn{margin-bottom:10px}.baskets{margin-top:40px}@media (min-width:768px){.baskets__basket{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.baskets__basket-lines{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}}@media (min-width:768px) and (max-width:991.98px){.baskets__basket-lines{flex:0 0 66.66667%;max-width:66.66667%}}@media (min-width:992px){.baskets__basket-lines{flex:0 0 75%;max-width:75%}}@media (min-width:768px) and (max-width:991.98px){.baskets__basket-summary{flex:0 0 33.33333%;max-width:33.33333%}}@media (min-width:768px){.baskets__basket-summary{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}}@media (min-width:992px){.baskets__basket-summary{flex:0 0 25%;max-width:25%}}.baskets__basket-summary .checkout-widget__header{white-space:nowrap}.baskets .order-line__img-static,.baskets .order-line__title_static{display:block!important}.baskets .order-line__img-link,.baskets .order-line__title_link{display:none!important}.page_checkout-payment-details .lines-group{margin-top:20px}.checkout-payment-details .rbn_align{line-height:1.375em}.checkout-payment-details__card-details_hidden,.checkout-payment-details__payment-method_hidden{display:none}.checkout-payment-details__card-details{margin-bottom:20px}.checkout-payment-details__payment-method .checkout-payment-details__row:first-child .checkout-payment-details__descr:first-child{margin-bottom:30px}.checkout-payment-details__payment-method .checkout-payment-details__row:first-child .checkout-payment-details__descr:first-child:after{position:absolute;content:"";height:2px;background:#eee;left:15px;right:15px}.checkout-payment-details__holder{margin:0 0 30px}.checkout-payment-details__link{margin-left:20px;vertical-align:bottom}.checkout-payment-details__paypal-email{margin:10px 0 0 34px;font-size:.9rem}.checkout-payment-details__paypal-email a{margin-left:10px}.checkout-payment-details__row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.checkout-payment-details__title{margin-bottom:20px}.checkout-payment-details__info{flex:0 0 100%;max-width:100%;flex:1 0 auto;margin-bottom:0}.checkout-payment-details__descr{flex:0 0 100%;max-width:100%}.checkout-payment-details__descr,.checkout-payment-details__descr_full,.checkout-payment-details__descr_large{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details__descr_full{flex:0 0 100%;max-width:100%}.checkout-payment-details__card-title{flex:0 0 100%;max-width:100%;margin-bottom:30px}.checkout-payment-details__card-heading{margin-bottom:10px}.checkout-payment-details__card-holder{margin-bottom:20px;flex:0 0 100%;max-width:100%}.checkout-payment-details__card-holder:last-of-type{margin-bottom:0}.checkout-payment-details__card{padding:20px 30px 20px 20px;background:#fff;border:1px solid #ccc}.checkout-payment-details__card .card-warning{flex-basis:100%}.checkout-payment-details__card-content{margin-bottom:20px}.checkout-payment-details__card-content .row .card__links{position:relative}.checkout-payment-details__card-content .row .card__links .link-secondary{display:block;text-decoration:none;font-weight:500}.checkout-payment-details__card-content .row .card__links .link-secondary:first-child{margin-bottom:15px}.checkout-payment-details__action .btn-primary,.checkout-payment-details__action .btn-secondary{display:block}.checkout-payment-details__action .btn-primary+.btn-secondary,.checkout-payment-details__action .btn-secondary+.btn-secondary{margin-top:20px}.checkout-payment-details__action .btn-primary+.rbn,.checkout-payment-details__action .btn-secondary+.rbn{margin-top:35px}.checkout-payment-details__card-info{margin:0;padding:0;line-height:1.375rem;color:#8b8b8b}.checkout-payment-details__card-info dt{color:#3e3e3e;font-weight:500}.checkout-payment-details__delete .delete-heading{margin:20px 0 10px;font-size:1.2rem}.checkout-payment-details__delete .btn{margin-right:20px;padding:8px 40px}.checkout-payment-details__delete .delete-warning{display:inline-block}.checkout-payment-details .form-row__col-field{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details .form-row__action{margin-top:20px}.checkout-payment-details .form-row__action .form-row__col-terms{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details .form-row__action .btn_full{min-width:145px}.checkout-payment-details .link-secondary{display:inline-block}.checkout-payment-details .form-row__action_normal{position:relative;margin-top:0;margin-bottom:0;padding-top:40px}.checkout-payment-details .form-row__action_normal:before{content:"";background:#ccc;position:absolute;top:0;left:15px;right:15px;height:1px}.checkout-payment-details .form-row__action_normal .form-row__col-btn,.checkout-payment-details__back-btn{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details__back-btn{font-size:1rem;font-weight:500;line-height:1.5rem;margin-bottom:20px}.checkout-payment-details__place-order_visible{display:flex!important}.checkout-payment-details__icon{pointer-events:none}.checkout-payment-card-ineligible__excuse{font-weight:700}.confirm-delete .rbn{visibility:hidden}.address-data{margin:0;padding:0;line-height:1.375rem}.address-data__address1,.address-data__address2,.address-data__city,.address-data__country,.address-data__name,.address-data__postal-code{display:block}.default-mark{margin-top:20px;text-align:center}a.pay-pal_wrap{text-decoration:none}a.pay-pal_wrap .paypal-logo{padding:0;display:inline-block;background:0 0;border:0}a.pay-pal_wrap .paypal-button>.paypal-logo{vertical-align:top;position:relative;top:50%;transform:translateY(-50%);text-align:left;height:17px;max-height:21px;min-height:14px}a.pay-pal_wrap .paypal-button>.paypal-logo_icon{width:16px}a.pay-pal_wrap .paypal-button>.paypal-logo_icon-text{width:60px}a.pay-pal_wrap .paypal-button .paypal-button-text{vertical-align:top;position:relative;top:50%;transform:translateY(-50%);text-align:left;display:inline-block;white-space:pre-wrap;margin-right:5px}a.pay-pal_wrap .paypal-button{border:1px solid transparent;border-radius:4px;position:relative;width:100%;padding:4px;box-sizing:border-box;vertical-align:top;cursor:pointer;overflow:hidden;text-align:center;background:#ffc439;color:#111;height:40px}a.pay-pal_wrap .paypal-button:hover{filter:brightness(.95)}a.pay-pal_wrap .paypal-button iframe{z-index:1!important}a.pay-pal_wrap .paypal-button iframe .paypal-button-row{height:50px;min-height:50px;max-height:50px}a.pay-pal_wrap .paypal-button-container{min-width:200px;max-width:300px;font-size:11px}@media (max-width:767px) and (min-width:321px){a.pay-pal_wrap .paypal-button-container{min-width:300px;max-width:500px;font-size:14px}a.pay-pal_wrap .paypal-button>.paypal-logo{height:21px;max-height:27px;min-height:18px}}@media (min-width:768px){.checkout-payment-details .checkout-payment-details__info-holder{display:flex;width:100%}.checkout-payment-details__descr{flex:0 0 77.77778%;max-width:77.77778%;margin-left:11.11111%}.checkout-payment-details__card-content .row .billing-address,.checkout-payment-details__card-content .row .payment-card{flex:0 0 37.5%;max-width:37.5%}.checkout-payment-details__card-content .card__links{flex:0 0 25%;max-width:25%}.checkout-payment-details__card-content .card__links .default-mark-full{position:absolute;bottom:0;left:45px}.checkout-payment-details__action .btn-primary,.checkout-payment-details__action .btn-secondary{min-width:130px}.checkout-payment-details .form-row__action_normal .form-row__col-btn,.checkout-payment-details .form-row__col-field{flex:0 0 40%;max-width:40%}.checkout-payment-details__back-btn{margin-left:11.11111%}}@media (min-width:992px){.checkout-payment-details__info{line-height:2.5rem}.checkout-payment-details .checkout-payment-details__col-btn_info{min-width:160px}.checkout-payment-details__descr{flex:0 0 55.55556%;max-width:55.55556%;margin-left:22.22222%}.checkout-payment-details__descr_large{margin-left:8.33333%;margin-right:8.33333%}.checkout-payment-details .form-row__save .form-row__field{margin-left:22.22222%}.checkout-payment-details__card{flex-wrap:wrap;margin-left:8.33333%;margin-right:8.33333%}.checkout-payment-details__card-content{flex:1 0 auto}.checkout-payment-details__action{border-left:1px solid #ccc;padding:0 0 0 30px;display:flex;flex-direction:column;justify-content:center}.checkout-payment-details .form-row__col-img{flex:0 0 33.33333%;max-width:33.33333%;margin-left:15px}.checkout-payment-details .form-row__action .form-row__col-btn{flex:0 0 22.22222%;max-width:22.22222%}.checkout-payment-details .form-row__action .form-row__col-btn:first-child{margin-left:22.22222%}.checkout-payment-details .form-row__action .form-row__col-terms{flex:0 0 33.33333%;max-width:33.33333%;padding-left:0;padding-right:0;margin-left:30px}.checkout-payment-details .form-row__action.paypal__row .form-row__col-btn{flex:0 0 33.33333%;max-width:33.33333%}.checkout-payment-details .form-row__action_custom:before{left:8.33333%;right:8.33333%}.checkout-payment-details__back-btn{margin-left:22.22222%}.signup-tradepro__modal-fields .tradepro-field .icon__camera{display:none}}@media (min-width:768px) and (max-width:991.98px){.checkout-payment-details__payment-method .checkout-payment-details__row:first-child .checkout-payment-details__descr:first-child:after{left:0;right:0}.checkout-payment-details__info{flex:0 0 44.44444%;max-width:44.44444%;margin-left:11.11111%}.checkout-payment-details .checkout-payment-details__col-btn_info{flex:0 0 33.33333%;max-width:33.33333%}.checkout-payment-details .form-row__save .form-row__field,.checkout-payment-details__card-title{margin-left:11.11111%}.checkout-payment-details__card{flex:0 0 83.33333%;max-width:83.33333%;margin-left:8.33333%}.checkout-payment-details .form-row__action .form-row__col-btn{flex:0 0 44.44444%;max-width:44.44444%;margin-left:11.11111%}.checkout-payment-details .form-row__action .form-row__col-terms{flex:0 0 44.44444%;max-width:44.44444%;padding-right:40px}.checkout-payment-details .form-row__action.paypal__row .form-row__col-btn{flex:0 0 100%;max-width:100%;margin-bottom:20px}.checkout-payment-details .form-row__action.paypal__row .form-row__col-terms{flex:0 0 100%;max-width:100%;text-align:center}.checkout-payment-details .form-row__action_custom:before{left:50px;right:50px}}@media (max-width:1199.98px){.checkout-payment-details__delete .btn{width:100%;margin:0 0 15px}}@media (max-width:991.98px){.checkout-payment-details__card-holder{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details__card-content .row .billing-address,.checkout-payment-details__card-content .row .payment-card{flex:0 0 100%;max-width:100%}.checkout-payment-details__card-content .row .card__links{flex:0 0 100%;max-width:100%;padding-top:15px}.checkout-payment-details__card-content .row .card__links .default-mark-full{position:absolute;right:0;bottom:-2px;left:inherit}.checkout-payment-details__action{flex:0 0 100%;max-width:100%;border-top:1px solid #ccc;padding:30px 0;text-align:center}.checkout-payment-details .form-row__col-img{flex:0 0 66.66667%;max-width:66.66667%}.confirm-delete,.signup-tradepro__modal-fields .tradepro-field .icon__paperclip{display:none}}@media (max-width:767.98px){.checkout-payment-details__info{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;margin-bottom:20px}.checkout-payment-details .checkout-payment-details__info-holder{flex:0 0 100%;max-width:100%}.checkout-payment-details .checkout-payment-details__col-btn_info{flex:0 0 100%;max-width:100%}.checkout-payment-details .checkout-payment-details__col-btn_info,.checkout-payment-details__card-title{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-payment-details__card{flex:0 0 100%;max-width:100%;padding:20px}.checkout-payment-details__card-content .row .card__links .default-mark-full{position:absolute;right:15px}.checkout-payment-details .form-row__col-field{flex:0 0 50%;max-width:50%}.checkout-payment-details .form-row__action .form-row__col-btn{flex:0 0 100%;max-width:100%;margin-bottom:20px}.checkout-payment-details .form-row__action .form-row__col-terms{flex:0 0 100%;max-width:100%;text-align:center}.checkout-payment-details .form-row__action_custom:before{left:15px;right:15px}}.signup-tradepro__modal-info{font-size:1rem;padding:15px 0}.signup-tradepro__modal-info .tradepro-id-counter_wrap{display:inline-block;font-weight:700}.signup-tradepro__modal-fields{margin-bottom:30px}.signup-tradepro__modal-fields .form-row{margin-bottom:10px}.signup-tradepro__modal-fields .form-row__field{margin-top:-12px}.signup-tradepro__modal-fields .tradepro-field{font-size:1rem;padding:15px 0;border-bottom:1px solid #eee;position:relative}.signup-tradepro__modal-fields .tradepro-field:hover{border-bottom:1px solid #0277bd;cursor:pointer}.signup-tradepro__modal-fields .tradepro-field:hover .icon__camera,.signup-tradepro__modal-fields .tradepro-field:hover .icon__edit,.signup-tradepro__modal-fields .tradepro-field:hover .icon__link,.signup-tradepro__modal-fields .tradepro-field:hover .icon__paperclip,.signup-tradepro__modal-fields .tradepro-field:hover .icon__pencil{color:#3e3e3e}.signup-tradepro__modal-fields .tradepro-field .icon__camera,.signup-tradepro__modal-fields .tradepro-field .icon__edit,.signup-tradepro__modal-fields .tradepro-field .icon__link,.signup-tradepro__modal-fields .tradepro-field .icon__paperclip,.signup-tradepro__modal-fields .tradepro-field .icon__pencil{font-size:1.25rem;color:#0277bd;margin-right:10px}.signup-tradepro__modal-fields .tradepro-field .icon__camera,.signup-tradepro__modal-fields .tradepro-field .icon__camera+a{vertical-align:middle}.signup-tradepro__modal-fields .tradepro-field .tradepro-attachment{position:absolute;left:0;opacity:0;cursor:pointer}.signup-tradepro__modal-fields .tradepro-field img{margin-right:10px;width:30px;height:30px}.signup-tradepro__modal-fields .tradepro-field .tradepro-field{border:0;padding:0}@media (min-width:768px){.signup-tradepro__modal-fields .btn{width:120px}}.signup-tradepro__modal-action{padding-top:10px;display:none}.signup-tradepro__modal-action input:hover{border:1px solid #0277bd}.signup-tradepro__modal-buttons .row{margin:0}.signup-tradepro__modal-buttons .button-done{margin-right:15px}@media (max-width:767.98px){.signup-tradepro__modal-action .form-row{padding-right:0}.signup-tradepro__modal-buttons{position:relative;width:100%;min-height:1px;flex:0 0 100%;max-width:100%;padding:0}.signup-tradepro__modal-buttons .button-cancel,.signup-tradepro__modal-buttons .button-delete,.signup-tradepro__modal-buttons .button-done{position:relative;width:100%;min-height:1px;flex:0 0 50%;max-width:50%}.signup-tradepro__modal-buttons .button-cancel button,.signup-tradepro__modal-buttons .button-delete button,.signup-tradepro__modal-buttons .button-done button{width:100%}.signup-tradepro__modal-buttons .button-done{padding-left:0;padding-right:10px;margin-right:0}.signup-tradepro__modal-buttons .button-cancel,.signup-tradepro__modal-buttons .button-delete{padding-right:0;padding-left:10px}}.signup-tradepro__modal-trigger{color:#3e3e3e;text-decoration:none}.signup-tradepro__modal-trigger:hover{text-decoration:none}@media (min-width:768px){.id-type-signup .modal-box__inner-columns{flex:0 0 90%;max-width:90%}}.id-type-signup .modal-box__inner-columns .notification_warning{margin:20px 0 0}.id-type .modal-content .modal-header .modal-title{margin-bottom:0}.id-capture{padding-bottom:30px}.capture__heading{font-size:1rem;padding:10px 0}.capture__heading .icon__camera{font-size:1.25rem;color:#0277bd;margin-right:10px}.capture__img{padding:0 30px}.capture__img img{width:100%}.capture__info{margin-top:1rem;text-align:center}.capture__actions{padding:0 30px}.capture__actions .btn{width:100%}.capture__actions .btn:last-of-type{margin-top:1rem}.capture .modal-header .modal-title{margin-bottom:0!important}.page_checkout-confirmation-new .checkout-tradepro,.page_checkout-tradePro .checkout-tradepro{margin-top:40px;padding-bottom:30px}@media (max-width:575.98px){.checkout-payment-details,.page_checkout-confirmation-new .checkout-tradepro,.page_checkout-tradePro .checkout-tradepro{margin-right:-15px;margin-left:-15px}}.page_checkout-confirmation-new .checkout-tradepro .checkout-tradepro__row:first-child .checkout-tradepro__descr:first-child,.page_checkout-tradePro .checkout-tradepro .checkout-tradepro__row:first-child .checkout-tradepro__descr:first-child{padding-bottom:10px}.page_checkout-confirmation-new .checkout-tradepro .checkout-tradepro__row:nth-child(2) .checkout-tradepro__descr .form-row:last-of-type:after,.page_checkout-tradePro .checkout-tradepro .checkout-tradepro__row:nth-child(2) .checkout-tradepro__descr .form-row:last-of-type:after{position:absolute;content:"";height:1px;background:#ccc;left:15px;right:15px;bottom:0}.page_checkout-confirmation-new .checkout-tradepro__paragraph,.page_checkout-tradePro .checkout-tradepro__paragraph{font-size:.875rem;line-height:1.57143}.page_checkout-confirmation-new .checkout-tradepro__row,.page_checkout-tradePro .checkout-tradepro__row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.page_checkout-confirmation-new .checkout-tradepro__title,.page_checkout-tradePro .checkout-tradepro__title{margin:10px 0;font-size:1.25rem}.page_checkout-confirmation-new .checkout-tradepro__descr,.page_checkout-tradePro .checkout-tradepro__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}@media (min-width:768px){.page_checkout-confirmation-new .checkout-tradepro__descr,.page_checkout-tradePro .checkout-tradepro__descr{flex:0 0 77.77778%;max-width:77.77778%;margin-left:11.11111%}}@media (min-width:992px){.page_checkout-confirmation-new .checkout-tradepro__descr,.page_checkout-tradePro .checkout-tradepro__descr{flex:0 0 55.55556%;max-width:55.55556%;margin-left:22.22222%}}.page_checkout-confirmation-new .checkout-tradepro__descr .warning-required,.page_checkout-tradePro .checkout-tradepro__descr .warning-required{font-size:.875rem;line-height:1.57143;font-weight:400}@media (max-width:767.98px){.page_checkout-confirmation-new .checkout-tradepro__descr,.page_checkout-tradePro .checkout-tradepro__descr{padding-left:25px;padding-right:25px}.page_checkout-confirmation-new .checkout-tradepro__descr .warning-required,.page_checkout-tradePro .checkout-tradepro__descr .warning-required{margin:20px 0}}.page_checkout-confirmation-new .checkout-tradepro__descr .warning-required:first-of-type,.page_checkout-tradePro .checkout-tradepro__descr .warning-required:first-of-type{font-size:.75rem;margin-bottom:10px;font-weight:500}.page_checkout-confirmation-new .checkout-tradepro__descr .row-title .ddn,.page_checkout-tradePro .checkout-tradepro__descr .row-title .ddn{width:160px}.page_checkout-confirmation-new .checkout-tradepro__descr .tradepro-terms .warning-required,.page_checkout-tradePro .checkout-tradepro__descr .tradepro-terms .warning-required{font-size:inherit;font-weight:400}.page_checkout-confirmation-new .checkout-tradepro__descr h3:first-of-type,.page_checkout-tradePro .checkout-tradepro__descr h3:first-of-type{margin-bottom:20px}.page_checkout-confirmation-new .checkout-tradepro__descr h3:first-of-type+.warning-required,.page_checkout-tradePro .checkout-tradepro__descr h3:first-of-type+.warning-required{font-size:.75rem;font-weight:500}.page_checkout-confirmation-new .checkout-tradepro__descr .signup-tradepro__title,.page_checkout-tradePro .checkout-tradepro__descr .signup-tradepro__title{font-size:1.25rem;margin-top:1rem}.page_checkout-confirmation-new .checkout-tradepro__descr .form-row.chosen-proofs-error,.page_checkout-tradePro .checkout-tradepro__descr .form-row.chosen-proofs-error{margin:0}.page_checkout-confirmation-new .checkout-tradepro__descr .form-row.chosen-proofs-error .form-row__error,.page_checkout-tradePro .checkout-tradepro__descr .form-row.chosen-proofs-error .form-row__error{padding-left:0}.page_checkout-confirmation-new .checkout-tradepro__card-title,.page_checkout-tradePro .checkout-tradepro__card-title{margin:30px 0 20px}.page_checkout-confirmation-new .checkout-tradepro__card-holder,.page_checkout-tradePro .checkout-tradepro__card-holder{flex:0 0 100%;max-width:100%}@media (max-width:991.98px){.page_checkout-confirmation-new .checkout-tradepro__card-holder,.page_checkout-tradePro .checkout-tradepro__card-holder{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}}.page_checkout-confirmation-new .checkout-tradepro__card,.page_checkout-tradePro .checkout-tradepro__card{flex:0 0 100%;max-width:100%;position:relative;width:100%;min-height:1px;padding:20px;margin-bottom:20px;border:1px solid #ccc}.page_checkout-confirmation-new .checkout-tradepro__card-info,.page_checkout-tradePro .checkout-tradepro__card-info{display:flex;flex-wrap:wrap;margin:0;padding:0;line-height:1.375rem;color:#8b8b8b}.page_checkout-confirmation-new .checkout-tradepro__card-info dt,.page_checkout-tradePro .checkout-tradepro__card-info dt{flex:0 0 50%;max-width:50%;color:#3e3e3e;font-weight:700}@media (max-width:767.98px){.page_checkout-confirmation-new .checkout-tradepro__card-info dt,.page_checkout-tradePro .checkout-tradepro__card-info dt{flex:0 0 100%;max-width:100%}}.page_checkout-confirmation-new .checkout-tradepro__card-info dd,.page_checkout-tradePro .checkout-tradepro__card-info dd{flex:0 0 50%;max-width:50%;text-align:right}.page_checkout-confirmation-new .checkout-tradepro__card-info dd:last-child,.page_checkout-tradePro .checkout-tradepro__card-info dd:last-child{margin-bottom:0}.page_checkout-confirmation-new .checkout-tradepro__info,.page_checkout-tradePro .checkout-tradepro__info{font-size:1.25rem}.page_checkout-confirmation-new .checkout-tradepro__learn-more,.page_checkout-tradePro .checkout-tradepro__learn-more{display:inline-block;padding:15px 0}.page_checkout-confirmation-new .checkout-tradepro__attach_id,.page_checkout-tradePro .checkout-tradepro__attach_id{margin:15px 0}.page_checkout-confirmation-new .checkout-tradepro__attach_first-form,.page_checkout-tradePro .checkout-tradepro__attach_first-form{margin:15px 0 20px}.page_checkout-confirmation-new .checkout-tradepro__attach .btn-primary,.page_checkout-tradePro .checkout-tradepro__attach .btn-primary{padding:0 10px;margin-right:10px}.page_checkout-confirmation-new .checkout-tradepro__attach .btn-primary .btn__text,.page_checkout-tradePro .checkout-tradepro__attach .btn-primary .btn__text{font-size:1.75rem}.page_checkout-confirmation-new .checkout-tradepro__attach a,.page_checkout-tradePro .checkout-tradepro__attach a{font-size:1rem}@media (max-width:767.98px){.page_checkout-confirmation-new .checkout-tradepro__card-info dd,.page_checkout-tradePro .checkout-tradepro__card-info dd{flex:0 0 100%;max-width:100%;text-align:left}.page_checkout-confirmation-new .checkout-tradepro__info,.page_checkout-tradePro .checkout-tradepro__info{font-size:1.125rem}.page_checkout-confirmation-new .checkout-tradepro .row-title .form-row__field,.page_checkout-tradePro .checkout-tradepro .row-title .form-row__field{flex:0 0 100%;max-width:100%}.page_checkout-confirmation-new .checkout-tradepro .form-row,.page_checkout-tradePro .checkout-tradepro .form-row{padding:0}}@media (min-width:768px) and (max-width:991.98px){.page_checkout-confirmation-new .checkout-tradepro .row-title .form-row__field,.page_checkout-tradePro .checkout-tradepro .row-title .form-row__field{flex:0 0 44.44444%;max-width:44.44444%}}@media (min-width:992px){.page_checkout-confirmation-new .checkout-tradepro .row-title .form-row__field,.page_checkout-tradePro .checkout-tradepro .row-title .form-row__field{flex:0 0 40%;max-width:40%}}.page_checkout-confirmation-new .checkout-tradepro .form-row__action,.page_checkout-tradePro .checkout-tradepro .form-row__action{padding-top:0}.page_checkout-confirmation-new .checkout-tradepro .form-row__action:before,.page_checkout-tradePro .checkout-tradepro .form-row__action:before{content:none}.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn{min-width:190px}@media (min-width:768px) and (max-width:991.98px){.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn{flex:0 0 50%;max-width:50%}.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn .btn,.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn .btn-secondary,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn .btn,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn .btn-secondary{padding-left:0;padding-right:0;max-width:145px}.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn .btn-secondary,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn .btn-secondary{margin-left:50px}.page_checkout-confirmation-new .checkout-tradepro .form-row__action_custom:before,.page_checkout-confirmation-new .checkout-tradepro .form-row__action_device-customized:before,.page_checkout-tradePro .checkout-tradepro .form-row__action_custom:before,.page_checkout-tradePro .checkout-tradepro .form-row__action_device-customized:before{left:65px;right:65px}}.page_checkout-confirmation-new .checkout-tradepro .form-row__action_custom,.page_checkout-confirmation-new .checkout-tradepro .form-row__action_device-customized,.page_checkout-tradePro .checkout-tradepro .form-row__action_custom,.page_checkout-tradePro .checkout-tradepro .form-row__action_device-customized{margin-top:20px}@media (min-width:992px){.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn{flex:0 0 22.22222%;max-width:22.22222%}.page_checkout-confirmation-new .checkout-tradepro .form-row__action .form-row__col-btn:first-child,.page_checkout-tradePro .checkout-tradepro .form-row__action .form-row__col-btn:first-child{margin-left:22.22222%}.page_checkout-confirmation-new .checkout-tradepro .form-row__action_custom:before,.page_checkout-confirmation-new .checkout-tradepro .form-row__action_device-customized:before,.page_checkout-tradePro .checkout-tradepro .form-row__action_custom:before,.page_checkout-tradePro .checkout-tradepro .form-row__action_device-customized:before{left:8.33333%;right:8.33333%}.page_checkout-confirmation-new .form-row__continue .form-row__col-btn,.page_checkout-tradePro .form-row__continue .form-row__col-btn{padding-left:25%}}.page_checkout-confirmation-new .checkout-tradepro .choose-id,.page_checkout-tradePro .checkout-tradepro .choose-id{display:inline-block}.page_checkout-confirmation-new .checkout-tradepro .choose-id .actions__link,.page_checkout-tradePro .checkout-tradepro .choose-id .actions__link{text-decoration:underline;font-weight:500;font-size:1rem}.page_checkout-confirmation-new .checkout-tradepro .choose-id .btn,.page_checkout-tradePro .checkout-tradepro .choose-id .btn{color:#fff;margin-right:10px}.page_checkout-confirmation-new .checkout-tradepro .choose-id .btn:hover .btn,.page_checkout-confirmation-new .checkout-tradepro .choose-id:hover .btn,.page_checkout-tradePro .checkout-tradepro .choose-id .btn:hover .btn,.page_checkout-tradePro .checkout-tradepro .choose-id:hover .btn{background-color:#fff;border-color:#0277bd;color:#0277bd}.page_checkout-confirmation-new .checkout-tradepro__paragraph.warning-required,.page_checkout-tradePro .checkout-tradepro__paragraph.warning-required{font-size:.875rem!important;margin-top:0;font-weight:400!important}.page_checkout-confirmation-new .checkout-tradepro .icon__notification,.page_checkout-tradePro .checkout-tradepro .icon__notification{position:absolute;right:0;color:#67a509}.page_checkout-confirmation-new .checkout-tradepro .icon__notification svg,.page_checkout-tradePro .checkout-tradepro .icon__notification svg{vertical-align:middle}.page_checkout-confirmation-new .checkout-tradepro .chosen-form,.page_checkout-tradePro .checkout-tradepro .chosen-form{position:relative;display:flex;justify-content:space-between;line-height:30px}.page_checkout-confirmation-new .checkout-tradepro .chosen-form img,.page_checkout-tradePro .checkout-tradepro .chosen-form img{width:30px;height:30px}.page_checkout-confirmation-new .checkout-tradepro .chosen-form-container .chosen-form-wrap,.page_checkout-tradePro .checkout-tradepro .chosen-form-container .chosen-form-wrap{display:table}.page_checkout-confirmation-new .checkout-tradepro .chosen-form-container .chosen-form-wrap .form-row__error,.page_checkout-tradePro .checkout-tradepro .chosen-form-container .chosen-form-wrap .form-row__error{margin-top:0;padding:5px 0}.page_checkout-confirmation-new .checkout-tradepro .chosen-form-container .chosen-form-wrap.chosen-proofs-error,.page_checkout-tradePro .checkout-tradepro .chosen-form-container .chosen-form-wrap.chosen-proofs-error{margin:0;display:flex}.page_checkout-confirmation-new .checkout-tradepro .chosen-form .icon__notification,.page_checkout-tradePro .checkout-tradepro .chosen-form .icon__notification{position:inherit;top:3px;min-width:24px}.page_checkout-confirmation-new .form-bg,.page_checkout-tradePro .form-bg{padding-top:30px}.page_checkout-confirmation-new .warning-required,.page_checkout-tradePro .warning-required{font-weight:400;margin:10px 0}.page_checkout-confirmation-new .tradepro-terms,.page_checkout-tradePro .tradepro-terms{margin-top:15px}@media (min-width:768px) and (max-width:991.98px){.page_checkout-confirmation-new .tradepro-submit,.page_checkout-tradePro .tradepro-submit{margin-left:25%}}@media (max-width:767.98px){.page_checkout-confirmation-new .form-row__continue,.page_checkout-tradePro .form-row__continue{display:none}.page_checkout-confirmation-new .right-aside .form-row__continue,.page_checkout-tradePro .right-aside .form-row__continue{display:block}}@media (min-width:768px){.page_checkout-confirmation-new .checkout-tradepro .form-row__action_custom .form-row__col-btn:first-child,.page_checkout-tradePro .checkout-tradepro .form-row__action_custom .form-row__col-btn:first-child{margin-left:0}.page_checkout-confirmation-new .checkout-tradepro .tradepro-submit,.page_checkout-tradePro .checkout-tradepro .tradepro-submit{width:260px}.page_checkout-confirmation-new .form-row__continue .form-row__col-btn,.page_checkout-tradePro .form-row__continue .form-row__col-btn{flex:0 0 50%;max-width:50%}.page_checkout-confirmation-new .form-row__continue .form-row__col-btn .tradepro-shop-continue,.page_checkout-tradePro .form-row__continue .form-row__col-btn .tradepro-shop-continue{max-width:160px}.page_checkout-confirmation-new .right-aside .form-row__continue,.page_checkout-tradePro .right-aside .form-row__continue{display:none}.page_checkout-confirmation-new .container .form-row__action:last-child,.page_checkout-tradePro .container .form-row__action:last-child{padding-top:0}.page_checkout-confirmation-new .container .form-row__action:last-child:before,.page_checkout-tradePro .container .form-row__action:last-child:before{content:none}.page_split-orders .container .row .right-aside{top:0;margin-bottom:100px}}.page_split-orders .product-delivery-table.product-supplier-delivery{border-left:0;border-right:0}.page_split-orders .product-delivery-table.product-supplier-delivery .shopping-card-container{border-left:1px solid #ccc;border-right:1px solid #ccc}.page_split-orders .product-delivery-table.product-supplier-delivery .shopping-card-heading{display:block}.page_split-orders .product-delivery-table.product-supplier-delivery .checkout__text-highlighted{display:inline-block}.payments-checkout{margin-left:0;margin-bottom:10px}.payments-checkout__list{display:flex;align-items:center;justify-content:center;gap:15px;font-size:0;padding:0;margin:0;white-space:nowrap;flex-wrap:wrap;max-width:240px}.payments-checkout__item{display:inline-block;list-style-type:none}.payments-checkout__image{height:30px;width:48px}.payments-checkout-klarna{display:flex;align-items:center;height:30px;width:48px}.payments-checkout__title{text-align:center;color:#0a3055;font-size:1rem;font-weight:500;line-height:1.5rem;margin-bottom:8px}.summary__payment .payments-checkout{margin-bottom:0;margin-left:0;flex:1}.summary__payment .payments-checkout__list{justify-content:center;gap:12px}.summary__payment .payments-checkout__list--small{flex-wrap:wrap;padding:0 25px}.summary__payment .payments-checkout__image{height:22px;width:36px}.summary__payment .payments-checkout-klarna{height:22px;width:38px}.summary__payment .footer-checkout-holder--payways .payments-checkout__list{gap:8px}.basket .summary__payment.footer-checkout .payments-checkout__list--small{padding:0 40px}@media (min-width:768px){.payments-checkout{margin-bottom:0;margin-left:15px}.payments-checkout__list{flex-wrap:nowrap;max-width:100%}.payments-checkout-klarna{height:30px;width:50px}}body.page_checkout,html{height:100%}body.page_checkout main{min-height:calc(100% - 160px)}.checkout-heading{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%;margin-bottom:30px}.checkout-heading h3{margin-bottom:0}.checkout-heading__info-block{display:flex;flex-wrap:wrap;margin:10px -15px}.checkout-heading__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.checkout-heading__paragraph{margin-bottom:0}.checkout-heading__notify{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;margin-top:15px;margin-bottom:-20px}.checkout__text-highlighted,.supply-info__header-remark{color:#8b8b8b}.supply-info__info-block{display:flex;flex-wrap:wrap;margin:30px -15px 10px}.supply-info__time{flex:0 0 33.33333%;max-width:33.33333%;position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.supply-info__time-inner{padding:10px 50px;background:#f8f8f8;text-align:center}.supply-info__descr{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 66.66667%;max-width:66.66667%}.supply-info .supplier-delivery-heading .supply-info__time{display:none}.supply-info .supplier-delivery-heading .supply-info__descr{flex:0 0 100%;max-width:100%}.supply-info__paragraph{margin-bottom:0}.supply-info__remark{font-size:.75rem;line-height:.875rem;color:#8b8b8b;margin-top:5px}.supply-info__remark_mobile{padding-left:15px;padding-right:15px;line-height:1.25rem}.checkout-address-time{display:flex;flex-wrap:wrap;align-items:center}.checkout-address-time__address-wrap{border-left:1px solid #ccc;height:100%;width:50%;padding:0 30px}.checkout-address-time__address{font-size:.875rem;line-height:1.375rem}.checkout-address-time__time-wrap{font-weight:700;width:50%;color:#8b8b8b;text-align:center}.checkout-address-time__time-regular{font-size:1.125rem;line-height:1.5rem;font-weight:700;text-transform:uppercase}.checkout-address-time__time-primary{font-size:2.875rem;line-height:2.875rem;font-weight:700}.checkout-address-time__time-additional{font-weight:700}.checkout-address-time__undefined-time{color:#ccc;font-weight:500;line-height:1.375rem;padding:0 15px}.checkout-address-time_sidebar{width:100%}.checkout-address-time_sidebar .checkout-address-time__time-regular{font-size:1.125rem;font-weight:700;line-height:1.5rem}.checkout-address-time_sidebar .checkout-address-time__time-primary{font-size:2.875rem;line-height:2.875rem}.checkout-address-time_sidebar .checkout-address-time__time-additional{font-size:.625rem;line-height:1rem}.checkout-address-time_sidebar .checkout-address-time__address-wrap{padding:0 5px 0 15px}.checkout-address-time_sidebar .checkout-address-time__address{font-size:.875rem;line-height:1.375rem}.checkout-continue-shopping_mobile{width:100%}.order-line__img-link,.order-line__title_link{display:none!important}.order-line__img-static,.order-line__title_static{display:block!important}.address-list-wrap{height:180px;border:1px solid #ccc;border-radius:3px;background:#fff;overflow-y:scroll;padding:2px 5px;margin-bottom:20px}.address-list-item:hover{background:#0277bd;color:#fff;cursor:pointer}.checkout-address-select{display:none}.notification_reminder{margin:0 15px 1.5rem}@media (min-width:992px){.page_split-orders .container .row .right-aside{top:0;margin-bottom:78px}.supply-info__remark_mobile{display:none}}@media (min-width:992px) and (max-width:1199.98px){.supply-info__time-inner{padding:10px 25px}}@media (max-width:1199.98px){.checkout-address-time__address-wrap{padding:0 20px;width:55%}.checkout-address-time__time-wrap{width:45%}}@media (min-width:768px){.checkout-continue-shopping_mobile,.content .checkout-widget.delivery-widget{display:none}}@media (min-width:768px) and (max-width:991.98px){.supply-info__info-block{margin-bottom:20px}.supply-info__time{flex:0 0 50%;max-width:50%}.supply-info__time-inner{padding:20px 25px}.supply-info__descr{flex:0 0 50%;max-width:50%}.checkout-address-time_sidebar .checkout-address-time__address{font-size:.75rem;line-height:1.25rem}}@media (max-width:991.98px){.checkout-heading{margin-bottom:20px}.checkout-heading__notify{margin-bottom:0}.supply-info__remark_desktop{display:none}}@media (max-width:767.98px){.checkout-address-time_sidebar .checkout-address-time__time-regular{font-weight:500}.checkout-heading__info-block{margin-bottom:0}.checkout__text-highlighted{display:block}.supply-info__info-block{margin-top:20px;margin-bottom:0}.supply-info__time{flex:0 0 100%;max-width:100%;margin-bottom:10px}.supply-info__time-inner{padding:10px 65px}.supply-info__descr{flex:0 0 100%;max-width:100%}.checkout-continue-shopping,aside .checkout-widget.delivery-widget{display:none}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.consignment-info{display:flex;align-items:center;margin-top:12px;margin-bottom:0;font-weight:400;font-size:.75rem;line-height:1rem;color:#3e3e3e}.consignment-info__text{margin-bottom:0}.consignment-info .icon-info-component{cursor:pointer;font-size:.675rem;width:16px;height:16px;display:inline-flex;align-items:center;justify-content:center}@media (min-width:768px){.consignment-info{margin-top:16px}}@media (min-width:992px){.consignment-info{margin-top:0;margin-left:16px;font-size:.875rem}}.shipment-details{margin-top:12px}.shipment-details .shipment{display:flex;margin-bottom:12px}.shipment-details .shipment-icon{display:flex;align-items:center;justify-content:center;background:#0a3055;width:32px;height:32px;border-radius:50px}.shipment-details .shipment-icon .icon{color:#fff;font-size:1rem}.shipment-details .shipment__content{display:flex;flex-direction:column;flex:1;margin-left:8px}.shipment-details .shipment__content>:not(:first-child){margin-top:4px}.shipment-details .shipment__count,.shipment-details .shipment__info,.shipment-details .shipment__title{font-size:.75rem;line-height:1rem;color:#666}.shipment-details .shipment__title{font-weight:700;color:#3e3e3e;margin-bottom:0}.shipment-details .shipment .track-link{text-decoration:none;font-weight:500;font-size:.75rem;line-height:1rem;color:#0277bd;max-width:max-content}.shipment-details .shipment .track-link:hover{text-decoration:underline}@media (min-width:768px){.shipment-details{margin-top:16px;display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;grid-gap:16px}.shipment-details .shipment{margin-bottom:0}}@media (min-width:1200px){.shipment-details{-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;grid-gap:20px 16px}}.menu{display:flex;padding-top:24px;padding-bottom:24px;margin-right:-15px;margin-left:-15px}.menu__list{padding-left:0;list-style-type:none;margin-bottom:0;width:100%}.menu__header{justify-content:center;width:100%;padding:12px 0}.menu__header,.menu__title{display:flex;align-items:center}.menu__title{margin-bottom:0;font-size:1.125rem;font-weight:500;line-height:1.375rem;margin-left:8px}.menu__total{display:flex;align-items:center;justify-content:center;background:#0a3055;color:#fff;border-radius:50px;width:18px;height:18px;font-size:.75rem;font-weight:500;line-height:1rem;margin-left:10px}.menu__description{margin-bottom:0;display:none}.menu__item{position:relative}.menu__item+.menu__item:before{content:"";border-top:1px solid #ccc;position:absolute;top:0;left:50%;width:calc(100% - 30px);transform:translate(-50%,-50%)}.menu__link{padding:0 15px;color:#0a3055;display:flex;align-items:center}.menu__link,.menu__link:hover{text-decoration:none}.menu__link:focus{background:#f4f9fe}.menu__link .icon{color:#99b5cf;font-size:1.6rem}.menu__link .icon-arrow{font-size:1.6rem;color:#0277bd}.menu__icon{width:32px;height:32px;display:flex;align-items:center;justify-content:center}.menu__icon--arrow{margin-left:auto}@media (min-width:576px){.consignment-info{grid-area:consignmentInfo}.shipment-details{grid-area:shipment}.shipment-details .shipment:last-child{margin-bottom:0}.menu{padding-top:32px;padding-bottom:32px;margin:0}.menu__header{padding-right:8px;padding-left:8px}.menu__item+.menu__item:before{width:100%}.menu__link{padding-right:0;padding-left:0}}@media (min-width:768px){.menu__header{padding:0}.menu__list{display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;grid-auto-rows:1fr;grid-gap:24px}.menu__item{padding:0;display:flex}.menu__item+.menu__item{border-top:0}.menu__item+.menu__item:before{content:none}.menu__link{padding:24px;flex-direction:column;align-items:flex-start;position:relative;border:1px solid #ccc;border-radius:4px;width:100%}.menu__link:focus{background:initial}.menu__link:focus,.menu__link:hover{border-color:#0277bd;color:#0a3055}.menu__description{display:block;margin-top:16px;font-size:.875rem;font-weight:400;line-height:1.375rem;color:#3e3e3e}.menu__icon{width:48px;height:48px}.menu__icon .icon{font-size:2rem;height:auto}.menu__total{min-width:24px;height:24px}}@media (min-width:992px){.menu{padding-top:40px;padding-bottom:40px}.menu__list{-ms-grid-columns:(1fr)[3];grid-template-columns:repeat(3,1fr)}}.contacts{display:flex;flex-direction:column;margin-top:16px}.contacts__item{background:#fff;padding:16px;border-radius:4px}.contacts__item+.contacts__item{margin-top:16px}.contacts__header,.contacts__icon{display:flex;align-items:center}.contacts__icon{width:32px;height:32px;justify-content:center;margin-right:12px}.contacts__icon .icon{color:#99b5cf;font-size:1.35rem;height:auto}.contacts__title{font-size:1.125rem;font-style:normal;font-weight:500;line-height:1.5rem;margin-bottom:0}.contacts__description{font-size:.875rem;font-style:normal;font-weight:400;line-height:1.375rem;margin-top:8px;margin-bottom:0}.contacts__links{list-style-type:none;padding-left:0;margin-top:16px;margin-bottom:0}.contacts__links .link{font-weight:500}.contacts__links li+li{margin-top:16px}.contacts__link{margin-top:16px;font-weight:500;text-decoration:none;display:flex;align-items:center}.contacts .btn{margin-top:16px}@media (min-width:576px){.contacts{margin-top:0}}@media (min-width:768px){.contacts{flex-direction:row;grid-gap:24px}.contacts__item{flex:1;justify-content:space-between;display:flex;flex-direction:column;align-items:flex-start}.contacts__item+.contacts__item{margin-top:0}.contacts__description{margin-top:16px;margin-bottom:auto}.contacts__icon{width:48px;height:48px}.contacts__icon .icon{font-size:2rem}}@media (min-width:992px){.contacts__item{padding:24px}}.account-nav{padding:8px 0}.account-nav--old-pages{position:relative}.account-nav--old-pages .accordion{width:100%;position:absolute}.account-nav__toggle{padding:0;position:relative}.account-nav__icon{width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-right:8px}.account-nav__icon .icon{font-size:1rem;color:#99b5cf}.account-nav__icon .custom-icon{width:auto;font-size:.65rem;height:auto}.account-nav__icon .custom-icon path{fill:#99b5cf}.account-nav__list{padding-left:0;list-style-type:none;margin-bottom:0}.account-nav__link{display:flex;font-weight:500;font-size:.875rem;line-height:1.375rem;color:#3e3e3e;text-decoration:none;padding:8px 16px;align-items:center}.account-nav__link:focus,.account-nav__link:hover{color:#0277bd;text-decoration:none}.account-nav__link.active{background:#f4f9fe}.account-nav__link.active:focus,.account-nav__link.active:hover{background:#fff}.account-nav .rewards{width:20px;height:20px;border-radius:50px;background:#0a3055;color:#fff;margin-left:8px;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:500;line-height:1rem}.account-nav .accordion__header{padding:8px 8px 8px 16px;display:flex;align-items:center}.account-nav .accordion__header-text{font-weight:500;font-size:1rem;line-height:1.5rem;color:#3e3e3e}.account-nav .accordion__header-icon{margin-left:auto;position:relative}.account-nav .accordion__content{position:relative;padding:0}.account-nav .accordion__holder{padding:0;box-shadow:0 0 8px rgba(0,0,0,.12);background:#fff;border-radius:4px;z-index:5;width:100%;position:absolute;top:8px;left:0}@media (min-width:992px){.account-nav{display:none}}.active-orders{margin-top:24px}.active-orders__title{font-weight:500;font-size:1.25rem;line-height:1rem;color:#0a3055;margin-bottom:0}.active-orders__item{margin-top:16px;padding:16px;background:#fff;border-radius:4px}.active-orders .view-more{display:flex;align-items:center;justify-content:center;padding-top:12px;border-top:1px solid #ccc}.active-orders .view-more .link{font-weight:500;font-size:.875rem;line-height:1.375rem;text-align:center;color:#0277bd;text-decoration:none;display:flex;justify-content:center;align-items:center}.active-orders .view-more .link span:hover{text-decoration:underline}.active-orders .view-more .link .icon{margin-left:8px;font-size:1rem}.active-orders .btn--all-orders{margin-top:16px}.order-header{display:flex;justify-content:space-between;align-items:center;padding:0}.order-header__title{margin-bottom:0;font-size:1.125rem;line-height:1.5rem}.order-status{background:rgba(2,119,189,.1);padding:2px 8px;border-radius:50px;font-weight:500;display:flex;align-items:center}.order-status .icon{font-size:1rem;height:auto;color:#0277bd;margin-right:8px}.order-status.completed{background:rgba(103,165,9,.1)}.order-status.completed .icon{color:#67a509}.order-status.cancelled{background:rgba(207,0,15,.1)}.order-status.cancelled .icon{color:#cf000f}.order-details{margin-top:8px}.order-details__summary{display:flex;align-items:baseline}.order-details__price{margin-bottom:0;font-weight:700;font-size:1.125rem;line-height:1.5rem;color:#0a3055}.order-details__vat{margin-left:5px;line-height:1rem}.order-details__count{position:relative;padding-left:8px;margin-left:8px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#3e3e3e}.order-details__count:before{content:"";height:100%;position:absolute;max-height:16px;left:0;top:50%;width:1px;background:#ccc;transform:translateY(-50%)}.order-details__date{display:block;margin-top:4px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#3e3e3e}@media (min-width:576px){.active-orders__header{display:flex;justify-content:space-between;align-items:center}.active-orders__header .btn--all-orders{margin-top:0;max-width:125px}.active-orders__item{display:-ms-grid;display:grid;grid-template-areas:"header viewMore" "orderDetails orderDetails" "consignmentInfo consignmentInfo" "shipment shipment"}.active-orders__item .order-header{flex-direction:row-reverse;justify-content:flex-end;grid-area:header;-ms-grid-row:1;-ms-grid-column:1}.active-orders__item .order-header__title{margin-left:16px;font-weight:700}.active-orders__item .view-more{grid-area:viewMore;justify-content:flex-end;border-top:0;padding:0;-ms-grid-row:1;-ms-grid-column:2}.active-orders__item .view-more .link .icon{margin-left:13px}.order-details__date{margin-left:8px;padding-left:8px;margin-top:0;position:relative}.order-details__date:before{content:"";height:100%;position:absolute;max-height:16px;left:0;top:50%;width:1px;background:#ccc;transform:translateY(-50%)}.consignment-info{-ms-grid-row:3;-ms-grid-column:1;-ms-grid-column-span:2}.shipment-details{-ms-grid-row:4;-ms-grid-column:1;-ms-grid-column-span:2}.order-details{grid-area:orderDetails;display:flex;align-items:baseline;-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}}@media (min-width:768px){.active-orders__title{font-size:1.5rem}}@media (min-width:992px){.active-orders__item{padding:24px;grid-template-areas:"header consignmentInfo viewMore" "orderDetails orderDetails orderDetails" "shipment shipment shipment";-ms-grid-columns:auto auto 1fr;grid-template-columns:auto auto 1fr;align-items:center}.consignment-info{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.shipment-details{-ms-grid-row:3;-ms-grid-column:1;-ms-grid-column-span:3}.active-orders__item .order-header{-ms-grid-row:1;-ms-grid-column:1}.active-orders__item .view-more{-ms-grid-row:1;-ms-grid-column:3}.order-details{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:3}}.barcode{margin-top:16px;padding:12px;background:#fff;border-radius:4px;color:#3e3e3e;position:relative;font-size:.75rem;line-height:1rem}.barcode__discount{position:absolute;top:-8px;right:-8px}.barcode__discount img{border-radius:40px;width:100%;max-width:58px}.barcode__content{display:flex;justify-content:center;align-items:center}.barcode__content p{margin-bottom:0;margin-left:8px;font-weight:500;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.barcode__content .custom-icon{width:13px;height:auto}.barcode__image{display:flex}.barcode__image svg{width:100%;height:auto}.barcode__code{text-align:center;margin-bottom:0}.discount{background:hsla(0,0%,100%,.08);border-radius:4px;padding:16px}.discount .icon-wrap{display:flex;align-items:center;justify-content:center;width:32px;height:32px}.discount .title{margin-bottom:0;font-weight:700;font-size:1rem;line-height:1.25rem}.discount .subtitle{display:inline-block;font-weight:400;font-size:.875rem;line-height:1.375rem}.discount__content{display:flex}.discount__content .subtitle{margin:4px 0 0}.discount__content .icon{font-size:1.44rem;height:18px;color:#99b5cf}.discount .barcode__image svg{margin:8px 0}.discount__code{margin-left:8px}.clipboard-code{background:hsla(0,0%,100%,.08);border-radius:4px;padding:16px}.clipboard-code .icon-wrap{display:flex;align-items:center;justify-content:center;width:32px;height:32px}.clipboard-code .title{margin-bottom:0;font-weight:700;font-size:1rem;line-height:1.25rem}.clipboard-code .subtitle{display:inline-block;font-weight:400;font-size:.875rem;line-height:1.375rem}.clipboard-code .icon{color:#99b5cf;font-size:1.35rem}.clipboard-code .custom-icon path{fill:#99b5cf}.clipboard-code__content{margin-left:8px}.clipboard-code__cta{margin-top:4px;display:flex;align-items:center}.clipboard-code__cta .btn--icon{padding:4px;margin-left:4px;border:0;border-radius:0;background:0 0;display:inline-flex}.clipboard-code__cta .btn--icon .icon-copy{width:14px;height:auto;color:#fff}.clipboard-code__description{margin-top:16px;color:hsla(0,0%,100%,.8)}.clipboard-code__description p{font-size:14px;font-weight:400;line-height:22px;margin-bottom:0}.clipboard-code__description .link{color:inherit}.svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;transform-origin:center center}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;transform:translate(-50%,-50%);transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;transform:scale(.25);transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;transform:scale(.25);transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;transform:scale(.25);transform-origin:top left}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:2s linear infinite fa-spin}.fa-pulse{animation:1s steps(8) infinite fa-spin}@keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:1;opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor)}.svg-inline--fa .fa-secondary,.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:.4;opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:1;opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fad.fa-inverse{color:#fff}.my-account{margin:0;display:block;padding:0}.my-account .container .col-12{min-height:auto}.my-account .notification_general{margin-bottom:8px;margin-top:8px}.my-account .notification_reminder{margin:0 0 1.5rem}.my-account .notification_link{padding:0 5px}.my-account .notification_link,.my-account .notification_link:hover{color:#fff;text-decoration:none}.my-account .notification_info-message{border:0;text-align:center;margin:0;background:#205c56;color:#fff;padding:4px 5px;font-size:.875rem}.my-account .account-actions{background:#f8f8f8;padding:24px 0}.my-account .account-actions__list{list-style-type:none;display:flex;flex-direction:column;background:#fff;padding:16px;margin-bottom:0}.my-account .account-actions__item+.account-actions__item{margin-top:16px}.my-account .account-actions__link{text-decoration:none;font-weight:500;color:#0277bd;display:flex;align-items:center;transition:.3s}.my-account .account-actions__link:hover{opacity:.7;text-decoration:underline}.my-account .account-actions__link .icon{width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-right:8px;font-size:1rem}.my-account .account-summary{background:#f4f9fe;padding:24px 0}.my-account .account-summary__wrapper{background:#0a3055;border-radius:4px;color:#fff;padding:16px;width:100%}.my-account .discount{margin-top:16px;padding-bottom:26px}.my-account .clipboard-code{display:flex;margin-top:16px}.my-account .greetings{word-break:break-all}.my-account .greetings .title{font-weight:500;font-size:1.625rem;line-height:2.25rem;margin-bottom:0;text-align:left}.my-account .greetings .subtitle{margin-top:5px;margin-bottom:0}.tooltip{filter:drop-shadow(0 0 8px rgba(0,0,0,.12));position:absolute}.tooltip .tooltip-inner{background:#fff;color:#3e3e3e;padding:8px 16px!important;border-radius:4px;font-weight:400;font-size:.75rem;line-height:1rem}.tooltip .arrow:before{border-top-color:#fff}@media (min-width:576px){.my-account .account-actions{padding-top:32px;padding-bottom:32px}.my-account .account-actions__list{margin-top:0;margin-left:10px;padding:0 0 0 16px;background:0 0;border-left:1px solid #fff;justify-content:center}.my-account .account-actions__link{color:#fff;white-space:nowrap}.my-account .account-summary{padding-top:32px;padding-bottom:32px}.my-account .account-summary__wrapper{display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;-ms-grid-rows:3fr;grid-template-rows:3fr;grid-gap:16px}.my-account .account-summary__wrapper .greetings{-ms-grid-column-span:2;grid-column:span 2;display:flex;justify-content:space-between}.my-account .account-summary__wrapper .clipboard-code,.my-account .account-summary__wrapper .discount{margin-top:0}.my-account .account-summary__wrapper .discount{-ms-grid-row-span:2;grid-row:span 2;padding-bottom:16px}.my-account .account-summary__wrapper .clipboard-code,.my-account .account-summary__wrapper .discount__content{align-items:center}}@media (min-width:768px){.my-account .account-actions{padding-top:40px;padding-bottom:70px}.my-account .account-summary__wrapper{padding:24px}.my-account .notification_general{margin-top:16px;margin-bottom:16px}}@media (min-width:992px){.my-account .account-summary__wrapper{-ms-grid-columns:minmax(auto,502px) (minmax(auto,223px))[2];grid-template-columns:minmax(auto,502px) repeat(2,minmax(auto,223px))}.my-account .account-summary__wrapper .clipboard-code,.my-account .account-summary__wrapper .discount{padding-top:20px;padding-bottom:20px}.my-account .account-summary__wrapper .greetings{-ms-grid-column-span:3;grid-column:span 3}.my-account .account-summary__wrapper .discount{grid-row:initial;flex-direction:row;display:flex;justify-content:space-between;align-items:center}.my-account .account-summary__wrapper .discount .subtitle{font-size:1rem}.my-account .account-summary__wrapper .barcode{max-width:155px;height:auto;margin-left:24px;padding:12px;margin-top:-4px;margin-bottom:-4px}.my-account .account-summary__wrapper .barcode__code,.my-account .account-summary__wrapper .barcode__content{display:none}.my-account .account-summary__wrapper .barcode__discount{top:-12px;right:-12px}.my-account .clipboard-code.discount-code{padding-right:14px}}@media (min-width:1200px){.my-account .account-summary__wrapper{-ms-grid-columns:minmax(auto,502px) 1fr 1fr;grid-template-columns:minmax(auto,502px) 1fr 1fr}.my-account .account-summary__wrapper .icon-wrap{width:48px;height:48px}.my-account .account-summary__wrapper .discount .icon{font-size:1.75rem;height:28px;margin:auto 6px}.my-account .account-summary__wrapper .clipboard-code .icon{font-size:2rem}.my-account .account-summary__wrapper .clipboard-code .custom-icon{width:36px;height:auto}}
|
|
1
|
+
.consignment-info{display:flex;align-items:center;margin-top:12px;margin-bottom:0;font-weight:400;font-size:.75rem;line-height:1rem;color:#3e3e3e}.consignment-info__text{margin-bottom:0}.consignment-info .icon-info-component{cursor:pointer;font-size:.675rem;width:16px;height:16px;display:inline-flex;align-items:center;justify-content:center}@media (min-width:768px){.consignment-info{margin-top:16px}}@media (min-width:992px){.consignment-info{margin-top:0;margin-left:16px;font-size:.875rem}}.shipment-details{margin-top:12px}.shipment-details .shipment{display:flex;margin-bottom:12px}.shipment-details .shipment-icon{display:flex;align-items:center;justify-content:center;background:#0a3055;width:32px;height:32px;border-radius:50px}.shipment-details .shipment-icon .icon{color:#fff;font-size:1rem}.shipment-details .shipment__content{display:flex;flex-direction:column;flex:1;margin-left:8px}.shipment-details .shipment__content>:not(:first-child){margin-top:4px}.shipment-details .shipment__count,.shipment-details .shipment__info,.shipment-details .shipment__title{font-size:.75rem;line-height:1rem;color:#666}.shipment-details .shipment__title{font-weight:700;color:#3e3e3e;margin-bottom:0}.shipment-details .shipment .track-link{text-decoration:none;font-weight:500;font-size:.75rem;line-height:1rem;color:#0277bd;max-width:max-content}.shipment-details .shipment .track-link:hover{text-decoration:underline}@media (min-width:768px){.shipment-details{margin-top:16px;display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;grid-gap:16px}.shipment-details .shipment{margin-bottom:0}}@media (min-width:1200px){.shipment-details{-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;grid-gap:20px 16px}}.menu{display:flex;padding-top:24px;padding-bottom:24px;margin-right:-15px;margin-left:-15px}.menu__list{padding-left:0;list-style-type:none;margin-bottom:0;width:100%}.menu__header{justify-content:center;width:100%;padding:12px 0}.menu__header,.menu__title{display:flex;align-items:center}.menu__title{margin-bottom:0;font-size:1.125rem;font-weight:500;line-height:1.375rem;margin-left:8px}.menu__total{display:flex;align-items:center;justify-content:center;background:#0a3055;color:#fff;border-radius:50px;width:18px;height:18px;font-size:.75rem;font-weight:500;line-height:1rem;margin-left:10px}.menu__description{margin-bottom:0;display:none}.menu__item{position:relative}.menu__item+.menu__item:before{content:"";border-top:1px solid #ccc;position:absolute;top:0;left:50%;width:calc(100% - 30px);transform:translate(-50%,-50%)}.menu__link{padding:0 15px;color:#0a3055;display:flex;align-items:center}.menu__link,.menu__link:hover{text-decoration:none}.menu__link:focus{background:#f4f9fe}.menu__link .icon{color:#99b5cf;font-size:1.6rem}.menu__link .icon-arrow{font-size:1.6rem;color:#0277bd}.menu__icon{width:32px;height:32px;display:flex;align-items:center;justify-content:center}.menu__icon--arrow{margin-left:auto}@media (min-width:576px){.consignment-info{grid-area:consignmentInfo}.shipment-details{grid-area:shipment}.shipment-details .shipment:last-child{margin-bottom:0}.menu{padding-top:32px;padding-bottom:32px;margin:0}.menu__header{padding-right:8px;padding-left:8px}.menu__item+.menu__item:before{width:100%}.menu__link{padding-right:0;padding-left:0}}@media (min-width:768px){.menu__header{padding:0}.menu__list{display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;grid-auto-rows:1fr;grid-gap:24px}.menu__item{padding:0;display:flex}.menu__item+.menu__item{border-top:0}.menu__item+.menu__item:before{content:none}.menu__link{padding:24px;flex-direction:column;align-items:flex-start;position:relative;border:1px solid #ccc;border-radius:4px;width:100%}.menu__link:focus{background:initial}.menu__link:focus,.menu__link:hover{border-color:#0277bd;color:#0a3055}.menu__description{display:block;margin-top:16px;font-size:.875rem;font-weight:400;line-height:1.375rem;color:#3e3e3e}.menu__icon{width:48px;height:48px}.menu__icon .icon{font-size:2rem;height:auto}.menu__total{min-width:24px;height:24px}}@media (min-width:992px){.menu{padding-top:40px;padding-bottom:40px}.menu__list{-ms-grid-columns:(1fr)[3];grid-template-columns:repeat(3,1fr)}}.contacts{display:flex;flex-direction:column;margin-top:16px}.contacts__item{background:#fff;padding:16px;border-radius:4px}.contacts__item+.contacts__item{margin-top:16px}.contacts__header,.contacts__icon{display:flex;align-items:center}.contacts__icon{width:32px;height:32px;justify-content:center;margin-right:12px}.contacts__icon .icon{color:#99b5cf;font-size:1.35rem;height:auto}.contacts__title{font-size:1.125rem;font-style:normal;font-weight:500;line-height:1.5rem;margin-bottom:0}.contacts__description{font-size:.875rem;font-style:normal;font-weight:400;line-height:1.375rem;margin-top:8px;margin-bottom:0}.contacts__links{list-style-type:none;padding-left:0;margin-top:16px;margin-bottom:0}.contacts__links .link{font-weight:500}.contacts__links li+li{margin-top:16px}.contacts__link{margin-top:16px;font-weight:500;text-decoration:none;display:flex;align-items:center}.contacts .btn{margin-top:16px}@media (min-width:576px){.contacts{margin-top:0}}@media (min-width:768px){.contacts{flex-direction:row;grid-gap:24px}.contacts__item{flex:1;justify-content:space-between;display:flex;flex-direction:column;align-items:flex-start}.contacts__item+.contacts__item{margin-top:0}.contacts__description{margin-top:16px;margin-bottom:auto}.contacts__icon{width:48px;height:48px}.contacts__icon .icon{font-size:2rem}}@media (min-width:992px){.contacts__item{padding:24px}}.account-nav{padding:8px 0}.account-nav--old-pages{position:relative}.account-nav--old-pages .accordion{width:100%;position:absolute}.account-nav__toggle{padding:0;position:relative}.account-nav__icon{width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-right:8px}.account-nav__icon .icon{font-size:1rem;color:#99b5cf}.account-nav__icon .custom-icon{width:auto;font-size:.65rem;height:auto}.account-nav__icon .custom-icon path{fill:#99b5cf}.account-nav__list{padding-left:0;list-style-type:none;margin-bottom:0}.account-nav__link{display:flex;font-weight:500;font-size:.875rem;line-height:1.375rem;color:#3e3e3e;text-decoration:none;padding:8px 16px;align-items:center}.account-nav__link:focus,.account-nav__link:hover{color:#0277bd;text-decoration:none}.account-nav__link.active{background:#f4f9fe}.account-nav__link.active:focus,.account-nav__link.active:hover{background:#fff}.account-nav .rewards{width:20px;height:20px;border-radius:50px;background:#0a3055;color:#fff;margin-left:8px;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:500;line-height:1rem}.account-nav .accordion__header{padding:8px 8px 8px 16px;display:flex;align-items:center}.account-nav .accordion__header-text{font-weight:500;font-size:1rem;line-height:1.5rem;color:#3e3e3e}.account-nav .accordion__header-icon{margin-left:auto;position:relative}.account-nav .accordion__content{position:relative;padding:0}.account-nav .accordion__holder{padding:0;box-shadow:0 0 8px rgba(0,0,0,.12);background:#fff;border-radius:4px;z-index:5;width:100%;position:absolute;top:8px;left:0}@media (min-width:992px){.account-nav{display:none}}.active-orders{margin-top:24px}.active-orders__title{font-weight:500;font-size:1.25rem;line-height:1rem;color:#0a3055;margin-bottom:0}.active-orders__item{margin-top:16px;padding:16px;background:#fff;border-radius:4px}.active-orders .view-more{display:flex;align-items:center;justify-content:center;padding-top:12px;border-top:1px solid #ccc}.active-orders .view-more .link{font-weight:500;font-size:.875rem;line-height:1.375rem;text-align:center;color:#0277bd;text-decoration:none;display:flex;justify-content:center;align-items:center}.active-orders .view-more .link span:hover{text-decoration:underline}.active-orders .view-more .link .icon{margin-left:8px;font-size:1rem}.active-orders .btn--all-orders{margin-top:16px}.order-header{display:flex;justify-content:space-between;align-items:center;padding:0}.order-header__title{margin-bottom:0;font-size:1.125rem;line-height:1.5rem}.order-status{background:rgba(2,119,189,.1);padding:2px 8px;border-radius:50px;font-weight:500;display:flex;align-items:center}.order-status .icon{font-size:1rem;height:auto;color:#0277bd;margin-right:8px}.order-status.completed{background:rgba(103,165,9,.1)}.order-status.completed .icon{color:#67a509}.order-status.cancelled{background:rgba(207,0,15,.1)}.order-status.cancelled .icon{color:#cf000f}.order-details{margin-top:8px}.order-details__summary{display:flex;align-items:baseline}.order-details__price{margin-bottom:0;font-weight:700;font-size:1.125rem;line-height:1.5rem;color:#0a3055}.order-details__vat{margin-left:5px;line-height:1rem}.order-details__count{position:relative;padding-left:8px;margin-left:8px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#3e3e3e}.order-details__count:before{content:"";height:100%;position:absolute;max-height:16px;left:0;top:50%;width:1px;background:#ccc;transform:translateY(-50%)}.order-details__date{display:block;margin-top:4px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#3e3e3e}@media (min-width:576px){.active-orders__header{display:flex;justify-content:space-between;align-items:center}.active-orders__header .btn--all-orders{margin-top:0;max-width:125px}.active-orders__item{display:-ms-grid;display:grid;grid-template-areas:"header viewMore" "orderDetails orderDetails" "consignmentInfo consignmentInfo" "paymentStatus paymentStatus" "shipment shipment"}.active-orders__item .order-header{flex-direction:row-reverse;justify-content:flex-end;grid-area:header}.active-orders__item .order-header__title{margin-left:16px;font-weight:700}.active-orders__item .view-more{grid-area:viewMore;justify-content:flex-end;border-top:0;padding:0}.active-orders__item .view-more .link .icon{margin-left:13px}.order-details{grid-area:orderDetails;display:flex;align-items:baseline}.order-details__date{margin-left:8px;padding-left:8px;margin-top:0;position:relative}.order-details__date:before{content:"";height:100%;position:absolute;max-height:16px;left:0;top:50%;width:1px;background:#ccc;transform:translateY(-50%)}.consignment-info{-ms-grid-row:3;-ms-grid-column:1;-ms-grid-column-span:2}.shipment-details{-ms-grid-row:5;-ms-grid-column:1;-ms-grid-column-span:2}}@media (min-width:768px){.active-orders__title{font-size:1.5rem}}@media (min-width:992px){.active-orders__item{padding:24px;grid-template-areas:"header consignmentInfo viewMore" "orderDetails orderDetails orderDetails" "paymentStatus paymentStatus paymentStatus" "shipment shipment shipment";-ms-grid-columns:auto auto 1fr;grid-template-columns:auto auto 1fr;align-items:center}.consignment-info{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.shipment-details{-ms-grid-row:4;-ms-grid-column:1;-ms-grid-column-span:3}.active-orders__item .order-header{-ms-grid-row:1;-ms-grid-column:1}.active-orders__item .view-more{-ms-grid-row:1;-ms-grid-column:3}.order-details{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:3}}.saving-totaliser{background:#0a3055;padding:16px;color:#fff;margin-bottom:40px}.saving-totaliser .heading-1,.saving-totaliser .heading-2{text-align:left}.saving-totaliser__encourage{margin-top:8px;display:flex;justify-content:space-between}.saving-totaliser__encourage .btn{margin-top:16px}.saving-totaliser__saving-icon.icon{position:absolute;top:30px;right:26px;width:60px;height:auto;color:#99b5cf}.saving-totaliser__saving-icon.icon svg{width:100%;height:100%}.saving-totaliser__saving-title{font-size:inherit;font-weight:700;line-height:inherit}.saving-totaliser__cell{background:hsla(0,0%,100%,.08);padding:16px;flex:1;position:relative}.saving-totaliser__cell-title{margin-bottom:4px;color:hsla(0,0%,100%,.8)}.saving-totaliser__title{margin-bottom:16px}.saving-totaliser__attencion{margin-bottom:4px}.saving-totaliser__wrapper,.saving-totaliser__wrapper2{display:flex;flex-direction:column;gap:16px}.saving-totaliser__wrapper{margin-bottom:16px}.saving-totaliser__divider{width:1px;background:hsla(0,0%,100%,.8)}.saving-totaliser__split-cell{display:flex;flex-direction:row;gap:16px}.saving-totaliser__semi-cell{flex:1}.saving-totaliser__center-cell{display:flex;justify-content:center;align-items:center}.saving-totaliser__note{font-size:.75rem;line-height:1rem;color:hsla(0,0%,100%,.8)}@media (max-width:575.98px){.saving-totaliser__saved{width:180px}.saving-totaliser--this-year-only .saving-totaliser__wrapper2{flex-direction:row}}@media (min-width:576px){.saving-totaliser{padding:24px}.active-orders__item .order-header{-ms-grid-row:1;-ms-grid-column:1}.active-orders__item .view-more{-ms-grid-row:1;-ms-grid-column:2}.order-details{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}.payment-status{-ms-grid-row:4;-ms-grid-column:1;-ms-grid-column-span:2}}@media (min-width:768px){.saving-totaliser__saving-title{font-size:1rem;font-weight:500;line-height:1.5rem}}@media (min-width:576px) and (max-width:991.98px){.saving-totaliser__attencion,.saving-totaliser__saved{margin-right:130px}.saving-totaliser__wrapper2{flex-direction:row}.saving-totaliser--this-last-year .saving-totaliser__split-cell{flex:2.3}.saving-totaliser__saving-icon.icon{position:absolute;top:37px;right:32px;width:93px}}@media (min-width:992px){.saving-totaliser__attencion,.saving-totaliser__saved{margin-right:170px}.saving-totaliser__wrapper{flex-direction:row}.saving-totaliser__wrapper2{flex-direction:column;width:364px}.saving-totaliser__saving-icon.icon{position:absolute;top:0;bottom:0;right:36px;width:123px}}.barcode{margin-top:16px;padding:12px;background:#fff;border-radius:4px;color:#3e3e3e;position:relative;font-size:.75rem;line-height:1rem}.barcode__discount{position:absolute;top:-8px;right:-8px}.barcode__discount img{border-radius:40px;width:100%;max-width:58px}.barcode__content{display:flex;justify-content:center;align-items:center}.barcode__content p{margin-bottom:0;margin-left:8px;font-weight:500;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.barcode__content .custom-icon{width:13px;height:auto}.barcode__image{display:flex}.barcode__image svg{width:100%;height:auto}.barcode__code{text-align:center;margin-bottom:0}.discount{background:hsla(0,0%,100%,.08);border-radius:4px;padding:16px}.discount .icon-wrap{display:flex;align-items:center;justify-content:center;width:32px;height:32px}.discount .title{margin-bottom:0;font-weight:700;font-size:1rem;line-height:1.25rem}.discount .subtitle{display:inline-block;font-weight:400;font-size:.875rem;line-height:1.375rem}.discount__content{display:flex}.discount__content .subtitle{margin:4px 0 0}.discount__content .icon{font-size:1.44rem;height:18px;color:#99b5cf}.discount .barcode__image svg{margin:8px 0}.discount__code{margin-left:8px}.clipboard-code{background:hsla(0,0%,100%,.08);border-radius:4px;padding:16px}.clipboard-code .icon-wrap{display:flex;align-items:center;justify-content:center;width:32px;height:32px}.clipboard-code .title{margin-bottom:0;font-weight:700;font-size:1rem;line-height:1.25rem}.clipboard-code .subtitle{display:inline-block;font-weight:400;font-size:.875rem;line-height:1.375rem}.clipboard-code .icon{color:#99b5cf;font-size:1.35rem}.clipboard-code .custom-icon path{fill:#99b5cf}.clipboard-code__content{margin-left:8px}.clipboard-code__cta{margin-top:4px;display:flex;align-items:center}.clipboard-code__cta .btn--icon{padding:4px;margin-left:4px;border:0;border-radius:0;background:0 0;display:inline-flex}.clipboard-code__cta .btn--icon .icon-copy{width:14px;height:auto;color:#fff}.clipboard-code__description{margin-top:16px;color:hsla(0,0%,100%,.8)}.clipboard-code__description p{font-size:14px;font-weight:400;line-height:22px;margin-bottom:0}.clipboard-code__description .link{color:inherit}.svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;transform-origin:center center}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;transform:translate(-50%,-50%);transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;transform:scale(.25);transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;transform:scale(.25);transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;transform:scale(.25);transform-origin:top left}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:2s linear infinite fa-spin}.fa-pulse{animation:1s steps(8) infinite fa-spin}@keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:1;opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor)}.svg-inline--fa .fa-secondary,.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:.4;opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:1;opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fad.fa-inverse{color:#fff}.payment-status{display:flex;align-items:center;padding:8px;background-color:#f8f8f8;gap:8px;margin-top:12px;border-radius:4px;grid-area:paymentStatus}.payment-status__logo{width:38px;height:24px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.payment-status__logo .payments-status__image{max-width:100%;height:auto;display:block}.payment-status__content,.payment-status__text{font-size:.75rem;line-height:1rem}.payment-status__text{font-weight:400}.payment-status__title{font-weight:500}.payment-status--success{background-color:#67a5091a}.payment-status--overdue{background-color:#cf000f1a}.payment-status--partial{background-color:#ffc4391a}.wismo__order-pay .payment-status{margin-top:8px}.wismo__order-pay .payment-status--default{background-color:#fff}@media (min-width:768px){.payment-status__content{flex-direction:row;gap:8px}.wismo__order-pay .payment-status__content{flex-direction:column;gap:0}}@media (min-width:992px){.payment-status{-ms-grid-row:3;-ms-grid-column:1;-ms-grid-column-span:3;margin-top:16px}}.my-account{margin:0;display:block;padding:0}.my-account .container .col-12{min-height:auto}.my-account .notification_general{margin-bottom:8px;margin-top:8px}.my-account .notification_reminder{margin:0 0 1.5rem}.my-account .notification_link{padding:0 5px}.my-account .notification_link,.my-account .notification_link:hover{color:#fff;text-decoration:none}.my-account .notification_info-message{border:0;text-align:center;margin:0;background:#205c56;color:#fff;padding:4px 5px;font-size:.875rem}.my-account .account-actions{background:#f8f8f8;padding:24px 0}.my-account .account-actions__list{list-style-type:none;display:flex;flex-direction:column;background:#fff;padding:16px;margin-bottom:0}.my-account .account-actions__item+.account-actions__item{margin-top:16px}.my-account .account-actions__link{text-decoration:none;font-weight:500;color:#0277bd;display:flex;align-items:center;transition:.3s}.my-account .account-actions__link:hover{opacity:.7;text-decoration:underline}.my-account .account-actions__link .icon{width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-right:8px;font-size:1rem}.my-account .account-summary{background:#f4f9fe;padding:24px 0}.my-account .account-summary__wrapper{background:#0a3055;border-radius:4px;color:#fff;padding:16px;width:100%}.my-account .discount{margin-top:16px;padding-bottom:26px}.my-account .clipboard-code{display:flex;margin-top:16px}.my-account .greetings{word-break:break-all}.my-account .greetings .title{font-weight:500;font-size:1.625rem;line-height:2.25rem;margin-bottom:0;text-align:left}.my-account .greetings .subtitle{margin-top:5px;margin-bottom:0}.tooltip{filter:drop-shadow(0 0 8px rgba(0,0,0,.12));position:absolute}.tooltip .tooltip-inner{background:#fff;color:#3e3e3e;padding:8px 16px!important;border-radius:4px;font-weight:400;font-size:.75rem;line-height:1rem}.tooltip .arrow:before{border-top-color:#fff}@media (min-width:576px){.my-account .account-actions{padding-top:32px;padding-bottom:32px}.my-account .account-actions__list{margin-top:0;margin-left:10px;padding:0 0 0 16px;background:0 0;border-left:1px solid #fff;justify-content:center}.my-account .account-actions__link{color:#fff;white-space:nowrap}.my-account .account-summary{padding-top:32px;padding-bottom:32px}.my-account .account-summary__wrapper{display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;-ms-grid-rows:3fr;grid-template-rows:3fr;grid-gap:16px}.my-account .account-summary__wrapper .greetings{-ms-grid-column-span:2;grid-column:span 2;display:flex;justify-content:space-between}.my-account .account-summary__wrapper .clipboard-code,.my-account .account-summary__wrapper .discount{margin-top:0}.my-account .account-summary__wrapper .discount{-ms-grid-row-span:2;grid-row:span 2;padding-bottom:16px}.my-account .account-summary__wrapper .clipboard-code,.my-account .account-summary__wrapper .discount__content{align-items:center}}@media (min-width:768px){.my-account .account-actions{padding-top:40px;padding-bottom:70px}.my-account .account-summary__wrapper{padding:24px}.my-account .notification_general{margin-top:16px;margin-bottom:16px}}@media (min-width:992px){.my-account .account-summary__wrapper{-ms-grid-columns:minmax(auto,502px) (minmax(auto,223px))[2];grid-template-columns:minmax(auto,502px) repeat(2,minmax(auto,223px))}.my-account .account-summary__wrapper .clipboard-code,.my-account .account-summary__wrapper .discount{padding-top:20px;padding-bottom:20px}.my-account .account-summary__wrapper .greetings{-ms-grid-column-span:3;grid-column:span 3}.my-account .account-summary__wrapper .discount{grid-row:initial;flex-direction:row;display:flex;justify-content:space-between;align-items:center}.my-account .account-summary__wrapper .discount .subtitle{font-size:1rem}.my-account .account-summary__wrapper .barcode{max-width:155px;height:auto;margin-left:24px;padding:12px;margin-top:-4px;margin-bottom:-4px}.my-account .account-summary__wrapper .barcode__code,.my-account .account-summary__wrapper .barcode__content{display:none}.my-account .account-summary__wrapper .barcode__discount{top:-12px;right:-12px}.my-account .clipboard-code.discount-code{padding-right:14px}}@media (min-width:1200px){.my-account .account-summary__wrapper{-ms-grid-columns:minmax(auto,502px) 1fr 1fr;grid-template-columns:minmax(auto,502px) 1fr 1fr}.my-account .account-summary__wrapper .icon-wrap{width:48px;height:48px}.my-account .account-summary__wrapper .discount .icon{font-size:1.75rem;height:28px;margin:auto 6px}.my-account .account-summary__wrapper .clipboard-code .icon{font-size:2rem}.my-account .account-summary__wrapper .clipboard-code .custom-icon{width:36px;height:auto}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.proposition{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.proposition{max-width:540px}}@media (min-width:768px){.proposition{max-width:720px}}@media (min-width:992px){.proposition{max-width:960px}}@media (min-width:1200px){.proposition{max-width:1140px}}.proposition__inner{display:flex;justify-content:space-between;box-sizing:border-box;border-bottom:1px solid #ccc;padding:0 50px;background-color:#f8f8f8}@media (max-width:991.98px){.proposition__inner{padding:0 15px}.proposition__link_click-collect-short-text{display:none}}@media (max-width:575.98px){.proposition__inner{padding:0 15px}}.proposition__link{position:relative;font-weight:500;margin:26px 0 20px;padding-left:35px}@media (max-width:575.98px){.proposition__link{max-width:90px;margin:16px 0 15px;padding-left:30px;font-size:.75rem}}.proposition__icon{position:absolute;top:0;left:4px}.proposition__icon_click-collect{font-size:1.1875rem}.proposition__icon_delivery{font-size:.875rem}.proposition__icon_returns{font-size:1.125rem}.proposition__icon_price-promise{font-size:1.25rem;margin-top:-3px}@media (max-width:767.98px){.proposition__icon{top:8px}}@media (max-width:575.98px){.proposition__icon{top:5px}.proposition__link_price-promise{display:none}}.home-offers{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.home-offers{max-width:540px}}@media (min-width:768px){.home-offers{max-width:720px}}@media (min-width:992px){.home-offers{max-width:960px}}@media (min-width:1200px){.home-offers{max-width:1140px}}.home-offers .card{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 33.33333%;max-width:33.33333%}@media (min-width:768px) and (max-width:991.98px){.home-offers .card{flex:0 0 50%;max-width:50%}}@media (max-width:767.98px){.home-offers .card{flex:0 0 100%;max-width:100%}}.home-offers .card .card__title-link{text-decoration:none;color:#000}.home-offers .card .card__title-link:hover{text-decoration:underline}.home-offers .card .card__title{margin-bottom:15px;text-align:left}@media (max-width:991.98px){.home-offers .card .card__title{margin-bottom:6px;font-size:1rem}}.home-offers .card .card__descr{margin-bottom:10px;line-height:1.25rem}@media (max-width:991.98px){.home-offers .card .card__descr{margin-bottom:6px}}.home-offers .link-primary{font-size:1rem}.popular-categories__inner{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.popular-categories__inner{max-width:540px}}@media (min-width:768px){.popular-categories__inner{max-width:720px}}@media (min-width:992px){.popular-categories__inner{max-width:960px}}@media (min-width:1200px){.popular-categories__inner{max-width:1140px}}.popular-categories h2{margin-bottom:30px}.popular-categories .card{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 33.33333%;max-width:33.33333%}@media (max-width:767.98px){.popular-categories .card{flex:0 0 50%;max-width:50%}}.popular-categories .card__inner{border:1px solid #ccc}.popular-categories .card__inner a{color:#000;text-decoration:none}.popular-categories .card__inner a:hover{text-decoration:underline}.popular-categories .card__content .card__title{margin-bottom:15px;text-align:left;font-size:1.05rem}@media (max-width:991.98px){.popular-categories .card__content .card__title{font-size:1rem}}.popular-categories .card__content .link-primary{font-size:1rem}.popular-categories.four-in-row .card{flex:0 0 25%;max-width:25%}@media (max-width:767.98px){.popular-categories.four-in-row .card{flex:0 0 50%;max-width:50%}}.payment-loader{position:fixed;z-index:10000000000;top:0;left:0;bottom:0;width:100%;height:100%;transform:translateZ(0);background:radial-gradient(ellipse closest-corner at 50% 50%,#000 1%,rgba(0,0,0,.75) 100%) rgba(0,0,0,.1);color:#fff}.payment-loader--hidden{display:none}.payment-loader__modal{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);text-align:center}.payment-loader__modal .clearpay-checkout-logo,.payment-loader__modal .klarna-checkout-logo,.payment-loader__modal .paypal-checkout-logo{margin-bottom:25px}.payment-loader__modal .spinner{height:30px;width:30px;display:inline-block;box-sizing:content-box;opacity:1;animation:.7s linear infinite rotate;border:8px solid rgba(0,0,0,.2);border-top-color:#fff;border-radius:100%}.payment-loader__modal .klarna-spinner{height:26px;width:26px}.loader-line{width:200px;height:3px;position:relative;overflow:hidden;background-color:#ccc;border-radius:20px}.loader-line:before{content:"";position:absolute;left:-50%;height:3px;width:40%;background-color:#3e3e3e;animation:1s linear infinite lineAnim;border-radius:20px}@keyframes lineAnim{0%{left:-40%}50%{left:20%;width:80%}to{left:100%;width:100%}}.klarna-spinner-logo{display:block;background:url(../img/klarna-spinner.svg) no-repeat;height:32px;width:136px}.google-spinner-logo{background:url(../img/google-spinner.svg) no-repeat;height:55px}.clearpay-spinner-logo,.google-spinner-logo{display:block;width:135px;margin-bottom:20px}.clearpay-spinner-logo{background:url(../img/clearpay-spinner.svg) no-repeat;height:28px}.apple-spinner-logo{height:58px;width:136px}.loader-wrapper{position:absolute;left:0;top:0;z-index:2;width:100%;height:100%;background:hsla(0,0%,100%,.5)}.loader-wrapper,.loader-wrapper .loader-spinner{display:flex;justify-content:center;align-items:center}.loader-wrapper .loader-spinner{border:0}.loader-wrapper .loader-spinner .circular-loader{width:76px;height:76px;stroke-width:2px;animation:2s linear infinite rotate;stroke:#0277bd}.loader-wrapper .loader-spinner .loader-path{stroke:#0277bd;animation:1.5s ease-in-out infinite animate-stroke}.loader-wrapper--full-page{z-index:150;position:fixed;background:hsla(0,0%,100%,.8)}.loader-wrapper--full-page .loader-container{width:calc(100% - 40px);margin:0 20px}.loader-wrapper--full-page .loader{border-top-color:#0277bd;position:relative}.loader-wrapper--full-page .loader-message{margin-top:25px;color:#0a3055;font-size:1.625rem;font-weight:500;text-align:center}.loader-wrapper.smart-banner-loader{background:hsla(0,0%,100%,.9);flex-direction:column;row-gap:8px}.loader-wrapper.smart-banner-loader .loader-spinner .circular-loader{width:24px;height:24px;stroke-width:6px}.loader-wrapper.smart-banner-loader h2{color:#0a3055;text-align:center;font-style:normal;font-weight:500;font-size:.75rem;line-height:16px;margin-bottom:0}@keyframes rotate{to{transform:rotate(1turn)}}@keyframes animate-stroke{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35}to{stroke-dasharray:89,200;stroke-dashoffset:-124}}.add-all-loader,.basket-loader{flex-direction:column;z-index:101;position:fixed;background:hsla(0,0%,100%,.8)}.add-all-loader h2,.basket-loader h2{margin-top:25px;font-size:1.625rem;font-weight:400;line-height:2.25rem;color:#0a3055;text-align:center}.add-list-id-loader{display:flex;height:auto;position:relative;flex-direction:column-reverse;padding:0 15px}.add-list-id-loader h2{font-weight:500;line-height:1.35;font-size:1.625rem;margin-bottom:10px}@media (min-width:576px){.empty-basket-loader h2{font-size:2.125rem;margin-bottom:20px}}@media (min-width:768px){.add-all-loader h2,.basket-loader h2{font-size:2.125rem;line-height:2.875rem}.loader-wrapper--full-page .loader-message{font-size:2.125rem}}.home-page>.sticky-wrapper{display:none}.hp-banner-first .banner-info__range{font-size:1.8rem;padding-bottom:15px;margin-bottom:15px}.home-offers .card__inner{border:1px solid #ccc}.banner-info_large .banner-info__offer__small-secondary{padding-top:8px;padding-bottom:0}@media (max-width:1199.98px){.hero__banner .hp-banner-first{width:400px}}@media (max-width:767.98px){.hero.hp-banner-first-container{height:560px}.hero__banner .hp-banner-first{width:100%}}
|
|
1
|
+
.proposition{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.proposition{max-width:540px}}@media (min-width:768px){.proposition{max-width:720px}}@media (min-width:992px){.proposition{max-width:960px}}@media (min-width:1200px){.proposition{max-width:1140px}}.proposition__inner{display:flex;justify-content:space-between;box-sizing:border-box;border-bottom:1px solid #ccc;padding:0 50px;background-color:#f8f8f8}@media (max-width:991.98px){.proposition__inner{padding:0 15px}.proposition__link_click-collect-short-text{display:none}}@media (max-width:575.98px){.proposition__inner{padding:0 15px}}.proposition__link{position:relative;font-weight:500;margin:26px 0 20px;padding-left:35px}@media (max-width:575.98px){.proposition__link{max-width:90px;margin:16px 0 15px;padding-left:30px;font-size:.75rem}}.proposition__icon{position:absolute;top:0;left:4px}.proposition__icon_click-collect{font-size:1.1875rem}.proposition__icon_delivery{font-size:.875rem}.proposition__icon_returns{font-size:1.125rem}.proposition__icon_price-promise{font-size:1.25rem;margin-top:-3px}@media (max-width:767.98px){.proposition__icon{top:8px}}@media (max-width:575.98px){.proposition__icon{top:5px}.proposition__link_price-promise{display:none}}.home-offers{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.home-offers{max-width:540px}}@media (min-width:768px){.home-offers{max-width:720px}}@media (min-width:992px){.home-offers{max-width:960px}}@media (min-width:1200px){.home-offers{max-width:1140px}}.home-offers .card{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 33.33333%;max-width:33.33333%}@media (min-width:768px) and (max-width:991.98px){.home-offers .card{flex:0 0 50%;max-width:50%}}@media (max-width:767.98px){.home-offers .card{flex:0 0 100%;max-width:100%}}.home-offers .card .card__title-link{text-decoration:none;color:#000}.home-offers .card .card__title-link:hover{text-decoration:underline}.home-offers .card .card__title{margin-bottom:15px;text-align:left}@media (max-width:991.98px){.home-offers .card .card__title{margin-bottom:6px;font-size:1rem}}.home-offers .card .card__descr{margin-bottom:10px;line-height:1.25rem}@media (max-width:991.98px){.home-offers .card .card__descr{margin-bottom:6px}}.home-offers .link-primary{font-size:1rem}.popular-categories__inner{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.popular-categories__inner{max-width:540px}}@media (min-width:768px){.popular-categories__inner{max-width:720px}}@media (min-width:992px){.popular-categories__inner{max-width:960px}}@media (min-width:1200px){.popular-categories__inner{max-width:1140px}}.popular-categories h2{margin-bottom:30px}.popular-categories .card{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;flex:0 0 33.33333%;max-width:33.33333%}@media (max-width:767.98px){.popular-categories .card{flex:0 0 50%;max-width:50%}}.popular-categories .card__inner{border:1px solid #ccc}.popular-categories .card__inner a{color:#000;text-decoration:none}.popular-categories .card__inner a:hover{text-decoration:underline}.popular-categories .card__content .card__title{margin-bottom:15px;text-align:left;font-size:1.05rem}@media (max-width:991.98px){.popular-categories .card__content .card__title{font-size:1rem}}.popular-categories .card__content .link-primary{font-size:1rem}.popular-categories.four-in-row .card{flex:0 0 25%;max-width:25%}@media (max-width:767.98px){.popular-categories.four-in-row .card{flex:0 0 50%;max-width:50%}}.payment-loader{position:fixed;z-index:10000000000;top:0;left:0;bottom:0;width:100%;height:100%;transform:translateZ(0);background:radial-gradient(ellipse closest-corner at 50% 50%,#000 1%,rgba(0,0,0,.75) 100%) rgba(0,0,0,.1);color:#fff}.payment-loader--hidden{display:none}.payment-loader__modal{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);text-align:center}.payment-loader__modal .billie-checkout-logo,.payment-loader__modal .clearpay-checkout-logo,.payment-loader__modal .klarna-checkout-logo,.payment-loader__modal .paypal-checkout-logo{margin-bottom:25px}.payment-loader__modal .spinner{height:30px;width:30px;display:inline-block;box-sizing:content-box;opacity:1;animation:.7s linear infinite rotate;border:8px solid rgba(0,0,0,.2);border-top-color:#fff;border-radius:100%}.payment-loader__modal .klarna-spinner{height:26px;width:26px}.loader-line{width:200px;height:3px;position:relative;overflow:hidden;background-color:#ccc;border-radius:20px}.loader-line:before{content:"";position:absolute;left:-50%;height:3px;width:40%;background-color:#3e3e3e;animation:1s linear infinite lineAnim;border-radius:20px}@keyframes lineAnim{0%{left:-40%}50%{left:20%;width:80%}to{left:100%;width:100%}}.klarna-spinner-logo{display:block;background:url(../img/klarna-spinner.svg) no-repeat;height:32px;width:136px}.google-spinner-logo{background:url(../img/google-spinner.svg) no-repeat;height:55px}.clearpay-spinner-logo,.google-spinner-logo{display:block;width:135px;margin-bottom:20px}.clearpay-spinner-logo{background:url(../img/clearpay-spinner.svg) no-repeat;height:28px}.billie-spinner-logo{display:block;background:url(../img/billie-spinner.svg) no-repeat;height:38px;width:111px}.apple-spinner-logo{height:58px;width:136px}.loader-wrapper{position:absolute;left:0;top:0;z-index:2;width:100%;height:100%;background:hsla(0,0%,100%,.5)}.loader-wrapper,.loader-wrapper .loader-spinner{display:flex;justify-content:center;align-items:center}.loader-wrapper .loader-spinner{border:0}.loader-wrapper .loader-spinner .circular-loader{width:76px;height:76px;stroke-width:2px;animation:2s linear infinite rotate;stroke:#0277bd}.loader-wrapper .loader-spinner .loader-path{stroke:#0277bd;animation:1.5s ease-in-out infinite animate-stroke}.loader-wrapper--full-page{z-index:150;position:fixed;background:hsla(0,0%,100%,.8)}.loader-wrapper--full-page .loader-container{width:calc(100% - 40px);margin:0 20px}.loader-wrapper--full-page .loader{border-top-color:#0277bd;position:relative}.loader-wrapper--full-page .loader-message{margin-top:25px;color:#0a3055;font-size:1.625rem;font-weight:500;text-align:center}.loader-wrapper.smart-banner-loader{background:hsla(0,0%,100%,.9);flex-direction:column;row-gap:8px}.loader-wrapper.smart-banner-loader .loader-spinner .circular-loader{width:24px;height:24px;stroke-width:6px}.loader-wrapper.smart-banner-loader h2{color:#0a3055;text-align:center;font-style:normal;font-weight:500;font-size:.75rem;line-height:16px;margin-bottom:0}@keyframes rotate{to{transform:rotate(1turn)}}@keyframes animate-stroke{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35}to{stroke-dasharray:89,200;stroke-dashoffset:-124}}.add-all-loader,.basket-loader{flex-direction:column;z-index:101;position:fixed;background:hsla(0,0%,100%,.8)}.add-all-loader h2,.basket-loader h2{margin-top:25px;font-size:1.625rem;font-weight:400;line-height:2.25rem;color:#0a3055;text-align:center}.add-list-id-loader{display:flex;height:auto;position:relative;flex-direction:column-reverse;padding:0 15px}.add-list-id-loader h2{font-weight:500;line-height:1.35;font-size:1.625rem;margin-bottom:10px}@media (min-width:576px){.empty-basket-loader h2{font-size:2.125rem;margin-bottom:20px}}@media (min-width:768px){.add-all-loader h2,.basket-loader h2{font-size:2.125rem;line-height:2.875rem}.loader-wrapper--full-page .loader-message{font-size:2.125rem}}.home-page>.sticky-wrapper{display:none}.hp-banner-first .banner-info__range{font-size:1.8rem;padding-bottom:15px;margin-bottom:15px}.home-offers .card__inner{border:1px solid #ccc}.banner-info_large .banner-info__offer__small-secondary{padding-top:8px;padding-bottom:0}@media (max-width:1199.98px){.hero__banner .hp-banner-first{width:400px}}@media (max-width:767.98px){.hero.hp-banner-first-container{height:560px}.hero__banner .hp-banner-first{width:100%}}
|