/** Shopify CDN: Minification failed

Line 1646:0 Unexpected "}"

**/
.drawer {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(var(--color-foreground), 0.5);
  transition: visibility 0.5s ease;
}

.empty_cart_line {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0;
  padding-top: 26px;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  line-height: 100%;

  span {
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    line-height: 100%;
  }

  .line_name {
    font-weight: 700;
    text-transform: uppercase;
  }
}

.drawer.is-empty {
  .content_body {
    padding-bottom: 16px;
    border-bottom: 1px solid #eeeeee;
    padding-left: 20px;

    .content {
/*      grid-column: 1 / -1;*/
    }
  }
}
@media(max-width: 768px) {
  .drawer.is-empty {
  .content_body {
    padding-left: 0px;
    padding-right: 2px;
}
}
}


@media(max-width: 1024px) {
    .shopify-section {
    }
    body:has(.drawer.active) {
        .cart-drawer__overlay {
            background-color: #fff !important;
        }
        .shopify-section {
            opacity: 0;
        }
    }
}

.content_body {
  display: flex;
  gap: 10px;

  .content.gift, .content.free_custom_product {
    .line_box {
      span:not(.circle_price) {
/*        opacity: 0;*/
      }
    }
  }

  &:has(.content.free-shipping-us.full) {
    .content.gift {
      .line_box {
        span:not(.circle_price) {
          opacity: 1;
        }
      }
    }
  }

  &:has(.content.free-shipping-us.full):has(.content.gift.full) {
    .content.free_custom_product {
      .line_box {
        span:not(.circle_price) {
          opacity: 1;
        }
      }
    }
  }

}

