/*
 * === Settings ===
 *
 * This layer should contain fonts, color definitions, etc.
 * NO STYLE DECLARATIONS PERMITTED IN THIS LAYER
 *
 * All modification is done in the related files, not here.
 * SEE: style.scss for more info.
 */
/*
 * === Typography variables ===
 */
/*
 * === General variables for section spacing and the grid ===
 * -- Breakpoint values
 * -- Breakpoints for media queries * -- Grid settings
 */
:root {
  --product-grid-column-gap: 0.5rem;
  --product-grid-column-gap--medium: 1rem;
  --product-grid-column-gap--large: 1.5rem;
  --product-grid-column-gap--x-large: 2rem;
  --product-grid-row-gap: 0.5rem;
  --product-grid-row-gap--medium: 1rem;
  --product-grid-row-gap--large: 1.5rem;
  --product-grid-row-gap--x-large: 2rem;
  --product-grid-column-count-mobile: 2;
}

/*
 * === Tools ===
 *
 * This layer should contain functions and mixins.
 * NO STYLE DECLARATIONS PERMITTED IN THIS LAYER
 *
 * All modification is done in the related files, not here.
 * SEE: style.scss for more info.
 */
/**
 * This can be used to automatically output a hover and focus CSS rule in your CSS. For example:

@include tool.hocus {
	color: $sub-menu__menu-item_color--hover;
}

 * It is usually most useful within an `a {}` selector, but it can also be used for buttons too.
 * Copy/paste away :)
 */
/**
 * Since sass v1.77 there are deprecation warnings unless code which follows an @include is wrapped in & {}
 * this is a mixin to make that task easier, and to make the code more readbale.
 *
 * More info - https://sass-lang.com/documentation/breaking-changes/mixed-decls/
 */
:root {
  --image-hover-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
  --image-hover-transition-duration: .35s;
  --image-hover-transition-property: transform;
  --image-hover-transition-transform-scale-hover: scale(1.05);
}

/**
 * This is used for an image hover effect for tiles etc.
 */
/* stylelint-disable declaration-no-important */
/**
 * [1]. I set an !important on &:focus:not(:focus-visible) here because the transition: all was causing
 * a flicker in some environments when a user clicks on a button. I think (hope) it's accessible...
 * my thinking is it *should* be, because of the focus-visible rule, but I am not sure yet.
 * If we do not use !important here, the CSS file size has to dramatically increase due to the use
 * of buttons elsewhere in our codebase.
 *
 */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.woocommerce.single-product .product .product_title,
.qala-quickview .product .product_title,
.woocommerce-checkout .final-checkout-total,
.woocommerce-cart .final-checkout-total {
  font-family: var(--wp--preset--font-family--zalando-sans);
}

h1,
.h1 {
  color: var(--wp--preset--color--base-900);
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-size: var(--wp--preset--font-size--step-6);
}

h2,
.h2 {
  color: var(--wp--preset--color--base-900);
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-size: var(--wp--preset--font-size--step-5);
}

h3,
.h3,
.woocommerce.single-product .product .product_title,
.qala-quickview .product .product_title,
.woocommerce-checkout .final-checkout-total,
.woocommerce-cart .final-checkout-total {
  color: var(--wp--preset--color--base-900);
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-size: var(--wp--preset--font-size--step-4);
}

h4 {
  color: var(--wp--preset--color--base-900);
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-size: var(--wp--preset--font-size--step-3);
}

h5 {
  color: var(--wp--preset--color--base-900);
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-size: var(--wp--preset--font-size--step-2);
}

h6 {
  color: var(--wp--preset--color--base-900);
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-size: var(--wp--preset--font-size--step-1);
}

/**
 * Theme.json does not allow you to specify line-heights (yet? https://github.com/WordPress/gutenberg/issues/56227)
 * or letter-spacing to settings -> typography -> fontSizes, so we need to define them here and apply them to the
 * .has-step-X-font-size classes here, so that line-heights and letter-spacing are correct when text has been set
 * to that step in Gutenberg.
 *
 */
h1,
.h1,
.has-step-6-font-size {
  line-height: 1.2;
  letter-spacing: 0;
}

h2,
.h2,
.has-step-5-font-size {
  line-height: 1.25;
  letter-spacing: 0;
}

h3,
.h3,
.woocommerce.single-product .product .product_title,
.qala-quickview .product .product_title,
.woocommerce-checkout .final-checkout-total,
.woocommerce-cart .final-checkout-total,
.has-step-4-font-size {
  line-height: 1.128;
  letter-spacing: 0;
}

h4,
.has-step-3-font-size {
  line-height: 1.3;
  letter-spacing: initial;
}

h5,
.has-step-2-font-size {
  line-height: 1.4;
  letter-spacing: initial;
}

h6,
.has-step-1-font-size {
  line-height: 1.5;
  letter-spacing: initial;
}

h1,
h2 {
  font-family: var(--wp--preset--font-family--zalando-sans);
}

.subheading {
  font-family: var(--wp--preset--font-family--zalando-sans);
  font-weight: 500;
  font-style: italic;
  font-stretch: normal;
  line-height: 1.44;
  letter-spacing: 0;
  font-size: clamp(1.125rem, 1.125rem + (1vw - 0.225rem) * 0.3225806452, 1.375rem); /* stylelint-disable-line max-line-length */
}

.section-heading {
  font-family: var(--wp--preset--font-family--zalando-sans);
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.46;
  letter-spacing: 0;
  font-size: clamp(0.6875rem, 0.6875rem + (1vw - 0.225rem) * 0.3225806452, 0.9375rem); /* stylelint-disable-line max-line-length */
}

.meta, .woocommerce.single-product .woocommerce-breadcrumb,
.qala-quickview .woocommerce-breadcrumb, .woocommerce .woocommerce-checkout-review-order-table tr.cart_item td, .woocommerce .woocommerce-checkout-review-order-table .product-name-link a, .woocommerce table.shop_table .cart-subtotal ul li,
.woocommerce table.shop_table .woocommerce-shipping-totals ul li,
.woocommerce table.shop_table .order-total ul li,
.woocommerce table.shop_table .tax-rate ul li,
.woocommerce table.shop_table .fee ul li, .woocommerce table.shop_table .cart-subtotal th,
.woocommerce table.shop_table .cart-subtotal td,
.woocommerce table.shop_table .woocommerce-shipping-totals th,
.woocommerce table.shop_table .woocommerce-shipping-totals td,
.woocommerce table.shop_table .order-total th,
.woocommerce table.shop_table .order-total td,
.woocommerce table.shop_table .tax-rate th,
.woocommerce table.shop_table .tax-rate td,
.woocommerce table.shop_table .fee th,
.woocommerce table.shop_table .fee td {
  font-family: var(--wp--preset--font-family--zalando-sans);
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
  font-size: clamp(0.6875rem, 0.6875rem + (1vw - 0.225rem) * 0.3225806452, 0.9375rem); /* stylelint-disable-line max-line-length */
}

