/** Shopify CDN: Minification failed

Line 237:11 Expected ":"

**/
@media screen and (min-width: 990px) {
.drawer {
  position: fixed;
  z-index: 998;
  left: 0;
  width: 100%;
  max-height: 100%;
  display: grid;
  grid-template-columns: 0.8fr 3.2fr 0.8fr;
  justify-content: center;
  padding-left: 2.5rem;
   padding-right: 2.5rem;
}
}

@media screen and (max-width: 989px) {
.drawer {
  position: fixed;
  z-index: 998;
  left: 0;
  width: 100%;
  max-height: 100%;
}
}
  
.drawer.active {
  visibility: visible;
}

.drawer__inner {
  height: 100%;
  padding: 0 1.5rem;
  background-color: transparent;
  
  display: flex;
  flex-direction: column;

  /* Fade setup */
  opacity: 0;
  visibility: hidden; /* prevents clicking when closed */
  transition: opacity 420ms cubic-bezier(.22,.61,.36,1),
              visibility 0s linear 420ms; /* delay hiding until after fade */
  box-shadow: none !important;
  outline: none;
}

/* Open state */
.drawer.active .drawer__inner {
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms cubic-bezier(.22,.61,.36,1),
              visibility 0s linear 0s; /* make visible instantly */
}


@media screen and (min-width: 990px) {
.drawer__inner {
  display: grid;
  grid-template-rows: 0.4fr 0.1fr 2.1fr 0.1fr 0.3fr;
  padding: 0;
}

.cart-drawer {
  grid-column: 2;
  height: 100vh;
}
}




@media screen and (max-width: 989px) {
.drawer__inner {
  width: 100%;
  border-left: none;
  height: 100dvh;
  padding-top: 85px;
}
}

.drawer__inner-empty {
  padding: 0 1.5rem;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  grid-row: 3;
}

@media screen and (max-width: 989px) {
.drawer__inner-empty {
  height: 100%;
}
}

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

@media screen and (max-width: 989px) {
cart-drawer.is-empty .drawer__inner {
}
}

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 {
  transform: translateX(0);
}

.drawer__header {
  position: relative;
  background-color: transparent;
  padding: 0rem 0;
  margin-bottom: 0;
  justify-content: space-between;
  align-items: flex-start; /* Adjust if you want different alignment */
  margin-left: 0px; /*change*/
  top: 0;
  z-index: 100;
}

.drawer__header__empty {
  position: relative; /* Changed to fixed */
  background-color: transparent;
  padding: 0rem 0;
  margin-bottom: 0;
  justify-content: space-between;
  align-items: center;
  margin-left: 0px; /*change*/
  z-index: 100;
  grid-row: 2;
}

@media screen and (max-width: 989px) {
.drawer__header__empty {
}
}
  
@media screen and (min-width: 990px) {
.drawer__header {
  margin-right: 0; /*change*/
  grid-row: 2;
}
}

.drawer__heading {
  min-height: 4rem;
  font-size: 13px;
  color: white; /*change*/
  margin-left: 14px; /*change*/
  margin-top: 16px;
  display: none;
}

.drawer__heading__empty {
  min-height: 4rem;
  font-size: 13px;
  color: white; /*change*/
  margin-left: 14px; /*change*/
  margin-top: 16px;
   display: none;
}

.drawer__close {
  padding: 0;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  color: black; /*change*/
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  right: 0;
  display: flex;
  justify-content: flex-end;
  display: none;
}

.drawer__close__empty {
  padding: 0;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  top: 41px;
  color: black; /*change*/
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
   display: flex;
  justify-content: flex-end;
  display: none;
}

.drawer__close:hover {
  font-weight: 700;
}

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

.drawer__close svg {
  height: 1.5rem;
  width: 1.5rem;
}

.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
 
}

.drawer__footer {
  background-color: transparent;
  padding-bottom: 2rem;
  margin-le t: 0px;
  margin-right: 0px;
}

@media screen and (min-width: 990px) {
.drawer__footer {
  grid-row: 4;
}
}

cart-drawer-items.is-empty + .drawer__footer {
  display: ;
  background-color: transparent;
  border-top: 0.1rem solid black;
  padding-bottom: 2rem;
  margin-left: 25px;
  margin-right: 25px;
}

@media screen and (max-width: 989px) {
cart-drawer-items.is-empty + .drawer__footer {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
}

.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 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;
  inset: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.7);

  /* fade setup */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  transition: opacity .35s ease, visibility 0s linear .35s;
}