@media(min-width: 1025px) {
  .content_body {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media(max-width: 1024px) {
  .content_body {
    padding-right: 2px;
  }
}

.content {
  transition: transform 0.5s ease;
}

.slide-left {
  transform: translateX(-100%);
}
/* cart header*/
.content_body {
  display: flex;
  gap: 12px;
  transition: all 0.8s ease;

  .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }
/*  overflow: hidden;*/
}
.content_body .content {
  transition: transform 0.8s ease, opacity 0.8s ease;
  min-width: 0;
  flex: 1 1 0;
}
.content.shipping.slide-left {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.content.gift {
  transform: translateX(0%);
  opacity: 1;
  position: relative;
}
.content.express {
  transition: none;
}
.content.gift.hide {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  position: absolute;
}

.drawer:not(.is-empty) {
  .content_header {
    border-bottom: 1px solid #EEEEEE;
  }
}
/* end */
.drawer__inner {
  height: 100%;
  width: 52rem;
  /* max-width: calc(100vw - 3rem); */
  max-width: 100vw;
  padding: 0;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-right: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
    transform: translateX(100%);
  transition: transform 0.5s ease;



  horizontal-borders {
    > .content {
          min-height: 94px;
    }
  }

  .totals {
    .cart-totals-prices {
      flex-direction: row-reverse;
      .discount-price, .discount_price {
        color: red;
        font-size: 18px !important;
        font-family: 'Source Sans Pro', sans-serif;
        font-weight: 600;
      }

      @media(max-width: 1024px) {
        .discount_price {
          font-size: 16px !important;
          font-weight: 600;
        }
      }

      .cart-total-old {
        color: #282828;
        font-size: 18px;
      }

      .price--end {
        font-size: 18px !important;
        line-height: 100%;
        font-family: 'Source Sans Pro', sans-serif;
        font-weight: 600;
      }

      @media(max-width: 1024px) {
        .price--end {
          font-size: 16px !important;
        }

        .cart-total-old {
          font-weight: 400;
          position: relative;
          color: rgba(0, 0, 0, 0.6);;

          &:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 100%;
            height: 1px;
            background-color: rgba(0, 0, 0, 0.6);
          }
        }
      }
    }
  }

  .payment-icons {
    margin-top: 16px;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #EAEAEA;
    column-gap: 9px;

    svg {
      height: 24px;
      width: 28px;
    }
  }
}

@media(max-width: 768px) {
    .drawer__inner {
        transform: translateY(100%);
    }
}
.drawer__inner-empty {
  height: 100%;
  padding: 0 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.drawer__inner-empty .button {
  text-transform: capitalize;
}
.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
  margin-top: 2.5rem;
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  position: relative;
  padding: 0 15px 15px 30px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eeeeee;

}
button.button--tertiary.cart-remove-button:hover {
  border: none;
}
.drawer.is-empty {
  .drawer__header {
    align-items: flex-start;
  }

  .drawer__inner{
    height: 100%;
    border: none;
    grid-template-rows: 76px auto;
  }

  .cart_buttons_box {
    margin-top: 25vh;

    .empty-cart-title {
      text-align: center;
      font-family: 'Zona Pro', sans-serif;
      font-size: 26px;
      line-height: 100%;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: uppercase;
      margin: 0;
    }

    @media(max-width: 1024px) {
      .empty-cart-title {
        font-size: 18px;
      }
    }

    .text {
      margin-top: 12px;
      margin-bottom: 24px;
      text-align: center;
      font-size: 19px;
    }

    @media(max-width: 1024px) {
      .text {
        font-size: 16px;
      }
    }

    .buttons {
      display: flex;
      justify-content: center;
      gap: 16px;

      .button {
        background-color: #ffffff;
        border: 1px solid #000000;
        color: #282828;
        font-family: 'Zona Pro', sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0;
        text-transform: uppercase;
        height: 48px;
        transition: 0.2s ease all;


        &.link-btn {
          padding: 0 3rem;
          width: inherit;
          display: flex;
          &:after  {
            transition: 0.7s transform;
          }

          &.anim-link {
            &:hover {
              background-color: transparent;
            }

            &:after {
              transform: translateX(0);
            }

            span {
              color: #fff;
            }
          }
        }

        span {
          font-family: 'Zona Pro', sans-serif;
          font-weight: 700;
          font-size: 16px;
          line-height: 100%;
        }

        &:hover {
          background-color: #000000;
          border: 1px solid #000000 !important;
          color: #ffffff;

          span {
            color: #ffffff;
          }
        }

        &.anim {
          span {
            color: #ffffff;
          }
        }
      }

      @media(max-width: 1024px) {
        .button {
          font-size: 14px;
          height: 38px;
          min-height: 38px;

          span {
            font-size: 14px;
          }
        }
      }
    }
  }
}

.drawer__heading {
  margin: 0;
  font-family: "Zona Pro", sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  height: 40px;
  color: #282828;
}

.drawer__heading .total_items {
  font-family: "Zona Pro", sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: normal;
  margin-left: 5px;
  display: inline-block;
  color: #282828;

}

.drawer__close {
  padding: 0;
  max-width: 40px;
  max-height: 40px;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  position: absolute;
  top: 0;
  right: 20px;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border: 1px solid #DFDFDF;
  border-radius: 50%;

  svg {
    width: 24px;
    height: 24px;
  }
}

.drawer__close:hover {
  border-color: #282828;
}

.drawer__close.empty {
  top: 20px;
  right: 20px !important;
}

.drawer__close .svg-wrapper {
  width: 100%;
  height: 100%;
}

.drawer__close .svg-wrapper svg rect {
  transition: 0.2s all;
}

.drawer__close:hover svg rect {
  stroke: var(--text-color);
}

.cart-drawer__warnings .drawer__close {
  right: 5px;
}

.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0;

  .cart-item {
    padding-left: 20px;
    padding-right: 20px;
  };
}

horizontal-borders {
  padding: 0;

    .content {
        transition: 0.2s all;
    }
}

