/** Shopify CDN: Minification failed

Line 159:3 Expected identifier but found "."
Line 205:11 Expected ":"

**/
/* Cart */

.custom-cart-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

@media (max-width: 767px) {
  .custom-cart-box {
    grid-template-columns: 1fr;
  }
}

/* Quick cart */

.theme-modal.theme-modal--quickcart {
  background: #00000080;
}
.quick-cart {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 512px;
  max-width: 100%;
  height: 100%;
}
.quick-cart__header {
  flex: 0 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quick-cart__header h2 {
  font-size: 24px;
  font-weight: 500;
}
.quick-cart__header .modal-close {
  width: 32px;
  height: 32px;
  font-size: 32px;
  text-align: center;
  line-height: 32px;
}
.quick-cart__body {
  flex: 1 1 auto;
  min-height: 0;
}
.quick-cart__items {
  height: 100%;
  padding: 12px 32px;
  overflow-y: auto;
}
.quick-cart-item {
  padding: 16px 0;
}
.quick-cart-inner {
  display: flex;
  gap: 16px;
}
.quick-cart-inner .quick-cart-col:first-child {
  flex: 0 0 auto;
  width: 96px;
}
.quick-cart-inner .quick-cart-col:last-child {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  flex: 1;
}
.quick-cart-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick-cart-title {
  font-size: 15px;
  font-weight: 500;
}
.quick-cart-values {
  font-size: 13px;
}
.quick-cart-quantity {
  text-align: center;
}
.quick-cart-quantity .quantity {
  position: relative;
  border: 1px solid #bbb;
  width: 100%;
  text-align: center;
}
.quick-cart-quantity input {
  width: 33.33%;
  min-height: 40px;
  border: none;
  padding: .7em 0;
  text-align: center;
  line-height: 1;
}
.quick-cart-quantity a:not(.cart-item__remove) {
  position: absolute;
  top: 0;
  width: 33.33%;
  height: 100%;
  line-height: 40px;
}
.quick-cart-quantity a.minus {
  left: 0;
}
.quick-cart-quantity a.plus {
  right: 0;
}
.quick-cart-quantity .cart-item__remove {
  display: block;
  margin-top: 8px;
  font-size: 14px
}
.quick-cart__footer {
  flex: 0 0 auto;
  padding: 16px 32px;
}
.quick-cart-subtotal {
  margin-bottom: 16px;
}
.quick-cart-subtotal .subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.quick-cart-subtotal .label,
.quick-cart-subtotal .amount {
  font-size: 20px;
  font-weight: 500;
}
.quick-cart__footer .cart-discount-list {
  margin: 16px 0;
}
.quick-cart__footer .button--checkout {
  width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
  .quick-cart {
    width: 100%;
  }
  .quick-cart__header,
  ..quick-cart__items,
  .quick-cart__footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Trust bage */

.custom-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 16px 0;
}

.custom-trust img {
  padding: 2.5px;
  width: auto;
  height: var(--height-img);
}

/* Shipping */

.custom-shipping-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #ddd;
}

.custom-shipping .custom-shipping-item:not(:last-child) {
  border-bottom: none;
}

.custom-shipping-item .rimage-outer-wrapper {
  flex: 0 0 auto;
  width: 50px;
}

.custom-shipping-info {
  flex: 1;
}

.custom-shipping-info h4 {
  font-size 18px;
  margin-bottom: 8px;
}

.custom-shipping-info .rte {
  font-size: 14px;
  margin: 0;
}

.custom-shipping-info .rte > *:first-child {
  margin-top: 0;
}

/* Products */

.product-save {
  font-size: 12px;
  padding: 4px;
  background-color: #c12d4a;
  color: #fff;
  border-radius: 40px;
  display: inline-block;
  vertical-align: super;
  margin-left: 6px;
}

.product-image-nav button {
  position: absolute;
  top: 50%;
  z-index: 99;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  background: #ffffffb3;
  border: none;
  color: #000;
}

.product-image-nav__prev {
  left: 10px;
  transform: translate(-10px, -50%);
}

.product-image-nav__next {
  right: 10px;
  transform: translate(10px, -50%);
}

@media (min-width: 768px) {
  html:not(.touch) .product-block:hover .product-image-nav button {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
  }
}