/** Shopify CDN: Minification failed

Line 73:4 Unexpected "{"
Line 73:5 Expected identifier but found "%"
Line 74:4 Unexpected "{"
Line 74:5 Expected identifier but found "%"
Line 97:16 Expected identifier but found "{"
Line 97:17 Unexpected "{"
Line 97:24 Expected ":"
Line 97:28 Expected identifier but found "!"
Line 98:13 Expected identifier but found "{"
Line 98:14 Unexpected "{"
... and 15 more hidden warnings

**/

    @media(min-width:768px){
      .product-image-width.large .product-slideshow  {  padding:0 19vw;} 
    }
    @media(min-width:769px){
      .medium-up--hide{display:none;}  
      .meta-section-1 .text-wrapper{top:50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);}  
      .ctm_image_wapper li a {    display: block;    margin: 0 auto;    width: 100%; border-bottom:transparent solid 2px;}  
    }

    @media(max-width:768px){    
      .small--hide-cus{display:none;}  
      .meta-section-1 .text-wrapper {bottom:30px; width:100%;   text-align:center;}
    } 
    .mobile-nav__sublist ul { padding-bottom:15px; margin-left: 0; }
    .mobile-nav .ctm_image_wapper{ -webkit-flex-flow: row wrap; flex-flow: row wrap;  -ms-flex-flow: row wrap;}  
    .mobile-nav .ctm_image_wapper li { padding: 0 10px 18px;}
    .mobile-nav .mega-tite { font-size: 16px;}
/*     .mobile-nav .ctm_image_wapper li a {    padding: 0;} */
    .ctm_image_wapper li a{ padding: 30px 20px; }

    @media(max-width:767px){ 
      .meta-section-1 .text-wrapper h2{font-size:38px;}
      .meta-section-1 .text-wrapper h3{font-size:15px;}
      .earbuds-product-icon ul li h5{font-size:12px;}
      .earbuds-product-icon ul li{margin:0 0 10px;}
    }

    @media(max-width:590px){
      .colletion-content-main {
        position: absolute;
        max-width: 1400px;
        padding: 0 20px;
        margin: 0 auto;
        top: 60px;
        left: 0;
        right: 0;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        text-align: center;
      }  
      .earbuds-product-icon ul li{width:50%;}    
    }
@media only screen and (min-width:590px) {
    .ajaxcart__note {
/*           text-align: center; */
    }
}
    .compare_sec_wrapper .swatch [type="radio"]:checked + label, .compare_sec_wrapper .swatch [type="radio"]:not(:checked) + label   {
      padding-left:0;
    }

    /* 
    Swatches Styles
    */

    {% assign width = '24px' %}
    {% assign height = '24px' %}
    /* Label */
    .swatch .header {
      margin: 0.5em 0;
    }
    /* Hide radio buttons.*/
    .swatch input {
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
    }
    .swatch label {
      user-select:none;
      /* Rounded corners */
      -webkit-border-radius:2px;
      -moz-border-radius:2px;
      border-radius:2px;
      /* To give width and height */
      float:left;
      /* Color swatches contain no text so they need to have a width. */
      min-width:{{ width }} !important; 
      height:{{ height }} !important;
      /* No extra spacing between them */
      margin:0;
      /* The border when the button is not selected */
      /* border:#ccc 1px solid; */
      /* Background color */
      background-color:#ddd;
      /* Styling text */
      font-size:13px;
      text-align:center;
      line-height:{{ height }};
      white-space:nowrap;
      text-transform:uppercase;
      border-radius:100%;
    }
    .swatch-element label { padding:0 10px; }
    /* Styling selected swatch */
    /* Slightly raised */
    .swatch input:checked + label {
      -webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.8);
      -moz-box-shadow:0px 1px 2px rgba(0,0,0,0.8);
      box-shadow:0px 1px 2px rgba(0,0,0,0.8);
      border-color:transparent;
    } 
    .swatch .swatch-element {
      float:left;
      -webkit-transform:translateZ(0); /* webkit flicker fix */
      -webkit-font-smoothing:antialiased; /* webkit text rendering fix */
      /* Spacing between buttons */
      margin:1px;
      /* To position the sold out graphic and tooltip */
      position:relative;
    }
    .swatch .header+.swatch-element, .swatch .header+.swatch-element label {
      margin-left: 0 !important;
    }
.swatch-element.color+a:hover {
    color: #ff7700;
}
.swatch-element.color+a {
    transition: .3s all ease-in-out;
}
    /* Image with the cross in it */
    .crossed-out { position:absolute; width:100%; height:100%; left:0; top:0; }
    .swatch .swatch-element .crossed-out { display:none; }
    .swatch .swatch-element.soldout .crossed-out { display:block; }
    .swatch .swatch-element.soldout label {
      filter: alpha(opacity=60); /* internet explorer */
      -khtml-opacity: 0.6;      /* khtml, old safari */
      -moz-opacity: 0.6;       /* mozilla, netscape */
      opacity: 0.6;           /* fx, safari, opera */
    }
    /* Tooltips */
    .swatch .tooltip {
      text-align:center;
      background:gray;
      color:#fff;
      bottom:100%;
      padding: 10px;
      display:block;
      position:absolute;
      width:100px;
      left:{{ width | remove: 'px' | to_number | divided_by: 2 | minus: 50 | plus: 2 }}px;
      margin-bottom:15px;
      /* Make it invisible by default */
      filter:alpha(opacity=0);
      -khtml-opacity: 0;
      -moz-opacity: 0;
      opacity:0;
      visibility:hidden;
      /* Animations */
      -webkit-transform: translateY(10px);
      -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
      -o-transform: translateY(10px);
      transform: translateY(10px);
      -webkit-transition: all .25s ease-out;
      -moz-transition: all .25s ease-out;
      -ms-transition: all .25s ease-out;
      -o-transition: all .25s ease-out;
      transition: all .25s ease-out;
/*       -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28); */
      z-index: 10000;
      -moz-box-sizing:border-box; 
      -webkit-box-sizing:border-box; 
      box-sizing:border-box;
    }
    .swatch .tooltip:before {
      bottom:-20px;
      content:" ";
      display:block;
      height:20px;
      left:0;
      position:absolute;
      width:100%;
    }
    /* CSS triangle */
    .swatch .tooltip:after {
      border-left:solid transparent 10px;
      border-right:solid transparent 10px;
      border-top:solid gray 10px;
      bottom:-10px;
      content:" ";
      height:0;
      left:50%;
      margin-left:-13px;
      position:absolute;
      width:0;
    }
    .swatch .swatch-element:hover .tooltip {
      filter:alpha(opacity=100);
      -khtml-opacity:1;
      -moz-opacity:1;
      opacity:1;
      visibility:visible;
      -webkit-transform:translateY(0px);
      -moz-transform:translateY(0px);
      -ms-transform:translateY(0px);
      -o-transform:translateY(0px);
      transform:translateY(0px);
    }