.drawer__footer_slider__mobile {
  background-color: #f5f5f5;
  padding: 20px 0 53px;
  transition: 0.5s all;
  position: relative;
  min-height: 0;
  overflow: hidden;
  opacity: 0;

  .swiper-slide {
    border-radius: 10px;
  }

  .custom_product_item {
    display: grid !important;
    grid-template-columns: 70px calc(100% - 70px);
    grid-template-rows: 1fr 50px;
    align-items: center;
    padding: 10px;

    .image_box {
      grid-column: 1 / 2;
      margin: 0 !important;
      padding: 0 !important;
      top: 10px;
    }

    .title_box, .product_title, .button_box {
      grid-column: 2 / 3;
    }

    .product_title {
      margin-top: 10px;
      margin-bottom: 0;
    }

    @media(max-width: 768px) {
      .product_title {
        margin-top: 0;
      }
    }

    .button_box {
      padding-bottom: 0 !important;
    }

    .title_box {
      margin: 0;

      .wrap {
        margin: 0 !important;

        .product_rating {
          margin-bottom: 11px;
        }
      }
    }
  }

  .swiper-button-prev {
    right: 46px;
    left: auto;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    top: 0;
    margin-top: 12px;
    height: 24px;
    width: 24px;

    &:after {
      font-size: 0;
    }
  }

  .swiper-pagination-mobile {
    position: absolute;
    bottom: 20px;

    .swiper-pagination-bullet {
      width: 6px;
      height: 6px;
    }

    .swiper-pagination-bullet-active {
      background-color: #000;
    }
  }
}

.drawer__footer_slider__mobile.swiper-initialized {
  opacity: 1;
  padding-left: 20px;
}

.drawer__footer_slider__mobile .swiper-wrapper {
  align-items: stretch;
  height: 100%;
}

.drawer__footer_slider__mobile .slider-box-title {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 100%;
  font-family: "Zona Pro", sans-serif;
}

.drawer__footer_slider__mobile .swiper-slide {
  background-color: #fff;
  /* /* min-height: 100%; */
}

.drawer__footer_slider__mobile .swiper-slide .image_box {
  padding: 5px 0px 0;
  background-color: #fff;
  max-height: 100px;
}

.drawer__footer_slider__mobile .swiper-slide .image_box img {
  filter: none;
}

