/** Shopify CDN: Minification failed

Line 893:1 Expected "*/" to terminate multi-line comment

**/
.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  padding: 0;
  background: var(--clr-ntrl-max);
}

.drawer__header .h2.cart__empty-text,
.drawer__header .drawer__heading {
  font-size: 25px;
  font-family: var(--ff-extra-bold);
  letter-spacing: 0;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--clr-ntrl-min);
  padding-inline: 20px;
}

cart-drawer-items {
  overflow-y: scroll;
  height: calc(100vh - 154.5px - 140px);
  display: block;
  padding: 20px 0;
}

cart-drawer-items.is-empty {
  height: calc(100vh - 90px - 210px);
  max-height: calc(100vh - 90px - 210px);
}

cart-drawer-items .cart__contents .drawer__contents .drawer__cart-items-wrapper {
  padding: 0 35px;
}

cart-drawer-items .cart__contents #CartDrawer-CartErrors {
  width: inherit;
  min-width: inherit;
  padding: 0;
  border-radius: 3px;
  color: var(--clr-danger);
  font-family: var(--ff-base-lt);
  letter-spacing: 0;
  margin: 10px 35px 0;
  font-size: 12px;
}

cart-drawer-items table {}

cart-drawer-items td {
  padding: 0px !important;
}

cart-drawer-items .cart-items__header {
  display: none;
}

cart-drawer-items .cart-items__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

cart-drawer-items .cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: 2fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  max-height: 170px;
  overflow: hidden;
  padding: 0 0 20px;
}

/* START: MEDIA */

cart-drawer-items .cart-item .cart-item__media {
  grid-area: 1 / 1 / 4 / 2;
  display: flex;
  max-height: 130px;
  width: 80px;
  margin: 0 20px 0 0;
}

cart-drawer-items .cart-item .cart-item__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* END: MEDIA */

/* START: DETAILS */

cart-drawer-items .cart-item .cart-item__details {
  grid-area: 1 / 2 / 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 3px;
  padding: 10px;
  margin: 0 0 10px 7px;
  width: auto;
}

cart-drawer-items .cart-item .cart-item__details>.cart-item__details-container {
  display: flex;
  font-size: 12px;
  align-items: flex-start;
  gap: 5px;
  flex-wrap: wrap;
}

cart-drawer-items .cart-item .cart-item__details>.cart-item__details-container .product-option {
  margin: 0 !important;
  font-size: 12px !important;
}

cart-drawer-items .cart-item .cart-item__details .product-option:empty {
  display: none;
}

cart-drawer-items .cart-item .cart-item__details .cart-item__name {
  font-size: 18px;
  text-decoration: none;
  max-width: 250px;
  font-style: normal;
  font-weight: 500;
  line-height: 114%;
  letter-spacing: 0;
  font-family: var(--ff-extra-bold);
  font-weight: 500;
  color: var(--clr-ntrl-max);
  margin: 0;
  text-transform: uppercase;
}

cart-drawer-items .cart-item .cart-item__details .cart-item__price {
  font-size: 14px;
  font-family: var(--ff-base-smb);
  margin: 0;
  color: var(--clr-ntrl-max);
}

