/** Shopify CDN: Minification failed

Line 143:12 Expected identifier but found whitespace
Line 144:6 Unexpected "{"
Line 145:14 Expected ":"
Line 154:12 Expected identifier but found whitespace
Line 155:6 Unexpected "{"
Line 156:14 Expected ":"

**/
.cart-drawer-body {
  display:flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-flow: column nowrap;
  height: 100dvh;
  /* height:100%; */
  max-width: 600px;
  min-height: 300px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -756px;

  background-color: #fff;

  color: #333232;
  z-index:999;
  transition: all 1s ease;
  padding-inline: 20px 10px;
}

.cart-item-wrapper {
  /* position: absolute; */
  align-content: flex-start;
  width: 100%;
  /* max-height: 75vh; */
  height:100%;
  overflow-y: auto;
}


.cart-drawer-body.open {
  right: 0;
  transition: all 1s ease;
}

.cart-drawer-body__footer {
  background-color: white;
  flex-shrink:0;
}

/* =====CART TITLE===== */

.cart_item__title {
  flex: 1 1 auto;
}

.cart-drawer-body__title--title {
  font-size: 28px;

  font-weight: 500;color:#000;
  text-align: start !important;
}

/* =====CLOSE ICON===== */
.cart-drawer-body__title--close {
  right: 0;
  top: 37px;
}

.cart-drawer-body__title--close .hamburger {
  width: 0;
  height: 3px;
  border-radius: 5px;
  transition: all .5s ease-in-out;
  transform: translateX(-50px);
  background: transparent;
  right: 25px;
  cursor: pointer;
  padding: 6px 5px 12px 12px;
}

.cart-drawer-body__title--close .hamburger:before,
.cart-drawer-body__title--close .hamburger:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: black;
  border-radius: 5px;
  transition: all .5s ease-in-out;
}

.cart-drawer-body__title--close .hamburger:before {
  transform: rotate(45deg) translate(-8px, 10px);
}

.cart-drawer-body__title--close .hamburger:after {
  transform: rotate(-45deg) translate(-11px, -8px);
}
.cart-drawer-body__body{
  flex: 1 1 auto;
  min-height:0;
  /* flext-grow:1; */
  /* overflow-y:auto; */
}
.cart_item__title{
  width:220px;
}
/* =====CART BODY===== */

.cart_item {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  gap: 24px;
  margin-top: 20px;
  padding-inline-end:20px;
}

.cart_item__image {
  width: 115px;
  height: 115px;
  object-fit: cover;
  padding: unset;
  flex-shrink: 0;

  @media(width<768px) {
    width: 75px;
    height: 75px;
  }
}

.cart_item img {
  width: 100%;
  border: 1px solid #00000033;
  border-radius: 6px;
  padding: 8px;
}

.cart_item__title--product {
  font-size: {
      {
      settings.cart-drawer-product-title-font-size
    }
  }

  ;
  font-weight: 600;
}

.cart_item__title--variant {
  font-size: {
      {
      settings.cart-drawer-variant-title-font-size
    }
  }

  ;
  list-style-type:none;
  padding:0;
  margin:0;
}

.cart_item__title--variant li {
  padding: 0;
  margin: 0;
}

.cart_item__delete {
  display: flex;
  width: fit-content;
  align-self: center;
  gap: 24px;
  @media(width<=500px){
    padding-right:0;
  }
}

.cart_item__delete svg {
  cursor: pointer;

  fill: #838383;
}

.cart_item__input .input-group {
  width: 140px !important;
  border: 1px solid #00000033;
  border-radius: 4px;
  padding: 9px 5px;
  margin-top: 10px;
}

.cart_item__input .btn-decrement,
.cart_item__input .btn-increment {
  min-width: unset !important;
  width: 25px;
  border: none !important;
}

.cart_item__input .form-control {
  border: none !important;
}

/* =====CART FOOTER===== */
.cart-drawer-body__footer {
  width: 100%;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 25px;
}

.cart-drawer-body__footer--subtotal {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding-top: 16px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(51, 50, 50, 0.20);;
}

.cart-drawer-body__footer--subtotal--title {
  font-size: 20px;
  font-weight: 600;}

.cart-drawer-body__footer--subtotal--subtotal {
  font-size: 24px;
  font-weight: 700;
}

.primary-button.checkout-btn {
  background-color: #D0441C;
  color: #fff !important;
  border-radius: 6px;
}

#cart-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5000;
  top: 0;
  left: 0;
  text-align: center;
  opacity: .5;
  display: flex;
  align-items: center;
  background: #000;
  margin-top: 0;
  padding-bottom: 0;
}

.cart-spinner {
  margin: 0 auto;
  height: 64px;
  width: 64px;
  animation: rotate 0.8s infinite linear;
  border: 5px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cart-drawer-hamburger {
  cursor: pointer;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
}

.trash-icon {
  @media(width<=500px){
    position: absolute;
    top: 0px;
    right: 3px;
  }
}