﻿/* Disable previous CSS */
/*#ShoppingCartV3_container:not(.skep250) #ShoppingCartProducts_container .shopping-cart-product-item {
    all: unset !important;
}*/

:root {
    /*
        PRODUCTS CONTAINER
    */
    --shoppingcart-products-container--display: flex;
    --shoppingcart-products-container--flex-direction: column;
    --shoppingcart-products-container--gap: 16px;
    --shoppingcart-products-container--padding: 8px;
    /*
        PRODUCTS ITEMS HEADER
    */
    --shoppingcart-products-items-header--display: none;
    --shoppingcart-products-items-header--padding: 20px 8px 6px 8px;
    --shoppingcart-products-items-header--gap: auto;
    --shoppingcart-products-items-header--text-transform: uppercase;
    --shoppingcart-products-items-header--font-size: 12px;
    --shoppingcart-products-items-header--font-weight: 700;
    --shoppingcart-products-items-header--color: #8C8C8C;
    --shoppingcart-products-items-header--line-height: 1.2;
    --shoppingcart-products-items-header-label-photo--width: auto;
    --shoppingcart-products-items-header-label-photo--flex-grow: unset;
    --shoppingcart-products-items-header-label-info--width: auto;
    --shoppingcart-products-items-header-label-info--flex-grow: unset;
    --shoppingcart-products-items-header-label-price--width: auto;
    --shoppingcart-products-items-header-label-price--flex-grow: unset;
    --shoppingcart-products-items-header-label-quantity--width: auto;
    --shoppingcart-products-items-header-label-quantity--flex-grow: unset;
    --shoppingcart-products-items-header-label-totals--width: auto;
    --shoppingcart-products-items-header-label-totals--flex-grow: unset;
    --shoppingcart-products-items-header-label-remove--width: auto;
    --shoppingcart-products-items-header-label-remove--flex-grow: unset;
    /*
        PRODUCT ITEM CONTAINER
    */
    --shoppingcart-product-item-container--display: flex;
    --shoppingcart-product-item-container--flex-direction: column;
    --shoppingcart-product-item-container--gap: 4px;
    --shoppingcart-product-item-container--align-items: center;
    --shoppingcart-product-item-container--justify-content: center;
    --shoppingcart-product-item-container--min-height: unset;
    --shoppingcart-product-item-container--border: 1px solid #AFAFAF;
    --shoppingcart-product-item-container--border-radius: 8px;
    --shoppingcart-product-item-container--padding: 8px;
    --shoppingcart-product-item-container--margin: 0px;
    --shoppingcart-product-item-container--width: 100% !important;
    --shoppingcart-product-item-container--height: auto !important;
    /*--shoppingcart-product-item-container--max-height: 200px;*/
    /*
        PRODUCT ITEM GRID
    */
    --shoppingcart-product-item-grid--display: grid;
    --shoppingcart-product-item-grid--gap: 6px;
    --shoppingcart-product-item-grid--grid-template: "item-photo item-info item-remove" auto "item-quantity item-price item-price" auto "item-line item-line item-line" auto "item-totals item-totals item-totals" auto / 80px 1fr 40px;
    --shoppingcart-product-item-grid--align-items: center;
    --shoppingcart-product-item-grid--width: 100%;
    /*
        PRODUCT ITEM PHOTO
    */
    --shoppingcart-product-item-photo--grid-area: item-photo;
    --shoppingcart-product-item-photo--display: flex;
    --shoppingcart-product-item-photo--justify-content: center;
    --shoppingcart-product-item-photo--align-items: center;
    --shoppingcart-product-item-photo--position: relative;
    --shoppingcart-product-item-photo--order: unset;
    /*
        PRODUCT ITEM PHOTO - IMAGE
    */
    --shoppingcart-product-item-photo-image--position: relative;
    --shoppingcart-product-item-photo-image--z-index: 0;
    --shoppingcart-product-item-photo-image--display: block;
    --shoppingcart-product-item-photo-image--width: 80px;
    --shoppingcart-product-item-photo-image--height: 80px;
    --shoppingcart-product-item-photo-image--object-fit: contain;
    --shoppingcart-product-item-photo-image--object-position: center;
    /*
        PRODUCT ITEM PHOTO - SOLD OUT
    */
    --shoppingcart-product-item-photo-sold-out--position: absolute;
    --shoppingcart-product-item-photo-sold-out--z-index: 10;
    --shoppingcart-product-item-photo-sold-out--left: 0;
    --shoppingcart-product-item-photo-sold-out--bottom: 0;
    --shoppingcart-product-item-photo-sold-out--width: 100%;
    --shoppingcart-product-item-photo-sold-out--height: auto;
    --shoppingcart-product-item-photo-sold-out--padding: 4px;
    --shoppingcart-product-item-photo-sold-out--background-color: #e4bc82;
    --shoppingcart-product-item-photo-sold-out--border-radius: 4px;
    --shoppingcart-product-item-photo-sold-out--text-align: center;
    /*
        PRODUCT ITEM PHOTO - SOLD OUT - LABEL
    */
    --shoppingcart-product-item-photo-sold-out-label--display: block;
    --shoppingcart-product-item-photo-sold-out-label--font-weight: 400;
    --shoppingcart-product-item-photo-sold-out-label--font-size: 9.6px;
    --shoppingcart-product-item-photo-sold-out-label--line-height: 1;
    --shoppingcart-product-item-photo-sold-out-label--color: #ffffff;
    --shoppingcart-product-item-photo-sold-out-label--text-transform: uppercase;
    /*
        PRODUCT ITEM INFO
    */
    --shoppingcart-product-item-info--grid-area: item-info;
    --shoppingcart-product-item-info--display: flex;
    --shoppingcart-product-item-info--flex-direction: column;
    --shoppingcart-product-item-info--gap: 4px;
    --shoppingcart-product-item-info--margin: 0;
    /*
        PRODUCT ITEM INFO - CATEGORY
    */
    --shoppingcart-product-item-info-category--font-weight: 400;
    --shoppingcart-product-item-info-category--font-size: 12px;
    --shoppingcart-product-item-info-category--line-height: 16.8px;
    --shoppingcart-product-item-info-category--color: #000000;
    --shoppingcart-product-item-info-category--opacity: .6;
    /*
        PRODUCT ITEM INFO - NAME
    */
    --shoppingcart-product-item-info-name--font-weight: 600;
    --shoppingcart-product-item-info-name--font-size: 16px;
    --shoppingcart-product-item-info-name--line-height: 18px;
    --shoppingcart-product-item-info-name--color: #000000;
    /*
        PRODUCT ITEM INFO - SKU
    */
    --shoppingcart-product-item-info-sku--font-weight: 500;
    --shoppingcart-product-item-info-sku--font-size: 9px;
    --shoppingcart-product-item-info-sku--line-height: 10.98px;
    --shoppingcart-product-item-info-sku--color: #7D7D7D;
    --shoppingcart-product-item-info-sku--border-radius: 4px;
    --shoppingcart-product-item-info-sku--border: solid 1px #EFEFEF;
    --shoppingcart-product-item-info-sku--padding: 4px;
    --shoppingcart-product-item-info-sku--align-self: flex-start;
    /*
        PRODUCT ITEM PRICE
    */
    --shoppingcart-product-item-price--grid-area: item-price;
    --shoppingcart-product-item-price--display: flex;
    --shoppingcart-product-item-price--flex-direction: column;
    --shoppingcart-product-item-price--justify-content: space-between;
    --shoppingcart-product-item-price--gap: 8px;
    --shoppingcart-product-item-price--width: 100%;
    --shoppingcart-product-item-price--max-width: unset;
    --shoppingcart-product-item-price--height: auto;
    --shoppingcart-product-item-price--justify-self: flex-end;
    --shoppingcart-product-item-price--margin: 0;
    /*
        PRODUCT ITEM PRICE - REGULAR
    */
    --shoppingcart-product-item-price-regular--display: flex;
    --shoppingcart-product-item-price-regular--flex-direction: row;
    --shoppingcart-product-item-price-regular--align-items: center;
    --shoppingcart-product-item-price-regular--gap: 4px;
    --shoppingcart-product-item-price-regular--height: auto;
    --shoppingcart-product-item-price-regular--min-height: 23px;
    --shoppingcart-product-item-price-regular--border-radius: 6px;
    --shoppingcart-product-item-price-regular--border: none;
    --shoppingcart-product-item-price-regular--padding: 4px;
    --shoppingcart-product-item-price-regular--background-color: #EBEBEB;
    /*
        PRODUCT ITEM PRICE - REGULAR - LABEL
    */
    --shoppingcart-product-item-price-regular-label--font-size: 11px;
    --shoppingcart-product-item-price-regular-label--font-weight: 400;
    --shoppingcart-product-item-price-regular-label--line-height: 15.4px;
    --shoppingcart-product-item-price-regular-label--letter-spacing: -0.3px;
    --shoppingcart-product-item-price-regular-label--color: #000000;
    --shoppingcart-product-item-price-regular-label--flex-grow: 1;
    /*
        PRODUCT ITEM PRICE - REGULAR - VALUE
    */
    --shoppingcart-product-item-price-regular-value--font-size: 11px;
    --shoppingcart-product-item-price-regular-value--font-weight: 400;
    --shoppingcart-product-item-price-regular-value--line-height: 15.4px;
    --shoppingcart-product-item-price-regular-value--letter-spacing: auto;
    --shoppingcart-product-item-price-regular-value--color: #000000;
    --shoppingcart-product-item-price-regular-value--white-space: nowrap;
    /*
        PRODUCT ITEM PRICE - CLUB
    */
    --shoppingcart-product-item-price-club--display: flex;
    --shoppingcart-product-item-price-club--flex-direction: row;
    --shoppingcart-product-item-price-club--align-items: center;
    --shoppingcart-product-item-price-club--gap: 4px;
    --shoppingcart-product-item-price-club--height: auto;
    --shoppingcart-product-item-price-club--min-height: 25px;
    --shoppingcart-product-item-price-club--border-radius: 6px;
    --shoppingcart-product-item-price-club--border: none;
    --shoppingcart-product-item-price-club--padding: 4px;
    --shoppingcart-product-item-price-club--background-color: #ECDFC7;
    /*
        PRODUCT ITEM PRICE - CLUB - LABEL
    */
    --shoppingcart-product-item-price-club-label--display: flex;
    --shoppingcart-product-item-price-club-label--align-items: center;
    --shoppingcart-product-item-price-club-label--gap: 4px;
    --shoppingcart-product-item-price-club-label--font-size: 11px;
    --shoppingcart-product-item-price-club-label--font-weight: 700;
    --shoppingcart-product-item-price-club-label--line-height: 15.4px;
    --shoppingcart-product-item-price-club-label--letter-spacing: -0.3px;
    --shoppingcart-product-item-price-club-label--color: #A36B00;
    --shoppingcart-product-item-price-club-label--flex-grow: 1;
    /*
        PRODUCT ITEM PRICE - CLUB - DISCOUNT
    */
    --shoppingcart-product-item-price-club-discount--display: block;
    --shoppingcart-product-item-price-club-discount--font-size: 11px;
    --shoppingcart-product-item-price-club-discount--font-weight: 700;
    --shoppingcart-product-item-price-club-discount--line-height: 15.4px;
    --shoppingcart-product-item-price-club-discount--color: #A36B00;
    --shoppingcart-product-item-price-club-discount--white-space: nowrap;
    --shoppingcart-product-item-price-club-discount--padding: 1px 2px;
    --shoppingcart-product-item-price-club-discount--border: none;
    --shoppingcart-product-item-price-club-discount--border-radius: 4px;
    --shoppingcart-product-item-price-club-discount--background-color: #F6F0E7;
    /*
        PRODUCT ITEM PRICE - CLUB - VALUE
    */
    --shoppingcart-product-item-price-club-value--font-size: 11px;
    --shoppingcart-product-item-price-club-value--font-weight: 700;
    --shoppingcart-product-item-price-club-value--line-height: 15.4px;
    --shoppingcart-product-item-price-club-value--letter-spacing: auto;
    --shoppingcart-product-item-price-club-value--color: #A36B00;
    --shoppingcart-product-item-price-club-value--white-space: nowrap;
    /*
        PRODUCT ITEM QUANTITY
    */
    --shoppingcart-product-item-quantity--grid-area: item-quantity;
    --shoppingcart-product-item-quantity--display: flex;
    --shoppingcart-product-item-quantity--flex-direction: row;
    --shoppingcart-product-item-quantity--height: auto;
    --shoppingcart-product-item-quantity--min-height: 57px;
    --shoppingcart-product-item-quantity--margin: auto 0;
    /*
        PRODUCT ITEM QUANTITY - DECREASE BUTTON
    */
    --shoppingcart-product-item-quantity-group--display: flex;
    --shoppingcart-product-item-quantity-group--flex-direction: row;
    --shoppingcart-product-item-quantity-group--width: 100%;
    /*
        PRODUCT ITEM QUANTITY - DECREASE BUTTON
    */
    --shoppingcart-product-item-quantity-decrease-button--display: flex;
    --shoppingcart-product-item-quantity-decrease-button--padding: 0;
    --shoppingcart-product-item-quantity-decrease-button--align-items: center;
    --shoppingcart-product-item-quantity-decrease-button--justify-content: center;
    --shoppingcart-product-item-quantity-decrease-button--background: transparent;
    --shoppingcart-product-item-quantity-decrease-button--border: solid 1px #DCDCDC;
    --shoppingcart-product-item-quantity-decrease-button--border-radius: 8px 0 0 8px;
    --shoppingcart-product-item-quantity-decrease-button--width: 33.333333%;
    --shoppingcart-product-item-quantity-decrease-button--min-width: 33.333333%;
    --shoppingcart-product-item-quantity-decrease-button--cursor: pointer;
    /*
        PRODUCT ITEM QUANTITY - DECREASE BUTTON - IMG
    */
    --shoppingcart-product-item-quantity-decrease-button-image--display: block;
    --shoppingcart-product-item-quantity-decrease-button-image--width: 18px;
    --shoppingcart-product-item-quantity-decrease-button-image--height: 20px;
    --shoppingcart-product-item-quantity-decrease-button-image--content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9Imljb24vbWludXMiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNMTQgOEMxNCA4LjEzMjYxIDEzLjk0NzMgOC4yNTk3OSAxMy44NTM2IDguMzUzNTVDMTMuNzU5OCA4LjQ0NzMyIDEzLjYzMjYgOC41IDEzLjUgOC41SDIuNUMyLjM2NzM5IDguNSAyLjI0MDIxIDguNDQ3MzIgMi4xNDY0NSA4LjM1MzU1QzIuMDUyNjggOC4yNTk3OSAyIDguMTMyNjEgMiA4QzIgNy44NjczOSAyLjA1MjY4IDcuNzQwMjEgMi4xNDY0NSA3LjY0NjQ1QzIuMjQwMjEgNy41NTI2OCAyLjM2NzM5IDcuNSAyLjUgNy41SDEzLjVDMTMuNjMyNiA3LjUgMTMuNzU5OCA3LjU1MjY4IDEzLjg1MzYgNy42NDY0NUMxMy45NDczIDcuNzQwMjEgMTQgNy44NjczOSAxNCA4WiIgZmlsbD0iYmxhY2siLz4KPC9nPgo8L3N2Zz4K");
    /*
        PRODUCT ITEM QUANTITY - INCREASE BUTTON
    */
    --shoppingcart-product-item-quantity-increase-button--display: flex;
    --shoppingcart-product-item-quantity-decrease-button--padding: 0;
    --shoppingcart-product-item-quantity-increase-button--align-items: center;
    --shoppingcart-product-item-quantity-increase-button--justify-content: center;
    --shoppingcart-product-item-quantity-increase-button--background: transparent;
    --shoppingcart-product-item-quantity-increase-button--border: solid 1px #DCDCDC;
    --shoppingcart-product-item-quantity-increase-button--border-radius: 0 8px 8px 0;
    --shoppingcart-product-item-quantity-increase-button--width: 33.333333%;
    --shoppingcart-product-item-quantity-increase-button--min-width: 33.333333%;
    --shoppingcart-product-item-quantity-increase-button--cursor: pointer;
    /*
        PRODUCT ITEM QUANTITY - INCREASE BUTTON - IMG
    */
    --shoppingcart-product-item-quantity-increase-button-image--display: block;
    --shoppingcart-product-item-quantity-increase-button-image--width: 18px;
    --shoppingcart-product-item-quantity-increase-button-image--height: 20px;
    --shoppingcart-product-item-quantity-increase-button-image--content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9Imljb24vcGx1cyI+CjxwYXRoIGlkPSJWZWN0b3IiIGQ9Ik0xNCA4QzE0IDguMTMyNjEgMTMuOTQ3MyA4LjI1OTc5IDEzLjg1MzYgOC4zNTM1NUMxMy43NTk4IDguNDQ3MzIgMTMuNjMyNiA4LjUgMTMuNSA4LjVIOC41VjEzLjVDOC41IDEzLjYzMjYgOC40NDczMiAxMy43NTk4IDguMzUzNTUgMTMuODUzNkM4LjI1OTc5IDEzLjk0NzMgOC4xMzI2MSAxNCA4IDE0QzcuODY3MzkgMTQgNy43NDAyMSAxMy45NDczIDcuNjQ2NDUgMTMuODUzNkM3LjU1MjY4IDEzLjc1OTggNy41IDEzLjYzMjYgNy41IDEzLjVWOC41SDIuNUMyLjM2NzM5IDguNSAyLjI0MDIxIDguNDQ3MzIgMi4xNDY0NSA4LjM1MzU1QzIuMDUyNjggOC4yNTk3OSAyIDguMTMyNjEgMiA4QzIgNy44NjczOSAyLjA1MjY4IDcuNzQwMjEgMi4xNDY0NSA3LjY0NjQ1QzIuMjQwMjEgNy41NTI2OCAyLjM2NzM5IDcuNSAyLjUgNy41SDcuNVYyLjVDNy41IDIuMzY3MzkgNy41NTI2OCAyLjI0MDIxIDcuNjQ2NDUgMi4xNDY0NUM3Ljc0MDIxIDIuMDUyNjggNy44NjczOSAyIDggMkM4LjEzMjYxIDIgOC4yNTk3OSAyLjA1MjY4IDguMzUzNTUgMi4xNDY0NUM4LjQ0NzMyIDIuMjQwMjEgOC41IDIuMzY3MzkgOC41IDIuNVY3LjVIMTMuNUMxMy42MzI2IDcuNSAxMy43NTk4IDcuNTUyNjggMTMuODUzNiA3LjY0NjQ1QzEzLjk0NzMgNy43NDAyMSAxNCA3Ljg2NzM5IDE0IDhaIiBmaWxsPSJibGFjayIvPgo8L2c+Cjwvc3ZnPgo=");
    /*
        PRODUCT ITEM QUANTITY - UNITS
    */
    --shoppingcart-product-item-quantity-units--display: flex;
    --shoppingcart-product-item-quantity-units--width: 33.333333%;
    /*
        PRODUCT ITEM QUANTITY - UNITS - INPUT
    */
    --shoppingcart-product-item-quantity-units-input--display: flex;
    --shoppingcart-product-item-quantity-units-input--padding: 0;
    --shoppingcart-product-item-quantity-units-input--border-width: 1px 0 1px 0;
    --shoppingcart-product-item-quantity-units-input--border-style: solid;
    --shoppingcart-product-item-quantity-units-input--border-color: #DCDCDC;
    --shoppingcart-product-item-quantity-units-input--width: 100%;
    --shoppingcart-product-item-quantity-units-input--text-align: center;
    --shoppingcart-product-item-quantity-units-input--font-size: 15px;
    --shoppingcart-product-item-quantity-units-input--font-weight: 700;
    --shoppingcart-product-item-quantity-units-input--line-height: 1;
    --shoppingcart-product-item-quantity-units-input--color: #000000;
    --shoppingcart-product-item-quantity-units-input--user-select: none;
    /*
        PRODUCT ITEM TOTALS
    */
    --shoppingcart-product-item-totals--grid-area: item-totals;
    --shoppingcart-product-item-totals--display: flex;
    --shoppingcart-product-item-totals--flex-direction: row;
    --shoppingcart-product-item-totals--align-items: center;
    --shoppingcart-product-item-totals--align-self: center;
    --shoppingcart-product-item-totals--justify-content: flex-end;
    /*--shoppingcart-product-item-totals--padding-top: var(--shoppingcart-product-item-grid--gap);*/
    /*--shoppingcart-product-item-totals--border-top: solid 1px #EBEBEB;*/
    /*
        PRODUCT ITEM TOTALS - LABEL
    */
    --shoppingcart-product-item-totals-label--display: block;
    --shoppingcart-product-item-totals-label--flex-grow: 1;
    --shoppingcart-product-item-totals-label--font-size: 12px;
    --shoppingcart-product-item-totals-label--font-weight: 700;
    --shoppingcart-product-item-totals-label--line-height: 1;
    --shoppingcart-product-item-totals-label--color: #8C8C8C;
    --shoppingcart-product-item-totals-label--text-transform: uppercase;
    /*
        PRODUCT ITEM TOTALS - PRICES
    */
    --shoppingcart-product-item-totals-prices--display: flex;
    --shoppingcart-product-item-totals-prices--flex-direction: column;
    --shoppingcart-product-item-totals-prices--align-items: flex-end;
    --shoppingcart-product-item-totals-prices--gap: 4px;
    /*
        PRODUCT ITEM TOTALS - PRICE REGULAR
    */
    --shoppingcart-product-item-totals-price-regular--font-size: 16px;
    --shoppingcart-product-item-totals-price-regular--font-weight: 600;
    --shoppingcart-product-item-totals-price-regular--line-height: 19.36px;
    --shoppingcart-product-item-totals-price-regular--color: #231F20;
    --shoppingcart-product-item-totals-price-regular--white-space: nowrap;
    /*
        PRODUCT ITEM TOTALS - PRICE CLUB
    */
    --shoppingcart-product-item-totals-price-club--font-size: 16px;
    --shoppingcart-product-item-totals-price-club--font-weight: 700;
    --shoppingcart-product-item-totals-price-club--line-height: 19.36px;
    --shoppingcart-product-item-totals-price-club--color: #A36B00;
    --shoppingcart-product-item-totals-price-club--white-space: nowrap;
    /*
        PRODUCT ITEM REMOVE
    */
    --shoppingcart-product-item-remove--grid-area: item-remove;
    --shoppingcart-product-item-remove--display: flex;
    --shoppingcart-product-item-remove--flex-direction: column;
    --shoppingcart-product-item-remove--align-items: center;
    --shoppingcart-product-item-remove--align-self: center;
    --shoppingcart-product-item-remove--padding: 0;
    /*
        PRODUCT ITEM REMOVE - BUTTON
    */
    --shoppingcart-product-item-remove-button--display: flex;
    --shoppingcart-product-item-remove-button--align-items: center;
    --shoppingcart-product-item-remove-button--justify-content: center;
    --shoppingcart-product-item-remove-button--border: none;
    --shoppingcart-product-item-remove-button--background-color: transparent;
    --shoppingcart-product-item-remove-button--padding: 0;
    --shoppingcart-product-item-remove-button--cursor: pointer;
    --shoppingcart-product-item-remove-button--width: 100%;
    --shoppingcart-product-item-remove-button--height: 40px;
    --shoppingcart-product-item-remove-button--outline: none;
    --shoppingcart-product-item-remove-button--opacity: 1;
    --shoppingcart-product-item-remove-button--opacity-hover: 0.6;
    --shoppingcart-product-item-remove-button--transform: scale(1);
    --shoppingcart-product-item-remove-button--transform-hover: scale(1.2);
    --shoppingcart-product-item-remove-button--transition: opacity 0.2s ease-in-out 0s, transform 0.15s ease-in-out 0s;
    /*
        PRODUCT ITEM REMOVE - IMAGE
    */
    --shoppingcart-product-item-remove-image--display: block;
    --shoppingcart-product-item-remove-image--width: 18px;
    --shoppingcart-product-item-remove-image--height: 20px;
    --shoppingcart-product-item-remove-image--content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxOCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggaWQ9IlZlY3RvciIgZD0iTTE3LjI1IDMuMjVIMTMuNVYyLjVDMTMuNSAxLjkwMzI2IDEzLjI2MjkgMS4zMzA5NyAxMi44NDEgMC45MDkwMUMxMi40MTkgMC40ODcwNTMgMTEuODQ2NyAwLjI1IDExLjI1IDAuMjVINi43NUM2LjE1MzI2IDAuMjUgNS41ODA5NyAwLjQ4NzA1MyA1LjE1OTAxIDAuOTA5MDFDNC43MzcwNSAxLjMzMDk3IDQuNSAxLjkwMzI2IDQuNSAyLjVWMy4yNUgwLjc1QzAuNTUxMDg4IDMuMjUgMC4zNjAzMjIgMy4zMjkwMiAwLjIxOTY3IDMuNDY5NjdDMC4wNzkwMTc4IDMuNjEwMzIgMCAzLjgwMTA5IDAgNEMwIDQuMTk4OTEgMC4wNzkwMTc4IDQuMzg5NjggMC4yMTk2NyA0LjUzMDMzQzAuMzYwMzIyIDQuNjcwOTggMC41NTEwODggNC43NSAwLjc1IDQuNzVIMS41VjE4LjI1QzEuNSAxOC42NDc4IDEuNjU4MDQgMTkuMDI5NCAxLjkzOTM0IDE5LjMxMDdDMi4yMjA2NCAxOS41OTIgMi42MDIxOCAxOS43NSAzIDE5Ljc1SDE1QzE1LjM5NzggMTkuNzUgMTUuNzc5NCAxOS41OTIgMTYuMDYwNyAxOS4zMTA3QzE2LjM0MiAxOS4wMjk0IDE2LjUgMTguNjQ3OCAxNi41IDE4LjI1VjQuNzVIMTcuMjVDMTcuNDQ4OSA0Ljc1IDE3LjYzOTcgNC42NzA5OCAxNy43ODAzIDQuNTMwMzNDMTcuOTIxIDQuMzg5NjggMTggNC4xOTg5MSAxOCA0QzE4IDMuODAxMDkgMTcuOTIxIDMuNjEwMzIgMTcuNzgwMyAzLjQ2OTY3QzE3LjYzOTcgMy4zMjkwMiAxNy40NDg5IDMuMjUgMTcuMjUgMy4yNVpNNiAyLjVDNiAyLjMwMTA5IDYuMDc5MDIgMi4xMTAzMiA2LjIxOTY3IDEuOTY5NjdDNi4zNjAzMiAxLjgyOTAyIDYuNTUxMDkgMS43NSA2Ljc1IDEuNzVIMTEuMjVDMTEuNDQ4OSAxLjc1IDExLjYzOTcgMS44MjkwMiAxMS43ODAzIDEuOTY5NjdDMTEuOTIxIDIuMTEwMzIgMTIgMi4zMDEwOSAxMiAyLjVWMy4yNUg2VjIuNVpNMTUgMTguMjVIM1Y0Ljc1SDE1VjE4LjI1Wk03LjUgOC41VjE0LjVDNy41IDE0LjY5ODkgNy40MjA5OCAxNC44ODk3IDcuMjgwMzMgMTUuMDMwM0M3LjEzOTY4IDE1LjE3MSA2Ljk0ODkxIDE1LjI1IDYuNzUgMTUuMjVDNi41NTEwOSAxNS4yNSA2LjM2MDMyIDE1LjE3MSA2LjIxOTY3IDE1LjAzMDNDNi4wNzkwMiAxNC44ODk3IDYgMTQuNjk4OSA2IDE0LjVWOC41QzYgOC4zMDEwOSA2LjA3OTAyIDguMTEwMzIgNi4yMTk2NyA3Ljk2OTY3QzYuMzYwMzIgNy44MjkwMiA2LjU1MTA5IDcuNzUgNi43NSA3Ljc1QzYuOTQ4OTEgNy43NSA3LjEzOTY4IDcuODI5MDIgNy4yODAzMyA3Ljk2OTY3QzcuNDIwOTggOC4xMTAzMiA3LjUgOC4zMDEwOSA3LjUgOC41Wk0xMiA4LjVWMTQuNUMxMiAxNC42OTg5IDExLjkyMSAxNC44ODk3IDExLjc4MDMgMTUuMDMwM0MxMS42Mzk3IDE1LjE3MSAxMS40NDg5IDE1LjI1IDExLjI1IDE1LjI1QzExLjA1MTEgMTUuMjUgMTAuODYwMyAxNS4xNzEgMTAuNzE5NyAxNS4wMzAzQzEwLjU3OSAxNC44ODk3IDEwLjUgMTQuNjk4OSAxMC41IDE0LjVWOC41QzEwLjUgOC4zMDEwOSAxMC41NzkgOC4xMTAzMiAxMC43MTk3IDcuOTY5NjdDMTAuODYwMyA3LjgyOTAyIDExLjA1MTEgNy43NSAxMS4yNSA3Ljc1QzExLjQ0ODkgNy43NSAxMS42Mzk3IDcuODI5MDIgMTEuNzgwMyA3Ljk2OTY3QzExLjkyMSA4LjExMDMyIDEyIDguMzAxMDkgMTIgOC41WiIgZmlsbD0iIzA4MDcwNiIvPgo8L3N2Zz4K");
    /*
        PRODUCT ITEM LINE
    */
    --shoppingcart-product-item-line--grid-area: item-line;
    --shoppingcart-product-item-line--display: block;
    --shoppingcart-product-item-line--width: 100%;
    --shoppingcart-product-item-line--height: 1px;
    --shoppingcart-product-item-line--border-width: 1px 0 0 0;
    --shoppingcart-product-item-line--border-color: #EBEBEB;
    --shoppingcart-product-item-line--border-style: solid;
    /*
        PRODUCT ITEM LABEL QUANTITY
    */
    --shoppingcart-product-item-label-quantity--grid-area: item-label-quantity;
    --shoppingcart-product-item-label-quantity--display: none;
    --shoppingcart-product-item-label-quantity--font-size: 12px;
    --shoppingcart-product-item-label-quantity--font-weight: 700;
    --shoppingcart-product-item-label-quantity--line-height: 1;
    --shoppingcart-product-item-label-quantity--color: #8C8C8C;
    --shoppingcart-product-item-label-quantity--text-align: left;
    --shoppingcart-product-item-label-quantity--text-transform: uppercase;
    /*
        PRODUCT ITEM LABEL PRICES
    */
    --shoppingcart-product-item-label-prices--grid-area: item-label-prices;
    --shoppingcart-product-item-label-prices--display: none;
    --shoppingcart-product-item-label-prices--font-size: 12px;
    --shoppingcart-product-item-label-prices--font-weight: 700;
    --shoppingcart-product-item-label-prices--line-height: 1;
    --shoppingcart-product-item-label-prices--color: #8C8C8C;
    --shoppingcart-product-item-label-prices--text-align: left;
    --shoppingcart-product-item-label-prices--text-transform: uppercase;
    /*
        PRODUCT ITEM LABEL TOTALS
    */
    --shoppingcart-product-item-label-totals--grid-area: item-label-totals;
    --shoppingcart-product-item-label-totals--display: none;
    --shoppingcart-product-item-label-totals--font-size: 12px;
    --shoppingcart-product-item-label-totals--font-weight: 700;
    --shoppingcart-product-item-label-totals--line-height: 1;
    --shoppingcart-product-item-label-totals--color: #8C8C8C;
    --shoppingcart-product-item-label-totals--text-align: right;
    --shoppingcart-product-item-label-totals--text-transform: uppercase;
    /*
        PRODUCT ITEM DELIVERY
    */
    --shoppingcart-product-item-delivery--width: 100%;
    --shoppingcart-product-item-delivery--font-size: 14px;
    --shoppingcart-product-item-delivery--font-weight: 600;
    --shoppingcart-product-item-delivery--line-height: 1;
    --shoppingcart-product-item-delivery--color: #A36B00;
    /*
        PRODUCT ITEM DELIVERY - WRAPPER
    */
    --shoppingcart-product-item-delivery-wrapper--display: flex;
    --shoppingcart-product-item-delivery-wrapper--flex-direction: row;
    --shoppingcart-product-item-delivery-wrapper--align-items: center;
    --shoppingcart-product-item-delivery-wrapper--gap: 4px;
    /*
        PRODUCT ITEM DELIVERY - UNAVAILABLE - ICON
    */
    --shoppingcart-product-item-delivery-unavailable-label--font-size: 14px;
    --shoppingcart-product-item-delivery-unavailable-label--font-weight: 600;
    --shoppingcart-product-item-delivery-unavailable-label--line-height: 1;
    --shoppingcart-product-item-delivery-unavailable-label--color: #e4bc82;
    /*
        PRODUCT ITEM DELIVERY - UNAVAILABLE - ICON
    */
    --shoppingcart-product-item-delivery-unavailable-icon--display: block;
    --shoppingcart-product-item-delivery-unavailable-icon--width: 16px;
    --shoppingcart-product-item-delivery-unavailable-icon--height: 16px;
    --shoppingcart-product-item-delivery-unavailable-icon--border-radius: 1.6px;
    --shoppingcart-product-item-delivery-unavailable-icon--background-color: #e4bc82;
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container {
    display: var(--shoppingcart-products-container--display);
    flex-direction: var(--shoppingcart-products-container--flex-direction);
    gap: var(--shoppingcart-products-container--gap);
}

#ShoppingCartV3_container.skep250 .shopping-cart-wrapper-column-products {
    flex-grow: var(--shoppingcart-wrapper-column-products--flex-grow);
}

