/** Shopify CDN: Minification failed

Line 484:257 Expected identifier but found "{"
Line 484:258 Unexpected "{"
Line 484:267 Expected ":"

**/
.drawer {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(var(--color-foreground), 0.5);
  transition: visibility var(--duration-default) ease;
}
  
.drawer.active {
  visibility: visible;
}

.drawer__inner {
  height: 100%;
  width: 500px;   
  max-width: calc(100vw - 3rem);
  padding: 0;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-right: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  right:-600px;
  transition: right var(--duration-default) ease;
}

.drawer__inner-empty {
  height: 100%;
  padding: 0 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
}
 
cart-drawer.is-empty .drawer__header {
  display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
  margin-top: 2.5rem;
}

.drawer.active .drawer__inner {
  right:0px;position:relative;
}

.drawer__header {
  position: relative;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 

.drawer__heading {
  margin: 0 0 1rem;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  min-width: 4.4rem;
  min-height: 4.4rem;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  position: absolute;
  top: 10px;
  right: -10px;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.cart-drawer__warnings .drawer__close {
  right: 5px;  
}

.drawer__close .svg-wrapper {
  height: 2rem;
  width: 2rem;
}
 
.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.drawer__footer {
  padding: 1.5rem 1.5rem;
  position: sticky;
  bottom: 0;
  /* z-index: 99; */
  background: #fff;
  background: #fff;
  box-shadow: 0 -5px 15px 5px #1212121a;
  border-top: 0;
}

cart-drawer-items.is-empty + .drawer__footer {
  display: none;
}

.drawer__footer > details {
  margin-top: -1.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.drawer__footer > details[open] {
  padding-bottom: 1.5rem;
}

.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 2.8rem 1.5rem 0;
}

.drawer__footer > details + .cart-drawer__footer {
  padding-top: 1.5rem;
}

cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cart-drawer__overlay:empty {
  display: block;
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}

.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex-grow: 1;
}

.cart-drawer .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: inline-table;
  width: 100%;
}

cart-drawer-items {
  overflow: auto;
  z-index:2;
  flex: 1;
}

@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: visible;
  }

  .drawer__inner {
    overflow: scroll;
  }
}

.cart-drawer .cart-item {
  display: grid;
  grid-template: repeat(2, auto) / repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1rem;
}

.cart-drawer .cart-item__media {
  grid-row: 1 / 3;
}

.cart-drawer .cart-item__image {
  max-width: 100%;
}

.cart-drawer .cart-items thead {
  margin-bottom: 0.5rem;
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
  width: 0;
  padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
  width: 50%;
  padding-left: 0;
}

.cart-drawer .cart-items thead tr {
  display: table-row;
  margin-bottom: 0;
}

.cart-drawer .cart-items th {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1.5rem;
}

.cart-drawer .cart-item .loading__spinner {
  right: 5px;
  padding-top: 2.5rem;
}

.cart-drawer .cart-items td {
  padding-top: 1.7rem;
}

.cart-drawer .cart-item > td + td {
  padding-left: 1rem;
}

.cart-drawer .cart-item__details {
  width: auto;
  grid-column: 2 / 4;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
  margin-top: 0;
}

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  flex-direction: column;  
  gap: 0.6rem;
  align-items: flex-start;
}

.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  grid-column: 2 / 5;
}

@media screen and (max-width: 749px) {
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
  }   
}

.cart-drawer__footer > * + * {
  margin-top: 1rem;
}

.cart-drawer .totals {
  justify-content: space-between;
}

.cart-drawer .price {
  line-height: 1;
  letter-spacing:0px;
  font-size:13px;
  font-weight:600;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 2rem auto;
  text-align: left;
}
  
.cart-drawer .product-option dd {
  word-break: break-word;
}

.cart-drawer details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
  max-width: none;
}