.cart__footer .txpress-wrapper    .swatch.error {
      background-color:#E8D2D2!important;
      color:#333!important;
      padding:1em;
      border-radius:5px;
    }
    .swatch.error p {
      margin:0.7em 0;
    }
    .swatch.error p:first-child {
      margin-top:0;
    }
    .swatch.error p:last-child {
      margin-bottom:0;
    }
    .swatch.error code {
      font-family:monospace;
    }

    .acc {
      margin: 0 auto;
      max-width: 100%;
    }

    .acc__card {
      margin: 0;
      position: relative; 
      border-bottom: 1px solid #ddd;
      margin-bottom: 15px !important;
      border-radius: 8px !important;
      overflow: hidden;
      border-color: transparent !important;
    }

    .acc__title {
      background: #fff;

      cursor: pointer;
      display: block;
      padding: 12px 0;
      position: relative;
      text-align: left; font-weight:bold;
    }
    .acc__title::after {
      width: 8px;
      height: 8px;
      border-right: 1px solid #4a6e78;
      border-bottom: 1px solid #4a6e78;
      position: absolute;
      right: 10px;
      content: " ";
      top: 17px;
      transform: rotate(-45deg);
      transition: all 0.2s ease-in-out;
    }
    .acc__title.active::after {
      transform: rotate(45deg);
      transition: all 0.2s ease-in-out;
    }

    .acc__panel {
      background: #fff;
      color: #212121;
      display: none;
      margin: 0;
      padding: 15px 0;
      text-align: left;
    }

    .compare_sec_wrapper .swatch .swatch-element .tooltip{
      display:none;
    }
    .compare_sec_wrapper .header{display:none;}

    .compare_sec_wrapper .swatch{
      margin:30px auto 0;
      text-align:center;
    }
    .compare_sec_wrapper .swatch .swatch-element{
      display:inline-block;
      float:none;
      margin:0 8px;
    }



    .swatch.clearfix .swatch-element.ctm_active label {
      box-shadow: 0 0 0 1px #f7631f !important; border: #fff 3px solid;
    } 

    .grid-product__tag.grid-product__tag--sold-out {
      top: 10px;
      right: 0;
      left: auto;
    }
    label.sortby-label {
      letter-spacing: 0;
      margin-right: 7px;
    }    

    span.collection_count_text {padding-top:13px;    display:block;}    

    .result_div{
      display: none;
    }
    .result_div.ctm_active{
      display:block;
    }

    .result_div {
      border: #e8e8e1 solid 1px;
      border-radius: 5px;
      position: absolute;
      background: #fff;
      top: 79px;
      z-index: 1;
    }
    .coll_product ul {
      margin: 0px !important;
      padding: 0 10px;
      list-style: none;
      font-size: 14px;
    }

    .result_div .coll_head {
      background: #000;
      color: #fff;
      padding: 5px 10px;
      font-size: 16px;
      margin: 0 0 9px;
    }
    .coll_product ul li {    padding: 5px 7px;}
    .coll_product ul li:hover{background:#e8e8e1;}    
    .result_div.ctm_active {
      overflow: auto;
      max-height: 300px;
    }    

    /* width */
    .result_div::-webkit-scrollbar {
      width: 5px;
    }

    /* Track */
    .result_div::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    /* Handle */
    .result_div::-webkit-scrollbar-thumb {
      background: #333;
    }

    /* Handle on hover */
    .result_div::-webkit-scrollbar-thumb:hover {
      background: #555;
    }    

    .product-select {
      position: relative;
    }    

    .video-fit{
/*       width:100%; */
      max-width:100%;
/*       pointer-events:none; */
    }    
    video.video-div.video-category-home {
      max-width: 200px;
      pointer-events:none;
    }

    @media(max-width:589px){
      .template-search .grid-product__content .grid-product__link {
        display: inline-flex;
        align-items: center;
        /*         flex-wrap: wrap; */
        width: 100% !important;
        padding: 15px 0 !important
      }   
    }
    @media(min-width:589px) and (max-width: 1024px){
      .template-search .grid-product__content .grid-product__link, .template-search .grid-product__content .grid-product__link .grid-product__meta {
        width: 100% !important;
      }
    }
    @media(max-width:589px){
      .product-slideshow .flickity-prev-next-button.flickity-next {
        right: -5px;
      }
      .product-slideshow .flickity-prev-next-button.flickity-next svg{
        right: 0px;
      }
      .product-slideshow .flickity-prev-next-button.flickity-previous {
        left: -5px;
      }
      .product-slideshow .flickity-prev-next-button.flickity-previous svg{
        left: 0px;
      }
    }

    .ot-estimated-shipping-shipping-methods-select-box h4 {
      color: #fff !important;
    }
    .ot-estimated-shipping-shipping-methods-select-box{
      margin-top: 30px;
    }

    .ot-estimated-shipping-item-shipping-method label {
      display: none !important;
    } 

    span.tag-line {
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1px;
    }    

    .customer-form {
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    .drawer__inner .cart-announcement, .cart__footer .cart-announcement {
      border: 2px dotted #ddd;
      padding: 10px 15px;
      border-radius: 10px;
      margin-bottom: 20px;
      display: flex;
      flex-flow: column;
      background-color: #f4f4f4;
      text-align: center;
    }
    .drawer__inner .cart-announcement strong, .cart__footer .cart-announcement strong{
      font-size: 16px;
    }
    .drawer__inner .announcement-info, .cart__footer .announcement-info{
      display: flex;
      font-size: 14px;
    }
    .drawer__inner .announcement-info .image svg, .cart__footer .announcement-info .image svg{
      width: 20px;
    }
    @media(min-width:768px){
      .drawer__inner .announcement-info .image, .cart__footer .announcement-info .image{
        margin-right: 7px;
      }
    }
    @media(max-width:767px){
      .drawer__inner .announcement-info .image, .cart__footer .announcement-info .image{
        margin-right: 5px;
      }
      
    }
    .drawer__inner .gokwik-checkout button, .cart__checkout-wrapper .gokwik-checkout button {
      max-width: 100% !important;
      border: 2px solid #000 !important;
    }
    .drawer__inner .gokwik-checkout button:not(:hover), 
    .cart__checkout-wrapper .gokwik-checkout button:not(:hover) {
      background-color: transparent !important;
      border-color: #000 !important;
    }
    .drawer__inner .gokwik-checkout button:not(:hover), 
    .drawer__inner .gokwik-checkout button:not(:hover) span, 
    .cart__checkout-wrapper .gokwik-checkout button:not(:hover), 
    .cart__checkout-wrapper .gokwik-checkout button:not(:hover) span {
      color: #000;
    }		
    .cart__checkout-wrapper .gokwik-checkout button:hover{
      background-color: #000;
    }
    .drawer .cart__checkout small, 
    .cart__checkout-wrapper .cart__checkout small{
      font-size: 8px;
      line-height: 12.135px;
    }
    .drawer button.cart__checkout, 
    .cart__checkout-wrapper button.cart__checkout{
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: left;
      padding: 7px 10px;
      min-height: 48px;
    }
    .drawer button.cart__checkout .image, 
    .cart__checkout-wrapper button.cart__checkout .image  {
      margin-left: 15px;
      display: inline-flex;
      align-items: center;
    }
    .drawer__inner .announcement-info span.saving, 
    .cart__checkout-wrapper .announcement-info span.saving{
      font-weight: 600;
    }
    
    .drawer-viewcollection {
      display: flex;
      justify-content: center;
      padding-bottom: 30px;
    }
    .drawer-viewcollection a.btn {
      color: #fff;
      padding: 10px 30px;
    }
    @media(min-width: 768px){
      .drawer-viewcollection{
/*       	margin-top: 30px; */
      }
    }
    .product-widget {
      display: flex;
      flex-wrap: wrap;
      background-color: #f5f5f5;
      border-radius: 8px;
      transition: .2s box-shadow ease-in-out;
    }
    .product-widget ul li {
      font-size: 12px;
      line-height: 1.3em;
      padding: 3px 0 4px 20px;
      position: relative;
      display: inline-flex;
      width: 100%;
    }
    .product-widget ul {
      margin-left: 0;
      margin-bottom: 0;
      display: inline-flex;
      flex-flow: column;
    }
    .product-widget .product-features {
      display: flex;
      flex-wrap: wrap;
      position: relative;
    }
    .product-widget .product-features h3 {
      font-size: 13px;
      margin-bottom: 10px;
      line-height: 18px;
    }
    .product-widget .product-features h3, 
    .product-widget .product-features h2{
      width: 100%;
    }
    .product-widget .info h2 {
      margin-bottom: 15px;
      font-size: 18px;
    }
    .product-widget .simg a {
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      background-color: #fff;
      display: inline-flex;
    }
    .product-widget .product-features a.top-link {
      position: absolute;
      right: 0;
      font-size: 10px;
      color: #2f4c82;
    }
    .product-widget .info .product-features-wrapper, 
    .product-widget .info .extra, .product-widget .simg a{
      padding: 15px 20px;
    }
    .product-widget ul li:before {
      content: '✔';
      position: absolute;
      left: 0;
      font-weight: 700;
    }
    
    .product-widget span.price {
      position: absolute;
      bottom: 0;
      font-weight: 700;
      display: inline-block;
      background-color: #ffffffb5;
      width: 100%;
      left: 0;
      text-align: center;
      right: 0;
      padding: 5px 10px;
    }
    
    .product-widget .extra span.price-drop.positive {
      font-size: 14px;
    }
    
    .product-widget .extra {
      justify-content: center;
      display: flex;
      flex-flow: column;
    }
    
    .product-widget .info {
      display: flex;
      flex-wrap: wrap;
    }
    .product-widget .simg{
    	position: relative;
    }
    .product-widget .simg img {
      max-width: 240px;
    }
    
    .product-widget .info .product-features-wrapper {
      flex: 2;
      padding-bottom: 0;	
    }
    .product-widget ul {
      width: 50%;
    }
   
    
    @media(min-width: 992px){
      .product-widget .simg{
        flex: 1;
      }
      .product-widget .extra {
        width: 100%;
      }
      .product-widget .info {
        flex: 3;
      }
    }
    @media(max-width: 991px){
      .product-widget .extra, .product-widget .simg {
        width: 100%;
      }
    }
    @media(max-width:768px){
      .product-widget .extra, .product-widget .simg, .product-widget .info {
        width: 100%;
      }
    }
    @media(min-width:1201px){
      .product-widget:not(:hover){
        box-shadow: -6px 8px 1px 2px #ffc0c014;
      }
      .product-widget:hover{
        box-shadow: 6px 8px 1px 2px #ffc0c014;
      }
    }
    .product-widget span.price strike {
      color: #6b6b6b;
      font-weight: 600;
      text-decoration-thickness: 2px;
      text-decoration-line: line-through;
    }
    .product__thumbs--below .product__thumbs--scroller .image-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 !important;
      border-radius: 8px;
      width: 100%;
      height: 100% !important;
    }
    .pswp__scroll-wrap button.btn.btn--circle.btn--large.pswp__button.pswp__button--close:not(:hover) {
      background-color: #fffc;
    }
    
    @media(max-width: 1500px){
      body.template-product.cart_scrolled .doubly-float {
        bottom: 130px;
      }	
      
      body.template-product .doubly-float {
        transition: .3s bottom ease-in-out;
      }	
    }
    
    .drawer-viewcollection a.text-btn {
      border-bottom: 2px solid;
      padding: 0 5px;
      font-weight: 600;
/*       letter-spacing: 0.5px; */
    }

/* .main_slideshow:not(.flickity-enabled) .main_slideshow-cell:not(:first-child) {
    display: none;
} */
    .main_slideshow .flickity-viewport{
    	height: auto;
    }
    .main_slideshow .flickity-viewport .flickity-slider, .main_slideshow .flickity-viewport .flickity-slider .main_slideshow-cell {
      	position: relative;
    }
    .ctm_image_wapper li a:hover, .ctm_image_wapper li a.active{color:#b9b9b9;    box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);background-image: radial-gradient(#00000078,#000000bf);}  
    .ctm_image_wapper li a.active .mega-tite, .ctm_image_wapper li a:hover .mega-tite {color: #fff;}	
    .ctm_image_wapper li a {
      padding: 16px;
      border-bottom: transparent solid 2px;
      background-color: #f5f5f5!important;
      border-radius: 8px;
      display: flex;
      flex-flow: column;
      justify-content: center;
      align-items: center;
      background-image: radial-gradient(#00000000,#00000000);
    }
    .ctm_image_wapper li:not(.site-nav__item) a{
      transition: .3s all ease-in-out;
    }
    .main_slideshow:not(.flickity-enabled) .main_slideshow-cell:not(:first-child){
    	display: none;
    }
    
    .main_slideshow {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    @media(max-width:480px){
      .main_slideshow {
        min-height: 455px;
      }
    }
/*     .main_slideshow .flickity-page-dots {
      width: auto;
      background-color: #fffffff2;
      display: inline-flex;
      padding: 8px 10px;
      border-radius: 20px;
      margin-left: -30px;
    } */
    .main_slideshow .flickity-page-dots li {
      background-color: currentColor;
      display: inline-block;
      height: 5px;
      margin: 0 5px;
      cursor: pointer;
      border: 2px solid;
      border-color: currentColor;
      border-radius: 4px;
      transition: .3s width ease-in-out;
    }
    .main_slideshow .flickity-page-dots li:not(.is-selected) {
      background-color: #ccc;
      border-color: #ccc;
      opacity: 1;
    }
    .main_slideshow .flickity-page-dots li.is-selected { 
      background-color: #fa551a;
      border-color: #fa551a;
    }
    .main_slideshow .flickity-page-dots li.is-selected {
      width: 50px;
      height: 6px;
    }
    .main_slideshow .flickity-page-dots li:not(.is-selected) {
      width: 6px;
      height: 6px;
    }
    .flickity-prev-next-button .flickity-button-icon, .swiper-button .flickity-button-icon{
      left: 25% !important;
      top: 25% !important;
      width: 50% !important;
      height: 50% !important;
    }
    
    .flickity-prev-next-button:hover svg, .swiper-button:hover svg {
      fill: #000;
    }
    
    @media(max-width: 991px){
      .main_slideshow button.flickity-button {
        display: none;
      }
    }
    
    .main_slideshow.flickity-enabled.is-fade .main_slideshow-cell {
      transition: .3s opacity ease-in-out;
    }
    .main_slideshow.flickity-enabled.is-fade .main_slideshow-cell.is-selected{
    	opacity: 1;
    }
    .main_slideshow.flickity-enabled.is-fade .main_slideshow-cell:not(.is-selected){
    	opacity: 0;
    }
    .flickity-prev-next-button:not(:hover), .swiper-button:not(:hover) {
      opacity: .7;
    }
    
    .collection-tabber-section .flickity-container.product-video-cards .flickity-wrapper .flickity-viewport {
/*       min-height: 70vh !important; */
    }
    .collection-tabber .flickity-container.product-video-cards .flickity-wrapper .flickity-slider {
      position: relative !important;
    }
    .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide span, 
    div[data-section-type="featured-collection"] .collection-switches.section-header .collection-switcher__title span {
      transition: .3s all ease-in-out;
      display: inline-block;
      font-weight: 500;
      font-size: 18px;
      white-space: nowrap;
      cursor: pointer
  }
  .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide span{
      border-bottom: 2px solid;
  }
  .collection-tabber .flickity-container.product-video-cards .product-media img {
    display: block;
    object-fit: cover;
  }
  div[data-section-type="featured-collection"] .collection-switches.section-header .collection-switcher__title span:not(.is-active){
    border-color: transparent !important;
  }

  .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide.is-selected.is-nav-selected span, 
  div[data-section-type="featured-collection"] .collection-switches.section-header .collection-switcher__title span.is-active{
    font-weight: 600;
  }
  .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide:not(:hover) span, 
  .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide:not(:focus) span, 
  .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide:not(.is-selected.is-nav-selected) span {
    border-color: transparent;
  }
  .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide.is-selected.is-nav-selected span{
    border-color: #444444;
    background-color: transparent;
  }
  .tabber-thumb-container {
    width: 100%;
  }
  .tabber-thumb-container .tabber-thumb-wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    cursor:pointer;
  }
  @media(max-width:600px){
    .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide {
      padding: 10px 17px;
    }
    .collection-tabber-section .product-video-cards .product-media {
/*       min-height: 70vh !important; */
      height: auto;
      width: calc(100vw - 55px);
      max-width: 100%;
      overflow: hidden;
    }
  }
  @media(min-width:601px){
    .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide {
      padding: 10px 30px;
    }
  }
  .tabber-thumb-container .tabber-thumb-wrapper .tabber-thumb-slide span {
    font-weight: 600;
  }
  .flickity-wrapper:not(.flickity-enabled) .flickity-slide:not(:first-child), 
  .tabber-thumb-wrapper:not(.flickity-enabled) .tabber-thumb-slide:not(:first-child) {
    display: none !important;
  }
 
  .tabber-thumb-wrapper:not(.flickity-enabled) .flickity-slider {
    display: flex !important;
  }
  .collection-tabber .flickity-slide-wrapper img.product-banner {
    height: 300px;
    object-fit: contain;
    object-position: center;
  }
  .collection-tabber .flickity-slide-wrapper .product-infos .info-ttile {
    margin-bottom: 10px;
    font-weight: 800;
  }
  .collection-tabber .section-header .section-header__title {
    text-transform: uppercase;
    font-weight: 800;
  }
  .collection-tabber .flickity-slide-wrapper {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12.5px;
    padding-right: 12.5px;
  }
  @media(min-width: 601px){
    .collection-tabber .flickity-slide-wrapper {
      padding-top: 20px;
    }
  }
  @media(max-width: 600px){
    .collection-tabber .flickity-slide-wrapper {
      padding-top: 4.5vh;
    }
    .collection-tabber .flickity-slide-wrapper .product-infos{
      padding-top: 5vh;
    }
    .collection-tabber .flickity-slide-wrapper img, .collection-tabber .flickity-slide-wrapper video {
      height: 100% !important;
      width: 100%;
    }
    .collection-tabber .flickity-slide-wrapper .product-infos .info-ttile {
      font-size: 34.8px;
    }
  }
  .collection-tabber .section-header {
    margin-bottom: 15px;
  }
  .collection-tabber .flickity-slide-wrapper .product-infos {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  html body .collection-tabber .flickity-slide-wrapper .product-infos .product-widget__ryviu .ryviu-widget-box .r--stars-item span.r--star-grade.my {
    color: #000 !important;
  }
  @media(min-width: 601px) and (max-width: 991px){
    .collection-tabber .flickity-slide-wrapper .product-infos  {
      padding-top: 30px;
    }
  }
  .collection-tabber .flickity-slide-wrapper .product-infos .product_description, 
  .collection-tabber .flickity-slide-wrapper .product-infos .product_description *{
    letter-spacing: .5px;
    font-size: 16.1px;
    line-height: 18px;
    margin-bottom: 0px;
    font-weight: 400;
  }
  .collection-tabber .flickity-slide-wrapper .product-infos .product_description {
    margin-bottom: 15px;
  }
 .collection-tabber .flickity-container.product-video-cards .flickity-slide .flickity-slide-wrapper .product-media {
    /* width: 100% !important; */
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f5f5f5;
}
.collection-tabber .flickity-container.product-video-cards .flickity-slide:not(.is-selected) .flickity-slide-wrapper {
transform: scale(0.9) !important;
opacity: .3;
}
   
  .swiper-pointer-events {
    overflow-x: hidden;
  }  
  .collection-tabber:nth-child(even) {
/*     background-color: #f5f5f5; */
  }

  .section-spacing {
    padding-top: 50px;
    padding-bottom: 50px;
  }  
  .price-infos span {
    display: inline-block;
  }
  .price-infos span.product_price.lowestPrice {
    font-weight: 600;
    font-size: 21px;
    line-height: 27px;
  }
  .price-infos {
    margin-bottom: 5px;
  }
    .collection-tabber .flickity-slide-wrapper .product-media {
      display: inline-block;
      position: relative;
    }
    .collection-tabber .flickity-slide-wrapper .product-media span.audio-control {
      position: absolute;
      left: 0;
      background: #fff;
      z-index: 1;
      display: inline-flex;
      min-width: 42px;
      min-height: 42px;
      bottom: 30px;
      left: 20px;
      border-radius: 50%;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 20px 0 rgb(0 0 0 / 30%);
    }
    .collection-tabber .flickity-slide-wrapper .product-media span.audio-control img{
    	width: 20px;
      	height: 20px;
    }
    
    .collapsible-content__inner--faq * {
      font-size: 16px;
      line-height: 27px;
      letter-spacing: .5px;
    }
    .product-media *{
    	transition: .3s all ease-in-out;
    }
    .product-media video {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      object-fit: cover;
    }
    
    @media(max-width:480px){
      .product-menu-cards:not(.flickity-enabled) .grid__item.grid-product.style-1 .grid-product__content, 
      .product-menu-cards.product-column--1 .grid__item.grid-product.style-1 .grid-product__content {
        padding: 2px;
      }
      .product-menu-cards:not(.flickity-enabled) .grid__item.grid-product.cta-not-active.style-2 .grid-product__content {
        padding: 0px 10px 20px 10px;
      }
      .product-menu-cards:not(.flickity-enabled) .grid__item.grid-product.cta-active.style-2 .grid-product__content {
        padding: 0px 10px 10px 10px;
      }
      .product-menu-cards.product-column--1 .grid__item.grid-product.style-2 .grid-product__content {
        padding: 0px;
      }
      .product-menu-cards:not(.flickity-enabled) .grid__item.grid-product .grid-product__content, 
      .product-menu-cards.product-column--1 .grid__item.grid-product .grid-product__content {
        display: flex;
        flex-flow: row;
        /* align-items: flex-start; */
        border-radius: 8px;
        margin-bottom: 2.5px !important;
        /* border: 1px solid #ccc; */
        margin-top: 0;
      }
      div.grid-overflow-wrapper div.product-menu-cards .grid__item.grid-product .grid-product__content{
        flex-flow: column;
      }
      .custom-collection:not(.product-menu-cards.product-column--2) .grid__item.grid-product{
        width: 100% !important;
      }
      .custom-collection:not(.product-menu-cards.product-column--2) .grid__item.grid-product:not(:last-child) {
          border-bottom: 1px solid #ddd;
          margin-bottom: 2.5px;
      }
      .custom-collection:not(.product-menu-cards.product-column--2) .grid__item.grid-product .grid-product__content a.grid-product__link {
        width: 40% !important;
      }
      .custom-collection:not(.product-menu-cards.product-column--2) .grid__item.grid-product .grid-product__content .grid-product__meta {
        width: calc(100% - 40%);
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        margin-top: 0;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
      }
      .product-menu-cards.festive-theme .grid-product__content .atc-container { margin-top: 5px; }
    }

    @media(min-width:590px){
      .m-auto{
        margin-left: auto;
        margin-right: auto;
      }
    }
    
    @media(max-width:767px){
      div#zestmoney-widget-control {
        margin-bottom: 15px;
      }
    }
    
    @media(min-width: 601px){
      .cart__footer .txpress-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-end;
        flex-flow: column;
        align-items: flex-end;
        max-width: 100%;
      }
    }
    
    .cart__footer .txpress-wrapper {
      margin-bottom: 30px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 0;
      display: inline-block;
    }
    
    .drawer__footer .txpress-wrapper {
      max-width: 100%;
      padding-left: 0;
      text-align: center;
      margin-bottom: 15px;
    }
    
     .txpress-wrapper{
       width: 100%;
       float: unset;
       max-width: 420px;
       padding-left: 20px;
       margin-top: 25px;
     }
     .xpress-grid{
       float: right;
       width: 50%;
     }
     .txpress-wrapper .te-input-wrapper{
       display: flex;
     }
    	
    @media(min-width: 601px){
      .cart__checkout-wrapper .txpress-wrapper .te-input-wrapper {
        display: flex;
        justify-content: flex-end;
      }
    }
     .txpress-wrapper .redeem-coupon{
       margin-bottom: 0px;
       font-size:13px;
       min-height: 40px;
       max-width: 270px;
       border-radius: 2px 0 0 2px;
       text-align: left;
       padding: 10px 18px;
       border: 1px solid #949494;
       background-color: #fff;
       color: #000;
       line-height: 1.2;
       padding-left:35px;
     }
     .close-xpress-modal{
       cursor:pointer;
     }
     .redeem-btn{
       height: 40px;
       min-height: 40px;
       line-height: 21px;
       margin-left: 10px;
       -webkit-user-select: none;
       user-select: none;
       -webkit-appearance: none;
       -moz-appearance: none;
       appearance: none;
       display: inline-block;
       width: auto;
       text-decoration: none;
       text-align: center;
       vertical-align: middle;
       cursor: pointer;
       background:{{button_color}};
       border: 1px solid transparent;
       border-radius: 2px;
       padding: 8px 15px;
       color: {{text_color}};
       font-style: normal;
       font-weight: 600;
       text-transform: inherit;
       letter-spacing: 0.08em;
       white-space: normal;
       font-size: 14px;
     }
     .redeem-btn.disabled {
       background: #b6b6b6;
       background-color: #b6b6b6 !important;
     }
     .ticket-heading{
       font-size: 14px;
       font-weight:600;
       text-transform: inherit;
       padding-bottom: 15px;
       display: block;
     }
     .multi-redeem{
       display:block;
       font-size: 14px;
       text-decoration: underline;
       padding-top: 8px;
       padding-left: 5px;
       cursor:pointer;
       float: right;
     }
     .txpress-error,.redeem-error,.multiredeem-error,.voucher-err{
       display:none;
       font-size: 14px;
       color: #ff0000;
       padding-left: 5px;
       padding-top: 5px;
     }
   
     .txpress-error{
       margin-bottom:0px;
     }
   
     .success-msg,.response-msg{
       display:none;
       font-size: 14px;
       color: #4caf50;
       float:inherit;
       padding-left: 5px;
       padding-top: 5px;
     }
     .response-msg.txError{
       color:#f00;
     }
     .response-msg.txSuccess{
       color: #4caf50;
     }
     .xpress-modal{
       display: none;
       position: fixed;
       z-index: 1000;
       left: 0;
       top: 0;
       margin-top: 0 !Important;
       border-radius: unset !Important;
       max-width: 100% !Important;
       width: 100% !Important;
       height: 100% !Important;
       overflow: auto;
       background-color: #00000038;
       color: #2f343b;
       font-size: 17px;
       line-height: 2em;
       padding: 0 20px;
     }
     .xpress-modal-content{
       background-color:#fff;
       margin: auto;
       padding: 0px;
       width: 30%;
       width: auto;
       min-height: 164px;
       padding: 20px;
       transform: translateY(35vh);
       height: auto;
     }
     .xpress-header{
       position: absolute;
       right: 12px;
       top: 2px;
       font-size: 17px;
     }
     .redemption-wrapper{
       display:none;
       text-align:center;
     }
     .authenticate-title,.redemption-title{
       font-size: 16px;
       font-weight: 600;
       display: block;
       text-align: center;
       padding-bottom: 15px;
     }
     input.auth-pin{
       background-image: url('https://cdn.shopify.com/s/files/1/0012/0658/3356/files/key.svg?60349');
       background-repeat: no-repeat;
       background-size: 15px 15px;
       background-position: 8px;
       padding: 10px 15px 10px 35px;
     }
     .amount-wrapper{
      display:block;
      width:100%;
      margin: 0 auto;
    }
    .ticket-input{
      margin-bottom: 0px;
      font-size: 13px;
      min-height: 40px;
      width: 55%;
      max-width: 100%;
      border-radius: 2px 0 0 2px;
      text-align: left;
      padding: 10px 18px;
      border: 1px solid #383838;
      background-color: #fff;
      color: #383838;
      line-height: 1.2;
    }
    input.amount-redeem,input.multi_coupon_amount {
      background-image: url('https://cdn.shopify.com/s/files/1/0012/0658/3356/files/wallet_3.svg?60345');
      background-repeat: no-repeat;
      background-size: 15px 15px;
      background-position: 8px;
      padding:10px 15px 10px 35px;
    }
    .add-coupon{
      display: block;
      text-align: left;
      margin-top:2px;
      font-size: 14px;
      font-weight:700;
      float:left;
      cursor: pointer;
      text-decoration: underline;
    }
    .multiple-wrapper{
      display:none;
    }
    .multiple-wrapper .multi-couponbox{
      display: block;
      width: 80%;
      margin: 0 auto;
    }
    .multi_coupon{
      width: 100%;
      margin: 0 auto;
    }
    .flex-coupon{
      display:flex;
    }
    .flex-coupon input{
      margin-bottom:15px;
    }
    .remove-coupon{
      display:none;
      text-align: right;
      text-decoration:underline;
      width: 100%;
      font-size: 13px;
      cursor:pointer;
      position: absolute;
      top: 0;
    }
    .cloned .remove-coupon{
      display:block;
    }
    .multiple-boxes, .replicate-boxes{
      position: relative;
      margin-bottom: 15px;
      padding-bottom: 0px;
    }
    .replicate-boxes{
      border-bottom: 2px dashed #878787;
    }
    .replicate-boxes:last-child{
      border:none;
    }
    .replicate-boxes.cloned{
      padding-bottom:20px;
    }
    .replicate-boxes.cloned:last-child{
      padding-bottom:0px;
    }
    .multi-red-btn{
      text-align:right;
    }
    .input-item{
      margin-bottom:15px;
    }
    #response-wrapper{
      text-align:center;
    }
    #try-btn{
      display:none;
    }
    .voucher-details{
      font-size: 15px;
      padding-bottom: 5px;
      display: block;
    }
    input[name="multi_coupon"],input[name="coupon_box"]{
      background-image: url('https://cdn.shopify.com/s/files/1/0015/0765/5739/files/coupon.svg?233');
      background-repeat: no-repeat;
      background-size: 15px 15px;
      background-position: 8px;
      padding:10px 15px 10px 35px;
      margin-bottom:0px;
    }
    .multiple-boxes .balance-div{
      display:flex;
      justify-content: flex-end;
    }
    .balance-text,.balance-info{
      width: 100%;
      font-size: 14px;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .balance-color{
      color: #2196F3;
    }
    .balance-btn{
      margin-bottom: 0;
      cursor:pointer;
      width: 50%;
      display: block;
      text-align: right;
      font-size: 13px;
      letter-spacing:1px;
      background: #fff;
      text-decoration: underline;
      color: #000;
    }
    .voucher-bottom{
      margin-bottom: 0px;
    }
    .balance-text,.balance-info{
      display:none;
    }
    .balance-info{
      margin-left:5px;
      margin-top:5px;
    }
    .check-balance{
      display: block;
      font-size: 14px;
      text-decoration: underline;
      padding-top: 8px;
      padding-left: 5px;
      cursor: pointer;
      font-weight: 600;
    }
    .balance-div{
      display: flex;
      justify-content: space-between;
    }
    .voucher-box{
      display:flex;
      position:relative;
    }
    .cart__footer .txpress-wrapper .btn{
      background-image: unset !important; 
    }
    @media only screen and (max-width: 600px) {
      .xpress-modal-content{
        width:95%;
        min-width:95%;
      }  
      .amount-wrapper{
        display:block;
        width:100%;
      }
      .txpress-wrapper .te-input-wrapper{
        display:block;
      }
      .txpress-wrapper{
        padding-top:0px;
        float: unset;
        width: 100%;
        margin-bottom:20px;
      }
      .xpress-grid{
        float: unset;
        width: 100%;
      }
      .txpress-wrapper .redeem-coupon{
        max-width: 100%;
        width: 100%;
      }
      #coupon-redeem{
        margin: 0 auto;
        display: block;
        margin-top: 10px;
      }
      .ticket-input{
        width:100%;
      }
      .multiple-wrapper .multi-couponbox{
        width:100%;
      }
      .xpress-modal-content{
        transform: translateY(20vh);
      }
      .balance-div{
        display:block;
        padding-top: 10px;
        padding-bottom: 15px;
      }
      .check-balance{
        text-align:center;
      }
      .multi-redeem{
        float:unset;
        text-align:center;
      }
    }
	
    .articles-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .recent-blog-post-wrapper header.section-header {
        padding-top: 0 !important;
    }
    article.card-view .article__content {
      padding: 20px 0 0;
      max-width: 100%;
      flex: unset;
    }
    @media(max-width: 590px){
      article .article__content {
        padding: 20px 0 0;
      }
    }
    @media(min-width: 801px){
      article.card-view .article__content-meta .article__h3 {
        min-height: 51.23px;
      }
    }
    .article__date {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
    }
    .article__date:not(:empty){
      display:none;
    }
    .article__date .read-time {
      display: inline-flex;
      align-items: center;
      margin-right: 10px;
    }
    .article__date .read-time img {
      margin-right: 10px;
    }
    
    article.card-view .article__content{
    
    }
    article.card-view {
      display: flex;
      flex-flow: column;
    }
    article .rte.rte--block a.btn {
      margin-top: 20px;
    }
    
    article .rte.rte--block {
      display: flex;
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
    .blog-post-grid {
      display: flex;
    }
    .blog-post-grid article.card-view {
      margin-bottom: 20px;
    }
    .grid-overflow-wrapper::-webkit-scrollbar{display: none;}
    @media(min-width: 1401px){
      article.card-view .article__image.image-wrap .image-fit {
        height: 280px;
      }
    }
    @media(min-width: 801px) and (max-width:1400px){
      article.card-view .article__image.image-wrap .image-fit {
        height: 230px;
      }
    }
    @media(max-width: 800px){
      article .article__image.image-wrap .image-fit, 
      article.card-view .article__image.image-wrap .image-fit {
/*         height: 280px; */
      }
    }
    button#coupon-redeem {
      font-size: 13px;
    }
    
.product-slideshow:not(.flickity-enabled) .product-main-slide[data-index="0"] {
  display: block !important;
  opacity: 1 !important;
/*   background-color: #ccc; */
}

 form .field-body {
    width: 100%;
    display: inline-block;
  }
  form .field-body * {
    transition: .3s all ease-in-out;
  }
  form .field-body span.error-body {
    color: maroon;
    font-size: 16px;
    font-weight: 500;
  }
  form .field-body label, form .field-body textarea, 
  form .field-body input:not([type="checkbox"]):not([type="radio"]), 
  form .field-body button, form .field-body select {
    width: 100%;
    display: inline-block;
  }
  form .field-body select:invalid {
      font-style: italic;
      opacity: .7;
  }
  form .field-body {
    margin-bottom: 20px;
  }
  form .field-body textarea, form .field-body input[type="date"], form .field-body input[type="tel"], form .field-body input[type="text"], form .field-body input[type="email"], form .field-body input[type="number"], form .field-body select {
      background-color: #fff;
      border-radius: 4px;
      box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%) inset;
      transition: unset !important;
  }
    
