/** Shopify CDN: Minification failed

Line 331:1 Unexpected "{"

**/
#cartDrawerTitle {
  margin: 0;
  line-height: 2.6rem;
}

.template--cart #shopify-section-cart-drawer {
  display: none;
}

.cart-drawer-wrapper {
  position: relative;
  height: 100%;
}

.cart-drawer-wrapper .cart-drawer {
  display: block;
}

.cart-savings-summary {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.cart-discounts__icon {
  display: flex;
}

.cart-drawer {
  position: fixed;
  z-index: calc(var(--z-modals) + 1);
  inset-block-start: 0;
  inset-inline-end: 0;
  height: var(--viewport-height, 100vh);
  max-width: 39rem;
  width: 100%;
  box-shadow: 0px 4px 4px rgba(var(--color-background-bg-2), .25);
  padding: 0;
  background-color: var(--color-background-body);
  visibility: hidden;
  transform: translateX(100%);
  transition: .4s all;
  height: 100%;
  overflow: auto;
}

.cart-drawer__body-heading {
  font-size: 2rem;
  line-height: 2.6rem;
  margin: 0;
  color: #000000;
  font-weight: 500;
  letter-spacing: -0.05rem;
}

[dir='rtl'] .cart-drawer {
  transform: translateX(-100%);
}

.cart-drawer--small {
  max-width: 43rem;
}

.cart-drawer--medium {
  max-width: 55.2rem;
}

@media screen and (min-width: 990px) {
  .cart-drawer--large {
    max-width: 76rem;
  }
}

.cart-drawer__contents {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
}

.cart-drawer-overlay {
  content: '';
  z-index: var(--z-modals);
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100vw;
  height: var(--viewport-height, 100vh);
  background: var(--color-background-bg-2);
  opacity: 0;
  visibility: hidden;
  transition: .4s all;
}

.cart-drawer__header {
  /* We need to overwrite styles */
  padding: 2rem !important;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 750px) {
  .cart-drawer__header.is--desk-sticky {
    position: sticky;
    background: #fff;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 749px) {
  .cart-drawer__header.is--mob-sticky {
    position: sticky;
    background: #fff;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.cart-drawer__header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: calc(100% - 4rem);
  left: 2rem;
  height: 1px;
  background: #D0D0D0;
}

.cart-drawer__footer-wrap_total {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.cart-drawer__title {
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-drawer__title .c-title {
  font-family: "Cardinal Fruit", sans-serif;
  font-size: 2.4rem;
  line-height: 2.6rem;
  letter-spacing: -0.05rem;
  color: #000000;
  font-weight: 500;
}

.cart-drawer__empty {
  text-align: center;
}

.cart-drawer__empty p {
  margin-block-start: 0;
}

.cart-drawer__footer {
  text-align: center;
  padding: 2rem;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #fff;
}

cart-drawer.cart-drawer svg.spinner {
  animation: rotator 1.4s linear infinite;
}

cart-drawer.cart-drawer svg.spinner .path {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke: currentColor;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes rotator {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(270deg);
  }
}

.cart-footer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-footer-item .label,
.cart-footer-item .value {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: normal;
  color: #3A3A3A;
  font-weight: 400;
}

.cart-footer-item.save-price .label,
.cart-footer-item.save-price .value {
  font-weight: 700;
  color: #255723;
}

.cart-footer-item.cart-total-c {
  padding-top: 0.8rem;
  border-top: 0.1rem solid #D0D0D04D;
  margin-bottom: 2rem;
}

@media screen and (max-width: 749px) {
  .cart-footer-item.cart-total-c {
    margin-bottom: 1rem;
  }
}

.cart-footer-item.cart-total-c .label,
.cart-footer-item.cart-total-c .value {
  font-weight: 420;
  color: #1B1A20;
}

.cart-discounts {
  margin-bottom: .5rem;
}

.cart-discounts__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.4rem 0;
}

.cart-discounts__header svg {
  width: 1.8rem;
  height: 1.8rem;
}

.cart-discounts__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: .4s all;
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease;
}

.cart-discounts__list.is--show {
  max-height: 50rem;
}

.cart-discounts__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.cart-discounts__name,
.cart-discounts__amount {
  font-size: 1.24rem;
  line-height: 120%;
  color: rgb(115, 115, 115);
  letter-spacing: normal;
}

.cart-discounts__title {
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: normal;
  color: #3a3a3a;
  font-weight: 400;
}

.cart-discounts__header svg {
  transform: rotate(180deg);
  transition: .4s transform;
}

.cart-discounts__header[aria-expanded="true"] svg {
  transform: rotate(0deg);
}


.c-checkout-btn button[type="button"] svg,
.c-checkout-btn button[type="submit"][name="checkout"] svg,
 {
  display: none !important;
}

.c-checkout-btn button[type="button"],
.c-checkout-btn button[type="submit"][name="checkout"] {
  background: #3A3A3A;
  border-radius: 8.3rem;
  padding: 0.3rem 0.5rem;
  height: 4.3rem;
}

.c-checkout-btn button[type="button"] .button__text,
.c-checkout-btn button[type="submit"][name="checkout"] .button__text {
  font-size: 1.6rem;
  line-height: 2.3rem;
  font-weight: 420;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: normal;
}

.cart-drawer__reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.cart-drawer__reviews .stars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer__reviews .stars svg {
  width: 1.75rem;
  height: 1.75rem;
}

.cart-drawer__reviews .text {
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: normal;
  color: #3A3A3A80;
  font-weight: 400;
}

.cart-drawer__footer.is-empty {
  display: none;
}

.cart-drawer__total {
  margin-block-end: 0.8rem;
}

.cart-drawer__info {
  padding-block-end: 1.5rem;
}

.cart-drawer__info p {
  margin-block-start: 0;
}

.cart-drawer__info a {
  color: currentColor;
}

.cart-drawer__inner {
  position: relative;
  padding: 1.4rem 2.4rem 0;
  transition: opacity .3s;
}

.cart-drawer__inner--top.is-empty {
  margin-block-start: 0;
}

.cart-drawer__inner--center.is-empty {
  align-self: center;
}

.cart-drawer__inner--bottom.is-empty {
  margin-block-end: 0;
  padding-block-end: 6rem;
}

.cart-drawer__close {
  position: static;
  inset-block-start: 2.5rem;
  inset-inline-end: 1.5rem;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-typography-primary);
}

.cart-drawer__close:hover {
  transform: scale(1.1);
}

.cart-drawer__links {
  text-align: center;
}

.cart-drawer__links>* {
  margin-block-start: 1rem;
}

.cart-drawer__actions .button {
  min-width: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cart-drawer__actions {
  display: grid;
  row-gap: 1.2rem;
  grid-template-columns: repeat(1, 1fr) !important;
}

.cart-drawer__actions>* {
  grid-column: auto / span 1;
}

.cart-drawer--disabled .cart-drawer__inner {
  opacity: .5;
  pointer-events: none;
}

.cart-drawer__payment {
  display: none;
}

.cart-drawer__free-shipping_msg {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #3A3A3A;
  letter-spacing: normal;
  font-weight: 400;
  text-align: left;
  margin-top: 1.6rem;
}


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

.cart-drawer__empty.show-empty p {
  font-family: "Cardinal Fruit", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2.6rem;
  color: #000000;
  font-weight: 500;
  letter-spacing: -0.05rem;
  margin-bottom: 3.6rem;
}

.cart-drawer__empty.show-empty a.button {
  display: flex;
  width: 100%;
  height: 4.3rem;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  background: #3A3A3A;
  border-radius: 8.3rem;
}

.cart-drawer__empty.show-empty a.button .button__text {
  line-height: 2.3rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 420;
  letter-spacing: normal;
}

cart-drawer[data-cart-items="0"] .cart-drawer__empty.show-empty {
  padding: 2.75rem 0 5.15rem;
  border-bottom: 0.1rem solid #D0D0D0;
}

cart-drawer[data-cart-items="0"] .cart-drawer__inner {
  min-height: initial;
}

/* Upsell styles */
.cart-drawer__upsell {
  padding: 2.4rem 2rem 0;
}

.cart-drawer__upsell .primary-title {
  text-align: left !important;
  font-size: 2rem !important;
  line-height: 2.6rem !important;
  letter-spacing: -0.05rem !important;
  font-weight: 500 !important;
  margin: 0 0 2.4rem 0 !important;
}

.cart-drawer__upsell .powered-by-rebuy {
  display: none !important;
}

.cart-drawer__upsell .rebuy-product-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 2.4rem !important;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block {
  padding: 0 0 2.4rem 0 !important;
  border-bottom: 0.1rem solid #D0D0D04D !important;
  align-items: flex-start !important;
  position: relative !important;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-product-media a {
  width: 100%;
  height: 100%;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-product-media a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-product-media {
  width: 8rem !important;
  height: 8rem !important;
  min-width: 8rem !important;
  border-radius: 0.8rem !important;
  overflow: hidden;
}

.cart-drawer__upsell .rebuy-product-price {
  margin: 0.5rem 0 0 0 !important;
  bottom: auto !important;
  transform: none !important;
}

.cart-drawer__upsell .rebuy-money,
.cart-drawer__upsell .rebuy-widget .rebuy-money {
  font-weight: 450 !important;
  font-size: 1.5rem !important;
  line-height: 2.1rem !important;
  color: #3A3A3A !important;
}

.cart-drawer__upsell .rebuy-select {
  font-weight: 450 !important;
  font-size: 1.5rem !important;
  line-height: 2.1rem !important;
  color: #3A3A3A !important;
  font-family: "Brandon Grotesque", sans-serif !important;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-button {
  background: #fff !important;
  border: 0.1rem solid #3A3A3A !important;
  padding: 0.2rem 1.2rem !important;
  border-radius: 0.8rem !important;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-product-actions {
  width: fit-content !important;
  flex: initial !important;
}

.cart-drawer__upsell .rebuy-widget .rebuy-product-grid.large-style-line .rebuy-product-block .rebuy-product-info {
  width: calc(56% - 120px) !important;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-button span {
  font-size: 1.6rem !important;
  text-transform: uppercase !important;
  line-height: 2.3rem !important;
  font-weight: 420 !important;
  color: #3A3A3A !important;
  letter-spacing: normal !important;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-product-info {
  padding: 0.5rem 0 0 1.6rem !important;
}

cart-drawer.cart-drawer .rebuy-product-actions {
  margin-left: 0.03rem;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-product-info .rebuy-product-title {
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  padding-right: 0.2rem;
}

.cart-drawer__upsell .rebuy-product-grid::after {
  content: none !important;
}

.cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-product-info .rebuy-product-title .rebuy-product-title-link {
  font-family: "Cardinal Fruit", sans-serif !important;
  font-weight: 500 !important;
  font-size: 2rem !important;
  line-height: 2.6rem !important;
  letter-spacing: -0.05rem !important;
  color: #000000 !important;
}

@media screen and (max-width: 990px) {
  .cart-drawer__upsell .rebuy-product-grid .rebuy-product-block .rebuy-product-info .rebuy-product-title .rebuy-product-title-link {
    font-size: 1.8rem !important;
  }

  .cart-drawer__upsell .rebuy-widget .rebuy-product-grid.large-style-line .rebuy-product-block .rebuy-product-info {
    padding-left: 0.9rem !important;
  }
}

/*  Active state  */

.cart-drawer.animate {
  transition: transform var(--duration-short) ease,
    visibility 0s var(--duration-short) ease;
}

.cart-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer.active+.cart-drawer-overlay {
  display: block;
  opacity: .4;
  visibility: visible;
}

.cart-drawer #cart-drawer {
  transform: none;
  opacity: 0;
  visibility: visible;
  height: 100%;
  transition: .4s opacity;
}

.cart-drawer.active #cart-drawer {
  opacity: 1;
}

cart-drawer .show-empty {
  display: none;
}

cart-drawer[data-cart-items="0"] .show-empty {
  display: block;
}

cart-drawer[data-cart-items="0"] .show-full {
  display: none !important;
}

cart-drawer.cart-drawer [data-rebuy-component="announcement-bar"] {
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-top: 1rem;
}

cart-drawer.cart-drawer [data-rebuy-component="announcement-bar"] .message {
  opacity: 1;
}

.is--custom-bar .cart-drawer__header {
  /* We need to overwrite styles */
  padding-bottom: 0 !important;
}

.is--custom-bar .cart-drawer__header::after {
  /* We need to overwrite styles */
  content: none !important;
}

@media screen and (min-width: 990px) {

  .cart-drawer__header,
  .cart-drawer__inner {
    padding-inline: 4.8rem;
  }

  .cart-drawer__close {
    inset-block-start: 1.7rem;
    inset-inline-end: 1.6rem;
  }

  .cart-drawer__actions:not(.cart-drawer__actions--column) {
    grid-template-columns: auto !important;
    align-items: center;
    grid-auto-flow: column;
    column-gap: 1.6rem;
  }

  .cart-drawer__inner {
    padding: 1rem 2rem 0 2rem;
  }

  .cart-drawer__inner--bottom.is-empty {
    padding-block-end: 6rem;
  }

  .cart-drawer__total {
    margin: .8rem auto .6rem;
    font-size: 2rem;
  }

  .cart-drawer__payment {
    display: block;
  }

  .cart-drawer__payment .list-payment {
    padding: 2.4rem 0 0;
    display: flex;
    flex-flow: row wrap;
    gap: .6rem 1.1rem;
    list-style: none;
    justify-content: center;
  }

  .cart-drawer__payment .list-payment:empty {
    display: none;
  }

  .cart-drawer__payment .list-payment svg {
    max-width: 2.5rem;
    max-height: 1.8rem;
  }

  .cart-drawer__payment .list-payment li {
    line-height: 0;
  }

  .cart-drawer .button {
    font-size: 1.3rem;
    height: 5rem;
  }
}