.drawer__footer .cart__dynamic-checkout-buttons {
  max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
  flex-wrap: wrap !important;
  flex-direction: row !important;
  margin: 0.5rem -0.5rem 0 0 !important;
  gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
  justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul > li {
  flex-basis: calc(50% - 0.5rem) !important;
  margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul > li:only-child {
  flex-basis: 100% !important;
  margin-right: 0.5rem !important;
}

@media screen and (min-width: 750px) {
  .drawer__footer #dynamic-checkout-cart ul > li {
    flex-basis: calc(100% / 3 - 0.5rem) !important;
    margin: 0 !important;
  }

  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2) ~ li,
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4) ~ li {
    flex-basis: calc(50% - 0.5rem) !important;
  }
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}
 
cart-drawer-items::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}

.cart-drawer .quantity-popover-container {
  padding: 0;
}

.cart-drawer .quantity-popover__info.global-settings-popup {
  transform: translateY(0);
  top: 100%;
}

.cart-drawer .cart-item__error {  
  margin-top: 0.8rem;
}

.cart-drawer .quantity-popover__info + .cart-item__error {
  margin-top: 0.2rem;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-item__quantity--info quantity-popover > * {
    padding-left: 0;
  }

  .cart-drawer .cart-item__error {
    margin-left: 0;
  }
} 