a.txpress-trigger {
    display: inline-flex;
    width: 100%;
    font-weight: 600;
    font-size: 12px;
    justify-content: center;
}
a.txpress-trigger img {
    margin: 0 5px;
}

.intersting-topics-list {
/*     max-width: 600px; */
    padding-top: 40px;
    padding-bottom: 25px;
  }  
  @media(min-width: 601px){
    .intersting-topics-list {
      margin-left: auto;
      margin-right: auto;
    } 
  }
  a.topic-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    transition: .3s all ease-in-out;
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 0%);
  }
  a.topic-link:not(.card-style){
    padding: 15px 20px;
  }
  a.topic-link.card-style:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
  }
  a.topic-link.card-style .topic_infos {
    padding: 15px 15px;
  }
  a.topic-link.card-style .topic_infos h4.topic_name {
      min-height: 42px;
  }
  a.topic-link.card-style {
    display: inline-flex;
    flex-flow: column;
    align-items: flex-start;
  }
  a.topic-link.card-style img.topic_banner {
    object-fit: cover;
    margin-bottom: 0px;
  }
  a.topic-link img[alt="icon"] {
      height: 20px;
  }
  a.topic-link:hover {
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 20%);
  }
  a.topic-link img {
    transform: translateX(0px);
    transition: .3s all ease-in-out;
  }
  a.topic-link:hover img[alt="icon"] {
    transform: translateX(10px);
  }

