.drawer {
  display: none;
}

.drawer.is-active {
  display: block;
}

.drawer.is-visible .drawer__wrapper {
  transform: translate(0, 0);
  transition: all 0.25s ease-in-out;
  background: #faf7f3;
}

.drawer.is-visible .drawer__overlay {
  opacity: 0.5;
  display: block;
  visibility: visible;
}

.drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: opacity;
  background-color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.drawer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  max-width: 552px;
  z-index: 99999;
  transition: transform 0.3s;
  will-change: transform;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  -webkit-transform: translateX(103%);
  transform: translateX(103%);
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 2px 6px #777;
}

.drawer_empty {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  top: 44%;
}

.drawer__header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__header h2 {
  color: #0e0e0e;
  font-size: 15px;
  font-weight: 500;
  line-height: 13.5px;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  display: flex;
  gap: 4px;
}

.drawer__header span.cart-count {
  line-height: 15px;
  color: #000;
  font-family: 'SackersGothicStd', sans-serif;
  font-size: 12px;
}

.drawer__title {
  margin: 0;
  font-weight: 500;
  font-size: 32px;
}

.drawer__close {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='20px' height='20px' viewBox='0 0 15 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='2.-Menu' transform='translate(-15.000000, -13.000000)' stroke='%23000000'%3E%3Cg id='Group' transform='translate(15.000000, 13.521000)'%3E%3Cpath d='M0,0.479000129 L15,14.2971819' id='Path-3'%3E%3C/path%3E%3Cpath d='M0,14.7761821 L15,-1.24344979e-14' id='Path-3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
}

.drawer__content {
  position: relative;
  height: 90%;
  flex-grow: 1;
  /* padding-top: 0; */
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.drawer__first {
  flex-grow: 1;
  overflow-y: auto !important;
  margin-bottom: auto;
}

.drawer__items {
  overflow: auto;
  padding: 0 60px;
  /* height: 150px; */
}

.drawer__content-items {
  margin: 0;
  list-style: none;
  margin: 15px 0 0 0;
  padding: 0;
}

.drawer__content-items .drawer__content-item {
  display: flex;
  /* padding-top: 30px;
  padding-bottom: 15px; */
  padding: 15px 0;
  gap: 15px;
  border-bottom: 1px solid #efefef;
}

.drawer__content-item-image {
  width: 103px;
  height: 103px;
  aspect-ratio: 1 /1;
  text-align: center;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  background-color: #f3edea;
}

.drawer__content-item-image img {
  height: 100%;
  width: 100%;
  text-align: center;
  object-fit: contain;
}

.drawer_product-info {
  margin: 0;
}

.drawer__content-item-info {
  flex-direction: column;
  flex: 1 1 0%;
  display: flex;
  justify-content: space-between;
}

.drawer__content-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__content-item-price,
.drawer__content-item-tprice h3,
.drawer__content-item-vtitle {
  margin: 0;
}

.drawer__content-item-tprice {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
}

.drawer__items span.price.price--end {
  margin: 0;
}

.drawer__content-item-price {
  /* margin-left: 1rem; */
}

.drawer__content-item-qremove {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__content-item-remove {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.drawer__content-quantity {
  display: flex;
  align-items: center;
  margin-top: 5px;
  width: 100px;
}

.drawer__content-quantity-button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ebebeb;
  padding: 0 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.drawer__content-quantity-number {
  width: 30px;
  height: 30px;
  margin: 0;
  text-align: center;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb;
  outline: 0;
  -moz-appearance: textfield;
  text-align: center;
}

.drawer_content-minus {
  border-right: none;
}

.drawer_content-plus {
  border-left: none;
}

.drawer__final {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 10px;
}

.drawer__buttons {
  margin: 0px 60px 15px 60px;
}

.drawer__buttons-empty {
  margin: 15px 60px;
}

.totals__subtotal {
  color: var(--black, #000);
  font-feature-settings: 'liga' off;

  /* BUTTON + LINK */
  font-family: 'SackersGothicStd';
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 120%; /* 14.4px */
  letter-spacing: 1.8px;
  text-transform: lowercase;
  margin: 0;
}

.total_shipping {
  color: green !important;
  font-family: 'SackersGothicStd' !important;
}

.drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 60px 15px 60px;
}

.drawer__subtotal h3,
.drawer__subtotal p {
  margin: 0;
}

.drawer__subtotal p {
  color: var(--black, #000);
  text-align: right;

  /* Caslon-P2-13-Reg */
  font-family: 'ACaslonPro', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}

.drawer__notification {
  margin-bottom: 12px;
  text-align: center;
}

.drawer__continue {
  text-align: center;
  margin-bottom: 0;
  margin-top: 12px;
}

.drawer__continue button {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

button[aria-disabled='true'] {
  pointer-events: none;
}

.checkout-path {
  stroke: rgb(var(--color-button-text)) !important;
}

.drawer__header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 60px 20px 60px;
}

.drawer__content-item-remove {
  font-size: 13px;
  color: #5e5e5e;
  text-decoration: underline;
}

.product-option {
  color: var(--gray-1, #5e5e5e);

  /* LABEL */
  font-family: 'Adobe Caslon Pro';
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 120%; /* 15.6px */
}

.cart-item__price-wrapper span {
  /* font-size: 14px; */
  color: var(--black, #000);
  text-align: right;

  /* Caslon-P2-13-Reg */
  font-family: 'ACaslonPro', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}

.drawer__content-item-tprice a {
  font-family: SackersGothicStd;
  color: var(--black, #000);
  font-feature-settings: 'liga' off;

  /* BUTTON + LINK */
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 120%; /* 14.4px */
  letter-spacing: 1.8px;
  text-transform: lowercase;
}

.footer_pop_in_cart {
  padding: 20px 0 20px 24px !important;
}

.atcbutton {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  color: #5e5e5e;
  text-decoration: underline;
}

#quantity {
  padding: 5px;
  width: 35px;
  border: 1px solid #555;
}

@media screen and (max-width: 749px) {
  .drawer__items {
    overflow: auto;
    padding: 0 20px;
  }

  .drawer__header {
    padding: 25px 20px;
  }

  .drawer__subtotal {
    margin: 0px 20px 15px 20px;
  }

  .drawer__buttons {
    margin: 0px 20px 15px 20px;
  }

  .drawer__buttons-empty {
    margin: 20px;
  }
}

@media screen and (max-width: 768px) {
  .drawer-shipping-content {
    display: none;
  }
}
