/** Shopify CDN: Minification failed

Line 85:5 Expected ":"

**/
.cart-drawer__free_gifts {
   background-color: #F5F0E8;
    padding-bottom: 16px;
    margin: 0 -20px;
    text-align: center;
    @media (max-width:767px) {}
    h5 {
        font-size:13px;
        margin: 0;
    }
    .free-title-wrap {
      padding: 10px 16px;
      gap: 8px;
      align-items: center;
      border-bottom: 1px solid #E5DAD1;
      margin-bottom: 16px;
      .title-wrap {
        text-align: left;
        width: 90%;
      }
      p {
        color: rgba(43,	13,	0, 0.5);
      }
    }
    .free-badge {
      background-color: #BDAEE4;
      font-size:9px;
      padding: 3px 6px;
      font-family: Grtsk Tera;
      border-radius: 2px;
    }
    .content {
        gap: 8px;
        padding: 0 16px;
        @media (max-width:767px) {
          gap: 5px;
        }
    }
     p{
        font-size: 12px;
    }
    .gift-wrap {
      padding: 10px;
      background-color: #fff;
      border-radius: 10px;
      border: 1px solid #E5DAD1;
       @media (max-width:767px) {
          padding: 5px;
        }
      img {
        border-radius: 10px;
      }
    }
    .gift-title {
        min-height:28px;
        margin: 8px 0;
       
        p {
        font-weight: 600;
        font-size: 10px;
        }
    }
    
    .btn-wrap {
        a {
            text-transform: uppercase;
            font-size:10px;
            font-weight:600;
            background-color: #2b0d00;
            color: #fff;
            display:block;
            min-height:28px;
            border-radius: 5px;
            line-height: 28px;
        }
    }
}
.cart-drawer__item.freegift {
background-color: #F5F0E8;
order
}
#shopify-section-cart-items {
  display:flex;
  flex-direction: column;
  .cart-drawer__item {
    order: 1;
  }
  .cart-drawer__item.freegift {
    order:2;
  }
}
.cart-drawer__offer-box {
    padding-top:0;
}
.cart-drawer__offer-box {
  .offer-box {
    margin-top: 14px;
  }
}
.addons-wrap,
.cart-drawer__offer-box {
  position: relative;

  &.disabled {
    pointer-events: none;
    opacity: 0.7;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.6);
      z-index: 1;
    }
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 24px;
      height: 24px;
      border: 3px solid #ccc;
      border-top: 3px solid black;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: spin 0.7s linear infinite;
      z-index: 2;
    }
  }
}
.cart-drawer__cross-sell-products {
     &.disabled {
        &::before {
            top:30px;
        }
     }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}