.cart.cart-page-form div.cart__item + div:not([class]) {
    display: none;
}
.snap-emi-slogan {
    display: none;
}

.spotted_on.image_block .image-wrap, .promotion-slide {
    border-radius: 6px;
    box-shadow: 0 0 4px 0 rgba(97 97 97 / 20%);
    margin: 5px;
    overflow: hidden;
    display: inline-block;
    border-radius: 10px;
    position: relative;
}
.spotted_on.image_block .image-wrap, .promotion-slide, .promotion-slide video {
    object-position: center;
    object-fit: cover;
}

@media(min-width: 601px){
  .spotted_on.image_block .image-wrap, .promotion-slide, .promotion-slide video {
      max-width: 300px;
      height: 270px;
      width: 210px;
      min-width: 210px;
  }
}
@media(max-width: 600px){
  .promotion-slide, .promotion-slide video {
      max-width: 300px;
      height: 270px;
      width: 100%;
      min-width: unset;
      object-position: center;
  }
  .spotted_on.image_block .image-wrap, .spotted_on.image_block .promotion-slide{
     width: 100%;
      max-width: calc(50% - 20px);
      min-width: unset;
  }
}
.spotted_on .image-wrap:before, .promotion-slide:before {
    content: '';
    position: absolute;
    background-image: url(/cdn/shop/files/instagram.png?v=1660025063);
    width: 0%;
    height: 0%;
    background-repeat: no-repeat;
    background-size: 64px;
    background-position: center;
    background-color: rgba(255,255,255,.7);
    transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
}
.spotted_on .image-wrap:hover:before, .spotted_on .promotion-slide:hover:before{
    width: 100%;
    height: 100%;
  opacity: 1;
}