#ShoppingCartV3_container.skep250 .shopping-cart-wrapper-column-totals {
    width: var(--shoppingcart-wrapper-column-totals--width);
    min-width: var(--shoppingcart-wrapper-column-totals--width);
}

#ShoppingCartV3_container.skep250 .shopping-cart-wrapper-column-products-header {
    display: var(--shoppingcart-products-items-header--display);
    padding: var(--shoppingcart-products-items-header--padding);
    gap: var(--shoppingcart-products-items-header--gap);
    text-transform: var(--shoppingcart-products-items-header--text-transform);
    font-size: var(--shoppingcart-products-items-header--font-size);
    font-weight: var(--shoppingcart-products-items-header--font-weight);
    color: var(--shoppingcart-products-items-header--color);
    line-height: var(--shoppingcart-products-items-header--line-height);
}

    #ShoppingCartV3_container.skep250 .shopping-cart-wrapper-column-products-header p {
        margin-bottom: 0;
    }

#ShoppingCartV3_container.skep250 .shopping-cart-product-column-photo {
    padding: 0 !important;
    width: var(--shoppingcart-products-items-header-label-photo--width);
    flex-grow: var(--shoppingcart-products-items-header-label-photo--flex-grow);
    flex-basis: var(--shoppingcart-products-items-header-label-photo--width);
}