cart-drawer-items .cart-item .cart-item__details .cart-item__discounted-prices {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

cart-drawer-items .cart-item .cart-item__details .cart-item__discounted-prices .visually-hidden {
  display: none;
}

cart-drawer-items .cart-item .cart-item__details .cart-item__discounted-prices .cart-item__old-price {
  font-size: 12px;
}

cart-drawer-items .cart-item .cart-item__details .cart-item__discounted-prices .cart-item__final-price {
  color: var(--clr-third);
}

cart-drawer-items .cart-item .cart-item__details .product-variant {
  font-size: 10px;
  color: #666;
}

cart-drawer-items .cart-item .cart-item__details .product-variant dt {
  display: none;
}

cart-drawer-items .cart-item .cart-item__details .discounts {
  display: flex;
}

.discounts__discount {
  font-size: 10px;
  display: inline-flex;
  gap: 7px;
  padding: 4px 10px 6px;
  background: var(--clr-third);
  color: white;
  line-height: 1;
  align-items: center;
}

.discounts__discount svg {
  width: 8px;
}

/* END: DETAILS */

/* START: QUANTITY */

cart-drawer-items .cart-item .cart-item__totals {
  display: none;
}

cart-drawer-items .cart-item .cart-item__quantity {
  grid-area: 2 / 2 / 3 / 3;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

cart-drawer-items .cart-item .cart-item__quantity quantity-popover {
  width: 100%;
}

cart-drawer-items .cart-item .cart-item__quantity .cart-item__quantity-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 5px;
  padding: 0 0 2px;
}

cart-drawer-items .cart-item .cart-item__quantity .cart-item__quantity-wrapper .quantity-popover-container {
  padding: 0;
  height: auto;
  max-width: none;
  width: auto;
}

cart-drawer-items .cart-item .cart-item__quantity .cart-quantity {
  width: 100px;
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: inherit;
  border-radius: 4px;
}

cart-drawer-items .cart-item .cart-item__quantity .visually-hidden {
  display: none;
}

cart-drawer-items .cart-item .cart-item__quantity .quantity__button {
  width: 30px;
  height: 37px;
  border: none;
  border: 1px solid #e0e0e0;
  padding: 5px;
  border-radius: 0;
}


cart-drawer-items .cart-item .cart-item__quantity .quantity__button:focus {
  background-color: #ebebeb !important;
}

cart-drawer-items .cart-item .cart-item__quantity .quantity__button:focus svg path {
  fill: white;
  stroke: white;
}

cart-drawer-items .cart-item .cart-item__quantity svg {
  width: 20px;
  height: 20px;
}

cart-drawer-items .cart-item .cart-item__quantity svg path {
  fill: var(--clr-ntrl-max);
}

cart-remove-button button span svg path {
  fill: #a6afa9;
}

/* END: QUANTITY */

/* START: INPUTS */
cart-drawer-items .cart-item .cart-item__quantity .quantity__input {
  width: 20px;
  text-align: center;
  color: currentColor;
  text-align: center;
  background-color: #ffffff00;
  border: 0;
  padding: 0;
  flex-grow: 1;
  -moz-appearance: none;
  /* Para Firefox */
  -webkit-appearance: none;
  appearance: none;
}

cart-drawer-items .cart-item .cart-item__quantity .quantity__input::-webkit-inner-spin-button,
cart-drawer-items .cart-item .cart-item__quantity .quantity__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* END: INPUTS */
/* START: Error text */
cart-drawer-items .cart-item .cart-item__quantity quantity-popover .cart-item__error {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: flex-end;
  margin: 10px 0 0;
}

cart-drawer-items .cart-item .cart-item__quantity quantity-popover .cart-item__error .svg-wrapper svg path {
  fill: #fff;
}

.cart-item__error-text:empty+.svg-wrapper {
  display: none;
}

/* END: Error text */

cart-drawer-items .cart__contents .drawer__contents .visually-hidden {
  visibility: hidden;
}

/* START: FOOTER */

.drawer__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 20px;
  gap: 16px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--clr-ntrl-ltst);
  box-shadow: 0 -3px 5px #0000000d;
}

.drawer__footer .cart-drawer__footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.drawer__footer .cart-drawer__footer div>.discounts {
  display: flex;
}

.drawer__footer .cart-drawer__footer .tax-note {
  display: none;
}

.drawer__footer .cart-drawer__footer .totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.drawer__footer .cart-drawer__footer .totals .totals__total {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: var(--clr-ntrl-max);
  font-family: var(--ff-base);
}

.drawer__footer .cart-drawer__footer .totals .totals__total-value {
  font-size: 22px;
  line-height: 1;
  margin: 10px 0;
  color: var(--clr-ntrl-max);
  font-family: var(--ff-base);
  font-weight: 800;
}

.modal-cart-transport {
  font-size: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-ntrl-dkr);
  width: 100%;
}

.modal-cart-transport i {
  font-size: 19px;
}

.drawer__footer .cart__ctas {
  display: flex;
  gap: 10px;
  width: 100%;
}

.drawer__footer .cart__ctas .btn {
  width: 50%;
  padding: 14px;
  margin: 0;
}

