/** Shopify CDN: Minification failed

Line 812:21 Expected identifier but found whitespace
Line 812:23 Unexpected "{"
Line 812:32 Expected ":"
Line 1015:1 Expected "}" to go with "{"

**/
/* Cart container Width */
@media (min-width: 900px){
  .cart-container{
    max-width: 980px;
  }
}

.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 var(--duration-default) ease;
}
.drawer__inner-empty h4.cart__empty-text {
    display: block;
}
.drawer__inner-empty .cart-drawer__warnings.center {
    display: flex;
    height:100%;
}
cart-drawer.drawer.is-empty cart-drawer-items {
    display: none;
}
cart-drawer.drawer.is-empty .drawer__footer {
    display: none;
}
.drawer.active {
  visibility: visible;
}

.drawer__inner {
  height: 100%;
  width: 45rem;
  max-width: calc(100vw - 3rem);
  padding: 0 1.5rem;
  /* 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 var(--duration-default) ease;
}

.drawer__inner-empty {
  height: 100%;
  padding: 0 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.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;
  align-items: center;
  padding: 0;
}

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

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: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__heading {
  margin: 0 0 1rem;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  min-width: 4.4rem;
  min-height: 4.4rem;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  position: absolute;
  top: 10px;
  right: -10px;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border: none;
  cursor: pointer;
}

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

.drawer__close .svg-wrapper {
  height: 13px;
  width: 13px;
}
.drawer__close path{
  stroke: #282828;
}

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

.drawer__footer {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.2);
  padding: 1.5rem 0;
}

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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

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

cart-drawer.active .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 .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

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

cart-drawer-items {
  overflow: auto;
  flex: 1;
}
.cart-drawer .cart__ctas{
  margin-top:3px !important;
}

/* Hide any existing payment terms that might cause flickering */
.cart-drawer__payment-terms.payment-terms-stable,
#extracted-payment-terms,
#payment-content-display {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Hide any payment-terms elements not in our wrapper */
payment-terms:not(.cart-payment-terms-wrapper payment-terms) {
  display: none !important;
  visibility: hidden !important;
}

/* Ensure our static banner shows properly */
.cart-payment-terms-wrapper {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.shop-pay-banner-static {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: visible;
  }

  .drawer__inner {
    overflow: scroll;
  }
}

 .cart-drawer .cart-item {
    display: flex;
    margin-bottom: 13px;
    align-items: center;
    column-gap: 2.3rem;
    display: flex;
    --line-item-media-width: 4.5rem;
    align-items: center;
    justify-content: space-between;
}

.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 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;
}

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

.cart-drawer .cart-items td {
  padding-top: 1.7rem;
}

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

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

.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-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

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

@media screen and (max-width: 749px) {
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
  }
  .cart-drawer .cart-item {
    column-gap: 8px;

}
}

.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;
}

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

.cart-drawer .cart__checkout-button {
  max-width: none;
  letter-spacing:2.7px;
}

.cart-payments ul {
    margin: 2px 0;
    justify-content: center;
}

.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;
}

@media screen and (min-width: 750px) {
  .drawer__footer #dynamic-checkout-cart ul > li {
    flex-basis: calc(100% / 3 - 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-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;
}

.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;
}

.cart-drawer .cart-item {
    display: flex;
    margin-bottom:12.8px;
}

.cart-drawer .cart-items .cart-item__quantity .quantity__input {
    font-size: 12px;
    font-weight: 400;
}