#ShoppingCartV3_container.skep250 .shopping-cart-product-column-productinfo {
    padding: 0 !important;
    width: var(--shoppingcart-products-items-header-label-info--width);
    flex-grow: var(--shoppingcart-products-items-header-label-info--flex-grow);
    flex-basis: var(--shoppingcart-products-items-header-label-info--width);
}

#ShoppingCartV3_container.skep250 .shopping-cart-product-column-price {
    padding: 0 !important;
    width: var(--shoppingcart-products-items-header-label-price--width);
    flex-grow: var(--shoppingcart-products-items-header-label-price--flex-grow);
    flex-basis: var(--shoppingcart-products-items-header-label-price--width);
}

#ShoppingCartV3_container.skep250 .shopping-cart-product-column-quantity {
    padding: 0 !important;
    width: var(--shoppingcart-products-items-header-label-quantity--width);
    flex-grow: var(--shoppingcart-products-items-header-label-quantity--flex-grow);
    flex-basis: var(--shoppingcart-products-items-header-label-quantity--width);
}

#ShoppingCartV3_container.skep250 .shopping-cart-product-column-totalprice {
    padding: 0 !important;
    width: var(--shoppingcart-products-items-header-label-totals--width);
    flex-grow: var(--shoppingcart-products-items-header-label-totals--flex-grow);
    flex-basis: var(--shoppingcart-products-items-header-label-totals--width);
    text-align: var(--shoppingcart-products-items-header-label-totals--text-align);
}