.drawer__footer_slider__mobile .swiper-slide .product_title {
  padding: 0 10px;
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.drawer__footer_slider__mobile .swiper-slide .product_title .h3 {
  font-size: 14px;
  line-height: 100%;
  margin-left: 0;
  margin-right: 0;
  font-family: "Source Sans Pro", sans-serif;
}

.drawer__footer_slider__mobile .swiper-slide .product_title .variant-title {
  display: block !important;
  margin-top: 5px;
  font-size: 12px;
  font-family: "Source Sans Pro";
  line-height: 100%;
  letter-spacing: normal;
  color: #000;
}
.drawer.is-empty .cart_buttons_box .text,
.drawer__footer_slider__mobile .rating-count.caption {
  font-family: "Source Sans Pro";
}
.drawer__footer_slider__mobile .swiper-slide .product_title .product_price.mobile {
  display: none;
}

.drawer__footer_slider__mobile .swiper-slide .title_box {
  order: 2;
  margin-top: auto;
  padding: 0 10px;
}

.drawer__footer_slider__mobile .swiper-slide .title_box .h3 {
  display: none;
}

.drawer__footer_slider__mobile .swiper-slide .button_box {
  padding: 0 10px 10px 10px;
  order: 2;
}

.drawer__footer_slider__mobile .swiper-slide .variant_box {
  display: none;
}

.drawer__footer_slider__mobile [name=add] {
  min-height: 30px;
}

.drawer__footer_slider__mobile .custom_button .default_add {
  display: none;
}

.drawer__footer_slider__mobile .custom_button .custom_add {
  display: block !important;
  font-size: 12px;
  line-height: 100%;
  font-family: "Source Sans Pro", sans-serif;
}

.drawer__footer_slider {
  background-color: #fff;
  height: 100%;
  overflow: hidden;
  max-width: 184px;
  overflow: hidden;
  padding: 0 20px 30px;

  .swiper-slide {
    .product_title {
      flex-direction: column;
      align-items: flex-start;
    }
  }
}

.drawer__footer_slider .swiper-wrapper {
  overflow: hidden;
  height: auto;
  max-height: none !important;
  align-items: normal !important;
}

.drawer__footer_slider .slider-box-title {
  padding: 30px 0 20px;
  margin: 0;
  font-family: "Zona Pro", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  lighting-color: var(--text-color);
  color: #282828;
  text-align: center;
  position: relative;
  z-index: 3;
  background-color: #fff;
}

.drawer__footer_slider__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__footer_slider__header .navigation {
  position: relative;
  width: 60px;
  height: 24px;
}

.drawer__footer_slider__header .navigation div {
  display: block;
}

.drawer__footer_slider__header .navigation div:after {
  font-size: 0;
}

.drawer__footer_slider__header .navigation .swiper-button-prev {
  left: 0;
}

.drawer__footer_slider__header .navigation .swiper-button-next {
  right: 0;
}

.drawer__footer_slider__title {
  margin: 0;
  font-size: 14px;
  font-family: "Zona Pro", sans-serif;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: normal;
}

.drawer__footer_slider .swiper-wrapper {
  max-height: 100%;
  min-height: 0;
  align-items: stretch;
}

.drawer__footer_slider .swiper-slide {
  background-color: #fff;
  height: -moz-fit-content;
  height: fit-content;
}

.drawer__footer_slider .swiper-slide [name="add"]{
  min-height: 30px;
}

.drawer__footer_slider .swiper-slide .custom_button {
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
}

.drawer__footer_slider .swiper-slide .custom_button .default_add {
  display: none;
}

.drawer__footer_slider .swiper-slide .custom_button .custom_add {
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
  display: inline-block !important;
}

.drawer__footer_slider .swiper-slide .variant-title {
  font-size: 14px;
  line-height: 100%;
  display: block !important;
}

.drawer__footer_slider .swiper-slide .product_title .h3 {
  margin-left: 0;
}

.drawer__footer_slider .swiper-slide .title_box {
  margin-left: 0;
}

.drawer__footer_slider .swiper-slide .product_rating {
  justify-content: flex-start;
}

.drawer__footer_slider .swiper-slide .custom_product_item-swiper img {
  max-height: 79px;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer__footer_slider .swiper-slide .image {
  max-height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drawer__footer_slider .swiper-slide .image img {
  width: 100%;
  max-height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

.drawer__footer_slider .swiper-slide .title {
  margin: 10px 0 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  font-family: "Zona Pro", sans-serif;
  color: #282828;
}

.drawer__footer_slider .swiper-slide .variant-title {
  margin-top: 5px;
  font-family: "Source Code Pro", sans-serif;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: normal;
  color: #282828;
}

.drawer__footer_slider .swiper-slide .image_box {
  max-height: 70px;
  background-color: #fff;
  padding: 10px;
}

.drawer__footer_slider .swiper-slide .image_box img {
  max-height: 70px;
  filter: none;
  object-fit: cover;
}
@supports (font: -apple-system-body) and (-webkit-appearance: none) {
  .drawer__footer_slider__mobile .swiper-slide .image_box,
  .drawer__footer_slider .swiper-slide .image_box,
  .drawer__footer_slider .swiper-slide .image_box img {
    max-height: none;
    height: auto;
  }
}


.drawer__footer_slider .swiper-slide .title_box {
  order: 2;
}

.drawer__footer_slider .swiper-slide .title_box .h3 {
  display: none;
}

.drawer__footer_slider .swiper-slide .product_title {
  order: 1;
}

.drawer__footer_slider .swiper-slide .product_title .h3 {
  font-size: 14px;
  color: #282828;
}

.drawer__footer_slider .swiper-slide .button_box {
  order: 2;
}

.drawer__footer_slider .swiper-slide .variant_box {
  display: none;
}
.title.shipping_price {
  display: none;
}
.drawer__footer {
  padding: 16px 0 16px;
  border-top:1px solid #EAEAEA;

  @media(min-width: 769px) {
    border-top: 1px solid #eee
  }



  .cart-drawer__footer, .cart__ctas {
    margin: auto;
    width: calc(100% - 40px);
  }

  .cart-drawer__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }

  .totals__total {
    margin: 0;
  }
}

.drawer__footer .cart-drawer__footer .totals {
  margin-top: 0;
}

.drawer__footer .cart-drawer__footer .totals__total,
.drawer__footer .cart-drawer__footer .totals__total-value {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: normal;
  font-family: 'Source Sans Pro', sans-serif;
  color: #282828;
}

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

.drawer__footer .cart__ctas [type=submit] {
  text-transform: uppercase;
  letter-spacing: normal;
  font-family: 'Zona Pro', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
}

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

.drawer__footer > details {
  margin-top: -1.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.drawer__footer > details[open] {
  padding-bottom: 1.5rem;
}

.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 2.8rem 1.5rem 0;
}

.drawer__footer > details + .cart-drawer__footer {
  padding-top: 1.5rem;
}

.cart-drawer__footer .shipping-free-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;

  .shipping {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
  }
}

.cart-drawer__footer .shipping-free-box h3 {
  margin: 0;
}


.cart-drawer__footer .shipping-free-box span {
  margin: 12px 0;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: normal;
  font-weight: 600;
  font-family: Source Sans Pro, sans-serif;
  color: #282828;
  text-transform: uppercase;

}

.cart-drawer__footer .shipping-free-box h3 {
  margin-top: 0;
  font-family: "Source Sans Pro", sans-serif;
}

cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;

  .no-show {
    .line_box {
      span:not(.circle_price ) {
        opacity: 0;
      }
    }
  }
}

cart-drawer .drawer__footer_slider {
  opacity: 1;
  transition: 0.2s opacity;
}

/*cart-drawer .drawer__footer_slider:not(.swiper-initialized) {
  display: none;
}*/

cart-drawer:not(.active) .drawer__footer_slider {
  opacity: 0;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cart-drawer__overlay:empty {
  display: block;
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}

.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex-grow: 1;
}

.cart-drawer .drawer__cart-items-wrapper .cart-items .cart-item__details .cart-item__name {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #282828;
}

.cart-drawer .drawer__cart-items-wrapper .cart-items  .cart-item__price-wrapper {
  color: #282828;
  white-space: nowrap;

  span {
    font-size: 14px;
    line-height: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
  }

  .price_box_compare {
    .custom_price {
      color: red;
    }
  }

  @media (max-width: 768px) {
    .price_box_compare {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 5px;
    }
  }

  .compare_at_price {
    font-weight: 400;
    position: relative;
    color: rgba(0, 0, 0, 0.6);;

    &:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      height: 1px;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.6);
    }
  }
}