.cart-drawer .cart-item__error {
    display: none;
}
@media screen and (min-width: 750px) {
  .cart-drawer .cart-item__quantity--info quantity-popover > * {
    padding-left: 0;
  }

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

/*Custom css  */
dl.line_item-variant-options .product-option {
    margin-top: 0;
}
dl.line_item-variant-options {
    display: flex;
    margin-top: 2px;
}
.drawer__heading{
  font-size: 18px;
  letter-spacing: normal;
}
span.cart--total_count {
    font-weight: 500;
    font-size: 12px;
    text-transform: lowercase;
    margin-left: 10px;
}
.cart-drawer .product-option.product--item-price{
  margin-top:0;
}
quantity-input.quantity.cart-quantity{
    width: calc(7.8rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
    min-height: calc((var(--inputs-border-width) * 2) + 2.8rem);
}
quantity-input.quantity.cart-quantity .quantity__button {
    width: 22px;
}
.cart-drawer .cart-items .cart-item__quantity {
    padding-top: 10px;
    padding-left: 0px;
    grid-column: 4 / 5;
    display: flex;
    align-items: center;
    --inputs-border-opacity: 0.15;
}
.cart-drawer .quantity__button .svg-wrapper{
  width: 8px !important;
}
.cart-item__quantity quantity-popover{
    display: flex;
}
.cart-drawer .cart-item__media{
    grid-row: unset;
    display: flex;
    max-width: 8.5rem;
}
.cart-drawer td.cart-item__details {
    padding: 4px 0px 4px 0px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: .25rem;
    flex: 1;
}
.cart-drawer td.cart-item__media {
    padding: 0 !important;
    max-width: 72px;
}
.cart-drawer .product-option dd {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}
cart-drawer-items {
    overflow-x: hidden;
}
.drawer__inner{
  padding: 0;
}
.drawer__header {
  padding: 1.5rem 1.5rem;
}
cart-drawer-items {
  padding: 1.4rem 1.6rem 1.6rem 2.0rem;
}
.free-gift__item--price span.price.line-through {
    text-decoration: line-through;
    opacity: 1.8;
    letter-spacing: 0px;
}


@media screen and (min-width: 750px) {
    .drawer__footer .list-payment {
        justify-content: center;
        padding-bottom: 10px;
        gap: 1.6px !important;
    }
    .drawer__footer .list-payment__item {
    align-items: center;
    display: flex;
    padding: 0.5px;
    width: 30px !important;
}
}
.drawer__footer{
       padding: 1rem 2rem 0rem 20px;
}
.drawer__close{
  right: 0;
}
.totals__total {
    margin-top: 0;
    letter-spacing: normal;
}
.cart__ctas{
    text-align: center;
    margin-top: 20px;
}
.cart-drawer .cart__checkout-button:before, .cart-drawer .cart__checkout-button:after {
    border: none;
    box-shadow: none;
}
.cart-drawer .cart__checkout-button:hover:after {
    box-shadow: none;
}
.cart-drawer .cart__checkout-button {
    border-radius: 36px;
    text-transform: uppercase;
}
.cart-drawer .totals{
    margin-top: 0;
}
.cart--drawer_discount {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}
.cart--drawer_discount span.savings-label {
    font-weight: 500;
}
.cart-drawer .drawer__header {
  padding: 1.162rem 1.5rem;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 0.2rem;
}
.drawer__close{
  min-width: 34px;
  min-height: 34px;
}

.drawer__close .svg-wrapper {
  height: 13px;
  width: 13px;
}
.savings-value {
  font-weight: 500;
    color: #317671;
  font-size: 16px;
}
.totals__total-value{
  font-size: 16px !important;
}
.cart-drawer__empty-content a.button:before, .cart-drawer__empty-content a.button:after {
  box-shadow: none;
}
.cart-drawer__empty-content a.button {
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  border-radius: 28px;
}
.cart-drawer__empty-content a.button:hover:after{
  box-shadow: none;
}
@media screen and (max-width:749px){
  .cart-drawer .quantity__button .svg-wrapper {
    width: 0.8rem;
    pointer-events: none;
  }
  
.drawer__close{
  right: 11px !important;
  top: 7px !important
}
  .drawer__inner{
    width: 100%;
    max-width: 100%;
  }
  quantity-input.quantity.cart-quantity .quantity__button {
    /* width: calc(2rem / var(--font-body-scale)); */
  }
  quantity-input.quantity.cart-quantity {
    width: 78px;
    min-height: 29px;
  }
  .cart-drawer td.cart-item__details{
    row-gap: 3px;
    padding-left:0 !important;
  }
  .cart-drawer .cart-items .cart-item__quantity {
    padding-top: 0px;
    padding-left: 0px;
  }
  .cart-drawer .cart-item{
    justify-content: space-between;
  }
  
  .quantity__input{
    font-size: 1.4rem;
  }
  div#CartDrawer {
    overflow: hidden;
    width: 100%;
  }
  .cart-drawer .drawer__header{
        padding: 11px 13px 23px 19px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 2px;
  }
  
}
/*End Custom css  */
/* Cart Shipping Bar  */
.cart-drawer .free-shipping-bar span.text-success {
  color:#282828 !important;
}

div#upsell-product-8962116255966 .upsell-card__actions {
    margin-top: 4px;
}

.cart-drawer .free-shipping-bar {
  padding-left: 14px;
  padding-right: 20px;
  padding-top: 0px !important;
  text-align: left;
  padding-bottom:15px;
  margin-inline-end: 0px !important;
}

.progress-bar-container {
  margin-top: 3px;
  margin-bottom: 10px;
  width: 100%;
  background-color: #ffffff; /* Background color set to white */
  border-radius: 10px;
  height: 5px;
}

.progress-bar-background {
  position: relative;
  width: 100%;
  height: 7px;
  background: white; /* Background color set to white */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #282828;
}
.free-shipping-bar .text-warning,
.free-shipping-bar .text-success {
    font-size: 13px;
}
.progress-bar-fill {
  height: 100%;
  background-color: #eee8d9;
  border-radius: 10px;
  width: 0%; 
  transition: width 2s linear;
}
/* Cart Shipping Bar End */

