.overflow-hidden {
    overflow: hidden!important;
}.cart__warnings {
    display: none;
    width: 100%;
    text-align: center;
}.cart-empty .cart__warnings {
  display: block;
}.cart__warnings .cart__empty-text-wrapper {
    margin: 80px 0;
}.cart-drawer .cart__warnings .cart__empty-text-wrapper {
    margin: 200px 0;
}.cart__empty-text {
    margin-bottom: 20px;
    color: rgb(0,0,0);
}.cart__empty-text-wrapper .button:not(.button--link) {
    box-shadow: 0px 0px 0px rgba(0,0,0,1);
    background: #000;
    display: inline-block;
    line-height: 40px;
    padding: 0 17px;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
}
.cart-empty .cart__warnings {
    display: block;
}




.cart-drawer {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(0,0,0, 0.5);
  transition: visibility 200ms ease;
}
.cart-drawer {
  visibility: hidden;
}

.cart-drawer.active {
  visibility: visible;
  z-index: 9999;
}

.cart-drawer__inner {
  height: 100%;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 200ms ease;
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  background-color: rgb(255,255,255);
}

.cart-drawer__fixed-checkout {
  transform: translateX(100%);
  transition: transform 200ms ease;
}

.cart-drawer__inner .cart-drawer__inner-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

.cart-drawer.active .cart-drawer__inner,
.cart-drawer.active .cart-drawer__fixed-checkout {
  transform: translateX(0);
}

.cart-drawer__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.cart-drawer__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: calc(100% + 40px);
  height: 1px;
  background-color: rgb(221,221,221);
}
.cart-drawer__header .text-uppercase {
    font-size: 19px;
    font-weight: bold;
}
.cart-drawer__close {
  color: rgb(0,0,0);
  cursor: pointer;
  width: 24px;
  height: 24px;
  line-height: 0;
  top: 2px;
  right: -4px;
  padding: 6px;
  position: absolute;
}

cart-drawer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer-container {
  width: 440px;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cart-drawer__overlay:empty {
  display: block;
}

/* cart-drawer-items {
  overflow: auto;
  flex: 1;
} */

.cart-drawer__inner {
  overflow-y: scroll;
}

@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: visible;
  }

  .cart-drawer__inner {
    overflow-y: scroll;
  }
}

@media (max-width: 959px) {
  .cart-drawer-container {
    width: 90%;
  }
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(18, 18, 18, 0.7);
  border-radius: 100px;
}

cart-drawer-items::-webkit-scrollbar-track-piece {
  margin-top: 20px;
}

/* cart-drawer-footer */

.cart-drawer__footer__container {
  display: flex;
  justify-content: flex-end;
  padding-top: 40px;
  padding-bottom: 40px;
}

.cart-drawer__checkout-container {
  width: 100%;
  position: relative;
  padding: 40px 0;
}

.cart-drawer__checkout-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: calc(100% + 40px);
  height: 1px;
  background-color: rgb(var(--color-entry-line));
}

.cart-drawer__amount-wrapper {
  margin: 0;
  padding: 0;
}

.cart-drawer__amount-wrapper li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(var(--color-text));
  margin-bottom: 8px;
}

.cart-drawer__amount-wrapper li em {
  font-style: normal;
  margin-right: 12px;
}

.cart-drawer__amount-wrapper .cart__discount span {
  color: rgb(var(--color-discount));
}

.cart-drawer__discount span {
  color: rgb(var(--color-discount));
}

#checkout {
  width: 100%;
}

.cart-drawer__checkout {
  margin-top: 15px;
}

.cart-drawer__taxes__desc {
  text-align: center;
}