.cart-drawer .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: inline-table;
  width: 100%;
}

cart-drawer-items {
  overflow: auto;
  display: flex;
  flex: 1;
  overscroll-behavior: contain;
  flex-direction: column;
  justify-content: space-between;
    transition: 0.2s all;

  cart-remove-button {
    .button {
      .svg-wrapper {
        font-size: 14px;
        text-decoration: none;
      }
    }
    .button:hover {
      background-color: transparent;
    }
  }
}

.cart-drawer .cart-item {
  display: grid;
  grid-template-rows: 1fr 51px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 0;
  /*roman*/

  &:last-child {
    border-bottom: none
  }
}

.cart-drawer [data-main="true"] {
  grid-template-rows: 1fr auto !important;
  padding-bottom: 10px;

  cart-remove-button {
    height: auto !important;
  }

  .cart-item__quantity  {
    margin-top: -40px;
    z-index: 3;
  }
}

@media(max-width: 500px) {
  .cart-drawer [data-main="true"] {
    .cart-item__quantity  {
      margin-top: -5px;
    }
  }
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1rem;
}

.cart-drawer .cart-item__media {
  grid-row: 1/3;
}

.cart-drawer .cart-item__image {
  max-width: 100%;
}

.cart-drawer .cart-items {
  padding-top: 5px;
}

.cart-drawer .cart-items thead {
  margin-bottom: 0.5rem;
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
  width: 0;
  padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
  width: 50%;
  padding-left: 0;
}

.cart-drawer .cart-items thead tr {
  display: table-row;
  margin-bottom: 0;
}

.cart-drawer .cart-items th {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1.5rem;
  padding-bottom: 20px;
}

.cart-drawer .cart-item .loading__spinner {
  right: 5px;
  padding-top: 2.5rem;
}

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

.cart-drawer .cart-item > td + td {
  padding-left: 1rem;
}

.cart-drawer .cart-item__details {
  width: auto;
  grid-column: 2/4;
}

.cart-drawer .cart-item__details > * + * {
  margin-top: 7px;
}

.cart-drawer .cart-item__details > * + * .product-option {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
  margin-top: 0;
}
.cart-totals-prices,
.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  gap: 0.6rem;

}

@media(min-width: 1025px) {
  .cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
    flex-direction: row-reverse;
  }
}

@media(max-width: 1024px) {
  .cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
/*    flex-direction: column-reverse;*/
    flex-direction: row-reverse;
  }
}