cart-drawer:not(.active) .cart-drawer{
  display:none;
}




  /*For Gift Card  */
  .cart-drawer .cart__free-gift--outer {
    width: 100%;
}
  .cart-drawer .cart__free-gift{
    background-color: var(--cart-gifts-bg);
    border-radius: 8px;
    border: 1px solid #dedcd6;
    margin-bottom:2px;
  }
  .cart-drawer .cart__free-gift .cart__free-gift--items {
    padding: 7px 10px;
}
  .cart-drawer .cart__free-gift .cart__free-gift--item {
    display: flex;
    column-gap: 10px;
    align-items: center;
}
  .cart-drawer .cart__free-gift--outer .cart__free-gift--header {
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 4px;
    align-items: center;
    background: var(--cart-gifts-bg);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    padding: 10px 15px;
    border: 1px solid #dedcd6;
}
  .cart-drawer .cart__free-gift--outer .cart__free-gift--header img {
    width: 17px;
    height: 16px;
    margin-top: -3px;
    margin-right: 3px;
    display: inline-block;
}
  .cart-drawer .cart__free-gift .cart__free-gift--items img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: contain;
    background-color: {{settings.gift_img_bg}};
}
  .cart-drawer .cart__free-gift .cart__free-gift--item .free-gift__item--title {
    /* font-family: "Roobert PRO", sans-serif; */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
}
  .cart-drawer .cart__free-gift .cart__free-gift--item .free-gift__item--price {
    display: flex;
    column-gap: 8px;
    align-items: center;
}
  .free-gift__item--price.text-subdued span {
    font-size: 12px !important;
    /* font-family: "Roobert PRO", sans-serif !important; */
    font-weight: 500 !important;
    color: #282828a6;
}
  .cart__free-gift.first--gift-card {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top:0;
}
  .cart__free-gift.free-gift-in_cart img{
    /* object-fit: cover !important; */
    object-position: 50% 60%;
}

  @media screen and (min-width:500px){
      .free-gift__quantity-badge {
        position: absolute;
        top: -9%;
        right: 86%;
        background-color:rgb(5 75 72);
        color: white;
        font-size: 8px;
        border-radius: 50%;
        border: 2px solid white;
        padding: 4px 4px;
        display: flex;
        line-height: normal;
        align-items: center;
        justify-content: center;
        min-width: 16px;
        height: 16px;
        }
    }
  @media screen and (max-width:500px){
    .cart-drawer .cart__free-gift .cart__free-gift--items img {
      width: 50px;
      height: 50px;
    }
    .cart-drawer .cart__free-gift .cart__free-gift--item .free-gift__item--price {
    display: flex;
    column-gap: 8px;
    align-items: baseline;
}
      .free-gift__quantity-badge {
          position: absolute;
        top: -10%;
        left: 3.6rem;
        background-color: rgb(5 75 72);
        color: white;
        border: 1px solid white;
        font-size: 8px;
        border-radius: 50%;
        padding: 4px 4px;
        display: flex;
        align-items: center;
        line-height: normal;
        justify-content: center;
        min-width: 16px;
        height: 16px;
        }
        .free-shipping-bar .text-warning,
.free-shipping-bar .text-success {
        margin-bottom: 4px;
            display: block;
}
.cart-drawer .free-shipping-bar {
  padding-left: 15px;
}
.cart-drawer-items{
  padding: 1.5rem 1.6rem 1.6rem 1.5rem;
}
    }
        .cart__free-gift--item {
          position: relative; /* To position the badge relative to this container */
        }


  
    .cart-drawer .cart-drawer__items line-item.free_gift_item {
        display: none !important;
        visibility:hidden !important;
    }
  
  /* End gift card */


.cart--drawer_body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

#cart-main-content {
    height: 100%;
}

.cart-drawer_products-container {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    overflow: visible;
}

.cart-drawer .cart-drawer_products-line-container {
    display: flex;
    flex-direction: column;
    overflow: visible;
    height: 100%;
    justify-content: space-between;
}
.cart-drawer_bucket-container {
    flex: none;
    overflow: visible;
}
.drawer__inner{
    overflow-x: hidden !important;
}

cart-drawer-items {
    display: flex;
    flex-direction: column;
    padding-right: 17px;
}

@media(max-width: 424px){
  .cart-drawer td.cart-item__media {
    padding: 0 !important;
    min-width: 70px !important;
}
    quantity-input.quantity.cart-quantity {
        width: 64px;
        min-height: 25.8px;
    }
        .cart-drawer a.cart-item__name.h4.break {
        line-height: 1.7;
    }
        cart-drawer-items {
        padding: 0.9rem 1.6rem 1.6rem 1.5rem !important;
    }
    .item--cart-prices {
      margin-top: 0px !important;
    }
    .cart-drawer__recommendations
 {
    background: #f6f3eb;
    padding: 10px 0px 10px 15px !important;

}

@media (max-width: 410px) and (min-width: 380px) {

    .cart-drawer td.cart-item__details {
        max-width: 20rem;
    }

}
@media (max-width: 379px) and (min-width: 367px) {

    .cart-drawer td.cart-item__details {
        max-width: 19rem;
    }

}

@media (max-width: 366px) and (min-width: 357px) {

    .cart-drawer td.cart-item__details {
        max-width: 18rem;
    }

}
@media (max-width: 356px) and (min-width: 347px) {

    .cart-drawer td.cart-item__details {
        max-width: 17rem;
    }

}
@media (max-width: 346px) and (min-width: 337px) {

    .cart-drawer td.cart-item__details {
        max-width: 16rem;
    }

}