.spotted_on.image_block .image-wrap span.caption, .spotted_on .promotion-slide span.caption{
    font-weight: 700;
    position: absolute;
    bottom: 0;
    background-color: #ffffffe0;
    width: 100%;
    text-align: center;
    padding: 5px 15px;
    display: inherit;
    pointer-events: none;
    transition: .2s all ease-in-out;
    font-size: 12px;
}
.promotion-slide:hover span.caption{
  display: none;
}
.spotted_on.image_block .image-wrap img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spotted_on.image_block .image-wrap a, .promotion-slide a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.swiper-button svg {
    fill: #fff !important;
}
.drawer__inner .drawer__footer .snap_emi_txt_minicart{
    padding-top: 4px !important;
    padding-bottom: 0 !important;
}
.drawer__inner .drawer__footer {
    display: flex;
    flex-wrap: wrap;
}
.drawer__inner .drawer__footer .grid.grid--full {
    width: 100%;
}
.drawer__inner .drawer__footer .snap_emi_txt_minicart {
    width: 100%;
    order: 7;
}
.drawer__inner .drawer__footer .gokwik-checkout {
    margin-bottom: 5px;
}
a[disabled], .btn[disabled]{
    pointer-events: none;
}
div[data-aos="overflow__animation"] {
/*     overflow: hidden; */
}