.woocommerce-checkout .customer-details-wrapper,
.woocommerce-cart .customer-details-wrapper {
  order: 2;
}
.woocommerce-checkout .woocommerce table.shop_table,
.woocommerce-cart .woocommerce table.shop_table {
  border: 0;
  margin: 0;
  border-collapse: collapse;
  border-radius: 0;
  width: 100%;
}
.woocommerce-checkout .woocommerce form .form-row:after,
.woocommerce-checkout .woocommerce form .form-row:before,
.woocommerce-checkout .woocommerce-page form .form-row:after,
.woocommerce-checkout .woocommerce-page form .form-row:before,
.woocommerce-cart .woocommerce form .form-row:after,
.woocommerce-cart .woocommerce form .form-row:before,
.woocommerce-cart .woocommerce-page form .form-row:after,
.woocommerce-cart .woocommerce-page form .form-row:before {
  display: none;
}
.woocommerce-checkout .woocommerce .col2-set .col-1,
.woocommerce-checkout .woocommerce-page .col2-set .col-1,
.woocommerce-checkout .woocommerce .col2-set .col-2,
.woocommerce-checkout .woocommerce-page .col2-set .col-2,
.woocommerce-cart .woocommerce .col2-set .col-1,
.woocommerce-cart .woocommerce-page .col2-set .col-1,
.woocommerce-cart .woocommerce .col2-set .col-2,
.woocommerce-cart .woocommerce-page .col2-set .col-2 {
  width: 100%;
  float: none;
}
.woocommerce-checkout .woocommerce-billing-fields .form-row,
.woocommerce-checkout .woocommerce-shipping-fields .form-row,
.woocommerce-checkout .woocommerce-additional-fields .form-row,
.woocommerce-cart .woocommerce-billing-fields .form-row,
.woocommerce-cart .woocommerce-shipping-fields .form-row,
.woocommerce-cart .woocommerce-additional-fields .form-row {
  margin-bottom: 0.9375rem;
}
.woocommerce-checkout .woocommerce-billing-fields .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields .woocommerce-page form .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields .form-row-last,
.woocommerce-checkout .woocommerce-billing-fields .woocommerce-page form .form-row-last,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-first,
.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-page form .form-row-first,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-last,
.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-page form .form-row-last,
.woocommerce-checkout .woocommerce-additional-fields .form-row-first,
.woocommerce-checkout .woocommerce-additional-fields .woocommerce-page form .form-row-first,
.woocommerce-checkout .woocommerce-additional-fields .form-row-last,
.woocommerce-checkout .woocommerce-additional-fields .woocommerce-page form .form-row-last,
.woocommerce-cart .woocommerce-billing-fields .form-row-first,
.woocommerce-cart .woocommerce-billing-fields .woocommerce-page form .form-row-first,
.woocommerce-cart .woocommerce-billing-fields .form-row-last,
.woocommerce-cart .woocommerce-billing-fields .woocommerce-page form .form-row-last,
.woocommerce-cart .woocommerce-shipping-fields .form-row-first,
.woocommerce-cart .woocommerce-shipping-fields .woocommerce-page form .form-row-first,
.woocommerce-cart .woocommerce-shipping-fields .form-row-last,
.woocommerce-cart .woocommerce-shipping-fields .woocommerce-page form .form-row-last,
.woocommerce-cart .woocommerce-additional-fields .form-row-first,
.woocommerce-cart .woocommerce-additional-fields .woocommerce-page form .form-row-first,
.woocommerce-cart .woocommerce-additional-fields .form-row-last,
.woocommerce-cart .woocommerce-additional-fields .woocommerce-page form .form-row-last {
  width: 100%;
}
.woocommerce-checkout .woocommerce-billing-fields label,
.woocommerce-checkout .woocommerce-shipping-fields label,
.woocommerce-checkout .woocommerce-additional-fields label,
.woocommerce-cart .woocommerce-billing-fields label,
.woocommerce-cart .woocommerce-shipping-fields label,
.woocommerce-cart .woocommerce-additional-fields label {
  text-transform: none;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 700;
  font-family: var(--wp--preset--font-family--zalando-sans);
  color: var(--wp--preset--color--base-700);
  font-size: 0.8125rem;
}
.woocommerce-checkout,
.woocommerce-cart {
  /* stylelint-disable selector-max-id, selector-id-pattern */
}
.woocommerce-checkout #add_payment_method #payment,
.woocommerce-checkout .woocommerce-cart #payment,
.woocommerce-checkout .woocommerce-checkout #payment,
.woocommerce-cart #add_payment_method #payment,
.woocommerce-cart .woocommerce-cart #payment,
.woocommerce-cart .woocommerce-checkout #payment {
  border-bottom: 0;
  background-color: transparent;
}
.woocommerce-checkout #add_payment_method #payment div.payment_box,
.woocommerce-checkout .woocommerce-cart #payment div.payment_box,
.woocommerce-checkout .woocommerce-checkout #payment div.payment_box,
.woocommerce-cart #add_payment_method #payment div.payment_box,
.woocommerce-cart .woocommerce-cart #payment div.payment_box,
.woocommerce-cart .woocommerce-checkout #payment div.payment_box {
  background-color: transparent;
  color: var(--wp--preset--color--base-700);
  margin: 0;
  padding: 0 15px 0 30px;
}
.woocommerce-checkout #add_payment_method #payment div.payment_box:before,
.woocommerce-checkout .woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout .woocommerce-checkout #payment div.payment_box:before,
.woocommerce-cart #add_payment_method #payment div.payment_box:before,
.woocommerce-cart .woocommerce-cart #payment div.payment_box:before,
.woocommerce-cart .woocommerce-checkout #payment div.payment_box:before {
  border: 0;
}
.woocommerce-checkout #add_payment_method #payment div.form-row,
.woocommerce-checkout #add_payment_method #payment .woocommerce-cart #payment div.form-row,
.woocommerce-checkout #add_payment_method #payment .woocommerce-checkout #payment div.form-row,
.woocommerce-checkout .woocommerce-cart #payment div.form-row,
.woocommerce-checkout .woocommerce-cart #payment .woocommerce-cart #payment div.form-row,
.woocommerce-checkout .woocommerce-cart #payment .woocommerce-checkout #payment div.form-row,
.woocommerce-checkout .woocommerce-checkout #payment div.form-row,
.woocommerce-checkout .woocommerce-checkout #payment .woocommerce-cart #payment div.form-row,
.woocommerce-checkout .woocommerce-checkout #payment .woocommerce-checkout #payment div.form-row,
.woocommerce-cart #add_payment_method #payment div.form-row,
.woocommerce-cart #add_payment_method #payment .woocommerce-cart #payment div.form-row,
.woocommerce-cart #add_payment_method #payment .woocommerce-checkout #payment div.form-row,
.woocommerce-cart .woocommerce-cart #payment div.form-row,
.woocommerce-cart .woocommerce-cart #payment .woocommerce-cart #payment div.form-row,
.woocommerce-cart .woocommerce-cart #payment .woocommerce-checkout #payment div.form-row,
.woocommerce-cart .woocommerce-checkout #payment div.form-row,
.woocommerce-cart .woocommerce-checkout #payment .woocommerce-cart #payment div.form-row,
.woocommerce-cart .woocommerce-checkout #payment .woocommerce-checkout #payment div.form-row {
  padding: 53px 0 0;
}
.woocommerce-checkout,
.woocommerce-cart {
  /* stylelint-enable */
}
.woocommerce-checkout .payment_method_billmate_cardpay img,
.woocommerce-cart .payment_method_billmate_cardpay img {
  display: none;
}
.woocommerce-checkout .final-checkout-total,
.woocommerce-cart .final-checkout-total {
  margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce-privacy-policy-text p,
.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text,
.woocommerce-cart .woocommerce-privacy-policy-text p,
.woocommerce-cart .woocommerce-terms-and-conditions-checkbox-text {
  font-size: 0.8125rem;
}
.woocommerce-checkout .woocommerce-privacy-policy-text p a,
.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a,
.woocommerce-cart .woocommerce-privacy-policy-text p a,
.woocommerce-cart .woocommerce-terms-and-conditions-checkbox-text a {
  text-decoration: underline;
}
.woocommerce-checkout form .form-row .woocommerce-terms-and-conditions-wrapper,
.woocommerce-cart form .form-row .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 30px;
}
.woocommerce-checkout form .form-row .woocommerce-terms-and-conditions-wrapper label.checkbox,
.woocommerce-cart form .form-row .woocommerce-terms-and-conditions-wrapper label.checkbox {
  display: flex;
  align-items: center;
  line-height: normal;
}
.woocommerce-checkout form .form-row .woocommerce-terms-and-conditions-wrapper .input-checkbox,
.woocommerce-cart form .form-row .woocommerce-terms-and-conditions-wrapper .input-checkbox {
  margin-top: 0;
}
.woocommerce-checkout,
.woocommerce-cart {
  /* stylelint-disable selector-max-id, selector-id-pattern */
}
.woocommerce-checkout .woocommerce-invalid #terms,
.woocommerce-cart .woocommerce-invalid #terms {
  outline: none;
}
.woocommerce-checkout .woocommerce #payment #place_order,
.woocommerce-checkout .woocommerce-page #payment #place_order,
.woocommerce-cart .woocommerce #payment #place_order,
.woocommerce-cart .woocommerce-page #payment #place_order {
  width: auto;
  float: none;
  height: 54px;
}
.woocommerce-checkout,
.woocommerce-cart {
  /* stylelint-enable */
}

.payment_method_woosa_adyen_credit_card > label > img {
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: left;
     object-position: left;
  height: 24px;
}