.drawer__header .drawer__close {
  border-radius: 0;
  padding: 20px;
  background-color: var(--clr-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
}

.drawer__header .drawer__close svg path {
  fill: var(--clr-ntrl-min);
}

@media screen and (max-width: 991px) {
  cart-drawer-items {
    height: calc(100vh - 72.5px - 58px - 134px);
  }

  cart-drawer-items .cart-item {
    grid-template-columns: 1fr 7fr;
    grid-column-gap: 20px;
    margin: 0 !important;
  }

  cart-drawer-items .cart-item .cart-item__media {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  cart-drawer-items {
    height: calc(100vh - 72.5px - 58px - 118px);
  }

  cart-drawer-items .cart__contents .drawer__contents .drawer__cart-items-wrapper {
    padding: 0 30px;
  }

  cart-drawer .drawer__footer {
    padding: 15px 15px 80px;
  }

  cart-drawer .drawer__footer .cart__ctas .btn .btn__text {
    font-size: 11.6px;
  }

  cart-drawer .drawer__footer .cart-drawer__footer .totals .totals__total,
  cart-drawer .drawer__footer .cart-drawer__footer .totals .totals__total-value {
    font-size: 14.31px;
  }

  .modal-cart-transport {
    font-size: 9px;
  }

  .modal-cart-transport i {
    font-size: 17px;
  }
}

@media (max-width: 720px) {
  cart-drawer .drawer__footer {
    padding: 15px;
  }
}

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

.drawer__inner-empty {
  display: none;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty {
  height: calc(100vh - 844px);
  display: flex;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .cart-drawer__warnings {
  width: 100%;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .cart-drawer__warnings .cart-drawer__empty-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .cart-drawer__warnings .cart-drawer__empty-content .cart-login {
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .cart-drawer__warnings .cart-drawer__empty-content .cart-login .cart__login-title {
  font-size: 18px;
  color: black;
  font-family: var(--ff-base-lt);
  margin-top: 25px;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .cart-drawer__warnings .cart-drawer__empty-content .cart-login .cart__login-paragraph {
  font-size: 16px;
  text-align: left;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .cart-drawer__warnings .cart-drawer__empty-content .cart-login .cart__login-paragraph a {
  text-transform: none;
  font-size: 16px;
  text-decoration: underline;
  color: black;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .btn {
  margin: 20px;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .drawer__header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  height: auto;
  padding: 0;
  background: var(--clr-ntrl-max);
  width: 100%;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .drawer__header h2 {
  font-size: 25px;
}

cart-drawer.is-empty .cart-drawer .drawer__inner .drawer__inner-empty .drawer__header .drawer__close {
  width: 60px;
}

.drawer__footer .balance {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: 0;
  justify-content: flex-start;
}

.drawer__footer .balance .balance_text {
  font-size: 12px;
}

.drawer__footer .balance .balance_text_large {
  max-width: 180px;
  width: 100%;
}

.drawer__footer .balance .balance_link {
  font-size: 12px;
  text-decoration: underline;
}

@media (max-width:720px) {

  .drawer__footer .balance .balance_text,
  .drawer__footer .balance .balance_link {
    font-size: 10px;
  }
}

.special-product {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 15px 0;
  width: 100%;
  background-color: var(--clr-ntrl-min);
  max-width: 400px;
}

.special-product::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: var(--clr-line);
}

.special-product::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--clr-line);
}

.special-product .special-product__link {
  border: solid 0.5px var(--clr-primary);
  color: var(--clr-ntrl-mid);
  border-radius: 9px;
  font-size: 10px;
  padding: 15px;
  text-transform: uppercase;
}

.special-product .special-product__info .special-product__title {
  font-size: 17px;
  font-family: var(--ff-extra);
  color: var(--clr-ntrl-dkr);
  font-weight: 500;
}

.special-product .special-product__info .special-product__price {
  font-size: 12px;
  font-family: var(--ff-base-smb);
}

@media (max-width: 720px) {
  .special-product {
    column-gap: 10px;
    padding: 10px 0;
  }

  .special-product .special-product__link {
    font-size: 8.6px;
    min-width: 106px;
  }

  .special-product img {
    display: none;
  }
}

/* Free shipping
================================================== */
free-shipping {
  padding: 2.4rem 1.5rem;
  position: relative;
}

free-shipping p {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1.6rem 0;
}

free-shipping#mini-cart-incentives {
  margin-bottom: 0;
}

free-shipping#mini-cart-incentives p {
  line-height: 1;
  text-align: center;
  font-weight: 600;
}

free-shipping.free-shipping--isVisible {
  display: block;
}

free-shipping:not(.free-shipping--isVisible) {
  display: none;
}

.cart-drawer .drawer__inner free-shipping#mini-cart-incentives,
.drawer__inner free-shipping {
  background-color: var(--clr-background);
}

@media (max-width: 991px) {
  .cart-drawer .drawer__inner free-shipping#mini-cart-incentives {
    background-color: var(--clr-background);
    padding: 15px;
  }

  .cart-drawer .drawer__inner free-shipping#mini-cart-incentives p {
    font-size: 14px;
    margin: 0 0 10px 0;
    font-weight: 400;
  }
}

/* Progress bar
================================================== */

@keyframes expandWidth {
  0% {
    width: 0;
  }
}

@keyframes moveRight {
  0% {
    left: 0;
  }
}

progress-bar {
  height: .4rem;
  border-radius: 2px;
  position: relative;
  display: block;
  background: rgba(var(--color-base-black), 0.05);
}

progress-bar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 2px;
  width: 0;
  width: var(--progress);
  background-color: var(--clr-primary);
  animation: expandWidth 500ms linear;
  transition: all 500ms linear;
}

.free-shipping--hasQualified progress-bar:before {
  width: var(--progress);
}

progress-bar:after {
  left: var(--progress);
  animation: moveRight 500ms linear;
  transition: all 500ms linear;
  z-index: 3;
}

.free-shipping--hasQualified progress-bar:after {
  left: calc(var(--progress) - 1px);
}

free-shipping:not(.free-shipping--isVisible) progress-bar:after {
  display: none;
}

.progress-bar__wrapper {
  position: relative;
  background: white;
  height: 4px;
  border-radius: 2px;
}

.progress-bar__wrapper:before {
  left: 0;
}

.progress-bar__wrapper:after {
  right: 0;
}

/*Floating free shipping*/
.floating_free_shipping {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background: var(--clr-ntrl-max);
  z-index: 9;
}

.floating_free_shipping free-shipping {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.floating_free_shipping free-shipping>p {
  color: var(--clr-ntrl-min);
  font-family: var(--ff-base);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.8px;
  letter-spacing: 0.392px;
  text-transform: uppercase;
  margin: 0;
}

.floating_free_shipping free-shipping .progress-bar__wrapper {
  min-width: 250px;
}

.floating_free_shipping free-shipping p {
  margin-bottom: 0;
  color: white;
}

@media(max-width: 860px) {
  .floating_free_shipping free-shipping {
    flex-direction: column;
    gap: 10px;
  }

  .floating_free_shipping free-shipping>p {
    font-size: 12px;
    line-height: 1;
  }
}

/* .cart-drawer {
}

.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 138px;
  padding: 40px 20px 0 20px;
  background: #f6f6f6;
}

.drawer__header h2 {
  font-size: 25px;
}

.drawer__header .drawer__close {
  width: 30px;
}

.cart-drawer .cart-items {
  padding: 0 20px;
}

.cart-drawer .cart-items__header {
  font-size: 12px;
}

.cart-drawer .cart-items__body {
  display: flex;
  flex-direction: column;
}

.cart-drawer .cart-items__body .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.cart-drawer .cart-item__media {
}

.cart-drawer .cart-item__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
} */

/* .cart-drawer .cart__contents table.cart-items {
  width: 100%;
  border-collapse: collapse;
}

.cart-drawer .cart__contents table.cart-items th {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.cart-drawer .cart__contents tr.cart-items__header {
  display: none;
}

.cart-drawer .cart__contents tr.cart-item {
  border-bottom: 1px solid #e0e0e0;
}

.cart-drawer .cart__contents tr.cart-item:last-child {
  border-bottom: none;
}