.product-form-buttons:not([variant-available="false"]) .product-refferal-buttons a.reff-btn {
    display: none;
}
.product-refferal-buttons {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.ctm_image_wapper.minimal-mega-nav .shop-mega-nav, .mega-nav {
    height: 100%;
}
.page-width.ctm_image_wapper.minimal-mega-nav {
    max-width: 100%;
}
.ctm_image_wapper.minimal-mega-nav .shop-mega-nav {
    width: calc(100% + 20px);
}
.ctm_image_wapper.minimal-mega-nav .mega-nav-catalogs {
    overflow-y: auto;
    height: 100%;
    max-height: 100%;
    padding: 5px;
    position: relative;
}
ul.mega-menu-nav-catalog .drawer-viewcollection {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 10px;
}
ul.mega-menu-nav-catalog .drawer-viewcollection a.text-btn {
    background-color: #ffffffab;
}
ul.site-nav__dropdown.text-left.d-none {
    display: none;
}
ul.mega-menu-nav-list li.site-nav__item.site-nav__expanded-item:not(:last-child) {
/*       margin-bottom: 10px; */
}
ul.mega-menu-nav-list li.site-nav__item.site-nav__expanded-item {
    /* background-color: #eeeeee; */
    border-radius: 26px;
    font-weight: 700;
    cursor: pointer;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    text-align: left;
}
ul.mega-menu-nav-list li.site-nav__item.site-nav__expanded-item:not(.have-link){
    padding: 0px !important;
}
ul.mega-menu-nav-list li.site-nav__item.site-nav__expanded-item:not(.have-link), 
ul.mega-menu-nav-list li.site-nav__item.site-nav__expanded-item.have-link a{
  padding: 10px 30px;
}
ul.mega-menu-nav-list li.site-nav__item.site-nav__expanded-item.active{
    background-color: #000;
    color: #fff;
}
ul.mega-menu-nav-list li.site-nav__item.site-nav__expanded-item:not(.active):hover {
    background-color: #f0f0f0;
    color: #000;
}
ul.mega-menu-nav-list {
    margin: 0;
}
ul.mega-menu-nav-catalog {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.mega-nav.grid__item li.site-nav__item a {
    padding: 0;
    display: inherit;
    background-color: transparent !important;
    background-image: unset;
    box-shadow: unset;
    color: #000;
}
.mega-nav.grid__item li.site-nav__item.active a {
    color: #fff !important;
}
ul.mega-menu-nav-catalog:not(:last-child) {
/*       margin-bottom: 15px; */
}
.ctm_image_wapper.minimal-mega-nav {
    padding: 0;
}  
.mega-nav {
    background-color: #f8f8f8;
    padding: 20px 20px 20px 10px;
}

.product-menu-cards.festive-theme .grid-product__content  a.grid-product__link{
/*         background-image: url(/cdn/shop/files/holi-bg.png?v=1678170838);
    background-position: top;
    background-repeat: no-repeat; */
}

.product-menu-cards.festive-theme .grid-product__content .grid-product__tag1.grid-product__tag--custom1.tag-cus, 
.product-menu-cards.festive-theme .grid-product__content .grid-product__tag1.grid-product__tag--custom1.tag-cus p {
    background-color: #48cbed;
    color: #fff !important;
}
.product-menu-cards.festive-theme .grid-product__content .tag-cus {
    display: none;
}
@media(min-width:481px){
  .product-menu-cards.festive-theme .grid-product__image-mask{
    margin-top: 0px;
  }
}
@media(max-width: 480px){
  .product-menu-cards.festive-theme .grid-product__content .grid-product__meta .swatch {
      margin-bottom: -5px;
  }
}
.product-menu-cards.festive-theme .grid-product__content .grid-product__meta {
    border-radius: 0;
    background-color: #fff;
}
.product-menu-cards.festive-theme .grid-product__content .grid-product__meta form input.btn {
    border-radius: 0;
    background-color: #1d5e64 !important;
    margin-bottom: -35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}
.product-menu-cards.festive-theme .grid-product__content .grid-product__meta form {
    margin-top: 0 !important;
}
.product-menu-cards.festive-theme .grid-product__image-mask img.grid-product__image {
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
} 
@media(min-width: 1281px){
  .product-menu-cards.festive-theme .grid-product__image-mask img.grid-product__image { max-width: 90%; }
}
@media(min-width: 480px) and (max-width: 1280px){
  .product-menu-cards.festive-theme .grid-product__image-mask img.grid-product__image {
      max-width: 90%;
  } 
}
@media(min-width: 480px){ 
  .product-menu-cards.festive-theme .grid-product__image-mask {
      background-size: 90%;
      background-position-y: 95%;
      background-position-x: center;
  }
  .product-menu-cards.festive-theme .grid-product__content a.grid-product__link:before {
      background-size: 70%;
  }
}

.product-menu-cards.festive-theme a.grid-product__link {
  background-image: url(/cdn/shop/files/festive-stripe.png?v=1697524482);
  background-repeat: no-repeat;
  background-size: 100%;
}
.product-menu-cards.festive-theme .grid-product__image-mask {
    background-image: url(/cdn/shop/files/festive-podium.png?v=1697524482);
    background-repeat: no-repeat;
}
.product-menu-cards.festive-theme .grid-product__meta{
  background-color: #ba718f; 
}
@media(max-width:479px){
  .product-menu-cards.festive-theme[slider-enabled] .grid-product__content, .product-menu-cards.festive-theme[data-aos="overflow__animation"] .grid-product__content{
    flex-wrap: wrap !important;
  }
  .product-menu-cards.festive-theme .grid-product__image-mask img.grid-product__image {
      padding-top: 15px;
      width: auto;
  }  
  .product-menu-cards.festive-theme:not([slider-enabled]) .grid-product__image-mask img.grid-product__image, 
  .product-menu-cards.festive-theme:not([data-aos="overflow__animation"]) .grid-product__image-mask img.grid-product__image {
      max-width: 75%;
      width: 100%;
  }  
  .product-menu-cards.festive-theme[slider-enabled] .grid-product__image-mask img.grid-product__image, 
  .product-menu-cards.festive-theme[data-aos="overflow__animation"] .grid-product__image-mask img.grid-product__image {
      max-width: 80%;
      width: 100%;
  }  
  .product-menu-cards.festive-theme .grid-product__image-mask {
      background-size: 90%;
      background-position-y: 95%;
      background-position-x: center;
  }
  .product-menu-cards.festive-theme .grid-product__content .grid-product__meta{
    margin-top: 0;
  }
  .product-menu-cards.festive-theme:not([slider-enabled]) .grid-product__meta, 
  .product-menu-cards.festive-theme:not([data-aos="overflow__animation"]) .grid-product__meta {
      padding-left: 10px !important;
      padding-right: 10px !important; 
  }
  .product-menu-cards.festive-theme .grid-product__content a.grid-product__link{
    padding: 0 !important;
  }
  .product-menu-cards.festive-theme[slider-enabled] .grid-product__meta, 
  .product-menu-cards.festive-theme[data-aos="overflow__animation"] .grid-product__meta{
      padding: 15px 15px !important;
  }
  .product-menu-cards.festive-theme .grid-product__content a.grid-product__link:before {
      background-size: 90%;
  }
}
.product-menu-cards.festive-theme .grid-product__content a.grid-product__link {
    position: relative;
}
.product-menu-cards.festive-theme .grid-product__content a.grid-product__link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/cdn/shop/files/lineal-mandla.png?v=1698916920);
    background-position: center;
    background-repeat: no-repeat;
    opacity: .2;
}
.product-menu-cards.festive-theme .grid-product__content .grid-product__meta .btn {
    border-radius: 10px;
    font-size: 14px;
      padding: 8px 10px;
}
.product-menu-cards.festive-theme .grid-product__content .grid-product__meta a:not(.btn), .product-menu-cards.festive-theme .grid-product__content .grid-product__meta span{
  color: #000;
}
.product-menu-cards.festive-theme div[custom-label="Best_Selling"] .grid-product__content .tag-cus {
  background-color: #fff;
}
.product-menu-cards.festive-theme div[custom-label="Best_Selling"] .grid-product__content .tag-cus p{
    color: #000;
}