/**cart**/
.cart-item__descrption-title .see_more_info{display:flex;align-items:center;gap:10px;width:fit-content;cursor:pointer;}
.cart-item__descrption-title .cart-info-svgs{display:flex;}
.cart-item__descrption-title.show .cart-info-plus {display:none;}
.cart-item__descrption-title.show .cart-info-minus{display:flex !important;}
.cart__item-select-container{position:relative;display:flex;text-decoration: underline;align-items: baseline;cursor: pointer;border: none;color:#1c1c1e;margin-left: -1px;}
.cart__item-select-container .cart__item-select-title{color:#1c1c1e;font-weight: 400;line-height: 1;margin-right: -2rem;z-index: 2;pointer-events: none;}
.cart__item-select-container .quantity_select{text-decoration: underline;display: flex;align-items: center;cursor: pointer;border: none;color:#1c1c1e;background: 0 0;-webkit-appearance: none;padding-left: 2rem;width: 5rem;font-size:16px;line-height: 1;}
.cart__item-select-container .cart__item-select-label{margin-left: -1.25rem;display: inline-flex;align-items: center;text-decoration: underline;}
.cart__item-select-container .cart__item-select-label span{display:flex;align-items: center;}
cart-items .quantity-popover-container{padding:0px;}
.cart-item__details .badge{width:fit-content;margin-bottom:5px;}
cart-items .cart_footer_order_info{display: flex;gap:20px;flex-wrap: wrap;}
cart-items .order_info_content_wrapper{max-width:calc(100% - 30px - 20px);width:100%;}
.list-payment_items-wrapper{max-width:350px;width:100%;margin-left:auto;margin-right:auto;}
cart-items .cart-item-info-wrapper{display:flex;flex-wrap: wrap;gap:20px;}
cart-items{position: relative;z-index: 2 !important;}
cart-items .shop_all_container{width:100%;border-radius:100px;}
cart-items .quantity_selected_container{
  position: absolute;
  text-align: center;
  width: 100%;
  top: 18px;
  background: #fff;
  padding: 7px 10px;left: 0;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
.custom_main_upsell_card_product {margin-bottom:20px;}


/* progressbar css */
/* cart discount bar */
    .discount-bar-cart {background-color:#ffffff;border-bottom:1px solid #e9e9e9;padding:12px 15px;position:relative;z-index:2;margin-top:1px;margin:0px;}
    .discount-bar-cart .grid-outer {padding:0px !important;}
    .discount-bar-cart .discount--bar-container .container-new {line-height:1.1;width:100%;display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px;}
    .discount-bar-cart .discount--bar-container .container-new p {margin:0px;}
    .discount-bar-cart .discount--bar-container .container-new strong {font-weight:600;}
    .discount-bar-cart .discount--bar-container .container-new .heading {order:1;max-width:100%;text-align:center;width:100%;font-size:20px;font-weight:600;color:#000000; padding-top: 3px;}
    .discount-bar-cart .discount--bar-container .container-new .content { font-size:12px;font-weight:400;color:#000000;order:2;position:relative;width:100%;text-align:center;margin:10px 0px;}
    .discount-bar-cart .discount--bar-container .container-new .content span {font-weight:600;}
    .discount-bar-cart .discount--bar-container .container-new .content p {margin:0px;}
    .discount-bar-cart .discount--bar-container .bar-container-main  {order:4;max-width:100%;width:100%;padding:0px 60px;}
    .discount-bar-cart .discount--bar-container .bar-container{max-width:100%;width:100%;}
    .discount-bar-cart .discount--bar-container .bar-container .inner-container{padding-bottom:50px;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar {display:flex;flex-direction:row;width:100%;border-radius:100px;background-color:#d9d9d9;border:0px solid #d9d9d9;height:2px;position:relative;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items {position:absolute;height:100%;text-align:center;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items:before {left:0;height:100%;content:"";display:block;position:relative;width:0%;opacity:1;background-color:#212121;transition: opacity .2s ease-in-out;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items[item="1"] {width:0px !important;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items:first-child:before { border-top-left-radius: 100px !important;  border-bottom-left-radius: 100px !important;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items:last-child:before {border-top-right-radius: 100px !important; border-bottom-right-radius: 100px !important;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items .label-content {position:absolute;right:0px;top:calc(100% + 25px);color:#a5a5a5; font-size:12px; font-weight:600;transform:translateX(50%);}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items .label-content .inactive { display:block;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items .label-content .active { display:none;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items.active .label-content { color:#000000 !important;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items.active { background-color:#000000 !important;}
    /* .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items:last-child .label-content {transform:translateX(10px);} */
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items:after {content:"";top:100%;position:absolute;right:0px;width:2px;height:8px;background-color:#212121;}
    .discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items:last-child:after {content:none; }
    .discount-bar-cart .discount--bar-container .count-down-timer {order:3;max-width:fit-content;width:100%;  font-size:12px;font-weight:600; max-width:25%;width:100%;display:flex;align-items:center;justify-content:end; font-size:12px;font-weight:600;color:{{settings.cart_text_color}};}
    .discount-bar-cart .discount--bar-container .bar-inner-container {padding:0px 0px 15px;}
    .discount-bar-cart .discount--bar-container .bar-inner-container .inner-container {padding-bottom:0px;}
    .discount-bar-cart .discount--bar-container .bar-inner-container .progress-bar {overflow:hidden;height:8px;border:2px solid #000000;background:transparent;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .price-badge-container {position:relative;z-index:9;height:0px;padding-top:15px;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge[item="1"] {width:0px !important;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge[item="1"] .label-content {transform:translate(50% , calc(50% + 0px)) !important;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge .label-content {transform:translate(50% , calc(50% + 0px));font-size:9px;line-height:1;padding:2px;display:flex;flex-direction:row;align-items:center;justify-content:center;border-radius:100px;width:40px;height:40px;min-height:40px;min-width:40px;background:#ffffff;border:3px solid #d9d9d9;color:#d9d9d9;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge .label-content svg {width:20px;height:20px;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge.active .label-content {background:#000000;border-color:#000000;color:#ffffff;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge.active .label-content .active {display:block;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge.active .label-content .inactive {display:none;} 
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge {display:flex;align-items:end;justify-content:end;position:relative;top:0px;}
    cart-drawer .discount-bar-cart .discount--bar-container .price-badge-container {display:flex;}
    cart-drawer .discount-bar-cart .discount--bar-container .fill-progress-bar {position:absolute;top:0;left:0;right:0;bottom:0;right:0;max-width:100%;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge .label-content .inactive { display:block;}
    cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge .label-content .active { display:none;} 

@media screen and (max-width:768px){
    .discount-bar-cart .discount--bar-container .bar-container-main  {order:3;max-width:100%;width:100%;padding:0px 30px;} 
    .discount-bar-cart .discount--bar-container .bar-inner-container {padding:0px 0px 5px;}
} 
/* endprogressbar css */

/**=======custom css============**/
cart-drawer .drawer__header__wrapper{position:sticky;top:0;left:0;background:#fff;z-index:999;background-color:#ffffff;padding:0 1.5rem;border-bottom:1px solid #e5e5e5;}
cart-drawer .cart-item__media{width:90px;} 
.cart-drawer .cart-item__image{background-color:#fafafa;}
cart-drawer .drawer__cart-items-wrapper{padding:0 1.5rem;}
cart-drawer .cart-item__name{font-size:13px;font-weight:600;line-height:1;}
cart-drawer .cart-item__quantity-wrapper{justify-content: space-between;}
cart-drawer quantity-popover .quantity:before,
cart-drawer quantity-popover .quantity:after{display:none;}
cart-drawer .quantity-popover-container{border:1px solid #e5e5e5;border-radius:14px;overflow:hidden;}
cart-drawer .cart-item{border-bottom: 1px solid #e3e3e3;padding-bottom:1.7rem;}
cart-drawer quantity-popover .quantity{height:40px;min-height:40px;}
.drawer { visibility: hidden; }
cart-drawer .cart-drawer .drawer__inner {display:flex;flex-direction:column;border:0px !important;background-color:#ffffff !important;width:500px;overflow:auto;}
cart-drawer .cart-drawer .drawer__inner > * {width:100%;}  
cart-drawer .cart-drawer .drawer__inner .drawer__inner-empty {overflow:auto;overflow-x:hidden;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper {padding:20px 20px;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header {padding:0px;}
/* cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .cart-count-bubble {position:unset; height: 25px; width: 25px; font-size: 12px; background: #c16a32; color: #ffffff;} */
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .cart-count-bubble {position:unset; height: fit-content; width: fit-content; font-size: 28px; background: transparent; color: #000000;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .drawer__heading {margin:0px;letter-spacing: normal; font-size: 28px; font-weight: 600; text-transform: capitalize; display:flex;align-items:center;justify-content:start;gap:1px;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .drawer__close {position:absolute;top:0px;right:0px;min-width:40px;min-height:40px;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .drawer__close .svg-wrapper {width:20px;height:20px;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .drawer__close .svg-wrapper svg {stroke:#121212;}
cart-drawer .cart-drawer .drawer__inner .header-text {display:none;font-size:12px;font-weight:500;color:#121212;border-bottom:1px solid #e9e9e9;padding:10px 20px;background-color:#e9f8fe;letter-spacing:normal;text-align:center;}
cart-drawer .cart-drawer .drawer__inner .cart-item__media .image {position:relative;width:100%;min-width:90px;min-height:90px;height:90px;width:90px;border-radius:4px;background-color:#f4f0eb;}
cart-drawer .cart-drawer .drawer__inner .cart-item__media .image img {width:100%;height:100%;background:transparent;object-fit:contain;}
cart-drawer .cart-drawer .drawer__inner .cart-item__totals .cart-item__price-wrapper .cart-item__discounted-prices {display:flex;flex-direction:row-reverse;align-items:start;justify-content:start;}
cart-drawer .cart-drawer .drawer__inner .cart-item__totals .cart-item__price-wrapper .cart-item__discounted-prices .price {font-weight:600;font-size:13px;color:#000000;}
cart-drawer .cart-drawer .drawer__inner .cart-item__totals .cart-item__price-wrapper .cart-item__discounted-prices .price.cart-item__old-price {color:#be291c;}
cart-drawer .totals__total-value{font-size:14px;color:#000000;}
cart-drawer .totals h2{font-size:14px;color:#000000;}
cart-drawer .totals p{font-weight:500 !important;}
cart-drawer .quick-add{z-index:unset;}
cart-drawer .quick-add__submit .icon-wrap{display:none;}
cart-drawer .cart-drawer .main-cart-header {position: sticky;background:#ffffff;top: 0; left: 0; width:100%;z-index:9999;} 
cart-drawer .cart-drawer .drawer__inner .main-product-recommendation {padding:25px 20px;}
cart-drawer .cart-drawer .drawer__inner .custom-upsell-products-container {gap:20px;}
cart-drawer .cart-drawer .drawer__inner .custom-upsell-products-container .custom-upsell-product-img {border-radius:20px;min-width:150px;width:150px;background-color:#f4f0eb;overflow:hidden;}
cart-drawer .cart-drawer .drawer__inner .custom-upsell-products-container .custom-upsell-product-img .image {position:relative;width:100%;padding-top:100%;background-color:#f4f0eb;}
cart-drawer .cart-drawer .drawer__inner .custom-upsell-products-container .custom-upsell-product-img .image img {background:transparent;object-fit:cover;position:absolute;top:0;left:0px;right:0;bottom:0px;width:100%;height:100%;}

cart-drawer .cart-drawer .cart-drawer__footer .totals * {color:#000000;font-size:14px;font-weight:600;}
cart-drawer .cart-drawer .cart-drawer__footer .shipping-container {display:flex;align-items:center;justify-content:start;gap:5px;}
cart-drawer .cart-drawer .cart-drawer__footer .shipping-container * {color:#000000;}
cart-drawer .cart-drawer .cart-drawer__footer .total-price {margin-top:0px;}
cart-drawer .cart-drawer .drawer__footer{z-index:9999;}
cart-drawer .cart-drawer .cart-item {display:flex;flex-direction:row;padding:25px 0px;gap:20px;align-items:center;}
cart-drawer .cart-drawer .cart-item .content-container {width:100%;display:flex;flex-direction:column;gap:10px;}
cart-drawer .cart-drawer .cart-item .content-container .cart-item__totals {justify-content:start;} 
cart-drawer .cart-drawer .cart-item .cart-item__media {width:150px;min-width:150px;border-radius:20px;overflow:hidden;}
cart-drawer .cart-drawer .cart-item .cart-item__media .image {width:100%;height:0px;padding-top:100%;}
cart-drawer .cart-drawer .cart-item .cart-item__media .image img{width:100%;height:100%;position:absolute;top:0;bottom:0;left:0;right:0;object-fit:cover;}
cart-drawer .cart-drawer .cart-item .content-container .cart-item__details .cart-item__name {font-size:15px;color:#000000;font-weight:600;text-transform:uppercase;}
cart-drawer .cart-drawer .cart-item .content-container .cart-item__details .discounts {color:#000000;}
cart-drawer .cart-drawer .cart-item .content-container .cart-item__quantity {padding:0px;} 
cart-drawer .cart-drawer .cart-item .content-container .cart-item__quantity .cart-item__quantity-wrapper {gap:10px;justify-content:start;display:flex;}
cart-drawer .cart-drawer .cart-item .content-container .cart-item__quantity .cart-item__quantity-wrapper .quantity-popover-container .quantity {width:fit-content; }
cart-drawer .cart-drawer .cart-item .content-container .cart-item__quantity .cart-item__quantity-wrapper .quantity-popover-container .quantity button {width:40px; }
cart-drawer .cart-drawer .cart-item .content-container .cart-item__quantity .cart-item__quantity-wrapper .quantity-popover-container .quantity input {width:28px; }
cart-drawer .cart-drawer .cart-item .content-container .cart-item__quantity .cart-item__quantity-wrapper .quantity-popover-container {border:3px solid #e5e5e5;border-radius:100px;overflow:hidden;max-width:fit-content; }
cart-drawer .cart-drawer .cart-item .content-container .cart-item__quantity .cart-item__quantity-wrapper cart-remove-button {margin:0px;width:fit-content;}
cart-drawer .cart-drawer .cart-item .content-container .cart-item__quantity .cart-item__quantity-wrapper cart-remove-button button{margin:0px;min-width:30px;width:30px;}
cart-drawer .cart-drawer .cart-item .content-container .cart-item__quantity .cart-item__quantity-wrapper cart-remove-button button .svg-wrapper {width:24px;height:24px;}
cart-drawer .cart-drawer .drawer__inner .main-product-recommendation .custom_main_upsell_card_product .custom-upsell-products-container {display:grid; grid-template-columns: 150px 1fr;align-items:center;}
cart-drawer .cart-drawer .drawer__inner .main-product-recommendation .custom_main_upsell_card_product {padding-bottom:20px;border-bottom:1px solid #e5e5e5;}
cart-drawer .cart-drawer .drawer__inner .main-product-recommendation .custom_main_upsell_card_product .custom-upsell-title {font-size:15px;font-weight:600;color:#000000;}
cart-drawer .cart-drawer .drawer__inner .main-product-recommendation .custom_main_upsell_card_product .custom-upsell-price {font-weight:600;font-size:13px;color:#000000;}
cart-drawer .cart-drawer .drawer__inner .main-product-recommendation .upsell--products__container {border-bottom:0px;}
cart-drawer .cart-drawer .drawer__inner .main-product-recommendation .upsell--products__container .custom_main_upsell_card_product:last-child {margin-bottom:0px;padding-bottom:0px;border-bottom:0px;}
cart-drawer .cart-drawer .drawer__inner .cart-drawer__empty-content .cart__empty-text {font-size:24px;font-weight:600;color:#000000;margin-bottom:8px;line-height:1.2;margin-top:0px !important;}
  cart-drawer .cart-drawer .drawer__inner .cart-drawer__empty-content .content {font-size:14px;font-weight:600;color:#212121;margin-bottom:20px;line-height:1.2;}
cart-drawer .cart-drawer .drawer__inner .cart-footer {width:100%;padding:15px 20px;display:flex;flex-direction:column;gap:8px;}
cart-drawer .cart-drawer .drawer__inner .cart-footer a {width:100%;font-size:14px;font-weight:600;border-radius:8px;}
cart-drawer .cart-drawer .drawer__inner .cart-footer .shopping-people { position:relative;  left: -20px;width:calc(100% + 40px);margin-bottom:5px;display:flex;align-items:center;justify-content:center;gap:8px;padding:10px 5px;font-size:12px;font-weight:600;color:#000000;background-color:#e9f8fe;}
cart-drawer .cart-drawer .drawer__inner .cart-footer .shopping-people .dot {width:8px;height:8px;display:block;border-radius:100px;background-color:#2cb74c;}
cart-drawer .cart-drawer .drawer__inner .cart-footer .text-with-icon {display:flex;align-items:center;justify-content:center;gap:8px;padding:5px 0px;font-size:10px;font-weight:500;color:#000000;}
cart-drawer .cart-drawer .drawer__inner .cart-footer .text-with-icon .icon {display:block;width:18px;height:18px;}  
cart-drawer .cart-drawer .drawer__inner .cart-drawer__empty-content {padding:40px 0px;}
cart-drawer .cart-drawer .drawer__inner .cart-drawer__collection {display:grid;grid-template-columns:repeat(2 , 1fr);gap:20px;max-width:350px;margin:auto;width:100%;}
cart-drawer .cart-drawer .drawer__inner .cart-drawer__collection .card__inner  {border-radius:10px;overflow:hidden;}   
cart-drawer .cart-drawer .drawer__inner .cart-drawer__collection .card__information{padding:5px 0px;}
cart-drawer .cart-drawer .drawer__inner .cart-drawer__collection .card__content .card__information .card__heading{font-size:12px;font-weight:600;text-align:center;}
cart-drawer .cart-drawer .drawer__inner .cart-drawer__collection .card__content .card__information .card__heading .icon-wrap {display:none;}
cart-drawer .cart-drawer .drawer__inner .cart-drawer__warnings {flex:none;}
cart-drawer .cart-drawer .drawer__inner .cart__checkout-button {width:100%;font-size:14px;font-weight:600;border-radius:8px;background:#ff0000;text-transform:uppercase;padding:10px;}
cart-drawer .cart-drawer .drawer__inner .continue-shopping-button {width:100%;font-size:14px;font-weight:600;border-radius:8px;text-transform:uppercase;padding:10px;}
cart-drawer .cart-drawer .drawer__inner .cart__checkout-button:after,
cart-drawer .cart-drawer .drawer__inner .cart__checkout-button:before,
cart-drawer .cart-drawer .drawer__inner .continue-shopping-button:after,
cart-drawer .cart-drawer .drawer__inner .continue-shopping-button:before {content:none;}
cart-drawer .cart-drawer .drawer__inner .cart__ctas {display:flex;flex-direction:column;gap:10px; display: grid ; grid-template-columns: 1fr 1fr;}
cart-drawer .cart-drawer .drawer__inner .cart__ctas .continue-link{display:flex;flex-direction:column;margin-top:0px; flex-direction: column; gap: 10px;}
cart-drawer .cart-drawer .drawer__inner .date-shipping {font-weight:500;}
cart-drawer .cart-drawer .drawer__inner .quick-add__submit {margin-top:10px;width:fit-content;padding:20px 20px;background-color:#CC6327;font-size:14px;min-width:120px;font-weight:700;border-radius:8px;color:#ffffff; max-width: fit-content;}
cart-drawer .cart-drawer .drawer__inner .quick-add__submit:after,
cart-drawer .cart-drawer .drawer__inner .quick-add__submit:before {content:none;}

@media screen and (max-width:768px){ 
cart-drawer .cart-drawer .drawer__inner .custom-upsell-products-container .custom-upsell-product-img {border-radius:20px;min-width:120px;width:120px;background-color:#f4f0eb;overflow:hidden;}
cart-drawer .cart-drawer .cart-item .cart-item__media {width:120px;min-width:120px;border-radius:20px;overflow:hidden;}
cart-drawer .cart-drawer .drawer__inner .main-product-recommendation .custom_main_upsell_card_product .custom-upsell-products-container {display:grid; grid-template-columns: 120px 1fr;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .drawer__heading { font-size: 20px;  }
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .drawer__close {position:absolute;top:0px;right:0px;min-width:30px;min-height:30px;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .cart-count-bubble { font-size: 20px;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper .drawer__header .drawer__close .svg-wrapper {width:18px;height:18px;}
cart-drawer .cart-drawer .drawer__inner .drawer__header__wrapper {padding:15px 20px;}
cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge .label-content {  width:35px;height:35px;min-height:35px;min-width:35px;}
cart-drawer .discount-bar-cart .discount--bar-container .bar-container .item-badge .label-content svg {width:16px;height:16px;}
.discount-bar-cart .discount--bar-container .bar-container .progress-bar .inner-block-items .label-content { font-size:10px; font-weight:600;}
cart-drawer .cart-drawer .drawer__inner .cart__checkout-button {width:100%;font-size:12px;font-weight:600;border-radius:8px;background:#ff0000;text-transform:uppercase;padding:10px 4px;}
cart-drawer .cart-drawer .drawer__inner .continue-shopping-button {width:100%;font-size:12px;font-weight:600;border-radius:8px;text-transform:uppercase;padding:10px 4px;}

}

