.drawer {
    display: none;
}
.drawer.is-active {
    display: block;
}
.drawer.is-visible .drawer__wrapper {
    transform: translate(0, 0);
    transition: all 0.3s ease-in-out;
}
.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%;
    z-index: 9999;
    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;
    overflow: auto
}
.drawer_empty {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    top: calc(50% - 50px);
    height:100px;
}
.drawer__header {
    padding: var(--spacing_mobile);
    display: flex;
    justify-content: space-between;
    align-items: center; 
}
@media (max-width: 749px) {
.drawer__header {
  min-height: var(--header-height_mobile)
  }
}
@media (min-width: 750px) {
.drawer__header {
  min-height: var(--header-height_desktop)
  }
}


.drawer__title {
  margin: 0;
  font-size:12px;
  font-family: 'Univers Bold';
  display: flex;
  align-items: center;
  padding:0 var(--spacing_mobile)
}

@media (max-width: 749px) {
  .drawer__title {
    min-height: var(--header-height_mobile);
  }
  .drawer__wrapper .drawer__close {
    position: absolute;
    top: var(--spacing_mobile);
    right: var(--spacing_mobile);
  }
}
@media (min-width: 750px) {
  .drawer__title {
    height: auto;
    padding: var(--spacing_mobile) var(--spacing_mobile) var(--spacing_wide) var(--spacing_mobile);
  }
  .drawer__wrapper .drawer__close {
    position: absolute;
    top: var(--spacing_mobile);
    right: var(--spacing_mobile);
  }
}



.drawer__close {
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" fill="none" viewBox="0 0 18 17"><path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor"></path></svg>');
    background-size: cover !important;
    width: 19px;
    height: 19px;
}



@media screen and (min-width: 750px) {
.drawer__wrapper {
  max-width: 480px
  }  
}

.drawer__content {
    position: relative;
    height: auto;
    flex-grow: 1;
    padding-top: 0;
    display: flex;
    flex-direction: column;
}
.drawer__items {
  padding: var(--spacing_standard) var(--spacing_mobile) var(--spacing_mobile) var(--spacing_mobile);
}
.drawer__content-items {
    margin: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.drawer__content-items .drawer__content-item {
    display: flex;
    padding-bottom: 1.5rem;
    gap: 18px;
}
.drawer__content-item-image {
  width: 120px;
  text-align: center;
  align-items: flex-start;
}
.drawer__content-item-image img {
    height: auto;
    width: 100%;
    text-align: center;
}
.drawer_product-info {
    margin: 0;
}
.drawer__content-item-info {
    flex-direction: column;
    flex: 1 1 0%;
    display: flex;
    margin-bottom: 1rem;
    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;
    justify-content: space-between;
    align-items: baseline;
}
.drawer__items span.price.price--end {
  margin: 0;
  height:21px;
}
.drawer__content-item-price {
  margin-left: 1rem;
  color: rgba(var(--color-foreground), 0.4)
}
.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;
  color: rgba(var(--color-foreground), 0.4);
  font-size: 10px;
  margin-top: 5px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.drawer__content-quantity {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.drawer__content-quantity-button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    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: 20px;
    height: 30px;
    margin: 0;
    text-align: center;
    background-color: #fff;
    border: none;
    outline: 0;
    -moz-appearance: textfield;
    text-align: center;
}
.drawer_content-minus {
    border-right: none;
}
.drawer_content-plus {
    border-left: none;
}
.drawer__final {
  padding: var(--spacing_mobile);
  background: white;
  position: sticky;
  bottom: 0;
  width: 100%;
}
.drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing_narrow);
}
.drawer__subtotal h3,
.drawer__subtotal p {
    margin: 0;
}
.drawer__notification {
  margin-top: calc(var(--spacing_narrow) /2);
  margin-bottom: var(--spacing_narrow);
  text-align: left;
  font-size: 12px;
  line-height: 1;
}


.drawer__continue {
    text-align: center;
    margin-bottom: 0;
    margin-top: var(--spacing_narrow);
}
.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;
}

.cart__login-title {
  margin-top:60px;
}

.drawer__buttons .button--full-width {
  min-height: 40px;
  text-transform: uppercase;
}