.cart-drawer__body {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.cart-drawer__body .cart-drawer__inner {
  flex: 1;
}

.cart-drawer__body .cart-fixed-checkout {
  position: static;
}

.cart-item {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid rgb(var(--color-entry-line));
}

.cart-item__media {
  width: 140px;
  flex-shrink: 0;
  margin-right: 30px;
}

.cart-item__media .cart-item__image-container {
  display: block;
  outline: none;
  width: 100%;
}

.cart-item__media .cart-item__image-container .placeholder {
  background-color: rgb(var(--color-image-background));
}

.cart-item__media img {
  width: 100%;
  height: auto;
  display: block;
}

.cart-item__name {
    text-decoration: none;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000 !important;
}
.cart-item__details__wrapper {
  display: flex;
  flex-grow: 1;
}

.cart-item__details {
  flex-grow: 1;
}
.cart-item__details .product-options {
    margin-top: 9px;
    margin-bottom: 8px;
}


.cart-item__details .product-option span:first-child {
  font-weight:bold !important;
}

.cart-item__details .product-property {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

.cart-item__details .product-property .product-property__name {
  flex-shrink: 0;
  max-width: 100%;
}

.cart-item__details .product-property .product-property__value {
  display: flex;
  flex-wrap: wrap;
}

.cart-item__details .product-property .product-property__link {
  display: block;
}

.cart-item__details .product-property .product-property__image {
  display: block;
  margin-right: 5px;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.cart-item__quantity {
  width: 20.8%;
  flex-shrink: 0;
  margin: 0 20px;
}

.cart-item__quantity .cart-item__quantity-wrapper {
    display: flex;
    align-items: center;
    height: 41px;
}
.cart-item__quantity-wrapper .quantity {
    z-index: 0;
    color: rgba(0,0,0);
    position: relative;  
    display: flex;
    border-radius: 4px;
}.cart-item__quantity-wrapper .quantity:before {
    background: rgb(255,255,255);
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 5px;
    box-shadow: 0px 0px 0px  rgba(0,0,0, 0);
    z-index: -1;
}.cart-item__quantity-wrapper .quantity:after {
    pointer-events: none;
    content: "";
    position: absolute;
    top:1px;
    right:1px;
    bottom: 1px;
    left: 1px;
    border: 0.1rem solid transparent;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    z-index: 1;
}.quantity__button {
    width: 30px;
    flex-shrink: 0;
    font-size: 1.8rem;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0,0,0);
    padding: 0;
}.quantity__button.disabled {
    color: rgb(0,0,0,0.3);
    cursor: not-allowed;
}
.quantity:not(.none-border) .quantity__button:first-child {
    margin-left: calc(1px);
}.quantity__button svg {
    width: 1rem;
    pointer-events: none;
}.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}input[type=text].quantity__input {
    color: currentColor;
    text-align: center;
    background-color: transparent;
    border: 0;
    width: 100%;
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    outline-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
		margin: 0 !important;
}.form-control {
    color: #000;
}


.cart-item__quantity .quantity {
  width: 125px;
  height: 39px;
  margin-right: 0;
  min-height: unset;
}

.cart-item__quantity cart-remove-button {
    line-height: 1;
    display: flex;
    align-items: center;
    margin: 0 0 0 8px;
    font-size: 17px;
    font-weight: bold;
    gap: 7px;
    justify-content: end;
}

.cart-item__quantity cart-remove-button svg {
  width: 16px;
  height: 16px;
  color: rgba(var(--color-text), 0.6);
  cursor: pointer;
  display: block;
}

.cart-item__quantity cart-remove-button:hover svg {
  color: rgba(var(--color-text), 1);
}

.cart-item__error {
  display: flex;
  align-items: center;
  /* margin-top: 10px; */
}

.cart-item__error-text {
  order: 1;
}

.cart-item__error .icon-error {
  margin-right: 5px;
  margin-top: 1.5px;
  flex-shrink: 0;
}

.cart-item__error-text:empty + svg {
  display: none;
}

.cart-item__totals {
  width: 18.4%;
  flex-shrink: 0;
  position: relative;
}

.cart-item__price-wrapper {
  text-align: right;
}

.cart-item__totals .original__price {
  color: rgb(var(--color-light-text));
  font-size: 13px;
  line-height: 1.6;
  text-decoration: line-through;
}

.cart-item__totals .final__price {
  color: rgb(var(--color-text));
  word-break: break-all;
}

.cart-item__discounts {
  margin: 0;
  padding: 0;
}

.cart-item__discounts li {
  list-style: none;
  color: rgb(var(--color-discount));
  display: flex;
  align-items: center;
}

.cart-item__discounts li span {
  margin-left: 4px;
}

@media (max-width: 959px) {
  .cart-item {
    padding: 20px 0;
  }
  .cart-item__media {
    width: 80px;
    margin-right: 16px;
  }
  .cart-item__details__wrapper {
    display: block;
  }
  .cart-item__quantity {
    width: auto;
    margin: 12px 0;
  }
  .cart-item__totals {
    width: auto;
  }
  .cart-item__price-wrapper {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .cart-item__price-wrapper .final__price {
    margin-right: 6px;
  }
  .original__price__desktop {
    display: none;
  }
  .cart-item .loading-overlay {
    left: 0;

  }
}

@media (min-width: 960px) {
  .original__price__mobile {
    display: none;
  }
  .cart-item .loading-overlay .loading-overlay__spinner svg {
    width: 25px;
    height: 25px;
  }
  .cart-item__quantity {
    min-width: 200px;
  }
  .cart-item__totals {
    min-width: 140px;
  }
}

/* loading */

.cart-item .loading-overlay {
  top: 0;
  right: 0;
  position: absolute;
  line-height: 0;
}
.loading-overlay__spinner {
    display: none;
}
.loading > .loading-overlay__spinner {
    display: inline-flex;
}
.loading .loading-overlay__spinner {
    animation: button-loading linear 1.5s infinite;
}
@keyframes button-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg); 
  }
}
.cart-item .loading-overlay .loading-overlay__spinner {
  animation-duration: 1s;
}