.cart-drawer .cart-totals-prices {
  .cart-total-old.price.price--end {
    font-weight: 400;
    position: relative;
    color: rgba(0, 0, 0, 0.6);

    &:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.6);
      width: 100%;
      height: 1px;
    }
  }
}

.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  grid-column: 2/5;
}

.cart-drawer .cart-items .cart-item__quantity .cart-item__quantity-wrapper {
  justify-content: space-between;
  position: relative;
}

.cart-drawer__footer > * + * {
  margin-top: 1rem;
}

.cart-drawer .totals {
  justify-content: space-between;
}

.cart-drawer .price {
  line-height: 1;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 2rem auto;
  text-align: left;
}

.cart-drawer .product-option dd {
  word-break: break-word;
  color: #282828;
}

.cart-drawer details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
  max-width: none;
}

.drawer__footer .cart__dynamic-checkout-buttons {
  max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
  flex-wrap: wrap !important;
  flex-direction: row !important;
  margin: 0.5rem -0.5rem 0 0 !important;
  gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
  justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul > li {
  flex-basis: calc(50% - 0.5rem) !important;
  margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul > li:only-child {
  flex-basis: 100% !important;
  margin-right: 0.5rem !important;
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}

cart-drawer-items::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}


quantity-popover cart-remove-button {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  max-height: 31px;
}

quantity-popover cart-remove-button .cart-remove-button {
  align-items: flex-end;
  margin-right: 5px;
  min-height: 0;
  max-height: 31px;

  .svg-wrapper {
    text-decoration: underline;

  }
}

@media(max-width: 1024px) {
  quantity-popover cart-remove-button .cart-remove-button {
    margin-right: 0;
  }
}

quantity-popover cart-remove-button .cart-remove-button .svg-wrapper {
  width: auto;
  text-decoration: none;
  font-family: "Source Sans Pro";
}

quantity-popover quantity-input.quantity {
  /* margin-top: 34px; */
  margin-top: 0;

  .quantity__input {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
  }
}

quantity-popover quantity-input.quantity:after {
/*  box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--border-color), 1);*/
  border-color: #E7E7E8;
  box-shadow: none;
  border-radius: 100px;
}

.cart-drawer .quantity-popover-container {
  padding: 0;
}

.cart-drawer .quantity-popover__info.global-settings-popup {
  transform: translateY(0);
  top: 100%;
}

.cart-drawer .cart-item__error {
  margin-top: 0.8rem;
}

.cart-drawer .quantity-popover__info + .cart-item__error {
  margin-top: 0.2rem;
}

horizontal-borders .content_header {
  transition: all 0.3s;
  padding-bottom: 15px;
}

@media(max-width: 1024px) {
  horizontal-borders .content_header {
    padding-bottom: 15px;
  }
}
horizontal-borders .content_header.show {
}
horizontal-borders .content_header .title,
horizontal-borders .content_header .header_price {
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: normal;
  font-weight: 700;
  text-align: center;
}

horizontal-borders .content_header {
  .title {
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    line-height: 100%;

    span {
      font-weight: 700;
      font-family: 'Source Sans Pro', sans-serif;
      font-size: 14px;
      line-height: 100%;
    }
  }
}

horizontal-borders .content_header.show {
  opacity: 1;
  visibility: visible;
}

horizontal-borders .content_body {
  margin-top: 16px;
  display: grid;
  grid-column-gap: 9px;
  grid-template-columns: repeat(auto-fit, minmax(31%, 1fr));
  padding-bottom: 26px;
}
horizontal-borders .content_body.is-international {
  grid-template-columns: repeat(auto-fit, minmax(35%, 1fr));
}

.is-empty horizontal-borders .content_body {
  margin-top: 16px;
  display: grid;
  gap: 9px;
  padding-bottom: 26px;
}

.is-empty horizontal-borders .content_body:has(> .content:first-of-type:last-of-type) {
  grid-template-columns: 1fr;
}

.is-empty horizontal-borders .content_body:has(> .content:nth-of-type(2):last-of-type) {
  grid-template-columns: 1fr 1fr;
}

.is-empty horizontal-borders .content_body:has(> .content:nth-of-type(3):last-of-type) {
  grid-template-columns: 1fr 1fr 1fr;
}
  .show-empty {
    display: block !important;
    height: auto;
    overflow: visible !important;
  }

  .content {
    .line_box {
      position: relative;

      .circle_full {
        display: none;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
      }

      .circle_price {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background-color: #eeeeee;
        height: 32px;
        min-width: 32px;
        width: fit-content;
        padding: 0 4px;
        font-family: 'Source Sans Pro', sans-serif;
        font-weight: 600;
        font-size: 12px;
        line-height: 100%;
      }
    }
  }

  .content.full:not(.hide) {
    .line_box {

      .circle_full {
        display: block;
      }

      .circle_price {
        display: none;
      }
    }
  }

}