/* stylelint-disable selector-max-id, max-nesting-depth, selector-id-pattern */
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping,
.woocommerce-checkout .woocommerce-checkout-payment,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment {
  display: block;
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping#payment ul.payment_methods,
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping ul,
.woocommerce-checkout .woocommerce-checkout-payment#payment ul.payment_methods,
.woocommerce-checkout .woocommerce-checkout-payment ul,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping#payment ul.payment_methods,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping ul,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment#payment ul.payment_methods,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment ul {
  padding: 0;
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping th,
.woocommerce-checkout .woocommerce-checkout-payment th,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping th,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment th {
  font-weight: 600;
  padding-bottom: 0;
  padding-top: 30px;
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping td,
.woocommerce-checkout .woocommerce-checkout-payment td,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping td,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment td {
  text-align: left;
  width: 100%;
  display: block;
  padding-top: 0;
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li,
.woocommerce-checkout .woocommerce-checkout-payment li,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li {
  padding: 0 0 0 15px;
  border: 1px solid var(--wp--preset--color--base-300);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: border-color 0.25s;
  position: relative;
  margin-bottom: 1rem !important; /* stylelint-disable-line declaration-no-important */
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:has(.input-radio:checked) label,
.woocommerce-checkout .woocommerce-checkout-payment li:has(.input-radio:checked) label,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:has(.input-radio:checked) label,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:has(.input-radio:checked) label {
  color: var(--wp--preset--color--base-700);
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:has(.input-radio:checked) .payment_box,
.woocommerce-checkout .woocommerce-checkout-payment li:has(.input-radio:checked) .payment_box,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:has(.input-radio:checked) .payment_box,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:has(.input-radio:checked) .payment_box {
  transform: translateY(-30px);
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:hover, .woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:focus, .woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:only-child, .woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:has(input:checked),
.woocommerce-checkout .woocommerce-checkout-payment li:hover,
.woocommerce-checkout .woocommerce-checkout-payment li:focus,
.woocommerce-checkout .woocommerce-checkout-payment li:only-child,
.woocommerce-checkout .woocommerce-checkout-payment li:has(input:checked),
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:hover,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:focus,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:only-child,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:has(input:checked),
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:hover,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:focus,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:only-child,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:has(input:checked) {
  border-color: var(--wp--preset--color--primary-500);
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:hover input, .woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:focus input, .woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:only-child input, .woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li:has(input:checked) input,
.woocommerce-checkout .woocommerce-checkout-payment li:hover input,
.woocommerce-checkout .woocommerce-checkout-payment li:focus input,
.woocommerce-checkout .woocommerce-checkout-payment li:only-child input,
.woocommerce-checkout .woocommerce-checkout-payment li:has(input:checked) input,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:hover input,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:focus input,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:only-child input,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li:has(input:checked) input,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:hover input,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:focus input,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:only-child input,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li:has(input:checked) input {
  transform: scale(1.25);
  accent-color: var(--wp--preset--color--primary-500);
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li input,
.woocommerce-checkout .woocommerce-checkout-payment li input,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li input,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li input {
  margin: 0 !important; /* stylelint-disable-line declaration-no-important */
  position: relative;
  accent-color: transparent;
  transition: 0.25s all;
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li label,
.woocommerce-checkout .woocommerce-checkout-payment li label,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li label,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li label {
  display: flex !important; /* stylelint-disable-line declaration-no-important */
  align-items: center;
  flex-grow: 1;
  padding: 30px 15px 30px 15px;
  cursor: pointer;
  font-weight: 700;
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping li label .amount,
.woocommerce-checkout .woocommerce-checkout-payment li label .amount,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .woocommerce-shipping-totals.shipping li label .amount,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment li label .amount {
  margin-left: auto;
}

.woocommerce-checkout table.shop_table tfoot {
  width: 100%;
  display: block;
}
.woocommerce-checkout table.shop_table tfoot tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.woocommerce-checkout table.shop_table tfoot tr th,
.woocommerce-checkout table.shop_table tfoot tr td {
  border-top: 0;
}
.woocommerce-checkout table.shop_table tfoot tr.cart-subtotal {
  border-bottom: 1px solid var(--wp--preset--color--base-400, #c7c7cc);
}
.woocommerce-checkout table.shop_table tfoot tr.cart-subtotal:has(+ tr.cart-discount) {
  border-bottom: 0;
}
.woocommerce-checkout table.shop_table tfoot tr.cart-discount {
  padding: 15px;
  background-color: #ECF6F0;
  border: 1px solid #91cba8;
  margin-bottom: 15px;
}
.woocommerce-checkout table.shop_table tfoot tr.cart-discount th {
  overflow-wrap: anywhere;
}
.woocommerce-checkout table.shop_table tfoot tr.cart-discount th,
.woocommerce-checkout table.shop_table tfoot tr.cart-discount td {
  border-top: 0;
}
.woocommerce-checkout table.shop_table tfoot .woocommerce-shipping-totals.shipping {
  flex-wrap: nowrap;
}

html:has(.woocommerce-checkout.checkout--modern) {
  scroll-behavior: smooth;
}

.woocommerce-checkout.checkout--modern {
  counter-reset: checkout-section;
}
.woocommerce-checkout.checkout--modern .cart-collaterals:before,
.woocommerce-checkout.checkout--modern .cart-collaterals:after {
  display: none;
}
.woocommerce-checkout.checkout--modern .site-header,
.woocommerce-checkout.checkout--modern .entry-header,
.woocommerce-checkout.checkout--modern .qala-breadcrumbs-container {
  display: none;
}
.woocommerce-checkout.checkout--modern form.checkout.woocommerce-checkout > div {
  margin: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce form .form-row.create-account {
  margin: 0;
  padding: 0 0 15px;
}
.woocommerce-checkout.checkout--modern .woocommerce-billing-fields label,
.woocommerce-checkout.checkout--modern .woocommerce-shipping-fields label,
.woocommerce-checkout.checkout--modern .woocommerce-additional-fields label {
  padding-top: 12px;
  padding-bottom: 6px;
}
.woocommerce-checkout.checkout--modern .woocommerce-additional-fields {
  padding: 0 0 30px;
}
.woocommerce-checkout.checkout--modern .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single,
.woocommerce-checkout.checkout--modern .woocommerce-shipping-fields .select2-container--default .select2-selection--single {
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--base-400);
  border-color: var(--wp--preset--color--primary-500);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout.checkout--modern .woocommerce-shipping-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce-shipping-fields h3#ship-to-different-address {
  margin-top: 0;
  margin-bottom: 15px;
}
.woocommerce-checkout.checkout--modern .woocommerce-billing-fields > h3 {
  display: none;
}
.woocommerce-checkout.checkout--modern .woocommerce #payment .form-row.place-order {
  display: flex;
  flex-direction: column;
}
.woocommerce-checkout.checkout--modern .woocommerce #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper {
  order: 3;
  margin-bottom: 0;
  margin-top: 30px;
}
.woocommerce-checkout.checkout--modern .woocommerce form .form-row {
  padding: 0;
  margin: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce form .form-row.kco_shipping_data {
  display: none;
}
.woocommerce-checkout.checkout--modern .woocommerce form .form-row.form-row-wide.validate-required.validate-email {
  margin-bottom: 0;
}
.woocommerce-checkout.checkout--modern .form-row.create-account label span,
.woocommerce-checkout.checkout--modern .woocommerce-shipping-fields #ship-to-different-address span,
.woocommerce-checkout.checkout--modern .woocommerce-additional-fields label {
  color: var(--wp--preset--color--black);
  font-family: var(--wp--preset--font-family--zalando-sans);
  text-transform: none;
  font-weight: 400;
  font-size: 0.875rem;
}
.woocommerce-checkout.checkout--modern .woocommerce-shipping-fields label input[type=checkbox],
.woocommerce-checkout.checkout--modern .woocommerce-additional-fields label input[type=checkbox] {
  margin-right: 8px;
  position: relative;
  top: 2px;
}
.woocommerce-checkout.checkout--modern table.shop_table {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.woocommerce-checkout.checkout--modern table.shop_table thead {
  display: none;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody {
  background-color: var(--wp--preset--color--white);
  display: flex;
  flex-flow: column wrap;
  width: 100%;
  padding-top: 15px;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody.total, .woocommerce-checkout.checkout--modern table.shop_table tbody.custom-coupon-wrapper {
  display: none;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item {
  width: 100%;
  position: relative;
  display: grid;
  border-left: 0;
  border-top: 1px solid var(--wp--preset--color--base-200);
  padding: 15px 0;
  margin: 0;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  grid-gap: 10px 5px;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item:first-child {
  border-left: 0;
  margin-left: 0;
  border-top: 0;
  padding-top: 15px;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-thumbnail,
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name,
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-price,
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-quantity,
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-subtotal {
  border: 0;
  display: block;
  padding: 0;
  width: 100%;
  flex-basis: unset;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-thumbnail {
  order: 1;
  grid-row: 1/3;
  margin-bottom: 0;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-thumbnail img {
  max-height: 95px;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name {
  order: 2;
  grid-row: 1/2;
  grid-column: 2/3;
  margin: 0 0 auto;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name a {
  font-size: 1rem;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-subtotal {
  order: 3;
  grid-row: 1/2;
  grid-column: 3/4;
  margin: 0 0 auto;
  text-align: right;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-quantity {
  height: 32px;
  order: 4;
  position: relative;
  display: flex;
  grid-row: 2/2;
  grid-column: 2/3;
  margin: auto 0 0;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name,
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-quantity {
  padding-left: 7.5px;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item {
  /* Gets attribute value and adds it to content - useful for localisation */
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-quantity:before {
  content: attr(data-title) ":";
  display: inline-block;
  margin-right: 6px;
  font-weight: 300;
  font-size: 0.875rem;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-quantity .quantity-wrapper {
  border: 0;
  margin-top: 1rem;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name .product-price,
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name dt.variation-Discount {
  display: none;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name .variation {
  display: grid;
  grid-template-columns: auto auto;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  margin-top: 0.5rem;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name .variation [class^=variation-],
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name .variation [class^=variation-] p {
  font-weight: 300;
  line-height: 1.5;
  font-size: 0.8125rem;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name .awdr_free_product_text {
  background-color: var(--wp--preset--color--primary-400);
  padding: 5px 10px;
  display: inline-block;
  height: auto;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.625rem;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-name-link a {
  display: block;
  font-weight: 400;
  text-decoration: none;
  font-size: 1rem;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item td.product-price {
  display: none;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-remove {
  border: 0;
  padding: 0;
  position: relative;
  grid-row: 2/2;
  grid-column: 3/3;
  top: unset;
  bottom: 15px;
  margin: auto 0 0 auto;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-remove .remove {
  display: flex;
  align-items: center;
  width: auto;
  padding: 20px;
  margin-right: -20px;
  margin-bottom: -20px;
  font-weight: 400;
  -webkit-text-decoration: underline var(--wp--preset--color--black);
          text-decoration: underline var(--wp--preset--color--black);
  transition: text-decoration-color 0.25s;
  color: var(--wp--preset--color--black) !important; /* stylelint-disable-line declaration-no-important */
  text-underline-offset: 0.2rem;
  font-size: 0.875rem;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-remove .remove:hover, .woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-remove .remove:focus {
  text-decoration-color: transparent;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item .product-remove .remove:before {
  display: none;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr:last-child {
  flex-basis: 100%;
  display: flex;
}
.woocommerce-checkout.checkout--modern table.shop_table tbody tr:last-child td {
  margin-left: auto;
}
.woocommerce-checkout.checkout--modern table.shop_table .product-thumbnail {
  margin-bottom: 30px;
  text-align: center;
}
.woocommerce-checkout.checkout--modern table.shop_table .product-thumbnail img {
  border: 0;
  max-width: 100%;
  height: auto;
  max-height: 135px;
  width: auto;
}
.woocommerce-checkout.checkout--modern table.shop_table.woocommerce-checkout-review-order-table tbody {
  display: none;
}
.woocommerce-checkout.checkout--modern table.shop_table .cart-subtotal,
.woocommerce-checkout.checkout--modern table.shop_table .woocommerce-shipping-totals,
.woocommerce-checkout.checkout--modern table.shop_table .order-total,
.woocommerce-checkout.checkout--modern table.shop_table .tax-rate,
.woocommerce-checkout.checkout--modern table.shop_table .fee {
  display: block;
  width: 100%;
}
.woocommerce-checkout.checkout--modern table.shop_table .woocommerce-shipping-totals {
  margin-top: 1rem;
}
.woocommerce-checkout.checkout--modern table.shop_table .cart-discount,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .cart-subtotal,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total,
.woocommerce-checkout.checkout--modern table.shop_table .total-weight {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 14px 0;
}
.woocommerce-checkout.checkout--modern table.shop_table .cart-discount th,
.woocommerce-checkout.checkout--modern table.shop_table .cart-discount td,
.woocommerce-checkout.checkout--modern table.shop_table .cart-discount span,
.woocommerce-checkout.checkout--modern table.shop_table .cart-discount label,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .cart-subtotal th,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .cart-subtotal td,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .cart-subtotal span,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .cart-subtotal label,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total th,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total td,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total span,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total label,
.woocommerce-checkout.checkout--modern table.shop_table .total-weight th,
.woocommerce-checkout.checkout--modern table.shop_table .total-weight td,
.woocommerce-checkout.checkout--modern table.shop_table .total-weight span,
.woocommerce-checkout.checkout--modern table.shop_table .total-weight label {
  padding: 0;
  font-weight: 400;
  text-transform: none;
  font-size: 1rem;
}
.woocommerce-checkout.checkout--modern table.shop_table .total-weight th,
.woocommerce-checkout.checkout--modern table.shop_table .total-weight td {
  border-top: 0;
}
.woocommerce-checkout.checkout--modern table.shop_table .cart-discount {
  padding: 15px;
  background-color: #ECF6F0;
  border: 1px solid #91cba8;
  margin-bottom: 0;
}
.woocommerce-checkout.checkout--modern table.shop_table .cart-discount th,
.woocommerce-checkout.checkout--modern table.shop_table .cart-discount td {
  border-top: 0;
}
.woocommerce-checkout.checkout--modern table.shop_table tfoot .cart-subtotal {
  border-top: 1px solid var(--wp--preset--color--base-300);
}
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total {
  justify-content: center;
}
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total th {
  padding-right: 1ch;
}
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total th,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total td,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total span,
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total label {
  font-weight: 600;
  font-size: var(--wp--preset--font-size--medium);
}
.woocommerce-checkout.checkout--modern table.shop_table tfoot .order-total small span {
  font-size: initial;
  font-weight: initial;
}
.woocommerce-checkout.checkout--modern .checkout-page--mini-cart-wrapper,
.woocommerce-checkout.checkout--modern form.checkout.woocommerce-checkout {
  max-width: 100%;
  margin: 0 auto;
}
.woocommerce-checkout.checkout--modern .checkout-hero {
  height: 104px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  padding: 0 1.5rem;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 0 calc(50% - 50vw) 2.5rem calc(50% - 50vw);
}
.woocommerce-checkout.checkout--modern .checkout-hero-col {
  flex-basis: 33.33%;
}
.woocommerce-checkout.checkout--modern .checkout-hero-col--back-col a {
  padding-right: 60px;
  line-height: 1.32;
  color: var(--wp--preset--color--black);
  text-decoration: underline;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.woocommerce-checkout.checkout--modern .checkout-hero-col--back-col a svg {
  width: 20px;
  height: 20px;
  margin-right: 0.25rem;
}
.woocommerce-checkout.checkout--modern .checkout-hero-col--back-col a svg path {
  transition: fill 0.25s;
}
.woocommerce-checkout.checkout--modern .checkout-hero-col--back-col a:hover, .woocommerce-checkout.checkout--modern .checkout-hero-col--back-col a:focus {
  color: var(--wp--preset--color--primary-600);
}
.woocommerce-checkout.checkout--modern .checkout-hero-col--back-col a:hover path, .woocommerce-checkout.checkout--modern .checkout-hero-col--back-col a:focus path {
  fill: var(--wp--preset--color--primary-600);
}
.woocommerce-checkout.checkout--modern .checkout-hero-col--logo-col {
  display: flex;
  justify-content: center;
}
.woocommerce-checkout.checkout--modern .checkout-hero-col--icon-col {
  display: flex;
  justify-content: flex-end;
}
.woocommerce-checkout.checkout--modern .checkout-hero-col--icon-col span {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: var(--wp--preset--font-family--zalando-sans);
  flex-direction: column;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 0 auto;
  max-width: 80px;
  font-size: 0.75rem;
}
.woocommerce-checkout.checkout--modern .checkout-hero-col--icon-col span svg {
  margin-bottom: 5px;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout,
.woocommerce-checkout.checkout--modern #order_review {
  overflow-x: initial;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout #payment,
.woocommerce-checkout.checkout--modern #order_review #payment {
  border-radius: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout,
.woocommerce-checkout.checkout--modern #order_review {
  /* Style fix for Swish logo */
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout .wc_payment_method.payment_method_woosa_adyen_swish > label > img,
.woocommerce-checkout.checkout--modern #order_review .wc_payment_method.payment_method_woosa_adyen_swish > label > img {
  width: 4rem;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout .popup_wrapper_visible,
.woocommerce-checkout.checkout--modern #order_review .popup_wrapper_visible {
  backdrop-filter: blur(6px);
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout .payment_method_woosa_adyen_credit_card > label > img,
.woocommerce-checkout.checkout--modern #order_review .payment_method_woosa_adyen_credit_card > label > img {
  width: inherit;
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout .grid .checkout-payment-method-extras {
  flex-direction: column;
}
.woocommerce-checkout.checkout--modern .woocommerce-form-coupon {
  width: 100%;
  display: flex;
  transition: all 0.25s;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  flex-wrap: wrap;
}
.woocommerce-checkout.checkout--modern .woocommerce-form-coupon--show {
  opacity: 1;
  max-height: 420px;
  visibility: visible;
  margin: 15px 0 30px;
}
.woocommerce-checkout.checkout--modern .woocommerce-form-coupon .form-row-first {
  width: 100%;
}
.woocommerce-checkout.checkout--modern .woocommerce-form-coupon .form-row-last {
  width: 100%;
  margin-top: 1rem;
}
.woocommerce-checkout.checkout--modern .woocommerce-form-coupon .form-row-last .button {
  height: 100%;
  width: 100%;
  border-radius: 0 3px 3px 0;
}
.woocommerce-checkout.checkout--modern .woocommerce-form-coupon input {
  height: 100%;
  padding-right: 1rem;
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout .customer-details-wrapper {
  order: 2;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0;
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout #customer_details {
  margin-top: 30px;
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout #customer_details .woocommerce-account-fields {
  background-color: var(--wp--preset--color--white);
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout #customer_details .checkout-section.checkout-section--billing {
  margin-top: 0;
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout #customer_details #billing_company_field input#billing_company {
  display: none;
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout #customer_details #billing_company_field label {
  font-weight: 400;
  display: flex;
  align-items: center;
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout #customer_details #billing_company_field label:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.5' cy='7.5' r='7.5' fill='black'/%3E%3Cline x1='7.5' y1='4' x2='7.5' y2='11' stroke='white'/%3E%3Cline x1='4' y1='7.5' x2='11' y2='7.5' stroke='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  margin-right: 8px;
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout #customer_details #billing_company_field label.active:before {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.5' cy='7.5' r='7.5' fill='black'/%3E%3Cline x1='4' y1='7.5' x2='11' y2='7.5' stroke='white'/%3E%3C/svg%3E");
}
.woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout .woocommerce-checkout-review-order {
  border: 0;
  padding: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-review-order-table {
  margin-bottom: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-review-order-table tbody .custom-order-review.cart_item td {
  display: block;
  padding: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-review-order-table tbody .product-thumbnail {
  width: 100%;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-review-order-table tfoot {
  display: block;
  width: 100%;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-review-order-table .product-review-item {
  flex-direction: column;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-review-order-table {
  /* Hiding Edit cart link added by Qala Theme */
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-review-order-table .change-cart-button-row {
  display: none;
}
.woocommerce-checkout.checkout--modern .order-review-heading {
  display: none;
}
.woocommerce-checkout.checkout--modern .woocommerce form .form-row input.input-text,
.woocommerce-checkout.checkout--modern .woocommerce form .form-row textarea {
  border: 1px solid var(--wp--preset--color--base-400);
  border-radius: 0;
  transition: border-color 0.25s;
}
.woocommerce-checkout.checkout--modern .woocommerce form .form-row input.input-text:not(:-moz-placeholder), .woocommerce-checkout.checkout--modern .woocommerce form .form-row textarea:not(:-moz-placeholder) {
  border-color: var(--wp--preset--color--primary-500);
}
.woocommerce-checkout.checkout--modern .woocommerce form .form-row input.input-text:focus, .woocommerce-checkout.checkout--modern .woocommerce form .form-row input.input-text:not(:placeholder-shown),
.woocommerce-checkout.checkout--modern .woocommerce form .form-row textarea:focus,
.woocommerce-checkout.checkout--modern .woocommerce form .form-row textarea:not(:placeholder-shown) {
  border-color: var(--wp--preset--color--primary-500);
}
.woocommerce-checkout.checkout--modern form .form-row.woocommerce-invalid.validate-required .select2-container,
.woocommerce-checkout.checkout--modern form .form-row.woocommerce-invalid.validate-required input.input-text,
.woocommerce-checkout.checkout--modern form .form-row.woocommerce-invalid.validate-required select {
  border-color: #f68e95;
  background-color: #FDEDEE;
}
.woocommerce-checkout.checkout--modern .woocommerce form .form-row input.input-text[name=billing_address_2] {
  border-top: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout.checkout--modern .woocommerce-shipping-fields,
.woocommerce-checkout.checkout--modern .woocommerce-additional-fields,
.woocommerce-checkout.checkout--modern .woocommerce-shipping-fields .shipping_address {
  background-color: var(--wp--preset--color--white);
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment {
  margin-bottom: 120px;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment .final-checkout-total,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment .final-checkout-total span,
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment .final-checkout-total span * {
  display: none;
  font-family: var(--wp--preset--font-family--zalando-sans);
  font-size: 1.375rem;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-payment .final-checkout-total span {
  font-weight: 600;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout-review-order-wrapper .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 0;
}
.woocommerce-checkout.checkout--modern .checkout-toggle-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid var(--wp--preset--color--base-300);
  margin-top: 30px;
}
.woocommerce-checkout.checkout--modern .checkout-toggle-section .toggle-section--title {
  font-weight: 400;
  font-size: 1rem;
}
.woocommerce-checkout.checkout--modern .checkout-toggle-section .toggle-section--button {
  position: relative;
  width: 26px;
  height: 26px;
}
.woocommerce-checkout.checkout--modern .checkout-toggle-section .toggle-section--button:before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background-color: var(--wp--preset--color--black);
  position: absolute;
  top: 4px;
  right: 13px;
}
.woocommerce-checkout.checkout--modern .checkout-toggle-section .toggle-section--button:after {
  content: "";
  display: block;
  height: 1px;
  width: 15px;
  background-color: var(--wp--preset--color--black);
  position: absolute;
  top: 11px;
  right: 6px;
}
.woocommerce-checkout.checkout--modern .checkout-toggle-section.coupon-toggle.active {
  border-bottom: 0;
}
.woocommerce-checkout.checkout--modern .checkout-toggle-section.coupon-toggle.active .toggle-section--button:before {
  display: none;
}
.woocommerce-checkout.checkout--modern .grid .woocommerce-form-coupon-toggle {
  display: none;
}
.woocommerce-checkout.checkout--modern .grid .woocommerce-form-coupon-toggle + ul.woocommerce-error {
  margin-left: 0;
  width: 100%;
}
.woocommerce-checkout.checkout--modern .checkout-section {
  margin-top: 30px;
}
.woocommerce-checkout.checkout--modern .checkout-section .checkout-extra-products-carousel {
  background-color: var(--wp--preset--color--white);
  padding: 30px;
}
.woocommerce-checkout.checkout--modern .checkout-section .checkout-section-title {
  padding: 0;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce-checkout.checkout--modern .checkout-section .checkout-section-title h3 {
  display: flex;
  align-items: center;
  text-transform: none;
  font-family: var(--wp--preset--font-family--zalando-sans);
  font-weight: 600;
  margin: 0;
  font-size: 1.375rem;
}
.woocommerce-checkout.checkout--modern .checkout-section .checkout-section-title h3:before {
  counter-increment: checkout-section;
  content: counter(checkout-section);
  width: 36px;
  height: 36px;
  background: var(--wp--preset--color--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--white);
  margin-right: 10px;
  font-size: 0.875rem;
}
.woocommerce-checkout.checkout--modern .checkout-section .checkout-section-title .subtitle {
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.2;
}
.woocommerce-checkout.checkout--modern .checkout-section .checkout-section-title--has-subtitle h3 {
  line-height: 1.2;
}
.woocommerce-checkout.checkout--modern .checkout-section > h3 {
  display: none;
}
.woocommerce-checkout.checkout--modern .checkout-section--newsletter {
  margin-top: 30px;
  margin-bottom: 30px;
}
.woocommerce-checkout.checkout--modern .checkout-section--newsletter .checkout-section-content.newsletter-wrapper {
  background-color: var(--wp--preset--color--white);
  padding: 30px;
  margin-bottom: 30px;
}
.woocommerce-checkout.checkout--modern .checkout-section--cart-wrapper {
  margin-top: 0;
}
.woocommerce-checkout.checkout--modern .checkout-page--mini-cart-wrapper .checkout-section-title h3,
.woocommerce-checkout.checkout--modern .depict-products-block .depict-products-block__header h2 {
  text-transform: none;
  font-family: var(--wp--preset--font-family--zalando-sans);
  font-weight: 600;
  margin: 0;
  font-size: 1.375rem;
}
.woocommerce-checkout.checkout--modern form .form-row .woocommerce-terms-and-conditions-wrapper input[name=terms] {
  margin-top: 5px;
}
.woocommerce-checkout.checkout--modern .woocommerce .woocommerce-checkout #payment .woocommerce-notice.woocommerce-notice--info.woocommerce-info {
  border: 0;
  padding: 30px;
  box-shadow: none;
  font-size: 1rem;
}
.woocommerce-checkout.checkout--modern .woocommerce .woocommerce-checkout #payment .woocommerce-notice.woocommerce-notice--info.woocommerce-info:before {
  display: none;
}
.woocommerce-checkout.checkout--modern .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text p {
  color: var(--wp--preset--color--base-600);
}
.woocommerce-checkout.checkout--modern .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text p,
.woocommerce-checkout.checkout--modern .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text a {
  font-size: 1rem;
}
.woocommerce-checkout.checkout--modern .woocommerce-checkout #payment div.form-row {
  padding-top: 30px;
}
.woocommerce-checkout.checkout--modern .quantity {
  border: 0;
}
.woocommerce-checkout.checkout--modern .quantity .qty {
  min-width: 2em;
  field-sizing: content; /* stylelint-disable-line property-no-unknown */
  border: 0;
}
.woocommerce-checkout.checkout--modern .quantity .qty::-webkit-inner-spin-button, .woocommerce-checkout.checkout--modern .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: initial;
          appearance: initial;
  margin: 0;
  opacity: 1;
}
.woocommerce-checkout.checkout--modern .quantity-wrapper .quantity-modifier {
  color: var(--wp--preset--color--black);
}
.woocommerce-checkout.checkout--modern .customer-details-wrapper .col2-set {
  padding: 0;
  border: 0;
}
.woocommerce-checkout.checkout--modern {
  /* fixes for order completed screen to override styles to checkout review screen above */
}
.woocommerce-checkout.checkout--modern .woocommerce-order-received .entry-header {
  display: block;
}
.woocommerce-checkout.checkout--modern .woocommerce-order-received .woocommerce-order ul.order_details {
  padding-left: 0;
  padding-right: 0;
}
.woocommerce-checkout.checkout--modern .woocommerce-order-received table.shop_table.woocommerce-table--order-details {
  display: none;
}
.woocommerce-checkout.checkout--modern .product-name .wc-item-meta {
  display: block;
  padding-left: 0;
  margin-top: 0;
  font-weight: 300;
  font-size: 0.875rem;
}
.woocommerce-checkout.checkout--modern .product-name .wc-item-meta p {
  color: var(--wp--preset--color--black);
  font-size: 0.875rem;
}
.woocommerce-checkout.checkout--modern .checkout-payment-method-extras #shipwallet-container {
  margin-top: 40px;
}
.woocommerce-checkout.checkout--modern {
  /* stylelint-disable declaration-no-important */
}
.woocommerce-checkout.checkout--modern .shop_table--max-3-mobile tbody > tr:nth-child(3) {
  position: relative;
}
.woocommerce-checkout.checkout--modern .shop_table--max-3-mobile tbody > tr:nth-child(3):before {
  position: absolute;
  content: "";
  background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgb(255, 255, 255));
  top: 0;
  right: 0;
  bottom: 0;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 20px);
  transition: background-image 0.25s;
}
.woocommerce-checkout.checkout--modern .shop_table--max-3-mobile tbody > tr:nth-child(n+4) {
  max-height: 0;
  opacity: 0;
  transition: all 0.25s;
  padding: 0 !important;
  border-color: transparent !important;
  pointer-events: none;
}
.woocommerce-checkout.checkout--modern .shop_table--max-3-mobile-show tbody > tr:nth-child(3):before {
  background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(255, 255, 255, 0));
}
.woocommerce-checkout.checkout--modern .shop_table--max-3-mobile-show tbody > tr:nth-child(n+4) {
  max-height: 420px;
  opacity: 1;
  padding: 15px 0 !important;
  border-color: var(--wp--preset--color--base-200) !important;
  pointer-events: all;
}
.woocommerce-checkout.checkout--modern .shop-table-view-more {
  text-align: center;
}
.woocommerce-checkout.checkout--modern .jump-to-order-review {
  margin-bottom: 2rem;
}
.woocommerce-checkout.checkout--modern .jump-to-order-review a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-checkout.checkout--modern .jump-to-order-review svg {
  width: 20px;
  height: 20px;
  margin-left: 0.25rem;
}
.woocommerce-checkout.checkout--modern .jump-to-order-review svg path {
  transition: fill 0.2s;
  fill: var(--wp--preset--color--primary-500);
}
.woocommerce-checkout.checkout--modern .jump-to-order-review:hover path, .woocommerce-checkout.checkout--modern .jump-to-order-review:focus path {
  fill: var(--wp--preset--color--primary-600);
}

/* stylelint-enable max-nesting-depth, selector-id-pattern */
body.woocommerce-checkout.checkout--modern .checkout-payment-method-extras {
  padding: 0 15px;
  margin-bottom: 1rem;
}
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) #kco-wrapper {
  padding-top: 0;
}
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper,
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) form.checkout.woocommerce-checkout {
  margin-bottom: 0;
}
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-section-title,
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .woocommerce-cart-form,
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) #kco-order-review {
  padding-left: 15px;
  padding-right: 15px !important;
}
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper button,
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper a.button {
  border-radius: 8px !important;
}
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper input,
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper table.shop_table tfoot .woocommerce-shipping-totals.shipping li {
  border-radius: 16px !important;
}
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper .checkout-payment-method-extras {
  margin-bottom: 0;
  /* stylelint-disable max-nesting-depth */
}
body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper .checkout-payment-method-extras {
  /* stylelint-enable max-nesting-depth */
}
body.woocommerce-checkout.checkout--modern:has(.ppc-button-wrapper) .checkout-page--mini-cart-wrapper button,
body.woocommerce-checkout.checkout--modern:has(.ppc-button-wrapper) .checkout-page--mini-cart-wrapper a.button {
  border-radius: 0 !important;
}
body.woocommerce-checkout.checkout--modern:has(.ppc-button-wrapper) .checkout-page--mini-cart-wrapper input,
body.woocommerce-checkout.checkout--modern:has(.ppc-button-wrapper) .checkout-page--mini-cart-wrapper table.shop_table tfoot .woocommerce-shipping-totals.shipping li {
  border-radius: 0 !important;
}
body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-page--mini-cart-wrapper button,
body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-page--mini-cart-wrapper a.button {
  border-radius: 5px !important;
}
body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-page--mini-cart-wrapper input,
body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-page--mini-cart-wrapper table.shop_table tfoot .woocommerce-shipping-totals.shipping li {
  border-radius: 3px !important;
}
body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-page--mini-cart-wrapper .checkout-payment-method-extras .woocommerce-form-coupon input {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  height: 100%;
}
body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-page--mini-cart-wrapper .checkout-payment-method-extras .woocommerce-form-coupon button,
body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-page--mini-cart-wrapper .checkout-payment-method-extras .woocommerce-form-coupon a.button {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-payment-method-extras {
  padding: 0;
  margin-bottom: 0;
}

#kco-order-review {
  padding-right: 0 !important;
}

#kco-iframe {
  padding-left: 0 !important;
}

/* stylelint-enable */
body {
  font-family: var(--wp--preset--font-family--zalando-sans);
  color: var(--wp--preset--color--base-900);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  height: 100vh; /* Avoid the IE 10-11 `min-height` bug. */
  position: static;
  overflow-x: hidden; /* needed for ACF Modules margin-left: calc(50% - 50vw); code see https://cloudfour.com/thinks/breaking-out-with-viewport-units-and-calc/ */
  font-size: var(--wp--preset--font-size--step-0);
}
body.admin-bar {
  height: calc(100vh - 32px);
}
body.mobile-menu-open {
  overflow: hidden;
}

.site,
.site-footer {
  flex-shrink: 0;
}

.site {
  flex: 1 0 auto;
}

.site-main {
  overflow: clip;
}
.site-main:has(.archive-stay-informed-right) {
  overflow: unset;
}
.site-main > .woocommerce-notices-wrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

p {
  margin: 0 0 1.5em 0;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.57;
  letter-spacing: 0;
  font-size: var(--wp--preset--font-size--step-0);
}

small,
.has-step-minus-1-font-size {
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.66;
  letter-spacing: 0;
  font-size: var(--wp--preset--font-size--step-minus-1);
}

dfn,
cite,
em,
i {
  font-style: italic;
}

strong,
b {
  font-weight: 700;
}

a {
  color: var(--wp--preset--color--primary-500);
  transition: 0.2s ease-in-out color, 0.2s ease-in-out text-decoration-color;
  text-decoration: none;
  text-decoration-color: transparent;
  letter-spacing: 0;
  font-weight: 300;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  text-transform: none;
}
a:hover, a:focus, a:active {
  color: var(--wp--preset--color--primary-variant-chambray);
  text-decoration: none;
  text-decoration-color: var(--wp--preset--color--primary-variant-chambray);
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
a[href="#"] {
  cursor: pointer;
}

p a {
  color: var(--wp--preset--color--primary-500);
  text-decoration: underline;
  text-decoration-color: inherit;
}
p a:hover, p a:focus {
  color: var(--wp--preset--color--primary-variant-chambray);
  text-decoration: none;
  text-decoration-color: transparent;
}

.woocommerce.single-product .woocommerce-container,
.qala-quickview .woocommerce-container {
  width: 100%;
  padding: 0;
}
.woocommerce.single-product .woocommerce-container:before, .woocommerce.single-product .woocommerce-container:after,
.qala-quickview .woocommerce-container:before,
.qala-quickview .woocommerce-container:after {
  display: table;
  content: " ";
}
.woocommerce.single-product .product,
.qala-quickview .product {
  width: 100%;
}
.woocommerce.single-product .woocommerce-breadcrumb,
.qala-quickview .woocommerce-breadcrumb {
  display: none;
}
.woocommerce.single-product .woocommerce-breadcrumb__part:last-child,
.woocommerce.single-product .woocommerce-breadcrumb__delimiter:nth-last-of-type(2),
.qala-quickview .woocommerce-breadcrumb__part:last-child,
.qala-quickview .woocommerce-breadcrumb__delimiter:nth-last-of-type(2) {
  display: none;
  font-weight: 700;
}
.woocommerce.single-product .product-wrap,
.qala-quickview .product-wrap {
  width: 100%;
}
.woocommerce.single-product,
.qala-quickview {
  /* stylelint-disable selector-max-id, declaration-no-important  */
}
.woocommerce.single-product #content div.product div.summary,
.woocommerce.single-product div.product div.summary,
.qala-quickview #content div.product div.summary,
.qala-quickview div.product div.summary {
  flex-grow: 5;
  float: none;
  height: 100%;
  width: 100%;
  margin-bottom: 0;
  position: relative;
}
.woocommerce.single-product,
.qala-quickview {
  /* stylelint-enable */
}
.woocommerce.single-product .summary-inner-wrapper,
.qala-quickview .summary-inner-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  background: transparent;
  margin-top: 0;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 0;
}
.woocommerce.single-product .summary-inner-wrapper span.availability_date,
.qala-quickview .summary-inner-wrapper span.availability_date {
  padding: 0 1.5rem;
  margin-bottom: 20px;
}
.woocommerce.single-product .summary-inner-wrapper > *,
.qala-quickview .summary-inner-wrapper > * {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.woocommerce.single-product .summary-inner-wrapper .product-attributes,
.qala-quickview .summary-inner-wrapper .product-attributes {
  width: 100%;
}
.woocommerce.single-product .product .product_title,
.qala-quickview .product .product_title {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
  font-size: clamp(1.75rem, 1.75rem + (1vw - 0.225rem) * -0.3225806452, 1.5rem); /* stylelint-disable-line max-line-length */
}
.woocommerce.single-product div.product p.price,
.qala-quickview div.product p.price {
  display: inline;
  line-height: 1;
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: var(--wp--preset--color--base-900);
  font-family: var(--wp--preset--font-family--zalando-sans);
  font-size: clamp(1.75rem, 1.75rem + (1vw - 0.225rem) * -0.3225806452, 1.5rem); /* stylelint-disable-line max-line-length */
}
.woocommerce.single-product div.product p.price .amount,
.qala-quickview div.product p.price .amount {
  color: var(--wp--preset--color--base-900);
  font-weight: 500;
  font-family: var(--wp--preset--font-family--zalando-sans);
  font-size: clamp(1.125rem, 1.125rem + (1vw - 0.225rem) * -0.1612903226, 1rem); /* stylelint-disable-line max-line-length */
}
.woocommerce.single-product div.product p.price ins,
.qala-quickview div.product p.price ins {
  text-decoration: none;
  line-height: 10px;
}
.woocommerce.single-product div.product p.price ins .amount,
.qala-quickview div.product p.price ins .amount {
  color: var(--wp--preset--color--primary-500);
}
.woocommerce.single-product div.product p.price del,
.qala-quickview div.product p.price del {
  opacity: 1;
  font-weight: 300;
  margin-left: 0.5rem;
  font-size: clamp(0.8125rem, 0.8125rem + (1vw - 0.225rem) * 0.2419354839, 1rem); /* stylelint-disable-line max-line-length */
}
.woocommerce.single-product div.product p.price del .amount,
.qala-quickview div.product p.price del .amount {
  color: var(--wp--preset--color--base-900);
  font-weight: 300;
  font-size: clamp(0.8125rem, 0.8125rem + (1vw - 0.225rem) * 0.2419354839, 1rem); /* stylelint-disable-line max-line-length */
}
.woocommerce.single-product .woocommerce-product-details__short-description,
.qala-quickview .woocommerce-product-details__short-description {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.woocommerce.single-product .woocommerce-product-details__short-description p,
.qala-quickview .woocommerce-product-details__short-description p {
  margin-top: 0;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.54;
  letter-spacing: 0;
  font-size: clamp(0.875rem, 0.875rem + (1vw - 0.225rem) * 0.1612903226, 1rem); /* stylelint-disable-line max-line-length */
}
.woocommerce.single-product .woocommerce-product-details__short-description ol,
.woocommerce.single-product .woocommerce-product-details__short-description ul,
.qala-quickview .woocommerce-product-details__short-description ol,
.qala-quickview .woocommerce-product-details__short-description ul {
  padding-left: 1.5rem;
}
.woocommerce.single-product .woocommerce-product-details__short-description li,
.qala-quickview .woocommerce-product-details__short-description li {
  font-size: clamp(0.875rem, 0.875rem + (1vw - 0.225rem) * 0.1612903226, 1rem); /* stylelint-disable-line max-line-length */
}
.woocommerce.single-product .woocommerce-product-details__short-description :last-child,
.qala-quickview .woocommerce-product-details__short-description :last-child {
  margin-bottom: 2rem;
}
.woocommerce.single-product .summary-inner-wrapper > .product-attributes table,
.qala-quickview .summary-inner-wrapper > .product-attributes table {
  font-size: 0.8125rem;
}
.woocommerce.single-product .summary-inner-wrapper > .product-attributes table td,
.woocommerce.single-product .summary-inner-wrapper > .product-attributes table th,
.qala-quickview .summary-inner-wrapper > .product-attributes table td,
.qala-quickview .summary-inner-wrapper > .product-attributes table th {
  padding: 0;
  background-color: transparent;
}
.woocommerce.single-product .summary-inner-wrapper > .product-attributes table td,
.qala-quickview .summary-inner-wrapper > .product-attributes table td {
  padding-left: 5px;
}

/**
 * 1. for some reason the loading of this button with position: absolute
 * this is delayed in plugins/qala-wishlist/dist/app.css, which causes a big
 * layout shift on the slider on first load. Adding it here early to fix that */
.product-gallery-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow-x: hidden;
  max-width: 100%;
}
.product-gallery-wrap .qala-wishlist-button {
  z-index: 2;
  position: absolute; /* [1] */
  top: 15px;
  right: 15px;
}
.product-gallery-wrap .qala-wishlist-button__no-image-slider {
  position: static;
}

.ac-module__wrapper--pdp {
  padding: 2rem 0 1rem;
}

.container--productlistings {
  overflow: hidden;
}

.single-product .site-main {
  overflow: visible;
}

.product-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.product-icons__column {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.product-icons__column h6 {
  color: var(--wp--preset--color--black);
  font-family: var(--wp--preset--font-family--zalando-sans);
  margin: 0.375rem 0 0.25rem;
  font-weight: 500;
  font-size: 0.75rem;
}
.product-icons__column span {
  color: var(--wp--preset--color--black);
  font-size: 0.75rem;
}
.product-icons__icon {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-icons__icon svg,
.product-icons__icon img {
  display: inline-block;
  min-width: 30px;
  width: 100%;
  height: auto;
}

.product-model-info {
  margin-bottom: 1em;
}
.product-model-info span {
  font-size: 0.875rem;
}

.woocommerce div.product form.cart .variations th.label {
  line-height: 1.4;
}
.woocommerce div.product form.cart .variations th.label label {
  font-weight: 600;
  font-size: 0.875rem;
}

.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr th,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr th {
  display: none;
  padding: 15px 30px 22px 0;
  border-bottom: 2px solid var(--wp--preset--color--base-100);
  font-family: var(--wp--preset--font-family--zalando-sans);
  line-height: 1.46;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td {
  align-items: center;
  border-top: 0;
  font-weight: 400;
  padding: 8px 10px 8px 0;
  font-size: 0.8125rem;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-thumbnail,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-thumbnail {
  width: 66px;
  flex-basis: 66px;
  padding-right: 5px;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-thumbnail img,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-thumbnail img {
  width: 61px;
  border: 1px solid var(--wp--preset--color--base-300);
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-name,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-name {
  width: 112px;
  flex-basis: 112px;
  flex-grow: 1;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-name a,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-name a {
  font-family: var(--wp--preset--font-family--zalando-sans);
  line-height: 1.53;
  letter-spacing: 0;
  color: var(--wp--preset--color--base-900);
  text-decoration: underline;
  font-size: 0.8125rem;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-name dl.variation,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-name dl.variation {
  display: none;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-name .product-price,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-name .product-price {
  display: block;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-name .checkout-thumbnail,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-name .checkout-thumbnail {
  display: none;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-subtotal,
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-price,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-subtotal,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-price {
  display: none;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-remove,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-remove {
  padding-right: 0;
  padding-left: 10px;
  text-align: center;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-remove,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-remove {
  /* stylelint-disable selector-no-id, selector-max-id, declaration-no-important  */
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-remove a.remove,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-remove a.remove {
  color: var(--wp--preset--color--base-500) !important;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
  width: 13px;
  height: 13px;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-remove a.remove:before,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-remove a.remove:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 18'%3E%3Cpath d='M1.18.761l16.345 16.346m0-16.346L1.18 17.107' fill='none' fill-rule='evenodd' stroke='%23323031' stroke-linecap='round' stroke-width='1.5'/%3E%3C/svg%3E");
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-remove a.remove:hover, .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-remove a.remove:focus,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-remove a.remove:hover,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-remove a.remove:focus {
  background: none;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-remove,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-remove {
  /* stylelint-enable */
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.actions,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.actions {
  border: 0;
  padding: 15px 0 0;
}
.woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.actions .coupon,
.woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.actions .coupon {
  display: none;
}
.woocommerce-cart .quantity-wrapper,
.woocommerce-checkout .quantity-wrapper {
  margin-right: 0;
  height: 40px;
}
.woocommerce-cart .quantity-wrapper .quantity,
.woocommerce-checkout .quantity-wrapper .quantity {
  border-width: 0;
}
.woocommerce-cart .quantity-wrapper .quantity-modifier,
.woocommerce-checkout .quantity-wrapper .quantity-modifier {
  padding-right: 10px;
  padding-left: 10px;
}
.woocommerce-cart .woocommerce .quantity .qty,
.woocommerce-checkout .woocommerce .quantity .qty {
  font-weight: 300;
}

.woocommerce-cart .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  order: 2;
  width: 100%;
  flex-basis: 100%;
  margin-top: 10px;
  padding: 0 0 30px;
}
.woocommerce-cart .woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  padding-left: 0;
  background-color: transparent;
  line-height: 1.54;
  letter-spacing: 0;
  border-color: transparent;
  font-size: 0.8125rem;
}
.woocommerce-cart .woocommerce-form-coupon-toggle .woocommerce-info a,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a {
  color: var(--wp--preset--color--base-900);
  text-decoration: underline;
}
.woocommerce-cart .woocommerce-form-coupon-toggle .woocommerce-info:before,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info:before {
  content: none;
}
.woocommerce-cart .woocommerce form.checkout_coupon,
.woocommerce-checkout .woocommerce form.checkout_coupon {
  border: 0;
  width: 100%;
  margin-top: 0;
  margin-bottom: 30px;
  display: flex;
  order: 3;
  flex-basis: 100%;
  padding: 0 0 15px;
}
.woocommerce-cart .woocommerce form.checkout_coupon p:first-of-type,
.woocommerce-checkout .woocommerce form.checkout_coupon p:first-of-type {
  display: none;
}
.woocommerce-cart .woocommerce form.checkout_coupon .form-row,
.woocommerce-checkout .woocommerce form.checkout_coupon .form-row {
  padding: 0;
  margin: 0;
}
.woocommerce-cart .woocommerce form.checkout_coupon .form-row-first,
.woocommerce-checkout .woocommerce form.checkout_coupon .form-row-first {
  flex-grow: 1;
  margin-right: 15px;
}
.woocommerce-cart .woocommerce form.checkout_coupon .form-row-last,
.woocommerce-checkout .woocommerce form.checkout_coupon .form-row-last {
  display: flex;
}
.woocommerce-cart .woocommerce form.checkout_coupon .form-row-last .button,
.woocommerce-checkout .woocommerce form.checkout_coupon .form-row-last .button {
  flex-grow: 1;
  height: 100%;
}
.woocommerce-cart .grid .woocommerce-error,
.woocommerce-cart .grid .woocommerce-message,
.woocommerce-checkout .grid .woocommerce-error,
.woocommerce-checkout .grid .woocommerce-message {
  order: 3;
  margin: 0 25px 15px;
  width: 100%;
}

#order_review_heading {
  display: none;
}

.woocommerce-checkout-review-order-wrapper {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-basis: 100%;
}
.checkout-modern .woocommerce-checkout-review-order-wrapper {
  display: block;
  max-width: 100%;
  padding: 0;
}

.order-review-heading {
  order: 4;
  width: 100%;
  flex-basis: 100%;
  padding-top: 30px;
  border-top: 1px solid var(--wp--preset--color--base-400);
}

.change-cart-button-wrap {
  display: flex;
  justify-content: flex-end;
}
.change-cart-button-wrap .order-review-head__change-cart-button {
  background: transparent;
  padding: 10px;
  border: unset;
  color: #000;
  text-transform: unset;
  font-weight: 300;
  font-size: 0.8125rem;
}
.change-cart-button-wrap .order-review-head__change-cart-button:hover, .change-cart-button-wrap .order-review-head__change-cart-button:focus {
  background: transparent;
  text-decoration: underline;
  border: unset;
}

.usps {
  order: 1;
  width: 100%;
  flex-basis: 100%;
}

.woocommerce-checkout-review-order {
  width: 100%;
  border: 0;
  padding: 0;
  order: 5;
}

body.woocommerce-checkout .woocommerce table.shop_table {
  margin-bottom: 30px;
}

.woocommerce .woocommerce-checkout-review-order-table thead,
.woocommerce .woocommerce-checkout-review-order-table td.product-total {
  display: none;
}
.woocommerce .woocommerce-checkout-review-order-table tbody tr:first-child td {
  padding-top: 0;
}
.woocommerce .woocommerce-checkout-review-order-table tbody tr td {
  padding: 10px 0;
}
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item {
  display: none;
}
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item.custom-order-review {
  display: table-row;
}
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item td {
  text-transform: none;
  width: 100%;
  border: 0;
  font-size: 0.8125rem;
}
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item td td {
  border-top: 0;
}
.woocommerce .woocommerce-checkout-review-order-table .product-review-item {
  display: flex;
  align-items: flex-start;
}
.woocommerce .woocommerce-checkout-review-order-table .product-thumbnail img {
  max-width: 83px;
  border: 1px solid var(--wp--preset--color--base-100);
}
.woocommerce .woocommerce-checkout-review-order-table .product-details {
  padding: 0.15rem 0 0 1.5625rem;
}
.woocommerce .woocommerce-checkout-review-order-table .product-name-link a {
  text-transform: none;
  color: var(--wp--preset--color--base-900);
  font-size: 0.8125rem;
}
.woocommerce .woocommerce-checkout-review-order-table .product-price {
  font-weight: 700;
}

.woocommerce table.shop_table .cart-subtotal,
.woocommerce table.shop_table .woocommerce-shipping-totals,
.woocommerce table.shop_table .order-total,
.woocommerce table.shop_table .tax-rate,
.woocommerce table.shop_table .fee {
  color: var(--wp--preset--color--base-700);
  font-family: var(--wp--preset--font-family--zalando-sans);
}
.woocommerce table.shop_table .cart-subtotal ul li,
.woocommerce table.shop_table .woocommerce-shipping-totals ul li,
.woocommerce table.shop_table .order-total ul li,
.woocommerce table.shop_table .tax-rate ul li,
.woocommerce table.shop_table .fee ul li {
  font-weight: 700;
  padding: 0;
  margin: 0;
}
.woocommerce table.shop_table .cart-subtotal ul li:before,
.woocommerce table.shop_table .woocommerce-shipping-totals ul li:before,
.woocommerce table.shop_table .order-total ul li:before,
.woocommerce table.shop_table .tax-rate ul li:before,
.woocommerce table.shop_table .fee ul li:before {
  display: none;
}
.woocommerce table.shop_table .cart-subtotal p,
.woocommerce table.shop_table .cart-subtotal a,
.woocommerce table.shop_table .woocommerce-shipping-totals p,
.woocommerce table.shop_table .woocommerce-shipping-totals a,
.woocommerce table.shop_table .order-total p,
.woocommerce table.shop_table .order-total a,
.woocommerce table.shop_table .tax-rate p,
.woocommerce table.shop_table .tax-rate a,
.woocommerce table.shop_table .fee p,
.woocommerce table.shop_table .fee a {
  font-size: 0.9375rem;
}
.woocommerce table.shop_table .cart-subtotal th,
.woocommerce table.shop_table .cart-subtotal td,
.woocommerce table.shop_table .woocommerce-shipping-totals th,
.woocommerce table.shop_table .woocommerce-shipping-totals td,
.woocommerce table.shop_table .order-total th,
.woocommerce table.shop_table .order-total td,
.woocommerce table.shop_table .tax-rate th,
.woocommerce table.shop_table .tax-rate td,
.woocommerce table.shop_table .fee th,
.woocommerce table.shop_table .fee td {
  font-weight: 700;
  padding: 5px 0;
  border-top: 0;
}
.woocommerce table.shop_table .cart-subtotal th,
.woocommerce table.shop_table .woocommerce-shipping-totals th,
.woocommerce table.shop_table .order-total th,
.woocommerce table.shop_table .tax-rate th,
.woocommerce table.shop_table .fee th {
  text-align: left;
}
.woocommerce table.shop_table .cart-subtotal td,
.woocommerce table.shop_table .woocommerce-shipping-totals td,
.woocommerce table.shop_table .order-total td,
.woocommerce table.shop_table .tax-rate td,
.woocommerce table.shop_table .fee td {
  text-align: right;
}

.woocommerce table.shop_table .woocommerce-shipping-totals th,
.woocommerce table.shop_table .woocommerce-shipping-totals td {
  padding-bottom: 1rem;
}

.woocommerce table.shop_table .tax-rate th,
.woocommerce table.shop_table .tax-rate td {
  padding-top: 1rem;
  border-top: 1px solid var(--wp--preset--color--base-100);
}

.woocommerce table.shop_table .cart-subtotal th,
.woocommerce table.shop_table .cart-subtotal td {
  padding-top: 30px;
}

.woocommerce table.shop_table .order-total {
  color: var(--wp--preset--color--base-900);
}
.woocommerce table.shop_table .order-total td,
.woocommerce table.shop_table .order-total th {
  text-transform: none;
  font-family: var(--wp--preset--font-family--zalando-sans);
  padding-bottom: 0;
  line-height: 1.6;
  letter-spacing: 0;
  font-size: 0.9375rem;
}

.woocommerce table.shop_table .change-cart-button-row td {
  border: unset;
}

/* stylelint-disable */
body .woocommerce ul#shipping_method li {
  margin-bottom: 0.625rem;
}

/* stylelint-enable */
body .woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  width: 100%;
  max-width: 33.75rem;
}

/* Don't know if I should create a new file for overall reviews or not */
.wc-block-components-sort-select {
  margin-bottom: 0.75rem;
}

.wc-block-components-review-sort-select {
  text-align: right;
}

.wc-block-components-sort-select__label {
  margin-bottom: 0.25rem;
  display: inline-block;
  font-weight: 400;
}

.wc-block-components-review-list.wc-block-components-review-list {
  margin: 0;
  padding-left: 1.25rem;
}

.wc-block-components-review-list-item__item {
  margin: 0 0 3rem;
  list-style: none;
}

.wc-block-components-review-list-item__info {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}

.wc-block-components-review-list-item__meta {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  grid-row: 1;
}
.wc-block-components-review-list-item__meta:after {
  order: 3;
  content: "";
  flex-basis: 100%;
}

.wc-block-components-review-list-item__item--has-image .wc-block-components-review-list-item__info {
  grid-template-columns: calc(3rem + 1rem) 1fr;
}
.wc-block-components-review-list-item__item--has-image .wc-block-components-review-list-item__meta {
  grid-column: 2;
}

.wc-block-components-review-list-item__image {
  align-items: center;
  display: flex;
  grid-column: 1;
  grid-row: 1/3;
  justify-content: center;
  position: relative;
  height: 3rem;
  width: 3rem;
}
.wc-block-components-review-list-item__image > img {
  display: block;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.wc-block-components-review-list-item__rating {
  order: 2;
}
.wc-block-components-review-list-item__rating > .wc-block-components-review-list-item__rating__stars {
  font-size: 1rem;
  display: block;
  top: 0;
  overflow: hidden;
  position: relative;
  height: 1rem;
  width: 4.375rem;
  line-height: 1;
  font-family: star;
  font-weight: 400;
}
.wc-block-components-review-list-item__rating > .wc-block-components-review-list-item__rating__stars:before {
  content: "";
  width: 4.375rem;
  height: 0.875rem;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url("../../../qala-theme/assets/images/icons/action/star-empty.svg");
  background-size: 0.875rem;
  background-repeat-x: repeat;
}
.wc-block-components-review-list-item__rating > .wc-block-components-review-list-item__rating__stars span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5rem;
}
.wc-block-components-review-list-item__rating > .wc-block-components-review-list-item__rating__stars span:before {
  content: "";
  width: 100%;
  height: 0.875rem;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url("../../../qala-theme/assets/images/icons/action/star-filled.svg");
  background-size: 0.875rem;
  background-repeat-x: repeat;
}

.wc-block-components-review-list-item__author,
.wc-block-components-review-list-item__product {
  display: block;
  font-weight: 700;
  order: 1;
  margin-right: 0.5rem;
}

.wc-block-components-review-list-item__product + .wc-block-components-review-list-item__author {
  font-weight: 400;
  order: 4;
}

.wc-block-components-review-list-item__published-date {
  order: 5;
}

.wc-block-components-review-list-item__product + .wc-block-components-review-list-item__author + .wc-block-components-review-list-item__published-date {
  padding-left: 0.5rem;
  position: relative;
}
.wc-block-components-review-list-item__product + .wc-block-components-review-list-item__author + .wc-block-components-review-list-item__published-date:before {
  content: "";
  display: inline-block;
  margin-left: -0.5rem;
  border-right: 1px solid;
  opacity: 0.5;
  height: 1rem;
  vertical-align: middle;
  position: absolute;
  top: calc(50% + 0.1em);
  transform: translateY(-50%);
}
@media (min-width: 576px) {
  h1,
  .h1,
  .has-step-6-font-size {
    line-height: 1.13;
    letter-spacing: 0;
  }
  h2,
  .h2,
  .has-step-5-font-size {
    line-height: 1.16;
    letter-spacing: 0;
  }
  h3,
  .h3,
  .woocommerce.single-product .product .product_title,
  .qala-quickview .product .product_title,
  .woocommerce-checkout .final-checkout-total,
  .woocommerce-cart .final-checkout-total,
  .has-step-4-font-size {
    line-height: 1.2;
    letter-spacing: 0;
  }
  h4,
  .has-step-3-font-size {
    line-height: 1.125;
    letter-spacing: initial;
  }
  h5,
  .has-step-2-font-size {
    line-height: 1.3;
    letter-spacing: initial;
  }
  h6,
  .has-step-1-font-size {
    line-height: 1.4;
    letter-spacing: initial;
  }
  .subheading {
    line-height: 1.4;
  }
  .meta, .woocommerce.single-product .woocommerce-breadcrumb,
  .qala-quickview .woocommerce-breadcrumb, .woocommerce .woocommerce-checkout-review-order-table tr.cart_item td, .woocommerce .woocommerce-checkout-review-order-table .product-name-link a, .woocommerce table.shop_table .cart-subtotal ul li,
  .woocommerce table.shop_table .woocommerce-shipping-totals ul li,
  .woocommerce table.shop_table .order-total ul li,
  .woocommerce table.shop_table .tax-rate ul li,
  .woocommerce table.shop_table .fee ul li, .woocommerce table.shop_table .cart-subtotal th,
  .woocommerce table.shop_table .cart-subtotal td,
  .woocommerce table.shop_table .woocommerce-shipping-totals th,
  .woocommerce table.shop_table .woocommerce-shipping-totals td,
  .woocommerce table.shop_table .order-total th,
  .woocommerce table.shop_table .order-total td,
  .woocommerce table.shop_table .tax-rate th,
  .woocommerce table.shop_table .tax-rate td,
  .woocommerce table.shop_table .fee th,
  .woocommerce table.shop_table .fee td {
    line-height: 1.46;
  }
  .woocommerce-checkout.checkout--modern .woocommerce-form-coupon {
    flex-wrap: nowrap;
  }
  .woocommerce-checkout.checkout--modern .woocommerce-form-coupon .form-row-last {
    width: auto;
    margin-top: 0;
  }
  .woocommerce-checkout.checkout--modern .woocommerce-form-coupon .form-row-last .button {
    width: -moz-max-content;
    width: max-content;
  }
  body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper .checkout-payment-method-extras .woocommerce-form-coupon input {
    border-radius: 16px 0 0 16px !important;
  }
  body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper .checkout-payment-method-extras .woocommerce-form-coupon button,
  body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper .checkout-payment-method-extras .woocommerce-form-coupon a.button {
    border-radius: 0 8px 8px 0 !important;
  }
}
@media (min-width: 768px) {
  .woocommerce-checkout .customer-details-wrapper,
  .woocommerce-cart .customer-details-wrapper {
    order: 0;
  }
  .woocommerce-checkout .customer-details-wrapper .col2-set,
  .woocommerce-cart .customer-details-wrapper .col2-set {
    padding-top: 0;
    border-top: 0;
  }
  .woocommerce-checkout .woocommerce-billing-fields .form-row-first,
  .woocommerce-checkout .woocommerce-billing-fields .woocommerce-page form .form-row-first,
  .woocommerce-checkout .woocommerce-billing-fields .form-row-last,
  .woocommerce-checkout .woocommerce-billing-fields .woocommerce-page form .form-row-last,
  .woocommerce-checkout .woocommerce-shipping-fields .form-row-first,
  .woocommerce-checkout .woocommerce-shipping-fields .woocommerce-page form .form-row-first,
  .woocommerce-checkout .woocommerce-shipping-fields .form-row-last,
  .woocommerce-checkout .woocommerce-shipping-fields .woocommerce-page form .form-row-last,
  .woocommerce-checkout .woocommerce-additional-fields .form-row-first,
  .woocommerce-checkout .woocommerce-additional-fields .woocommerce-page form .form-row-first,
  .woocommerce-checkout .woocommerce-additional-fields .form-row-last,
  .woocommerce-checkout .woocommerce-additional-fields .woocommerce-page form .form-row-last,
  .woocommerce-cart .woocommerce-billing-fields .form-row-first,
  .woocommerce-cart .woocommerce-billing-fields .woocommerce-page form .form-row-first,
  .woocommerce-cart .woocommerce-billing-fields .form-row-last,
  .woocommerce-cart .woocommerce-billing-fields .woocommerce-page form .form-row-last,
  .woocommerce-cart .woocommerce-shipping-fields .form-row-first,
  .woocommerce-cart .woocommerce-shipping-fields .woocommerce-page form .form-row-first,
  .woocommerce-cart .woocommerce-shipping-fields .form-row-last,
  .woocommerce-cart .woocommerce-shipping-fields .woocommerce-page form .form-row-last,
  .woocommerce-cart .woocommerce-additional-fields .form-row-first,
  .woocommerce-cart .woocommerce-additional-fields .woocommerce-page form .form-row-first,
  .woocommerce-cart .woocommerce-additional-fields .form-row-last,
  .woocommerce-cart .woocommerce-additional-fields .woocommerce-page form .form-row-last {
    width: 47%;
  }
  .woocommerce-checkout .woocommerce-billing-fields label,
  .woocommerce-checkout .woocommerce-shipping-fields label,
  .woocommerce-checkout .woocommerce-additional-fields label,
  .woocommerce-cart .woocommerce-billing-fields label,
  .woocommerce-cart .woocommerce-shipping-fields label,
  .woocommerce-cart .woocommerce-additional-fields label {
    line-height: 1.45;
    letter-spacing: 0;
    font-size: 0.875rem;
  }
  .woocommerce-checkout .woocommerce-privacy-policy-text p,
  .woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text,
  .woocommerce-cart .woocommerce-privacy-policy-text p,
  .woocommerce-cart .woocommerce-terms-and-conditions-checkbox-text {
    font-size: 0.9375rem;
  }
  .woocommerce-checkout.checkout--modern .checkout-page--mini-cart-wrapper,
  .woocommerce-checkout.checkout--modern form.checkout.woocommerce-checkout {
    max-width: 960px;
  }
  .woocommerce-checkout.checkout--modern .checkout-hero {
    padding: 0 30px;
  }
  .woocommerce-checkout.checkout--modern .woocommerce-order-received .woocommerce-info {
    margin-bottom: 1rem;
  }
  body.woocommerce-checkout.checkout--modern .checkout-payment-method-extras {
    max-width: 640px;
  }
  body.woocommerce-checkout.checkout--modern:has(.kco-checkout) .checkout-page--mini-cart-wrapper,
  body.woocommerce-checkout.checkout--modern:has(.kco-checkout) form.checkout.woocommerce-checkout {
    max-width: 640px;
  }
  body.woocommerce-checkout.checkout--modern:has(.ppc-button-wrapper) .checkout-page--mini-cart-wrapper,
  body.woocommerce-checkout.checkout--modern:has(.ppc-button-wrapper) form.checkout.woocommerce-checkout {
    max-width: 750px;
  }
  body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-page--mini-cart-wrapper,
  body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) form.checkout.woocommerce-checkout {
    max-width: 640px;
  }
  body.woocommerce-checkout.checkout--modern:has(#briqpay-wrapper) .checkout-payment-method-extras {
    max-width: unset;
  }
  .site-main > .woocommerce-notices-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
  p {
    line-height: 1.5;
    letter-spacing: 0;
  }
  small,
  .has-step-minus-1-font-size {
    line-height: 1.57;
    letter-spacing: 0;
  }
  .woocommerce.single-product .summary-inner-wrapper,
  .qala-quickview .summary-inner-wrapper {
    padding: 30px 30px 30px 30px;
  }
  .woocommerce.single-product .summary-inner-wrapper span.availability_date,
  .qala-quickview .summary-inner-wrapper span.availability_date {
    padding: unset;
  }
  .woocommerce.single-product .summary-inner-wrapper > *,
  .qala-quickview .summary-inner-wrapper > * {
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce.single-product .product .product_title,
  .qala-quickview .product .product_title {
    line-height: 1.33;
    margin-top: 0;
    margin-bottom: 1.15rem;
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce.single-product div.product p.price,
  .qala-quickview div.product p.price {
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.45rem;
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce.single-product .woocommerce-product-details__short-description,
  .qala-quickview .woocommerce-product-details__short-description {
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce.single-product .woocommerce-product-details__short-description p,
  .qala-quickview .woocommerce-product-details__short-description p {
    margin-top: inherit;
    line-height: 1.73;
    letter-spacing: 0;
  }
  .product-gallery-wrap {
    border: 0;
    padding: 0;
  }
  .ac-module__wrapper--pdp {
    padding: 4rem 0 2rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .product-icons {
    gap: 30px;
    margin-bottom: 30px;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr {
    display: table-row;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr th,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr th {
    display: table-cell;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td {
    border-bottom: 2px solid var(--wp--preset--color--base-100);
    padding: 30px 30px 30px 0;
    font-size: 1rem;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-thumbnail,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-thumbnail {
    padding-right: 30px;
    width: 113px;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-thumbnail img,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-thumbnail img {
    width: 83px;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-name,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-name {
    width: auto;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-name a,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-name a {
    text-decoration: none;
    font-size: 1.0625rem;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-name .product-price,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-name .product-price {
    display: none;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-subtotal,
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-price,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-subtotal,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-price {
    display: table-cell;
  }
  .woocommerce-cart .shop_table.woocommerce-cart-form__contents tr td.product-remove,
  .woocommerce-checkout .shop_table.woocommerce-cart-form__contents tr td.product-remove {
    padding-left: 0;
  }
  .woocommerce-cart .quantity-wrapper,
  .woocommerce-checkout .quantity-wrapper {
    border: 0;
    height: auto;
  }
  .woocommerce-cart .quantity-wrapper .quantity,
  .woocommerce-checkout .quantity-wrapper .quantity {
    border-width: 2px;
  }
  .woocommerce-cart .woocommerce-form-coupon-toggle,
  .woocommerce-checkout .woocommerce-form-coupon-toggle {
    margin-top: 0;
    order: 0;
    padding: 0 0 15px;
  }
  .woocommerce-cart .woocommerce-form-coupon-toggle .woocommerce-info,
  .woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    margin-top: 30px;
    line-height: 1.73;
    letter-spacing: 0;
    font-size: 0.9375rem;
  }
  .woocommerce-cart .woocommerce form.checkout_coupon,
  .woocommerce-checkout .woocommerce form.checkout_coupon {
    order: 0;
    flex-basis: 58.3333%;
    max-width: 58.3333%;
    padding: 0 0 15px;
  }
  .woocommerce-cart .grid .woocommerce-error,
  .woocommerce-cart .grid .woocommerce-message,
  .woocommerce-checkout .grid .woocommerce-error,
  .woocommerce-checkout .grid .woocommerce-message {
    margin: 0 15px 15px;
    width: 58%;
  }
  .woocommerce-checkout-review-order-wrapper {
    display: block;
    order: 0;
  }
  .order-review-heading {
    order: 0;
    padding-top: 0;
    border-top: 0;
  }
  .usps {
    order: 0;
  }
  .woocommerce-checkout-review-order {
    padding: 30px;
    border: 1px solid var(--wp--preset--color--base-100);
    order: 0;
  }
  .woocommerce table.shop_table .order-total td,
  .woocommerce table.shop_table .order-total th {
    line-height: 1.53;
    letter-spacing: 0;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 769px) {
  .kco-two-column-left #kco-wrapper,
  .kco-two-column-left-sf #kco-wrapper {
    grid-column-gap: 60px;
  }
}
@media (min-width: 992px) {
  .woocommerce-checkout.checkout--modern .checkout.woocommerce-checkout #customer_details {
    margin-top: 45px;
  }
  .woocommerce.single-product .woocommerce-breadcrumb,
  .qala-quickview .woocommerce-breadcrumb {
    display: block;
    text-transform: none;
    letter-spacing: 0;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0;
    color: var(--wp--preset--color--base-900);
    font-weight: 400;
  }
  .woocommerce.single-product .woocommerce-breadcrumb a,
  .qala-quickview .woocommerce-breadcrumb a {
    color: var(--wp--preset--color--primary-500);
  }
  .woocommerce.single-product .woocommerce-breadcrumb a:hover, .woocommerce.single-product .woocommerce-breadcrumb a:focus,
  .qala-quickview .woocommerce-breadcrumb a:hover,
  .qala-quickview .woocommerce-breadcrumb a:focus {
    color: var(--wp--preset--color--primary-variant-chambray);
  }
  .woocommerce.single-product .product-wrap,
  .qala-quickview .product-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 1fr;
    align-items: flex-start;
    padding-right: 30px;
    padding-left: 30px;
    margin-top: 1.5rem;
  }
  .woocommerce.single-product .product-wrap:has(.product-image-slider[data-slider-type="2"]:not([data-slider-no-thumbs])),
  .qala-quickview .product-wrap:has(.product-image-slider[data-slider-type="2"]:not([data-slider-no-thumbs])) {
    grid-template-columns: 620px 1fr;
  }
  .woocommerce.single-product #content div.product div.summary,
  .woocommerce.single-product div.product div.summary,
  .qala-quickview #content div.product div.summary,
  .qala-quickview div.product div.summary {
    grid-row: span 3;
    max-width: 100%;
  }
  .woocommerce.single-product .summary-inner-wrapper,
  .qala-quickview .summary-inner-wrapper {
    position: sticky;
    padding-right: 0;
    padding-top: 0;
    top: calc(153px + 1.15rem);
  }
  .container--productlistings {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1240px) {
  .woocommerce-checkout.checkout--modern table.shop_table .product-thumbnail img {
    max-height: 245px;
  }
  .woocommerce-checkout.checkout--modern .checkout-hero-col--back-col a {
    padding-right: 0;
  }
  .woocommerce-checkout.checkout--modern .checkout-hero-col--icon-col span {
    max-width: unset;
    flex-direction: unset;
    font-size: 0.875rem;
  }
  .woocommerce-checkout.checkout--modern .checkout-hero-col--icon-col span svg {
    margin-right: 8px;
    margin-bottom: 0;
  }
  .woocommerce.single-product .product-wrap,
  .qala-quickview .product-wrap {
    grid-template-columns: 765px 1fr;
  }
  .woocommerce.single-product .product-wrap:has(.product-image-slider[data-slider-type="2"]:not([data-slider-no-thumbs])),
  .qala-quickview .product-wrap:has(.product-image-slider[data-slider-type="2"]:not([data-slider-no-thumbs])) {
    grid-template-columns: 765px 1fr;
  }
  .woocommerce.single-product #content div.product div.summary,
  .woocommerce.single-product div.product div.summary,
  .qala-quickview #content div.product div.summary,
  .qala-quickview div.product div.summary {
    width: auto;
  }
  .woocommerce.single-product .summary-inner-wrapper,
  .qala-quickview .summary-inner-wrapper {
    max-width: 450px;
  }
}
@media (prefers-reduced-motion) {
  body * {
    transition-duration: 0s !important; /* stylelint-disable-line declaration-no-important */
    transition-delay: 0s !important; /* stylelint-disable-line declaration-no-important */
  }
}
@media (max-width: 1239px) {
  .woocommerce.single-product #content div.product div.summary,
  .woocommerce.single-product div.product div.summary,
  .qala-quickview #content div.product div.summary,
  .qala-quickview div.product div.summary {
    position: static !important;
  }
}
