/** Shopify CDN: Minification failed

Line 449:10 Expected ":"
Line 547:48 Expected ")" to end URL token

**/
cart-items .title-wrapper-with-link {
  margin-top: 0;
  margin-bottom:0px;
}

cart-items .title-wrapper-with-link .title {
  font-size:36px;
  color:#000000;
  font-weight:400;
}

cart-items .cart-item .cart-item__quantity{
  padding-left:0px;
}
                     
.cart-items td,
.cart-items th {
  padding: 0;
  border: none;
}

.cart-items th {
  text-align: left;
  padding-bottom: 1.8rem;
  opacity: 0.85;
  font-weight: normal;
}

.cart-item__quantity-wrapper {
  display: flex;
}

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

.cart-item__totals {
  position: relative;
}

.cart-items *.right {
  text-align: right;
}

.cart-item__image-container {
  display: inline-flex;
  align-items: flex-start;
}

.cart-item__image-container:after {
  content: none;
}

.cart-item__image {
  height: auto;
  max-width: calc(10rem / var(--font-body-scale));
}

@media screen and (min-width: 991px) {
  .cart-item__image {
    max-width: 100%;
  }
}

.cart-item__details {
  font-size: 1.6rem;
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

.cart-item__details > * {
  margin: 0;
  max-width: 30rem;
}

.cart-item__details > * + * {
  margin-top: 0.6rem;
}

.cart-item__media {
  position: relative;
}

.cart-item__link {
  display: block;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.cart-item__name {
  text-decoration: none;
  display: block;
  color:#000;
  font-weight:500;
  font-size:17px;
}

.cart-item__name:hover {
  text-decoration: none;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.2rem;
}

cart-drawer-items .product-option{
  color:#000;
  font-weight:400;
}

.cart-item__price-wrapper > * {
  display: block;
  margin: 0;
  padding: 0;
}

.cart-item__discounted-prices dd {
  margin: 0;
}

.cart-item__discounted-prices .cart-item__old-price {
  font-size: 1.4rem;
}

.cart-item__old-price {
  opacity: 0.7;
}

.cart-item__final-price {
  font-weight: 400;
}

.product-option {
  font-size: 1.4rem;
  word-break: break-word;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.cart-item cart-remove-button {
  display: flex;
  margin-left: 1rem;
}

@media screen and (min-width: 991px) and (max-width: 989px) {
  .cart-item cart-remove-button {
    width: 4.5rem;
    height: 4.5rem;
  }
}

cart-remove-button .button {
  min-width: calc(4.5rem / var(--font-body-scale));
  min-height: 4.5rem;
  padding: 0;
  margin: 0 0.1rem 0.1rem 0;
}

cart-remove-button .button:before,
cart-remove-button .button:after {
  content: none;
}

cart-remove-button .button:not([disabled]):hover {
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 991px) {
  cart-remove-button .button {
    min-width: 3.5rem;
    min-height: 3.5rem;
  }
}

cart-remove-button .icon-remove {
  height: 1.5rem;
  width: 1.5rem;
}

.cart-item .loading__spinner {
  top: 0;
  left: auto;
  right: auto;
  bottom: 0;
  padding: 0;
}

@media screen and (min-width: 991px) {
  .cart-item .loading__spinner {
    right: 0;
    padding-top: 4.5rem;
    bottom: auto;
  }
}

.cart-item .loading__spinner:not(.hidden) ~ * {
  visibility: hidden;
}

.cart-item__error {
  display: flex;
  align-items: flex-start;
  margin-top: 0.2rem;
  width: min-content;
  min-width: 100%;
}

.cart-item__error-text {
  font-size:13px;
  order: 1;
  margin-bottom:10px;
  color:#ff0000;
}

.cart-item__error-text + svg {
  flex-shrink: 0;
  width: 1.2rem;
  margin-right: 0.5rem;
  margin-top:4px;
}

.cart-item__error-text:empty + svg {
  display: none;
}

.product-option + .product-option {
  margin-top: 0.4rem;
}

.product-option * {
  display: inline;
  margin: 0;
}

.cart-items thead th {
  text-transform: uppercase;
}

@media screen and (max-width: 990px) {
  .cart-items,
  .cart-items thead,
  .cart-items tbody {
    display: block;
    width: 100%;
  }

  .cart-items thead tr {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
    margin-bottom: 4rem;
  }

  .cart-item {
    display: grid;
    grid-template: repeat(2, auto) / repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    position:relative;
  }

  .cart-item:last-child {
    margin-bottom: 0;
  }

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

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

  .cart-item__quantity {
    grid-column: 2 / 5;
  }

  .cart-item__quantity-wrapper {
    flex-wrap: wrap;
  }

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

@media screen and (min-width: 991px) {
  .cart-items {
    border-spacing: 0;
    border-collapse: separate;
    box-shadow: none;
    width: 100%;
    display: table;
  }

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

  .cart-items thead th:first-child {
    width: 50%;
  }

  .cart-items th + th {
    padding-left: 4rem;
  }

  .cart-items td {
    vertical-align: top;
    padding-top: 4rem;
  }

  .cart-item {
    position:relative;
    display: table-row;
  }

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

  .cart-item__details {
    width: 35rem;
  }

  .cart-item__media {
    width: 10rem;
  }

  .cart-item cart-remove-button {
    margin: 0.5rem 0 0 1.5rem;
  }

  .cart-item__price-wrapper > *:only-child:not(.cart-item__discounted-prices) {
    margin-top:0rem;
  }

  .cart-item__error {
    margin-left: 0.3rem;
  }
}

@media screen and (min-width: 990px) {
  .cart-item .cart-item__quantity,
  .cart-items .cart-items__heading--wide {
    padding-left: 6rem;
  }

  .cart-item__details {
    width: 50rem;
  }

  cart-items .cart-item__details{
    width: 35rem;
  }

  cart-items .cart-item__quantity{
    width:25rem;
  }

  .cart-items thead th:first-child {
    width: 60%;
  }
}

cart-items .cart-item__image-container{width:100px;height:100px;}
cart-items .cart-item > td + td{padding-left:2rem; vertical-align: middle;}
cart-items .title-wrapper-with-link{border-bottom:1px solid #00000060;padding-bottom:14px;}
.custom-cart-item-container{display:flex;gap:100px;justify-content:space-between;flex-wrap:wrap;}
cart-items .custom-main-cart-items{width:calc(70% - 100px);}
cart-items .custom-marin-cart-footer{width:30%;}
cart-items .cart__footer > *{max-width:100%;width:100%;}
cart-items .cart__ctas:before,
cart-items .cart__ctas:after{display:none;}
cart-items .cart__checkout-button{width:100%;max-width:100%;border-radius:4px;}
cart-items .totals{justify-content: space-between;}
cart-items .tax-note{text-align:left;margin-bottom:1.2rem;}
.custom-marin-cart-footer .page-width{padding:0px;}
.custom-marin-cart-footer .title{margin:0px;font-size:36px;color:#000;border-bottom: 1px solid #00000060;padding-bottom: 14px;text-align:left;} 
cart-items cart-remove-button .button{min-height:fit-content;min-width:fit-content;font-size:16px;border-bottom:1px solid #00000090;color:#00000090;}
cart-items .customproductquantity {height:38px;min-width:78px;border: 1px solid #00000030;-webkit-appearance: none;-moz-appearance: none;background: transparent;background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7" fill="none"><path d="M11 1L6 6L1 1" stroke="black" stroke-linecap="round"/></svg>');background-repeat: no-repeat;background-position-x: 70%;background-position-y: 50%;border-radius: 2px;margin-right:1rem;padding: 0rem 2rem;color:#000;font-size:16px;margin-top:0px;}
cart-items .customproductquantity option{color:#000;}
cart-items .cart-item cart-remove-button{justify-content:flex-end;}
.shopify-cleanslate .Vru56DW5IUIiRpxbGTDg{flex-basis:50px !important;}
.shopify-cleanslate .p28_J2fRvZNDqyZkZ2H9{flex-direction:column !important;}
cart-items .cart__dynamic-checkout-buttons{max-width:100%;}
cart-items .cart__empty-text{font-size:36px;font-weight:500;}

@media screen and (min-width: 991px) {
  .cart-items .cart-items__heading--quantity,
  .cart-item .cart-item__quantity,
  .cart-item__quantity--info quantity-popover > *,
  .no-js .cart-item .cart-item__quantity--info {
    padding-left: 5rem;
  }
     
       
  .cart-item .cart-item__quantity--info,
  .cart-item__quantity--info .cart-item__quantity-wrapper,
  .cart-item__quantity--info .cart-items__info {
    padding-left: 0;
  }
}



@media screen and (min-width: 749px) and (max-width: 990px) {
  .cart-items .quantity-popover__info-button {
    padding-left: 1.5rem;
  }
}

/**bought together**/
cart-items .custom_card_recommendation {
  display: flex;
  margin-bottom: 20px;
  gap:8px;
}
cart-items .custom_card_recommendation .custom_card_recommendation_media {
  min-width: 100px;
  min-height: 100%;
  height: 100px;
  width: 100px;
  position:relative;
  margin-right:10px;
}
cart-items
  .custom_card_recommendation
  .custom_card_recommendation_media
  img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
cart-items .custom_card_recommendation .card_recommendation_container {
  width: 50%;
  margin-left:0px;
  display: flex;
  flex-direction: column;
  widows60%;
}
cart-items .custom_card_recommendation .custom_drop_down_size {
  display: flex;
  position: relative;
  width: fit-content;
  margin: 0px;
  justify-content: end;
  align-items: end;
}
cart-items .custom_card_recommendation .custom_drop_down_size .sizeoptions {
  position: absolute;
  left: 0px;
  width: 78px;
  z-index: 9;
  background: #fff;
  padding: 0px 10px;
}
cart-items
  .custom_card_recommendation
  .custom_drop_down_size
  .sizeoptions
  ul {
  padding-left: 0px;
  list-style: none;
}
cart-items
  .custom_card_recommendation
  .card_recommendation_container
  .card_recommendation_title {
  margin-bottom: 4px;
  color:#000;
  font-weight:600;
}
cart-items
  .custom_card_recommendation
  .card_recommendation_container
  .custom_product_variant_container {
  margin-top: 5px;
  padding-bottom:10px;
  width:50%;
  display: flex;
  gap: 6px;  
}
.main-card-recommendation
  .custom_drop_down_size
  .custom_complementary_addproduct {
  width: fit-content;
  padding: 0px 20px;
  color: #fff;
}
.custom_card_recommendation .main-card-recommendation {
  width: 100%;
}

.custom_selected_variant.cart_custom_variants_pills {
  border: 1px solid transparent;
  display: flex;
  border-radius: 100px;
  padding: 0.3rem;
  cursor:pointer;
} 

.custom-atc-drawer-container{
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  width:40%;
}

.custom_card_recommendation product-form{
  text-align:right;
}

.custom_complementary_addproductdrawer {
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 4px;
  background: #000;
  color: #fff;
  cursor:pointer;
  font-weight:400;
}

.custom_card_recommendation .price-item{
  text-align:right;
  color:#000;
  font-weight:600;
}

.cart_custom_drop_down_size  .sizeselectedvar{
  display:flex;
  height: 38px;
  min-width: 78px;
  border: 1px solid #00000030;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url(data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7" fill="none"><path d="M11 1L6 6L1 1" stroke="black" stroke-linecap="round"/></svg>);
  background-repeat: no-repeat;
  background-position-x: 70%;
  background-position-y: 50%;
  border-radius: 2px;
  margin-right: 1rem;
  padding: 0rem 1rem;
  color: #000;
  font-size: 16px;
  align-items: center;
  gap:8px;
  justify-content:center;
}

.custom_selected_variant.cart_custom_variants_pills.selected{
  border:1px solid #d5bf87 !important;
}

.cart_custom_drop_down_size .sizeoptions .sizeoptionslist{
  background: #fff none repeat scroll 0 0;
  display: none;
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 78px;
  min-width: 78px;
  border: 1px solid #63666a30;
  z-index: 99;
  margin-top: 0;
  text-align: left;
  padding: 4px 0;
}  

.cart_custom_drop_down_size .sizeoptions .sizeoptionslist li{padding: 4px 8px;}
.cartsizeoptionslist.show{display:block !important;}
.cart_list_link_wrapper .mavie-button{width:80%;justify-content:center;margin:0 auto;background-color:#000;}
cart-items .cart_list_link_wrapper .mavie-button{border-radius:4px;max-width:360px;width:100%;justify-content:center;margin:0 auto;background-color:#000;}
.cart_list_link_wrapper{display:flex;flex-direction: column;gap: 20px;}
.discount_totals{display: flex;align-items: center;justify-content: space-between;}
cart-items .drawer__contents{padding:20px 0px;}
cart-items .cart__items{border-bottom:0px;}
cart-items .product-option{font-size:15px;}
cart-items .cart-item cart-remove-button{margin-top:0px;}
cart-items .tax-note{font-size:16px;}
cart-items .cart-item .loading__spinner{position:absolute;top:50%;transform: translateY(-50%);}
cart-items .cart_list_link_wrapper{gap:12px;}
cart-items .cart__empty-text{text-transform: capitalize;}
cart-items .cart-item__error{position:absolute;left:0px;bottom:0px;margin-top:0px;}
cart-items .cart-item__quantity{position:relative;}
cart-items .cart-item__error-text{margin-bottom:0px;}
cart-items .custom_main_cart-item.errorcartitemmain{padding-bottom:30px;}
cart-items .cart-item__media{width:100px;max-width:100px;min-width:100px;}


@media all and (max-width:1440px){
  .custom-cart-item-container{gap:60px;}
  cart-items .custom-main-cart-items{width:calc(59% - 60px);}
  cart-items .custom-marin-cart-footer{width:41%;}
}

@media all and (max-width:1160px){
  cart-items .custom-main-cart-items{width:calc(70% - 60px);}
  cart-items .custom-marin-cart-footer{ width:30%;}
  cart-items .custom_main_cart-item.errorcartitemmain{padding-bottom:60px;}
}

@media all and (max-width:990px){
 .custom_complementary_addproductdrawer{font-size:12px;padding:8px 10px;}
  cart-items .custom-main-cart-items{width:100%;}
  cart-items .custom-marin-cart-footer{width:100%;}
  cart-items .cart-item__image{max-width:100px;}
  cart-items .cart-item > td + td{padding-left:0px;}
  cart-items .cart__items{padding-top:20px;}
  cart-items .cart-item{gap:0px 8px;}
  cart-items .title-wrapper-with-link .title{font-size:28px;}
  cart-items .custom-marin-cart-footer .title{font-size:28px;text-align:left;color:#000;font-weight:400;padding-top:20px;}
  cart-items .custom-cart-item-container {gap:20px;}
  cart-items .cart-item__name{font-size:15px;}
  cart-drawer-items .cart-item__name{font-size:15px;}
  cart-items .product-option{font-size:14px;}
  cart-items .cart-item__price-wrapper .price{font-size:14px;}
  cart-items .cart-item__totals{display:block;text-align:left !important;}
  cart-items .cart-item .cart-item__quantity{display: flex;align-items: center;justify-content: space-between;margin-top:10px;}
  cart-items .cart-item .loading__spinner{position:relative;top:unset;transform:unset;}
  cart-items .cart_list_link_wrapper .mavie-button{width:100%;max-width:100%;}
  cart-items .cart__empty-text{font-size:28px;}
  cart-items .tax-note{font-size:14px;}
  cart-items .custom_main_cart-item.errorcartitemmain{padding-bottom:50px;}
}
