/** Shopify CDN: Minification failed

Line 207:0 Unexpected "}"

**/
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  padding: 32px 24px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 360px;
  z-index: 13;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  /* transition: opacity .4s, visibility .4s, transform .4s; */
  border-left: 0.5px solid black;
}

.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.cart-drawer .cart__background {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100vw - 360px);
  background-color: rgba(255, 255, 255, 0.75);
  padding: 30px;
  cursor: pointer;
  opacity: 0;
}

.cart-drawer .cart__error {
  display: block;
  max-width: 440px;
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0px 0px 1px #000;
  text-align: center;
  color: red;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.cart-drawer .cart__error.is-active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer.is-open .cart__background {
  opacity: 1;
}

.cart-drawer .cart__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.cart-drawer .cart__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-right: 10px;
}

.cart-drawer .cart__body {
  position: relative;
  overflow: auto;
  margin: 0 -20px;
  padding: 0 20px;
}

/* .cart-drawer .cart__body::-webkit-scrollbar {
  width: 4px;
}

.cart-drawer .cart__body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #fff;
}

.cart-drawer .cart__body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .3);
} */

.cart-drawer .cart__foot {
  margin-top: auto;
  padding-top: 0;
}

.cart-drawer .cart__foot-txt {
  margin-bottom: 30px;
  margin-top: 10px;
}

.cart-drawer .cart__foot-txt p {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

.cart-drawer .cart__foot-txt summary p {
  width: max-content;
  position: relative;
  line-height: 1.5;
  letter-spacing: 0.07em;
}

.cart-drawer .cart__foot-txt summary p::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background-color: currentColor;
  transition: right .5s;
  pointer-events: none;
}

.cart-drawer .cart__foot-txt summary p:hover:before {
  right: 100%;
}

.cart-drawer .cart__foot-head {
  text-align: right;
}

.cart-drawer .cart__shipping {
  max-width: 180px;
  margin-left: auto;
}

.cart-drawer .cart__total-title {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 5px;
}

.cart-drawer .cart__close {
  font-size: 0;
  line-height: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.cart-drawer .cart__actions {
  margin-top: 26px;
}

.cart-drawer .cart__actions .cart__actions-top {
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (max-width: 768px) {
  .cart-drawer .cart__actions .cart__actions-top {
    flex-direction: column;
  }
}

.cart-drawer .cart__shipping p {
  font-size: 8px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.077em;
}

.cart-drawer .cart__actions-link {
  text-align: center;
  margin-top: 26px;
}

.cart-drawer .cart__actions-link * {
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.cart-drawer .cart__actions .checkbox {
  margin-bottom: 0;
  padding-bottom: 8px;
}

/* .cart-drawer .cart__actions .checkbox + .btn {
  pointer-events: none; */
}

.cart-drawer .cart__actions .checkbox.is-checked + .btn {
  pointer-events: all;
  background-color: rgb(var(--color-base-text));
  color: rgb(var(--color-contrasting));
  transition: background-color .4s, color .4s, opacity .4s;
}


.confirmation-alert--drawer {
  text-align: center;
  font-size: 8px;
  font-weight: 400;
  width: 100%;
  margin-top: 5px!important;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #c40000;
}

#cart-note--drawer-note{
  z-index:999;
  position:relative;
  height:38px;
}

.cart-drawer .field-default {

}

.cart-drawer .field-default.cart-note-text{
   line-height:1;
}

