/** Shopify CDN: Minification failed

Line 16:3 Expected ":"

**/
#shopify-section-my-cart {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100dvh;
	z-index: 99;
	visibility: hidden;
	transition: all 0.1s 0.3s, background-color 0.3s;
	display: block;
  z
}

.js-my-cart-open #shopify-section-my-cart {
	transition: all 0.1s, background-color 0.3s;
	visibility: visible;
}

.js-my-cart-open .cart-modal__bg {
	opacity: 1;
	visibility: visible;
}

.cart-modal__bg {
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100vh;
	cursor: e-resize;
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease;
}

.cart-modal__inner {
	position: fixed;
	top: 0;
	right: 0;
	width: 70vh;
	height: 100dvh;
	transform: translateX(100%);
	visibility: hidden;
	transition: all 300ms ease;
	background-color: white;
}

.js-my-cart-open .cart-modal__inner {
	visibility: visible;
	transform: translateX(0);
}

.cart-modal__inner-container {
	padding-block: 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	row-gap: 24px;
  overflow: hidden;
}
.cart-modal__header {
	display: flex;
	justify-content: space-between;
  /* margin-bottom: 12px; */
  padding-inline: 24px;
  align-items: center;
}

.cart-modal__title {
  color: var(--Text, #000);
  font-size:  12px;
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.cart-modal__close-btn { 
  background-color: transparent;
  padding: 0px !important;
}
.cart-modal__subtotal { 
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-modal__subtotal-price { 
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 27px;
letter-spacing: 0.5px;
}
.cart-modal__subtotal-title { 
font-size: 12px;
font-weight: 400;
line-height: 18px;
letter-spacing: 0.8px;
text-transform: uppercase;
}
.cart-modal__free-shipping {
  padding-inline: 24px;
}
.cart-modal__free-shipping-bar {
	margin-top: 12px;
	background-color: #EBEBEB;
	height: 6px;
	width: 100%;
}
 .cart-modal__free-shipping-bar-inner {
	background-color: #808080;
	width: 0%;
	height: 100%;
	transition: width 150ms ease;
	display: block;
}

.cart-item__title p { 
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 18px;
letter-spacing: 0.8px;
text-transform: uppercase;
}
.cart-modal__items {
	display: flex;
	flex-direction: column;
	row-gap: 40px;
  margin-top: 12px;
	overflow-y: scroll;
	scrollbar-width: thin;
	/* scrollbar-color: black transparent; */
  padding-inline: 24px;
  padding-bottom: 24px;
}
.cart-modal__items::-webkit-scrollbar {
	display: none;
	width: 0 !important;
	height: 0 !important;
	-webkit-appearance: none;
	background: transparent;
}
.cart-modal__items::-webkit-scrollbar-track {
	background: transparent;
}
.cart-modal__items::-webkit-scrollbar-thumb {
	background: black;
	border-radius: 4px;
}
.cart-modal__items li {
	display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.cart-modal__form {
	display: flex;
	flex-direction: column;
	/* row-gap: 24px; */
	height: calc(100% - 130px);
	justify-content: space-between;
}

.cart-modal__signals-container { 
  display: none;
  border-block: 1px solid #EAE7E4;
  padding-inline: 24px;
}
.cart-modal__signal { 
  display: flex;
  flex-direction: column;
  flex: 1;
  row-gap: 16px;
  padding: 24px;
  align-items: center;
}

.cart-modal__signal:not(:last-child) { 
  border-right: 1px solid #EAE7E4;
}
.cart-modal__signal-image { 
  width: 20px;
}
.cart-modal__signal-text { 
  font-size: 10px;
  text-align: center;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cart-modal__footer {
	display: flex;
	flex-direction: column;
	row-gap: 8px;
  padding-block: 24px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.10);
  padding-inline: 24px;

}
.cart-modal__checkout-btn {
  padding-block: 12px;
  text-transform: uppercase;
  transition: background-color 150ms ease;
}

.cart-modal__checkout-btn:hover {
  background-color: #000000b3!important;
}
.cart-item {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	column-gap: 24px;
  position: relative;
}
.cart-item__image {
	grid-column: 1 / span 2;
}
.cart-item__image .aspectholder {
	background-color: #F8F5EF;
	aspect-ratio: 0.8;
	overflow: hidden;
}
.cart-item__meta {
	grid-column: 3 / span 6;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.cart-item__remove {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.cart-item__remove a {
  color: var(--Text, #000);
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: opacity 150ms ease;

}
.cart-item__remove a:hover {
  opacity: 0.6;
}

.cart-item__remove-mobile {
	display: none;
}
.cart-item__price {
	display: flex;
	column-gap: 8px;
	align-items: center;
}

.product-quantity {
	display: flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 18px;
}

.cart-item .product-quantity__input {
	min-width: 40px !important;
  width: 40px !important;
	text-align: center;
  border: 1px solid transparent !important;
  pointer-events: none;
  padding: 0px;
}

.product-quantity__input::-webkit-inner-spin-button,
.product-quantity__input::-webkit-outer-spin-button { 
	-webkit-appearance: none;
	margin: 0;

}

.product-quantity__btn { 
  text-decoration: none;
}
.cart-modal__empty { 
  padding-inline: 24px;
}
.cart-modal__empty-link { 
  padding-inline: 24px;
}
.cart-modal__empty-link a { 
  margin-bottom: 0;
  line-height: 1.5em;
  border: none;
  background-color: #000 !important;
  color: #fff !important;
  padding: 11px 18px;
  font-size: 12px;
  text-transform: uppercase !important;
  text-decoration: none !important;

  display: block;
  text-align: center;
  transition: background-color 150ms ease;
}

.cart-modal__empty-link a:hover { 
  background-color: #000000b3!important;
}


@media all and (max-width: 768px) { 

.cart-modal__inner {
  width: 100%;
}

}

@media all and (min-height: 650px) { 
	.cart-modal__signals-container { 
		display: flex;
	}
}