/* Open state */
.cart-drawer__overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease, visibility 0s;
}

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

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

@media screen and (min-width: 990px) {
.cart-drawer__form {
}
}

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

.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%;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #fff;
}

cart-drawer-items {
  overflow: auto;
  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-columns: auto 1fr 1fr 1fr;
  background-color: white;
  border-radius: 2px;
}

.cart-drawer .cart-item--suggestion {
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}

.cart-drawer .cart-item--suggestion:last-child {
  margin-bottom: 0 !important;
}

.cart-item.cart-items--actual {
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}





.cart-drawer .cart-item {
    border-bottom: none; /* Remove border for the last item */
}

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

.cart-drawer .cart-item__image {
  max-width: 100%;
  padding-top: 5px;
}

.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 black;
}



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

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

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

.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;
  padding-top: 1.5rem !important;
}

.cart-item__totals {
  font-weight: 700;
}

.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;
}

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

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  grid-column: 2 / 4;
  grid-row: 3;
  margin-top: 0;
   display: flex;
  align-items: flex-end;
  padding-bottom: 1rem;     /* push button bottom */
}

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

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

.cart-drawer .totals {
  justify-content: space-between;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.cart-drawer .price {
  line-height: 1;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 1rem auto;
  text-align: left;
  margin-left: 0px !important;
  color: black;
  font-size: 12px;
  
  display: none !important;
  
}

.cart-drawer .product-option dd {
  word-break: break-word;
  font-size: 12px;
  color: black;
}

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

@media screen and (min-width: 990px) {
.cart-drawer .cart__checkout-button {
  max-width: 100%;
  margin-left: 0px;
  margin-right: 0px;
  color: white;
  background-color: transparent;
  border: 1px solid white;
}
}

@media screen and (max-width: 989px) {
.cart-drawer .cart__checkout-button {
  max-width: 100%;
  margin-left: 0px;
  margin-right: 0px;
  color: white;
  background-color: transparent;
}
}
  
.cart-drawer .cart__checkout-button:hover {
font-weight: 700;
}

.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: 990px) {
  .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 .cart-items thead {
  display: none !important;
}

.cart-item__name {
  font-size: 12px;
  font-weight: 700;
  padding-top: 1.5rem;
}

cart-remove-button .button {
  display: none;
}

.cart-item__name:hover {
  text-decoration: none;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper>*:only-child {
    font-size: 12px;
}

.cart-drawer .cart-count {
  color: black; /* Text color */
  font-size: 13px;
  left: 0;
  padding-left: 0px;
  margin-top: 1.8rem;
  display: none;
}

.cart-drawer .cart-count-empty {
  color: black; /* Text color */
  font-size: 13px;
  left: 0;
  padding-left: 0px;
  margin-top: 0px;
  display: none;
}

@media screen and (max-width: 989px) {
.cart-drawer .cart-count {
  margin-top: 2px;
}
}

.cart-item__quantity-wrapper {
  padding-top: 0;
}

.drawer__close__empty {
  color: black;
  text-decoration: none;
  right: 0;
  top: 0;
  padding-right: 25px;
  padding-top: 40px;
}

.drawer__close__empty:hover {
  font-weight: 700;
}


.cart-drawer .quantity__button {
    flex-shrink: 0;
    font-size: 1.8rem;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-foreground));
    padding: 0;
    height: 2rem;
}

.cart-item .quantity__input {
    color: black;
    font-size: 12px;
    text-align: center;
    background-color: transparent;
    border: 0;
    padding: 0 0.5rem;
    width: 30px;
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 2rem;
}

.cart-totals
{
  position: relative;
}

.cart-totals .loading-overlay
{
    right: 5px;
    left: unset;
    top: 0;
    margin-top: -2px;
}
.loading-overlay.cart-total-price-content
{
  display: none;
}
.cart-totals.loading .loading-overlay.cart-total-price-content
{
  display: block;
}

.cart-totals.loading .totals__subtotal-value
{
    display: none;
}

@media screen and (min-width: 990px) {
.drawer__items {
  flex: 1;
  grid-row: 3;
  overflow: auto;
}
}

@media screen and (max-width: 989px) {
.drawer__items {
height: 100%;
  flex: 1;
  overflow: auto;
}
}

cart-drawer.is-empty .drawer__items {
  display: none !important;
}