horizontal-borders .content_body > :only-child {
/*  grid-column: 1 / -1;*/
}

horizontal-borders .content_body .content.full svg path.circle {
  fill: #282828;
}

horizontal-borders .content_body .line_box {
  display: block;
  background-color: #EEEEEE;
  height: 8px;
  width: 100%;

  &:first-child {
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
  }
}

horizontal-borders .content_body .icon_box {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  max-width: 80%;
  text-align: center;
  height: 24px;
}

@media(max-width: 1024px) {
  horizontal-borders .content_body .icon_box {
    display: flex;
    align-items: flex-end;
  }
}

horizontal-borders .content_body .icon_box .text {
  margin: 0;
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-family: 'Source Sans Pro', sans-serif;

  @media(max-width: 1024px) {
    font-size: 12px !important;
    max-width: 77px;
    text-align: center;
  }
}

horizontal-borders .content_body .line_box span {
  background-color: var(--bar-color);
  width: 0;
  height: 100%;
  display: block;
  border-radius: 200px;
  transition: 0.3s all;
}

horizontal-borders .content_body {
  .content:not(.hide) {
    .line_box {
      span:not(.circle_price) {
      }
    }
  }
}

cart-drawer-items .cart-item__details .cart-item__name {
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Zona Pro", sans-serif;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 14px;
}
.price.price--end.discount-price,
cart-drawer-items .cart-item__totals :is(.price, dd) {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: normal;
}

.drawer__footer {
    .price.price--end.discount-price {
        font-size: 16px;
        line-height: 100%;
    }
}

.cart-totals-prices > :nth-child(2) {
  color: red;
  font-weight: 700;
}
.cart-item__discounted-prices span.price.price--end.discount-price {
  color: red;
}

cart-drawer-items .cart-item__discounted-prices {
  .price--end {
    color: red;
  }

  dd {
    .cart-item__old-price {
      color: #282828 !important;
      font-size: 14px;
      line-height: 100%;
      font-family: 'Source Sans Pro', sans-serif;
      font-weight: 400;
      opacity: 0.6;
    }
  }
}
@media screen and (min-width: 750px) {
  .drawer__footer #dynamic-checkout-cart ul > li {
    flex-basis: calc(33.3333333333% - 0.5rem) !important;
    margin: 0 !important;
  }

  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2) ~ li,
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4) ~ li {
    flex-basis: calc(50% - 0.5rem) !important;
  }

  .cart-drawer .cart-item__quantity--info quantity-popover > * {
    padding-left: 0;
  }

  .cart-drawer .cart-item__error {
    margin-left: 0;
  }
}

@media screen and (max-width: 749px) {
  .shopify-section.section product-info .grid_item,
  .shopify-section.section product-info .product__info-wrapper {
    transform: none !important;
  }
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
    width: auto;
    position: absolute;
    right: 0;
    bottom: 0;

    button {
      margin-left: auto;
      max-height: 31px;
    }
  }
}

@media (max-width: 425px) {
  .drawer__footer_slider__mobile [name=add] {
    min-width: 100%;
  }
  horizontal-borders .content_header .title,
  horizontal-borders .content_body .icon_box .text {
    font-size: 11px;
  }
  horizontal-borders .content_body .icon_box .text {
    margin: 0 0 0 3px;
  }
  .drawer__footer_slider__mobile .slider-box-title {
    width: 85%;
  }
}

@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: visible;
  }

  .drawer__inner {
    overflow: scroll;
  }
}