.cart-item .loading-overlay.loading ~ * {
  visibility: hidden;
}

.cart__items--disabled {
  pointer-events: none;
}

/* cart drawer case */

.cart-drawer__items .cart-item {
  padding: 20px 0;
  border-bottom: none;
}

.cart-drawer__items .cart-item__media {
  width: 80px;
  margin-right: 8px;
}

.cart-drawer__items .cart-item__details__wrapper {
  display: block;
}

.cart-drawer__items .cart-item__quantity {
    max-width: none;
    margin: 8px 0 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.cart-drawer__items .cart-item__totals {
  max-width: none;
}

.cart-drawer__items .cart-item__price-wrapper {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cart-drawer__items .cart-item__price-wrapper .final__price {
  margin-right: 6px;
  line-height: 39px;
}

.cart-drawer__items .original__price__desktop {
  display: none;
}

.cart-drawer__items .original__price__mobile {
  display: block;
}

.cart-drawer__items .cart-item .cart-item__totals .loading-overlay {
  left: 0;
}

.cart-drawer__items .cart-item__totals {
  width: auto;
}

@media (max-width: 959px) {
  .cart-drawer__items .cart-item__totals,
  .main-cart-items-wrapper .cart-item__totals {
    margin: 10px 0;
  }

  .cart-drawer__items .cart-item__quantity,
  .main-cart-items-wrapper .cart-item__quantity {
    margin: 0;
  }
  .cart-drawer__items .cart-item__discounts li + li,
  .main-cart-items-wrapper .cart-item__discounts li + li {
    margin-top: 2px;
  }

  .cart-drawer__items .cart-item__error,
  .main-cart-items-wrapper .cart-item__error {
    margin-top: 10px;
  }
  .cart-drawer__items .cart-item__details .product-option:last-child,
  .main-cart-items-wrapper .cart-item__details .product-option:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 960px) {
  .cart-drawer__items .cart-item__discounts {
    margin-bottom: 10px;
  }

  .cart-drawer__items .cart-item__discounts li + li {
    margin-top: 2px;
  }

  .cart-drawer__items .cart-item__quantity .cart-item__quantity-wrapper {
    margin: 0;
  }
  .cart-drawer__items .cart-item__details .product-option:last-child {
    margin-bottom: 0;
  }
}

.body2 {
    font-size: 16px;
}
.cart-fixed-checkout__container {
    background-color: rgb(255,255,255);
    box-shadow: 0px -4px 20px 0px rgba(0,0,0, 0.05);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 1;
    transform: translateY(0);
}.cart-fixed-checkout__footer {
    border-top: 1px solid rgb(var(--color-entry-line));
    padding: 12px;
}.cart-fixed-checkout .cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}.cart-fixed-checkout .cart-drawer__dropdown-toggle-normal {
    cursor: default;
}.fw-bold {
    font-weight:600 !important;
}.body3 {
    font-size:20px;
}.cart-fixed-checkout .cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin: 15px 0;
    color: #000;
}.cart-fixed-checkout .cart__total-price {
    display: flex;
    align-items: center;
    gap: 8px;
}.cart-fixed-checkout__buttons {
    margin-top: 10px;
}.cart-fixed-checkout__buttons .forward {
 float: none;
}.cart-fixed-checkout__buttons .submit_button {
    width: 100% !important;
    border-radius: 5px !important;
}