#ShoppingCartV3_container.skep250 .shopping-cart-product-column-remove {
    padding-left: 0 !important;
    width: var(--shoppingcart-products-items-header-label-remove--width);
    flex-grow: var(--shoppingcart-products-items-header-label-remove--flex-grow);
    flex-basis: var(--shoppingcart-products-items-header-label-remove--width);
    position: var(--shoppingcart-products-items-header-label-remove--position);
    transform: var(--shoppingcart-products-items-header-label-remove--transform);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-container {
    display: var(--shoppingcart-product-item-container--display);
    flex-direction: var(--shoppingcart-product-item-container--flex-direction);
    gap: var(--shoppingcart-product-item-container--gap);
    align-items: var(--shoppingcart-product-item-container--align-items);
    justify-content: var(--shoppingcart-product-item-container--justify-content);
    min-height: var(--shoppingcart-product-item-container--min-height);
    border: var(--shoppingcart-product-item-container--border);
    border-radius: var(--shoppingcart-product-item-container--border-radius);
    padding: var(--shoppingcart-product-item-container--padding);
    margin: var(--shoppingcart-product-item-container--margin);
    width: var(--shoppingcart-product-item-container--width);
    height: var(--shoppingcart-product-item-container--height);
    max-height: var(--shoppingcart-product-item-container--max-height);
}

    #ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-container * {
        color: inherit;
    }

    #ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-container p {
        margin-bottom: 0;
    }

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-grid {
    display: var(--shoppingcart-product-item-grid--display);
    gap: var(--shoppingcart-product-item-grid--gap);
    grid-template: var(--shoppingcart-product-item-grid--grid-template);
    align-items: var(--shoppingcart-product-item-grid--align-items);
    width: var(--shoppingcart-product-item-grid--width);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-photo {
    grid-area: var(--shoppingcart-product-item-photo--grid-area);
    display: var(--shoppingcart-product-item-photo--display);
    justify-content: var(--shoppingcart-product-item-photo--justify-content);
    align-items: var(--shoppingcart-product-item-photo--align-items);
    position: var(--shoppingcart-product-item-photo--position);
    order: var(--shoppingcart-product-item-photo--order);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-photo-image {
    position: var(--shoppingcart-product-item-photo-image--position);
    z-index: var(--shoppingcart-product-item-photo-image--z-index);
    display: var(--shoppingcart-product-item-photo-image--display);
    width: var(--shoppingcart-product-item-photo-image--width);
    height: var(--shoppingcart-product-item-photo-image--height);
    object-fit: var(--shoppingcart-product-item-photo-image--object-fit);
    object-position: var(--shoppingcart-product-item-photo-image--object-position);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-photo-sold-out {
    position: var(--shoppingcart-product-item-photo-sold-out--position);
    z-index: var(--shoppingcart-product-item-photo-sold-out--z-index);
    left: var(--shoppingcart-product-item-photo-sold-out--left);
    bottom: var(--shoppingcart-product-item-photo-sold-out--bottom);
    width: var(--shoppingcart-product-item-photo-sold-out--width);
    height: var(--shoppingcart-product-item-photo-sold-out--height);
    padding: var(--shoppingcart-product-item-photo-sold-out--padding);
    background-color: var(--shoppingcart-product-item-photo-sold-out--background-color);
    border-radius: var(--shoppingcart-product-item-photo-sold-out--border-radius);
    text-align: var(--shoppingcart-product-item-photo-sold-out--text-align);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-photo-sold-out-label {
    display: var(--shoppingcart-product-item-photo-sold-out-label--display);
    font-weight: var(--shoppingcart-product-item-photo-sold-out-label--font-weight);
    font-size: var(--shoppingcart-product-item-photo-sold-out-label--font-size);
    line-height: var(--shoppingcart-product-item-photo-sold-out-label--line-height);
    color: var(--shoppingcart-product-item-photo-sold-out-label--color);
    text-transform: var(--shoppingcart-product-item-photo-sold-out-label--text-transform);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-info {
    grid-area: var(--shoppingcart-product-item-info--grid-area);
    display: var(--shoppingcart-product-item-info--display);
    flex-direction: var(--shoppingcart-product-item-info--flex-direction);
    gap: var(--shoppingcart-product-item-info--gap);
    margin: var(--shoppingcart-product-item-info--margin);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-info-category {
    font-weight: var(--shoppingcart-product-item-info-category--font-weight);
    font-size: var(--shoppingcart-product-item-info-category--font-size);
    line-height: var(--shoppingcart-product-item-info-category--line-height);
    color: var(--shoppingcart-product-item-info-category--color);
    opacity: var(--shoppingcart-product-item-info-category--opacity);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-info-name {
    font-weight: var(--shoppingcart-product-item-info-name--font-weight);
    font-size: var(--shoppingcart-product-item-info-name--font-size);
    line-height: var(--shoppingcart-product-item-info-name--line-height);
    color: var(--shoppingcart-product-item-info-name--color);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-info-sku {
    font-weight: var(--shoppingcart-product-item-info-sku--font-weight);
    font-size: var(--shoppingcart-product-item-info-sku--font-size);
    line-height: var(--shoppingcart-product-item-info-sku--line-height);
    color: var(--shoppingcart-product-item-info-sku--color);
    border-radius: var(--shoppingcart-product-item-info-sku--border-radius);
    border: var(--shoppingcart-product-item-info-sku--border);
    padding: var(--shoppingcart-product-item-info-sku--padding);
    align-self: var(--shoppingcart-product-item-info-sku--align-self);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-price {
    grid-area: var(--shoppingcart-product-item-price--grid-area);
    display: var(--shoppingcart-product-item-price--display);
    flex-direction: var(--shoppingcart-product-item-price--flex-direction);
    justify-content: var(--shoppingcart-product-item-price--justify-content);
    gap: var(--shoppingcart-product-item-price--gap);
    width: var(--shoppingcart-product-item-price--width);
    max-width: var(--shoppingcart-product-item-price--max-width);
    height: var(--shoppingcart-product-item-price--height);
    justify-self: var(--shoppingcart-product-item-price--justify-self);
    margin: var(--shoppingcart-product-item-price--margin);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-price-regular {
    display: var(--shoppingcart-product-item-price-regular--display);
    flex-direction: var(--shoppingcart-product-item-price-regular--flex-direction);
    align-items: var(--shoppingcart-product-item-price-regular--align-items);
    gap: var(--shoppingcart-product-item-price-regular--gap);
    height: var(--shoppingcart-product-item-price-regular--height);
    min-height: var(--shoppingcart-product-item-price-regular--min-height);
    border-radius: var(--shoppingcart-product-item-price-regular--border-radius);
    border: var(--shoppingcart-product-item-price-regular--border);
    padding: var(--shoppingcart-product-item-price-regular--padding);
    background-color: var(--shoppingcart-product-item-price-regular--background-color);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-price-regular-label {
    font-size: var(--shoppingcart-product-item-price-regular-label--font-size);
    font-weight: var(--shoppingcart-product-item-price-regular-label--font-weight);
    line-height: var(--shoppingcart-product-item-price-regular-label--line-height);
    letter-spacing: var(--shoppingcart-product-item-price-regular-label--letter-spacing);
    color: var(--shoppingcart-product-item-price-regular-label--color);
    flex-grow: var(--shoppingcart-product-item-price-regular-label--flex-grow);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-price-regular-value {
    font-size: var(--shoppingcart-product-item-price-regular-value--font-size);
    font-weight: var(--shoppingcart-product-item-price-regular-value--font-weight);
    line-height: var(--shoppingcart-product-item-price-regular-value--line-height);
    letter-spacing: var(--shoppingcart-product-item-price-regular-value--letter-spacing);
    color: var(--shoppingcart-product-item-price-regular-value--color);
    white-space: var(--shoppingcart-product-item-price-regular-value--white-space);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-price-club {
    display: var(--shoppingcart-product-item-price-club--display);
    flex-direction: var(--shoppingcart-product-item-price-club--flex-direction);
    align-items: var(--shoppingcart-product-item-price-club--align-items);
    gap: var(--shoppingcart-product-item-price-club--gap);
    height: var(--shoppingcart-product-item-price-club--height);
    min-height: var(--shoppingcart-product-item-price-club--min-height);
    border-radius: var(--shoppingcart-product-item-price-club--border-radius);
    border: var(--shoppingcart-product-item-price-club--border);
    padding: var(--shoppingcart-product-item-price-club--padding);
    background-color: var(--shoppingcart-product-item-price-club--background-color);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-price-club-label {
    display: var(--shoppingcart-product-item-price-club-label--display);
    align-items: var(--shoppingcart-product-item-price-club-label--align-items);
    gap: var(--shoppingcart-product-item-price-club-label--gap);
    font-size: var(--shoppingcart-product-item-price-club-label--font-size);
    font-weight: var(--shoppingcart-product-item-price-club-label--font-weight);
    line-height: var(--shoppingcart-product-item-price-club-label--line-height);
    letter-spacing: var(--shoppingcart-product-item-price-club-label--letter-spacing);
    color: var(--shoppingcart-product-item-price-club-label--color);
    flex-grow: var(--shoppingcart-product-item-price-club-label--flex-grow);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-price-club-discount {
    display: var(--shoppingcart-product-item-price-club-discount--display);
    font-size: var(--shoppingcart-product-item-price-club-discount--font-size);
    font-weight: var(--shoppingcart-product-item-price-club-discount--font-weight);
    line-height: var(--shoppingcart-product-item-price-club-discount--line-height);
    color: var(--shoppingcart-product-item-price-club-discount--color);
    white-space: var(--shoppingcart-product-item-price-club-discount--white-space);
    padding: var(--shoppingcart-product-item-price-club-discount--padding);
    border: var(--shoppingcart-product-item-price-club-discount--border);
    border-radius: var(--shoppingcart-product-item-price-club-discount--border-radius);
    background-color: var(--shoppingcart-product-item-price-club-discount--background-color);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-price-club-value {
    font-size: var(--shoppingcart-product-item-price-club-value--font-size);
    font-weight: var(--shoppingcart-product-item-price-club-value--font-weight);
    line-height: var(--shoppingcart-product-item-price-club-value--line-height);
    letter-spacing: var(--shoppingcart-product-item-price-club-value--letter-spacing);
    color: var(--shoppingcart-product-item-price-club-value--color);
    white-space: var(--shoppingcart-product-item-price-club-value--white-space);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-quantity {
    grid-area: var(--shoppingcart-product-item-quantity--grid-area);
    display: var(--shoppingcart-product-item-quantity--display);
    flex-direction: var(--shoppingcart-product-item-quantity--flex-direction);
    height: var(--shoppingcart-product-item-quantity--height);
    min-height: var(--shoppingcart-product-item-quantity--min-height);
    margin: var(--shoppingcart-product-item-quantity--margin);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-quantity-group {
    display: var(--shoppingcart-product-item-quantity-group--display);
    flex-direction: var(--shoppingcart-product-item-quantity-group--flex-direction);
    width: var(--shoppingcart-product-item-quantity-group--width);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-quantity-button-decrease {
    display: var(--shoppingcart-product-item-quantity-decrease-button--display);
    padding: var(--shoppingcart-product-item-quantity-decrease-button--padding);
    align-items: var(--shoppingcart-product-item-quantity-decrease-button--align-items);
    justify-content: var(--shoppingcart-product-item-quantity-decrease-button--justify-content);
    background: var(--shoppingcart-product-item-quantity-decrease-button--background);
    border: var(--shoppingcart-product-item-quantity-decrease-button--border);
    border-radius: var(--shoppingcart-product-item-quantity-decrease-button--border-radius);
    width: var(--shoppingcart-product-item-quantity-decrease-button--width);
    min-width: var(--shoppingcart-product-item-quantity-decrease-button--min-width);
    cursor: var(--shoppingcart-product-item-quantity-decrease-button--cursor);
}

    #ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-quantity-button-decrease img {
        display: var(--shoppingcart-product-item-quantity-decrease-button-image--display);
        width: var(--shoppingcart-product-item-quantity-decrease-button-image--width);
        height: var(--shoppingcart-product-item-quantity-decrease-button-image--height);
        content: var(--shoppingcart-product-item-quantity-decrease-button-image--content);
    }

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-quantity-button-increase {
    display: var(--shoppingcart-product-item-quantity-increase-button--display);
    padding: var(--shoppingcart-product-item-quantity-increase-button--padding);
    align-items: var(--shoppingcart-product-item-quantity-increase-button--align-items);
    justify-content: var(--shoppingcart-product-item-quantity-increase-button--justify-content);
    background: var(--shoppingcart-product-item-quantity-increase-button--background);
    border: var(--shoppingcart-product-item-quantity-increase-button--border);
    border-radius: var(--shoppingcart-product-item-quantity-increase-button--border-radius);
    width: var(--shoppingcart-product-item-quantity-increase-button--width);
    min-width: var(--shoppingcart-product-item-quantity-increase-button--min-width);
    cursor: var(--shoppingcart-product-item-quantity-increase-button--cursor);
}

    #ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-quantity-button-increase img {
        display: var(--shoppingcart-product-item-quantity-increase-button-image--display);
        width: var(--shoppingcart-product-item-quantity-increase-button-image--width);
        height: var(--shoppingcart-product-item-quantity-increase-button-image--height);
        content: var(--shoppingcart-product-item-quantity-increase-button-image--content);
    }

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-quantity-units {
    display: var(--shoppingcart-product-item-quantity-units--display);
    width: var(--shoppingcart-product-item-quantity-units--width);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-quantity-units-input {
    display: var(--shoppingcart-product-item-quantity-units-input--display);
    padding: var(--shoppingcart-product-item-quantity-units-input--padding);
    border-width: var(--shoppingcart-product-item-quantity-units-input--border-width);
    border-style: var(--shoppingcart-product-item-quantity-units-input--border-style);
    border-color: var(--shoppingcart-product-item-quantity-units-input--border-color);
    width: var(--shoppingcart-product-item-quantity-units-input--width);
    text-align: var(--shoppingcart-product-item-quantity-units-input--text-align);
    font-size: var(--shoppingcart-product-item-quantity-units-input--font-size);
    font-weight: var(--shoppingcart-product-item-quantity-units-input--font-weight);
    line-height: var(--shoppingcart-product-item-quantity-units-input--line-height);
    color: var(--shoppingcart-product-item-quantity-units-input--color);
    user-select: var(--shoppingcart-product-item-quantity-units-input--user-select);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-totals {
    grid-area: var(--shoppingcart-product-item-totals--grid-area);
    display: var(--shoppingcart-product-item-totals--display);
    flex-direction: var(--shoppingcart-product-item-totals--flex-direction);
    align-items: var(--shoppingcart-product-item-totals--align-items);
    align-self: var(--shoppingcart-product-item-totals--align-self);
    justify-content: var(--shoppingcart-product-item-totals--justify-content);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-totals-label {
    display: var(--shoppingcart-product-item-totals-label--display);
    flex-grow: var(--shoppingcart-product-item-totals-label--flex-grow);
    font-size: var(--shoppingcart-product-item-totals-label--font-size);
    font-weight: var(--shoppingcart-product-item-totals-label--font-weight);
    line-height: var(--shoppingcart-product-item-totals-label--line-height);
    color: var(--shoppingcart-product-item-totals-label--color);
    text-transform: var(--shoppingcart-product-item-totals-label--text-transform);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-totals-prices {
    display: var(--shoppingcart-product-item-totals-prices--display);
    flex-direction: var(--shoppingcart-product-item-totals-prices--flex-direction);
    align-items: var(--shoppingcart-product-item-totals-prices--align-items);
    gap: var(--shoppingcart-product-item-totals-prices--gap);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-totals-price-regular {
    font-size: var(--shoppingcart-product-item-totals-price-regular--font-size);
    font-weight: var(--shoppingcart-product-item-totals-price-regular--font-weight);
    line-height: var(--shoppingcart-product-item-totals-price-regular--line-height);
    color: var(--shoppingcart-product-item-totals-price-regular--color);
    white-space: var(--shoppingcart-product-item-totals-price-regular--white-space);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-totals-price-club {
    font-size: var(--shoppingcart-product-item-totals-price-club--font-size);
    font-weight: var(--shoppingcart-product-item-totals-price-club--font-weight);
    line-height: var(--shoppingcart-product-item-totals-price-club--line-height);
    color: var(--shoppingcart-product-item-totals-price-club--color);
    white-space: var(--shoppingcart-product-item-totals-price-club--white-space);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-remove {
    grid-area: var(--shoppingcart-product-item-remove--grid-area);
    display: var(--shoppingcart-product-item-remove--display);
    flex-direction: var(--shoppingcart-product-item-remove--flex-direction);
    align-items: var(--shoppingcart-product-item-remove--align-items);
    align-self: var(--shoppingcart-product-item-remove--align-self);
    padding: var(--shoppingcart-product-item-remove--padding);
}

    #ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-remove button {
        display: var(--shoppingcart-product-item-remove-button--display);
        align-items: var(--shoppingcart-product-item-remove-button--align-items);
        justify-content: var(--shoppingcart-product-item-remove-button--justify-content);
        border: var(--shoppingcart-product-item-remove-button--border);
        background-color: var(--shoppingcart-product-item-remove-button--background-color);
        padding: var(--shoppingcart-product-item-remove-button--padding);
        cursor: var(--shoppingcart-product-item-remove-button--cursor);
        width: var(--shoppingcart-product-item-remove-button--width);
        height: var(--shoppingcart-product-item-remove-button--height);
        outline: var(--shoppingcart-product-item-remove-button--outline);
        opacity: var(--shoppingcart-product-item-remove-button--opacity);
        transform: var(--shoppingcart-product-item-remove-button--transform);
        transition: var(--shoppingcart-product-item-remove-button--transition);
    }

        #ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-remove button:hover {
            transform: var(--shoppingcart-product-item-remove-button--transform-hover);
            opacity: var(--shoppingcart-product-item-remove-button--opacity-hover);
        }

        #ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-remove button img {
            display: var(--shoppingcart-product-item-remove-image--display);
            width: var(--shoppingcart-product-item-remove-image--width);
            height: var(--shoppingcart-product-item-remove-image--height);
            content: var(--shoppingcart-product-item-remove-image--content);
        }

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-line {
    grid-area: var(--shoppingcart-product-item-line--grid-area);
    display: var(--shoppingcart-product-item-line--display);
    width: var(--shoppingcart-product-item-line--width);
    height: var(--shoppingcart-product-item-line--height);
    border-width: var(--shoppingcart-product-item-line--border-width);
    border-color: var(--shoppingcart-product-item-line--border-color);
    border-style: var(--shoppingcart-product-item-line--border-style);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-label-quantity {
    grid-area: var(--shoppingcart-product-item-label-quantity--grid-area);
    display: var(--shoppingcart-product-item-label-quantity--display);
    font-size: var(--shoppingcart-product-item-label-quantity--font-size);
    font-weight: var(--shoppingcart-product-item-label-quantity--font-weight);
    line-height: var(--shoppingcart-product-item-label-quantity--line-height);
    color: var(--shoppingcart-product-item-label-quantity--color);
    text-align: var(--shoppingcart-product-item-label-quantity--text-align);
    text-transform: var(--shoppingcart-product-item-label-quantity--text-transform);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-label-prices {
    grid-area: var(--shoppingcart-product-item-label-prices--grid-area);
    display: var(--shoppingcart-product-item-label-prices--display);
    font-size: var(--shoppingcart-product-item-label-prices--font-size);
    font-weight: var(--shoppingcart-product-item-label-prices--font-weight);
    line-height: var(--shoppingcart-product-item-label-prices--line-height);
    color: var(--shoppingcart-product-item-label-prices--color);
    text-align: var(--shoppingcart-product-item-label-prices--text-align);
    text-transform: var(--shoppingcart-product-item-label-prices--text-transform);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-label-totals {
    grid-area: var(--shoppingcart-product-item-label-totals--grid-area);
    display: var(--shoppingcart-product-item-label-totals--display);
    font-size: var(--shoppingcart-product-item-label-totals--font-size);
    font-weight: var(--shoppingcart-product-item-label-totals--font-weight);
    line-height: var(--shoppingcart-product-item-label-totals--line-height);
    color: var(--shoppingcart-product-item-label-totals--color);
    text-align: var(--shoppingcart-product-item-label-totals--text-align);
    text-transform: var(--shoppingcart-product-item-label-totals--text-transform);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-delivery {
    width: var(--shoppingcart-product-item-delivery--width);
    font-size: var(--shoppingcart-product-item-delivery--font-size);
    font-weight: var(--shoppingcart-product-item-delivery--font-weight);
    line-height: var(--shoppingcart-product-item-delivery--line-height);
    color: var(--shoppingcart-product-item-delivery--color);
}

#ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-delivery-wrapper {
    display: var(--shoppingcart-product-item-delivery-wrapper--display);
    flex-direction: var(--shoppingcart-product-item-delivery-wrapper--flex-direction);
    align-items: var(--shoppingcart-product-item-delivery-wrapper--align-items);
    gap: var(--shoppingcart-product-item-delivery-wrapper--gap);
}

    #ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-delivery-wrapper .delivery-unavailable-icon {
        display: var(--shoppingcart-product-item-delivery-unavailable-icon--display);
        width: var(--shoppingcart-product-item-delivery-unavailable-icon--width);
        height: var(--shoppingcart-product-item-delivery-unavailable-icon--height);
        border-radius: var(--shoppingcart-product-item-delivery-unavailable-icon--border-radius);
        background-color: var(--shoppingcart-product-item-delivery-unavailable-icon--background-color);
    }

    #ShoppingCartV3_container.skep250 #ShoppingCartProducts_container .shopping-cart-product-item-delivery-wrapper .delivery-unavailable-label {
        font-size: var(--shoppingcart-product-item-delivery-unavailable-label--font-size);
        font-weight: var(--shoppingcart-product-item-delivery-unavailable-label--font-weight);
        line-height: var(--shoppingcart-product-item-delivery-unavailable-label--line-height);
        color: var(--shoppingcart-product-item-delivery-unavailable-label--color);
    }

/* < 390 (default values) */
@media screen and (max-width: 389px) {
}

/* 390 - 839 */
@media screen and (min-width: 390px) {
    :root {
        --shoppingcart-product-item-grid--grid-template: "item-photo item-info item-remove" auto "item-quantity item-price item-price" auto "item-line item-line item-line" auto "item-totals item-totals item-totals" auto / 104px 1fr 40px;
        --shoppingcart-product-item-grid--gap: 8px;
        --shoppingcart-product-item-quantity--min-height: 68px;
        --shoppingcart-product-item-quantity-units-input--font-size: 20px;
        --shoppingcart-product-item-price-regular--padding: 6px;
        --shoppingcart-product-item-price-regular--border-radius: 8px;
        --shoppingcart-product-item-price-regular-label--font-size: 12px;
        --shoppingcart-product-item-price-regular-label--line-height: 16.8px;
        --shoppingcart-product-item-price-regular-value--font-size: 12px;
        --shoppingcart-product-item-price-regular-value--line-height: 16.8px;
        --shoppingcart-product-item-price-club-discount--font-size: 12px;
        --shoppingcart-product-item-price-club--padding: 6px;
        --shoppingcart-product-item-price-club--border-radius: 8px;
        --shoppingcart-product-item-price-club-label--font-size: 12px;
        --shoppingcart-product-item-price-club-label--line-height: 16.8px;
        --shoppingcart-product-item-price-club-discount--line-height: 16.8px;
        --shoppingcart-product-item-price-club-value--font-size: 12px;
        --shoppingcart-product-item-price-club-value--line-height: 16.8px;
    }
}

/* 840 - 1079 */
@media screen and (min-width: 840px) {
    :root {
        --shoppingcart-product-item-grid--grid-template: "item-photo item-info item-info item-remove" auto "item-label-quantity item-label-prices item-label-totals item-label-totals" auto "item-line item-line item-line item-line" auto "item-quantity item-price item-totals item-totals" auto / 104px 1fr 90px 40px;
        --shoppingcart-product-item-price--justify-self: flex-start;
        --shoppingcart-product-item-price--margin: auto 0;
        --shoppingcart-product-item-totals-label--display: none;
        --shoppingcart-product-item-totals-prices--gap: 12px;
        --shoppingcart-product-item-label-quantity--display: block;
        --shoppingcart-product-item-label-prices--display: block;
        --shoppingcart-product-item-label-totals--display: block;
        --shoppingcart-product-item-container--gap: 8px;
        /*--shoppingcart-product-item-quantity--min-height: 72px;*/
        --shoppingcart-product-item-price-regular--height: auto;
        --shoppingcart-product-item-price-regular--min-height: 29px;
        --shoppingcart-product-item-price-club--height: auto;
        --shoppingcart-product-item-price-club--min-height: 29px;
    }
}

/* 1080 - 1279 */
@media screen and (min-width: 1080px) {
    :root {
        --shoppingcart-products-items-header--display: flex;
        --shoppingcart-products-items-header--gap: 8px;
        --shoppingcart-products-items-header-label-photo--width: 84px;
        --shoppingcart-products-items-header-label-info--flex-grow: 1;
        --shoppingcart-products-items-header-label-price--width: 270px;
        --shoppingcart-products-items-header-label-quantity--width: 90px;
        --shoppingcart-products-items-header-label-totals--width: 125px;
        --shoppingcart-products-items-header-label-totals--text-align: right;
        --shoppingcart-products-items-header-label-remove--width: 24px;
        --shoppingcart-products-items-header-label-remove--position: unset;
        --shoppingcart-products-items-header-label-remove--transform: unset;
        --shoppingcart-product-item-grid--grid-template: "item-photo item-info item-price item-quantity item-totals item-remove" auto / 84px 1fr 270px 90px 125px 24px;
        --shoppingcart-product-item-container--border: solid 1px black;
        --shoppingcart-product-item-container--border-radius: 12px;
        --shoppingcart-product-item-label-quantity--display: none;
        --shoppingcart-product-item-label-prices--display: none;
        --shoppingcart-product-item-label-totals--display: none;
        --shoppingcart-product-item-line--display: none;
        --shoppingcart-product-item-container--padding: 12px 8px;
        --shoppingcart-product-item-photo-image--width: 84px;
        --shoppingcart-product-item-photo-image--height: 84px;
        --shoppingcart-product-item-quantity--height: 69px;
        --shoppingcart-product-item-quantity--min-height: unset;
        --shoppingcart-product-item-info-name--font-size: 14px;
        --shoppingcart-product-item-info-name--line-height: 15px;
        --shoppingcart-product-item-price--justify-content: center;
        --shoppingcart-product-item-price-club-discount--padding: 2px 4px;
        --shoppingcart-product-item-price-regular--min-height: 25px;
        --shoppingcart-product-item-price-regular-label--letter-spacing: auto;
        --shoppingcart-product-item-price-regular-value--font-weight: 600;
        --shoppingcart-product-item-price-club-label--letter-spacing: auto;
        --shoppingcart-product-item-totals-prices--gap: 14px;
        --shoppingcart-product-item-totals-price-regular--font-size: 14px;
        --shoppingcart-product-item-totals-price-regular--line-height: 19.6px;
        --shoppingcart-product-item-totals-price-club--font-size: 14px;
        --shoppingcart-product-item-totals-price-club--line-height: 19.6px;
        --shoppingcart-product-item-quantity-units-input--font-size: 24px;
        --shoppingcart-product-item-quantity-decrease-button--width: 24px;
        --shoppingcart-product-item-quantity-decrease-button--min-width: 24px;
        --shoppingcart-product-item-quantity-units--width: auto;
        --shoppingcart-product-item-quantity-increase-button--width: 24px;
        --shoppingcart-product-item-quantity-increase-button--min-width: 24px;
    }
}

/* 1280 - 1499 */
@media screen and (min-width: 1280px) {
    :root {
        --shoppingcart-products-items-header-label-photo--width: 96px;
        --shoppingcart-products-items-header-label-totals--width: 125px;
        --shoppingcart-product-item-grid--grid-template: "item-photo item-info item-price item-quantity item-totals item-remove" auto / 96px 1fr 270px 90px 125px 24px;
        --shoppingcart-product-item-photo-image--width: 96px;
        --shoppingcart-product-item-photo-image--height: 96px;
    }
}

/* >= 1500 */
@media screen and (min-width: 1500px) {
    :root {
        --shoppingcart-products-items-header--gap: 16px;
        --shoppingcart-products-items-header--padding: 20px 16px 6px 16px;
        --shoppingcart-products-items-header-label-photo--width: 144px;
        --shoppingcart-products-items-header-label-quantity--width: 120px;
        --shoppingcart-products-items-header-label-totals--width: 150px;
        --shoppingcart-products-items-header-label-remove--width: 40px;
        --shoppingcart-product-item-grid--gap: 16px;
        --shoppingcart-product-item-grid--grid-template: "item-photo item-info item-price item-quantity item-totals item-remove" auto / 144px 1fr 270px 120px 150px 40px;
        --shoppingcart-product-item-photo-image--width: 144px;
        --shoppingcart-product-item-photo-image--height: 144px;
        --shoppingcart-product-item-container--padding: 16px;
        --shoppingcart-product-item-price--max-width: 280px;
        --shoppingcart-product-item-price-regular--min-height: 32px;
        --shoppingcart-product-item-price-club--min-height: 32px;
        --shoppingcart-product-item-quantity--height: 72px;
        --shoppingcart-product-item-quantity-decrease-button--width: 32px;
        --shoppingcart-product-item-quantity-decrease-button--min-width: 32px;
        --shoppingcart-product-item-quantity-increase-button--width: 32px;
        --shoppingcart-product-item-quantity-increase-button--min-width: 32px;
        --shoppingcart-product-item-price-regular-value--font-size: 14px;
        --shoppingcart-product-item-price-club-value--font-size: 14px;
        --shoppingcart-product-item-totals-prices--gap: 18px;
        --shoppingcart-product-item-totals-price-regular--font-size: 16px;
        --shoppingcart-product-item-totals-price-regular--line-height: 22.4px;
        --shoppingcart-product-item-totals-price-club--font-size: 16px;
        --shoppingcart-product-item-totals-price-club--line-height: 22.4px;
    }
}
