/** Shopify CDN: Minification failed

Line 1186:12 Expected identifier but found whitespace
Line 1186:13 Unexpected "("
Line 4235:70 Unterminated string token

**/
*, *::before, *::after {
    box-sizing: border-box;
}
#shopify-section-template--18627557490862__custom_product_tab_L8eAep ul.custom--tabs {
    
    display: none!important;
}
.custom--tabs page-width {
 
    display: none !important;
}
/* --- Final Variant Badge Styles --- */
/* --- FINAL Product Page Layout & Slider Responsiveness --- */

/* 1. DESKTOP STYLES */
.product-page-row {
  display: flex;
  flex-wrap: wrap; 
  align-items: flex-start;
  gap: 30px;
}

#product-gallery {
  flex: 1 1 50%;
  min-width: 320px;
  /* Make it sticky on desktop */
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  align-self: flex-start; 
}

#product-description {
  flex: 1 1 45%;
  min-width: 320px;
}

/* 2. MOBILE & TABLET STYLES (Sabse Zaroori Hissa) */
@media (max-width: 991px) {
  .product-page-row {
      flex-direction: column; /* Columns ko ek ke neeche ek laayein */
  }
  /* ============== START: PRODUCT GALLERY & SLIDER RESPONSIVE FIX ============== */

/* --- 1. Main Product Page Layout --- */
.product-page-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

/* Left Column (Slider) */
.product-gallery-container {
  flex: 1 1 50%;
  min-width: 320px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

/* Right Column (Product Details) */
#product-description {
  flex: 1 1 45%;
  min-width: 320px;
}

/* --- 2. Slick Slider General Styles --- */
.product-slider-container {
    width: 100%;
    padding: 0;
    margin: 0;
    opacity: 0; /* Initially hide to prevent Flash of Unstyled Content */
    transition: opacity 0.5s;
}

.slick-initialized {
  opacity: 1; /* Show when slider is ready */
}

/* Main Image Slider */
.carousel-main {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.carousel-main .slick-slide {
  text-align: center;
}

.carousel-main .slick-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 550px; /* Max height on desktop */
}

/* Navigation Thumbnails Slider */
.carousel-nav {
  margin: 0 -5px;
}
.carousel-nav .slick-slide {
    cursor: pointer;
    padding: 0 5px;
    height: auto;
}

.carousel-nav .slick-slide img {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.carousel-nav .slick-slide.slick-current img {
    border-color: #008060; /* Active thumbnail border color */
}

/* Slider Arrows */
.slick-arrow {
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
}
.slick-arrow:hover {
    background: #fff;
}
.slick-prev {
    left: 20px;
}
.slick-next {
    right: 20px;
}
.slick-arrow::before {
    color: #333;
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
}
.slick-prev:before {
  content: '←';
}
.slick-next:before {
  content: '→';
}
.slick-disabled {
  opacity: 0.3;
  cursor: default;
}


/* --- 3. Mobile Responsive Styles (Sabse zaroori hissa) --- */
@media (max-width: 991px) {
    .product-page-row {
        flex-direction: column; /* Stack columns vertically */
    }

    .product-gallery-container {
        position: static; /* Remove sticky positioning on mobile */
        width: 100%;
        order: -1; /* Show image gallery on top */
    }

    #product-description {
        width: 100%;
    }

    .carousel-main .slick-slide {
       min-height: 300px; /* Prevent collapsing before images load */
    }

    .carousel-main .slick-slide img {
      max-height: 80vw; /* Limit image height on mobile */
    }
}
/* ============== END: PRODUCT GALLERY & SLIDER RESPONSIVE FIX ============== */
  
  #product-gallery {
    position: static !important; /* Mobile par sticky position hata dein */
    width: 100% !important;
    flex-basis: auto !important;
    order: -1 !important;
    height: auto !important; 
  }

  #product-description {
    width: 100% !important;
    flex-basis: auto !important;
  }
  

  #product-gallery .swiper-container {
    height: auto !important;
  }
  
  #product-gallery .swiper-slide {
    height: auto !important; /* Har slide ki height bhi auto honi chahiye */
  }
  
  #product-gallery .swiper-slide img {
      height: auto !important; /* Image ko apni original aspect ratio maintain karne dein */
      max-height: 400px; /* Optional: Ek max-height set kar sakte hain */
      object-fit: contain;
  }
  
  #product-gallery .product-item-wrap .swiper-pagination-bullets{
    position: relative !important;
    bottom: 0 !important;
    padding-top: 15px;
  }
}
/* --- Slick Slider Final Fixes (FORCE OVERRIDE) --- */

/* Main Carousel Image Sizing */
.carousel-main .slick-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 460px !important; /* Aap is height ko kam ya zyada kar sakte hain */
}

.carousel-main .slick-slide img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important; /* Yeh sunishchit karega ki poori image dikhe */
}

/* Navigation Thumbnails Sizing */
.carousel-nav .slick-slide {
  height: 100px !important; /* Thumbnails ki height fix kar dein */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid transparent !important;
  padding: 2px !important;
}

.carousel-nav .slick-slide.slick-current {
    
}

.carousel-nav .slick-slide img {
  max-height: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
}


/* Arrows Styling & Text Hiding */
.slick-arrow {
  font-size: 0 !important; /* Isse "Previous" aur "Next" text gayab ho jayega */
  line-height: 0 !important;
  position: absolute !important;
  top: 50% !important;
  display: block !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  -webkit-transform: translate(0, -50%) !important;
  transform: translate(0, -50%) !important;
  cursor: pointer !important;
  color: transparent !important;
  border: none !important;
  outline: none !important;
  background: #ffffffbf !important;
  border-radius: 100px !important;
  box-shadow: 0px 0px 18px #0000002b !important;
  z-index: 10 !important;
}
.slick-arrow:before {
  font-family: 'slick' !important;
  font-size: 20px !important;
  line-height: 1 !important;
  opacity: .75 !important;
  color: black !important;
  -webkit-font-smoothing: antialiased !important;
}

.slick-prev {
  left: 25px !important;
}
.slick-next {
  right: 25px !important;
}

.slick-prev:before {
  content: '←' !important;
}
.slick-next:before {
  content: '→' !important;
}

/* Adjusting the main carousel's arrows */
.carousel-main .slick-prev {
    left: 15px !important;
}
.carousel-main .slick-next {
    right: 15px !important;
}
/* --- Product Page Layout Fix for Slick Slider --- */

.product-page-row {
  display: flex;
  flex-wrap: wrap; 
  gap: 30px;
}

.product-gallery-container {
  flex: 1 1 50%; 
  min-width: 300px; 
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  align-self: flex-start; 
 
}

.product-description-container {
  flex: 1 1 45%; /* Right column baaki jagah lega */
  min-width: 300px;
}

/* Slick slider ko container ke andar fit karna */
.product-gallery-container .container,
.product-gallery-container .carousel-main,
.product-gallery-container .carousel-nav {
  width: 100%;
}
.product-gallery-container .carousel-main img {
    max-height: calc(100vh - 180px); /* Badi image ki max height */
    object-fit: contain;
}

@media (max-width: 991px) {
  .product-gallery-container {
    position: static;
    height: auto;
  }
}
/* --- FINAL-FINAL AJAX Cart Drawer Styles V4 --- */
.variant-size-title {
 
  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  word-break: break-word !important; 
  
 
  line-height: 1.3 !important; 
}
/* --- HIDE THEME'S DEFAULT DRAWER HEADER --- */
#Drawers #ajax-cart-title, 
#Drawers #ajax-cart-close {
  display: none !important;
}

/* --- Main Drawer & Custom Header --- */

/* --- FINAL-FINAL Variant Grid Layout Fix --- */

/* Step 1: Grid ko rigid banayein */
.custom-variant-grid {
  display: grid !important;
  /* Yeh sabse zaroori line hai: 3 barabar ke columns */
  grid-template-columns: repeat(3, 1fr) !important; 
  gap: 15px !important; 
  margin-bottom: 20px !important;
}

/* Step 2: Har box ko flex container banayein taaki content align ho sake */
.variant-box {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important; /* Sunishchit karein ki sabhi box barabar height ke hon */
  /* Baaki styles (border, etc.) aapke theme se aa rahe hain */
}

/* Step 3: Title ko wrap hone ke liye force karein */
.variant-size-title {
  /* Yeh title ko vertical center mein rakhega aur use grow/shrink hone dega */
  flex-grow: 1; 
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Text wrapping ki properties */
  word-break: break-word; /* Lambe shabdon ko tod dega */
  white-space: normal; /* Text ko wrap hone ki ijaazat dega */
  overflow-wrap: break-word;
  hyphens: auto;

  /* Font and spacing */
  font-size: 1.1em !important;
  font-weight: bold !important;
  line-height: 1.3 !important;
  padding: 10px 5px !important; /* Thodi si padding */
  min-height: 50px; /* Ek minimum height taaki sab align rahein */
}

/* Step 4: Baaki elements ko unki jagah par rakhein */
.variant-image-container {
  margin-bottom: 10px !important;
}
.variant-price {
  margin-bottom: 0 !important; /* Price aur bottom badge ke beech ka gap kam karein */
}
.variant-badge-bottom {
    margin-top: auto; /* Hamesha neeche rahega */
}

/* Step 5: Responsive adjustments */
@media (max-width: 768px) {
  .custom-variant-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .custom-variant-grid {
    grid-template-columns: 1fr !important; /* Mobile par 1 column */
  }
}
/* Security Badges & Footer Links */
.security-badges-container { display: flex; justify-content: center; align-items: center; gap: 5px; margin: 20px 0; flex-wrap: wrap; }
.security-badge { border: 1px solid #ddd; padding: 5px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; background: #f5f5f5; }
.guaranteed-safe-checkout { text-align: center; font-size: 12px; color: #666; margin-bottom: 15px; }
.continue-shopping { text-align: center; color: #666; text-decoration: underline; cursor: pointer; }
/* Parent container ko relative banayein taaki badge aaram se position ho sake */
.variant-box {
  position: relative;
  /* Agar upar se extra space aa rahi hai, to is line ko uncomment karein */
  /* padding-top: 0 !important; */
}

/* Yeh aapke theme ke maujooda badge ko style karega */
.variant-badge-top {
 
  position: absolute;
  top: 0;
  left: 0;
  
  
  /* Text and Color */
  background-color: #95c82a; /* Default Green Color */
  color: white;
  font-weight: bold;
  font-size: 16px; /* Thoda sa bada font size */
  text-transform: uppercase;
  text-align: center;
  
  /* Spacing */
  padding: 10px 5px;
  box-sizing: border-box;
  line-height: 1.2; /* Line height theek karne ke liye */
  
  /* Baki sab cheezon ke upar dikhe */
  z-index: 2; 

  /* Agar aapka badge box ke andar jaa raha hai, to ise istemaal karein */
  /* --- Final Variant Badge Styles V3 --- */

/* Make space for the badge to sit in */
.custom-variant-grid {
  padding-top: 25px;
}

/* Position the badge */
/* --- Final, Simple Badge Styles --- */

/* --- Final, Simple Badge Styles V4 --- */

.variant-box-wrapper {
  text-align: center; /* Sab kuch center mein rakhega */
}

.variant-badge-top-outside {
  display: inline-block; /* Taaki width content ke hisaab se ho */
  padding: 8px 20px;
  background-color: #95c82a; /* Green Color */
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 5px;
  margin-bottom: 5px; /* Badge aur box ke beech mein thoda gap */
}
/* --- Product Carousel Arrow Styles --- */

/* General Arrow Styles */
.main-swiper-arrow,
.thumb-swiper-arrow {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  color: #333 !important;
  transition: background-color 0.2s ease;
  z-index: 10; /* Ensure arrows are on top */
}

.main-swiper-arrow:hover,
.thumb-swiper-arrow:hover {
  background-color: #fff;
}

.main-swiper-arrow::after,
.thumb-swiper-arrow::after {
  font-size: 18px !important;
  font-weight: bold;
}

/* Positioning for Main Image Arrows */
.main-swiper-container .swiper-button-next {
  right: 15px;
}
.main-swiper-container .swiper-button-prev {
  left: 15px;
}

/* Positioning for Thumbnail Arrows */
.swiper-thumbnails-main-container {
  position: relative; /* Make sure arrows are positioned relative to this */
  margin-top: 15px;
}
.thumb-swiper-arrow.swiper-button-next {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}
.thumb-swiper-arrow.swiper-button-prev {
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}

/* Hide arrows when they are not needed */
.swiper-button-disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}
.variant-box {
 
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  padding: 15px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Jis box ke upar badge nahi hai, uspar upar se extra margin na aaye */
.variant-box.no-badge {
   margin-top: 38px; /* Yeh value badge ki height ke barabar honi chahiye */
}

.variant-radio-input:checked + .variant-box {
  border-color: #008060 !important;
}
/* Make the parent box a positioning container */
.variant-box {
  position: relative !important;
}

/* Style the badge and position it at the very top */
.variant-badge-top {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important; /* Make it full width of the box */

  /* Visual styles */
  background-color: #95c82a !important; /* Green color */
  color: white !important;
  font-weight: bold !important;
  text-align: center !important;
  padding: 8px 0 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  
  /* Remove any extra margins or borders */
  margin: 0 !important;
  border-radius: 0 !important;
  border: none !important;
}

/* Add padding to the top of the box content so the badge doesn't cover it */
.variant-box .variant-size-title {
  padding-top: 45px !important; /* Adjust this value if needed */
}
  /* transform: translateY(-100%); */
}

/* Isse "MOST POPULAR | FREE 1 OZ TUBE" jaisa text aaram se fit ho jayega */
.variant-badge-top span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 2px;
}

/* Box ke andar content ke liye thodi jagah banayein */
.variant-box .variant-size-title {
  padding-top: 45px; /* Badge ki height ke hisaab se space */
}

/* --- Optional: Specific Badge Colors --- */
/* Agar aap alag colors chahte hain */

.variant-box[data-badge="BEST VALUE"] .variant-badge-top {
  background-color: #95c82a; /* Light Green */
}

.variant-box[data-badge*="MOST POPULAR"] .variant-badge-top {
  background-color: #ffb300; /* Amber/Orange color */
}

.variant-box[data-badge="GIFT KIT"] .variant-badge-top {
  background-color: #4caf50; /* Darker Green */
}
/* --- Full Product Description Section Styles --- */
.product-full-description-section {
  margin: 40px auto; /* Adds space above and below */
  max-width: 800px; /* Controls the width for better readability */
  text-align: left; /* Aap 'center' bhi kar sakte hain agar chahein */
  padding: 0 20px; /* Adds some padding on the sides for smaller screens */
}
/*cart*//* --- NEW AJAX Cart Drawer Styles --- */
 /* --- FINAL-FINAL Product Page Layout Fix (No VH units) --- */

/* Parent Row */
.product-page-row {
  display: flex;
  flex-wrap: wrap; 
  align-items: flex-start; /* Columns ko upar se align karein */
  gap: 30px;
}

/* Left Column (Slider) - The one that sticks */
#product-gallery {
  flex: 1 1 50%; /* Adjust basis to 50% */
  min-width: 320px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px; /* Upar se kitna neeche "chipka" rahega */
  align-self: flex-start; 
}

/* Right Column (Details) - The one that scrolls */
#product-description {
  flex: 1 1 45%; /* Adjust basis to 45% */
  min-width: 320px;
  /* Koi height ya overflow property nahi deni hai, ise naturally scroll hone dein */
}

/* Responsive for mobile */
@media (max-width: 991px) {
  .product-page-row {
      flex-direction: column; /* Columns ko ek ke neeche ek laayein */
  }
  
  #product-gallery {
    position: static; /* Mobile par sticky position hata dein */
    width: 100%;
    flex-basis: auto;
  }

  #product-description {
    width: 100%;
    flex-basis: auto;
  }
}
/* --- FINAL-FINAL AJAX Cart Drawer Styles --- */

/* Main Drawer & Header */
/* --- FINAL-FINAL AJAX Cart Drawer Styles V2 --- */

/* --- HIDE THEME'S DEFAULT DRAWER HEADER --- */
#Drawers #ajax-cart-title, 
#Drawers #ajax-cart-close {
  display: none !important;
}

/* --- Main Drawer & Custom Header --- */
#Drawers #ajax-cart-drawer {
  width: 100% !important;
  max-width: 550px !important; /* Increased width */
}
#Drawers .ajaxcart {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.ajaxcart__inner {
  flex-grow: 1 !important;
  overflow-y: auto !important;
  padding: 20px !important;
}
.custom-cart-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 15px !important;
  padding-bottom: 15px !important;
  border-bottom: 1px solid #e5e5e5 !important;
}
.custom-cart-heading {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}
.close-cart-btn {
  background: none !important;
  border: 1px solid #ccc !important;
  border-radius: 0 !important; /* Removed border-radius */
  width: 30px !important;
  height: 30px !important;
  font-size: 20px !important;
  line-height: 28px !important;
  text-align: center !important;
  cursor: pointer !important;
  color: #333 !important;
  padding: 0 !important;
  transition: background-color 0.2s ease;
}
.close-cart-btn:hover {
  background-color: #f0f0f0 !important;
}

/* --- Cart Items --- */
.ajaxcart__items { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.ajaxcart-item-container { display: flex !important; gap: 15px !important; align-items: flex-start !important; padding: 20px 0 !important; border-bottom: 1px solid #f0f0f0 !important; }
.ajaxcart__product-image img { width: 80px !important; border-radius: 4px !important; border: 1px solid #eee !important; object-fit: cover; }
.ajaxcart__product-details { flex-grow: 1 !important; display: flex !important; flex-direction: column !important; }
.ajaxcart__product-name { font-weight: 600 !important; color: #333 !important; text-decoration: none !important; font-size: 16px !important; line-height: 1.4 !important; }
.ajaxcart__product-meta { font-size: 14px !important; color: #666 !important; margin: 4px 0 !important; }
.ajaxcart__price { font-size: 16px !important; font-weight: 600 !important; margin: auto 0 10px 0 !important; display: block !important; }
.ajaxcart__qty { display: flex !important; border: 1px solid #ccc !important; border-radius: 4px !important; width: 110px !important; margin-top: auto !important; }
.ajaxcart__qty-adjust { all: unset !important; background: #f5f5f5 !important; border: none !important; width: 35px !important; height: 35px !important; cursor: pointer !important; text-align: center !important; font-size: 20px !important; line-height: 35px !important; }
.ajaxcart__qty-num { width: 40px !important; height: 35px !important; text-align: center !important; border: none !important; border-left: 1px solid #ccc !important; border-right: 1px solid #ccc !important; -moz-appearance: textfield !important; font-size: 16px !important; padding: 0 !important; color: #333 !important;}
.ajaxcart__remove { font-size: 24px !important; color: #aaa !important; text-decoration: none !important; line-height: 1 !important; }

/* --- Footer --- */
.ajaxcart__footer { padding: 20px !important; background-color: #fff !important; border-top: 1px solid #e5e5e5 !important; }
.free-gift-banner, .frequently-bought, .coupon-section, .cart-summary { margin-bottom: 20px !important; }
.free-gift-banner { background: #eafbf1 !important; color: #008060 !important; border: 1px solid #b2d4ba !important; padding: 15px !important; border-radius: 8px !important; text-align: center !important; font-weight: 600 !important; }
.frequently-bought h4 { font-size: 18px !important; margin-bottom: 10px !important; font-weight: 600 !important;}
.frequently-item { display: flex; align-items: center; gap: 15px; padding: 10px; background: #f8f9fa; border-radius: 8px; }
.frequently-item img { width: 50px; }
.add-frequently { background: #4CAF50; color: white; border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; font-size: 14px; }
.coupon-section { padding: 20px !important; background: #f8f9fa !important; border-radius: 8px !important; }
.coupon-section h4 { font-size: 18px !important; margin-bottom: 15px !important; font-weight: 600 !important;}
.coupon-input { display: flex !important; gap: 10px !important; }
#CartDrawer-DiscountCode { flex: 1 !important; padding: 12px !important; border: 1px solid #ddd !important; border-radius: 4px !important; font-size: 16px; }
.apply-coupon { background-color: #4CAF50 !important; color: #fff !important; border: none !important; padding: 0 25px !important; border-radius: 4px !important; cursor: pointer !important; font-weight: bold !important; }
.cart-summary { padding: 20px !important; background-color: #f8f9fa !important; border-radius: 8px !important; }
.summary-row { display: flex !important; justify-content: space-between !important; margin-bottom: 10px !important; }
.summary-total { font-weight: bold !important; font-size: 18px !important; padding-top: 10px !important; margin-top: 10px !important; border-top: 1px solid #ddd !important; }
.cart__checkout { width: 100% !important; background-color: #1e90ff !important; font-size: 18px !important; padding: 18px !important; border-radius: 8px !important; color: white !important; font-weight: bold !important; }

/* Security Badges & Footer Links */
.security-badges-container { display: flex; justify-content: center; align-items: center; gap: 5px; margin: 20px 0; flex-wrap: wrap; }
.security-badge { border: 1px solid #ddd; padding: 5px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; background: #f5f5f5; }
.guaranteed-safe-checkout { text-align: center; font-size: 12px; color: #666; margin-bottom: 15px; }
.continue-shopping { text-align: center; color: #666; text-decoration: underline; cursor: pointer; }
/* Optional: To style headings inside the description */
.product-full-description-section h2,
.product-full-description-section h3 {
  text-align: center;
  margin-bottom: 20px;
}
/* This new class ensures the video/tabs section takes the full width */
/* --- Video Testimonial Section Styles --- */
.product-video-testimonial-section {
  margin-top: 40px;
  margin-bottom: 0px;
  clear: both;
  width: 100%;
}

.video-testimonial-heading {
  font-size: 24px;
  font-weight: bold;
  color: #008060; /* Aapka brand ka green color */
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: left;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  background-color: #000;
  border-radius: 8px;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body {
    margin: 0;
}
/* --- Final Custom Variant Grid & Price & Logos Styles --- */

/* 1. Variant Grid Styles */
.variant-radio-input {
  display: none;
}

.custom-variant-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; 
  gap: 15px !important; 
  margin-bottom: 20px !important;
  
}


.variant-box-wrapper {
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}

.variant-box {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1; 
}


.variant-size-title {
  flex-grow: 1; 
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  font-size: 15px !important;
  font-weight: bold !important;
  line-height: 1.3 !important;
  padding: 33px 5px !important;
  min-height: 50px;
}


.variant-image-container {
  margin-bottom: 10px !important;
}
.variant-price {
  margin-bottom: 0 !important;
}
.variant-badge-bottom {
    margin-top: auto; /* Hamesha neeche rahega */
}
@media (max-width: 1100px) {
  .custom-variant-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* For smaller tablets and large phones (e.g., up to 768px) */
@media (max-width: 768px) {
  .custom-variant-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* Abhi bhi 2 columns rakhein */
  }
}

/* For small mobile devices (e.g., up to 576px) */
@media (max-width: 576px) {
  .custom-variant-grid {
    grid-template-columns: 1fr !important; /* Ek column */
  }
}
/* Step 5: Responsive adjustments */
@media (max-width: 800px) {
  .custom-variant-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .custom-variant-grid {
    grid-template-columns: 1fr !important;
  }
}
ul.slick-dots {
    display: none !important;
}
.variant-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  border: 1px solid #828282e0;
  border-radius: 0px;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-align: center;
  height: -webkit-fill-available!important;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.variant-radio-input:checked + .variant-box {
  border-color: #828282e0;
    box-shadow: 0 0 5px #99cc01;
}


/* Main grid layout */
.custom-variant-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 15px !important;
}


.variant-box {
  
  
  display: grid !important;
  
  grid-template-rows: 50px auto 1fr auto 50px; 
  height: 100% !important;
  position: relative;
  text-align: center;
}
.variant-box.selected {
  border-color: #008060 !important;
}

/* Row 1:  */
.variant-badge-top {
  grid-row: 1 / 2; 
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #95c82a;
  color: white;

  text-transform: uppercase;
 
}

/* Row 2: Title */
.variant-size-title {
  grid-row: 2 / 3; 
  
 
  padding: 7px 3px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Row 3: Image */
.variant-image-container {
  grid-row: 3 / 4; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

/* Row 4: Price */
.variant-price {
  grid-row: 4 / 5; 
  
  padding: 15px 10px !important;
}

/* Row 5: Bottom Badge (Save %) */
.variant-badge-bottom {
  grid-row: 5 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #dd5a4d;
  color: white;
  
  text-transform: uppercase;
 

}

/* --- Responsive Adjustments --- */

/* Tablet Devices (e.g., up to 991px) */
@media (max-width: 991px) {
  .custom-variant-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile Devices (e.g., up to 576px) */
@media (max-width: 576px) {
  .custom-variant-grid {
    grid-template-columns: 1fr !important; /* Ek column */
  }
}
.variant-badge-top {
  width: 100%;
  background-color: #99cc01!important;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 5px; /* Less padding */
  text-transform: uppercase;
  flex-shrink: 0;
  margin-bottom:20px;
}

.variant-size-title {
  font-size: 1em; /* Smaller font */
  font-weight: bold;
 
  color: #333;
}

.variant-image-container {
  padding: 0 10px;
  margin-bottom: 10px;
}

.variant-image-container img {
  max-width: 100%;
  height: auto;
  max-height: 120px; /* Smaller image height */
  object-fit: contain;
}

.variant-price {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
  margin-top: auto; /* Pushes price to bottom before the badge */
  padding-bottom: 10px;
}

.variant-badge-bottom {
  width: 100%;
  background-color: #dd5a4d;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 0px;
  text-transform: uppercase;
  margin-top: auto; /* Pushes the badge to the very bottom */
  flex-shrink: 0;
}


/* 2. Custom Price Display Styles */
.custom-price-container {
  margin-top: 25px;
  text-align: left;
}
/* --- Frequently Bought Together Styles --- */
.frequently-bought {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.frequently-bought h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}
.frequently-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.frequently-item img {
  width: 60px;
  border-radius: 4px;
}
.add-frequently {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}
/* --- Payment Methods Image Styles --- */
.payment-methods-image-container {
  text-align: center;
  margin: 20px 0;
}
.payment-methods-image-container img {
  max-width: 300px; /* Adjust size as needed */
  height: auto;
}
.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.price-label-today {
  font-size: 1.5em;
  color: #333;
  margin-right: 10px;
}

.current-price-display .money {
  font-size: 1.5em;
  font-weight: 600;
  color: #000;
  margin-right: 10px;
}

.compare-price-display .money {
  font-size: 1.2em;
  color: red;
  text-decoration: line-through;
}

.guarantee-line {
  font-size: 1em;
  color: #555;
}


/* 3. Guarantee Logos Styles */
.guarantee-logos-container {
  display: flex; /* YEH LINE CHANGE HUI HAI */
  justify-content: space-between; /* YEH LINE CHANGE HUI HAI */
  align-items: center;
  flex-wrap: nowrap; /* YEH LINE CHANGE HUI HAI: Logos ko wrap nahi hone dega */
  gap: 10px; /* Logos ke beech ka gap */
  margin-top: 25px; /* Buy now button ke baad ka gap */
}

.guarantee-logos-container img {
  max-width: 17%; /* YEH LINE CHANGE HUI HAI: 4 logos ko fit karne ke liye */
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-variant-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr))!important;
  }
}
.swiper-gallery-vert-slider.swiper-container .swiper-slide>div, .swiper-gallery-vert-slider.swiper-container .swiper-slide>div>img
Specificity: (0,3,1)
 {
    height: auto!important;
}
.cart__additional_checkout {
    padding-top: 8px;}
.Carousel__CarouselArrowControlContainer-sc-f2ox7y-8.bHaOyQ:hover {
    
    background-color: transparent !important;
    border: none !important;
}
.Carousel__CarouselArrowControlContainer-sc-f2ox7y-8.btDXfD:hover {
    
    background-color: transparent !important;
    border: none !important;
}

.Carousel__CarouselArrowControlContainer-sc-fe392fd7-8.hbiA-dw {
    background-color: transparent !important;
    border: none !important;
}
.cart .cart__row .cart_items .cart__image img {

    object-fit: contain!important;
   
}
button#dT_AddToCart-template--17573632180398__main {
    
}
.cart_items {
    background-color: #f9f9f9!important;
}
.kaktusbot_overlay:hover {
    background-color:#0d7671 !important;
  color: white;
}
.kaktusbot_overlay {
    cursor: pointer!important;
}

button#dT_AddToCart-template--17573632180398__main:hover {
    background-color: #0d7671;
}
.Carousel__CarouselArrowControlContainer-sc-fe392fd7-8.gcoYkH:hover {
    background-color: transparent !important;
    border: none !important;
}
.Carousel__CarouselArrowControlContainer-sc-7aac7883-8.ZvgDl:hover{

  background-color: transparent !important;
    color: transparent !important;
    border: none !important;
}
.Carousel__CarouselArrowControlContainer-sc-7aac7883-8.gYGbzq:hover {
    background-color: transparent !important;
    color: transparent !important;
    border: none !important;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
body, input, textarea, button, select {
}

div#swiper-gallery-vert-template--17573632180398__main {
    position: relative!important;
    
    height: 420px!important;
   
}
.cad_login form.customer a.forgot-password, cad-overlay form.customer a.forgot-password {
  
    margin-bottom: 16px;
}
div#swiper-template--17573631983790__1632297753a7228f08-next {
  margin-top: -90px;
}
div#swiper-template--17573631983790__1632297753a7228f08-prev {
  margin-top: -90px;
}
#createAccount .submit-text::after {
  content: "Create Account";
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
    .cad_login button, cad-overlay form#customer_login button {
        margin: 0px auto 15px!important;
    }
}
#createAccount {
  font-size: 0 !important;
  display: inline-block; 
}

.header__menu-item, 
.nav__link, 
.site-nav__link {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .home-slideshow-section
    .dt-sc-swiper-slider
    .swiper-wrapper
    .slider-2b9978d5-8157-4e84-82c6-7f924a86adec-list
    .slider-content
    [class*="slide_"] {
    background: rgba(0, 0, 0, 0.85);
    background: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 100%;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .home-slideshow-section
    .dt-sc-swiper-slider.swiper-container
    .swiper-slide
    img {
    height: auto;
    margin-top: 115px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .home-slideshow-section
    .dt-sc-swiper-slider
    .swiper-wrapper
    .slider-slider_iTMUTk-list
    .slider-content
    [class*="slide_"] {
    background: none !important;
  }
}
@media only screen and (max-width: 767px) {
  header #AccessibleNav .logo img {
    max-width: 50% !important;
  }
}
@media only screen and (max-width: 767px) {
  header #AccessibleNav > * {
    padding: 0px !important;
  }
}
ul.dt-nav > li > a {
    display: block;
    padding: 14px 1px 14px 18px !important;
    position: relative !important;
    font-size: 14px !important;
    color: #333333;
    font-weight: 600;
    transition: none !important;
    font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
}
.custom-slider {
  width: 100vw;
  height: auto !important;
}
@media (max-width: 768px) {
  .custom-slider {
    height: 120px !important;
  }
}
header .dt-sc-header-logo-sec,
.sticky-header-active {
  padding: 0px 0!important;
}
header .dt-sc-header-top-bar {
  padding: 0px 0 !important;
  background-color: #00965e;
}
header .site-header__links .count {
  top: 0px!important;
  position: relative;
  border-radius: 50%;
  font-size: 9px!important;
  min-width: 15px;
  height: 15px!important;
  line-height: 13px;
  text-align: center;
  display: block;
  transform: none !important;
  transition: none !important;
}
.site-header__cart-count {
  position: relative!important;
}
header .site-header__links a {
  height: 0px!important;
}
ul.dt-nav > li > a {
  font-weight: 600;
  padding: 14px 1px 14px 18px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.site-footer li a {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
}
footer .site-footer__bottom div[class*="dt-sc-flex"] div:only-child {
  pointer-events: none !important;
}
address {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 27.17px !important;
}

.featured-collection-content-template--17573631983790__collection_carousel_8hk3k6 {
  text-align: center !important;
}
.featured-collection-content-template--17573631983790__collection_carousel_CLk3WU {
  text-align: center !important;
}
a {
    background-color: transparent;
}
div#shopify-section-template--17573631983790__1637039375909561fe {
  padding-top: 0px !important;
}
b, strong {
    font-weight: 700;
}
em {
    font-style: italic;
}
small {
    font-size: 80%;
}
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0 none;
    max-width: 100%;
}
button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}
button[disabled], html input[disabled] {
    cursor: default;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted buttontext;
}
input[type="search"], input[type="number"], input[type="email"], input[type="password"] {
    -moz-appearance: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
td, th {
    padding: 0;
}
textarea {
    -moz-appearance: none;
    overflow: auto;
}
[tabindex="-1"]:focus {
    outline: medium none;
}
a, button, [role="button"], input, label, select, textarea {
}
.grid {
    list-style: outside none none;
    margin: 0 0 0 -30px;
    padding: 0;
}
.grid::after {
    clear: both;
    content: "";
    display: table;
}
@media only screen and (max-width: 749px) {
.grid {
    margin-left: -22px;
}
}
.grid__item {
    float: left;
    padding-left: 30px;
    width: 100%;
}
@media only screen and (max-width: 749px) {
.grid__item {
    padding-left: 22px;
}
}
.grid__item[class*="--push"] {
    position: relative;
}
.grid--rev {
    direction: rtl;
    text-align: left;
}
.grid--rev > .grid__item {
    direction: ltr;
    float: right;
    text-align: left;
}
.one-whole {
    width: 100%;
}
.one-half {
    width: 50%;
}
.one-third {
    width: 33.3333%;
}
.two-thirds {
    width: 66.6667%;
}
.one-quarter {
    width: 25%;
}
.two-quarters {
    width: 50%;
}
.three-quarters {
    width: 75%;
}
.one-fifth {
    width: 20%;
}
.two-fifths {
    width: 40%;
}
.three-fifths {
    width: 60%;
}
.four-fifths {
    width: 80%;
}
.one-sixth {
    width: 16.6667%;
}
.two-sixths {
    width: 33.3333%;
}
.three-sixths {
    width: 50%;
}
.four-sixths {
    width: 66.6667%;
}
.five-sixths {
    width: 83.3333%;
}
.one-eighth {
    width: 12.5%;
}
.two-eighths {
    width: 25%;
}
.three-eighths {
    width: 37.5%;
}
.four-eighths {
    width: 50%;
}
.five-eighths {
    width: 62.5%;
}
.six-eighths {
    width: 75%;
}
.seven-eighths {
    width: 87.5%;
}
.one-tenth {
    width: 10%;
}
.two-tenths {
    width: 20%;
}
.three-tenths {
    width: 30%;
}
.four-tenths {
    width: 40%;
}
.five-tenths {
    width: 50%;
}
.six-tenths {
    width: 60%;
}
.seven-tenths {
    width: 70%;
}
.eight-tenths {
    width: 80%;
}
.nine-tenths {
    width: 90%;
}
.one-twelfth {
    width: 8.33333%;
}
.two-twelfths {
    width: 16.6667%;
}
.three-twelfths {
    width: 25%;
}
.four-twelfths {
    width: 33.3333%;
}
.five-twelfths {
    width: 41.6667%;
}
.six-twelfths {
    width: 50%;
}
.seven-twelfths {
    width: 58.3333%;
}
.eight-twelfths {
    width: 66.6667%;
}
.nine-twelfths {
    width: 75%;
}
.ten-twelfths {
    width: 83.3333%;
}
.eleven-twelfths {
    width: 91.6667%;
}
.show {
    display: block !important;
}
.hide {
    display: none !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
@media only screen and (max-width: 749px) {
.small--one-whole {
    width: 100%;
}
.small--one-half {
    width: 50%;
}
.small--one-third {
    width: 33.3333%;
}
.small--two-thirds {
    width: 66.6667%;
}
.small--one-quarter {
    width: 25%;
}
.small--two-quarters {
    width: 50%;
}
.small--three-quarters {
    width: 75%;
}
.small--one-fifth {
    width: 20%;
}
.small--two-fifths {
    width: 40%;
}
.small--three-fifths {
    width: 60%;
}
.small--four-fifths {
    width: 80%;
}
.small--one-sixth {
    width: 16.6667%;
}
.small--two-sixths {
    width: 33.3333%;
}
.small--three-sixths {
    width: 50%;
}
.small--four-sixths {
    width: 66.6667%;
}
.small--five-sixths {
    width: 83.3333%;
}
.small--one-eighth {
    width: 12.5%;
}
.small--two-eighths {
    width: 25%;
}
.small--three-eighths {
    width: 37.5%;
}
.small--four-eighths {
    width: 50%;
}
.small--five-eighths {
    width: 62.5%;
}
.small--six-eighths {
    width: 75%;
}
.small--seven-eighths {
    width: 87.5%;
}
.small--one-tenth {
    width: 10%;
}
.small--two-tenths {
    width: 20%;
}
.small--three-tenths {
    width: 30%;
}
.small--four-tenths {
    width: 40%;
}
.small--five-tenths {
    width: 50%;
}
.small--six-tenths {
    width: 60%;
}
.small--seven-tenths {
    width: 70%;
}
.small--eight-tenths {
    width: 80%;
}
.small--nine-tenths {
    width: 90%;
}
.small--one-twelfth {
    width: 8.33333%;
}
.small--two-twelfths {
    width: 16.6667%;
}
.small--three-twelfths {
    width: 25%;
}
.small--four-twelfths {
    width: 33.3333%;
}
.small--five-twelfths {
    width: 41.6667%;
}
.small--six-twelfths {
    width: 50%;
}
.small--seven-twelfths {
    width: 58.3333%;
}
.small--eight-twelfths {
    width: 66.6667%;
}
.small--nine-twelfths {
    width: 75%;
}
.small--ten-twelfths {
    width: 83.3333%;
}
.small--eleven-twelfths {
    width: 91.6667%;
}
.grid--uniform .small--one-half:nth-child(2n+1), .grid--uniform .small--one-third:nth-child(3n+1), .grid--uniform .small--one-quarter:nth-child(4n+1), .grid--uniform .small--one-fifth:nth-child(5n+1), .grid--uniform .small--one-sixth:nth-child(6n+1), .grid--uniform .small--two-sixths:nth-child(3n+1), .grid--uniform .small--three-sixths:nth-child(2n+1), .grid--uniform .small--one-eighth:nth-child(8n+1), .grid--uniform .small--two-eighths:nth-child(4n+1), .grid--uniform .small--four-eighths:nth-child(2n+1), .grid--uniform .small--five-tenths:nth-child(2n+1), .grid--uniform .small--one-twelfth:nth-child(12n+1), .grid--uniform .small--two-twelfths:nth-child(6n+1), .grid--uniform .small--three-twelfths:nth-child(4n+1), .grid--uniform .small--four-twelfths:nth-child(3n+1), .grid--uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both;
}
.small--show {
    display: block !important;
}
.small--hide {
    display: none !important;
}
.small--text-left {
    text-align: left !important;
}
.small--text-right {
    text-align: right !important;
}
.small--text-center {
    text-align: center !important;
}
}
@media only screen and (min-width: 750px) {
.medium-up--one-whole {
    width: 100%;
}
.medium-up--one-half {
    width: 50%;
}
.medium-up--one-third {
    width: 33.3333%;
}
.medium-up--two-thirds {
    width: 66.6667%;
}
.medium-up--one-quarter {
    width: 25%;
}
.medium-up--two-quarters {
    width: 50%;
}
.medium-up--three-quarters {
    width: 75%;
}
.medium-up--one-fifth {
    width: 20%;
}
.medium-up--two-fifths {
    width: 40%;
}
.medium-up--three-fifths {
    width: 60%;
}
.medium-up--four-fifths {
    width: 80%;
}
.medium-up--one-sixth {
    width: 16.6667%;
}
.medium-up--two-sixths {
    width: 33.3333%;
}
.medium-up--three-sixths {
    width: 50%;
}
.medium-up--four-sixths {
    width: 66.6667%;
}
.medium-up--five-sixths {
    width: 83.3333%;
}
.medium-up--one-eighth {
    width: 12.5%;
}
.medium-up--two-eighths {
    width: 25%;
}
.medium-up--three-eighths {
    width: 37.5%;
}
.medium-up--four-eighths {
    width: 50%;
}
.medium-up--five-eighths {
    width: 62.5%;
}
.medium-up--six-eighths {
    width: 75%;
}
.medium-up--seven-eighths {
    width: 87.5%;
}
.medium-up--one-tenth {
    width: 10%;
}
.medium-up--two-tenths {
    width: 20%;
}
.medium-up--three-tenths {
    width: 30%;
}
.medium-up--four-tenths {
    width: 40%;
}
.medium-up--five-tenths {
    width: 50%;
}
.medium-up--six-tenths {
    width: 60%;
}
.medium-up--seven-tenths {
    width: 70%;
}
.medium-up--eight-tenths {
    width: 80%;
}
.medium-up--nine-tenths {
    width: 90%;
}
.medium-up--one-twelfth {
    width: 8.33333%;
}
.medium-up--two-twelfths {
    width: 16.6667%;
}
.medium-up--three-twelfths {
    width: 25%;
}
.medium-up--four-twelfths {
    width: 33.3333%;
}
.medium-up--five-twelfths {
    width: 41.6667%;
}
.medium-up--six-twelfths {
    width: 50%;
}
.medium-up--seven-twelfths {
    width: 58.3333%;
}
.medium-up--eight-twelfths {
    width: 66.6667%;
}
.medium-up--nine-twelfths {
    width: 75%;
}
.medium-up--ten-twelfths {
    width: 83.3333%;
}
.medium-up--eleven-twelfths {
    width: 91.6667%;
}
.grid--uniform .medium-up--one-half:nth-child(2n+1), .grid--uniform .medium-up--one-third:nth-child(3n+1), .grid--uniform .medium-up--one-quarter:nth-child(4n+1), .grid--uniform .medium-up--one-fifth:nth-child(5n+1), .grid--uniform .medium-up--one-sixth:nth-child(6n+1), .grid--uniform .medium-up--two-sixths:nth-child(3n+1), .grid--uniform .medium-up--three-sixths:nth-child(2n+1), .grid--uniform .medium-up--one-eighth:nth-child(8n+1), .grid--uniform .medium-up--two-eighths:nth-child(4n+1), .grid--uniform .medium-up--four-eighths:nth-child(2n+1), .grid--uniform .medium-up--five-tenths:nth-child(2n+1), .grid--uniform .medium-up--one-twelfth:nth-child(12n+1), .grid--uniform .medium-up--two-twelfths:nth-child(6n+1), .grid--uniform .medium-up--three-twelfths:nth-child(4n+1), .grid--uniform .medium-up--four-twelfths:nth-child(3n+1), .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
    clear: both;
}
.medium-up--show {
    display: block !important;
}
.medium-up--hide {
    display: none !important;
}
.medium-up--text-left {
    text-align: left !important;
}
.medium-up--text-right {
    text-align: right !important;
}
.medium-up--text-center {
    text-align: center !important;
}
}
@media only screen and (max-width: 749px) {
.small--push-one-half {
    left: 50%;
}
.small--push-one-third {
    left: 33.3333%;
}
.small--push-two-thirds {
    left: 66.6667%;
}
.small--push-one-quarter {
    left: 25%;
}
.small--push-two-quarters {
    left: 50%;
}
.small--push-three-quarters {
    left: 75%;
}
.small--push-one-fifth {
    left: 20%;
}
.small--push-two-fifths {
    left: 40%;
}
.small--push-three-fifths {
    left: 60%;
}
.small--push-four-fifths {
    left: 80%;
}
.small--push-one-sixth {
    left: 16.6667%;
}
.small--push-two-sixths {
    left: 33.3333%;
}
.small--push-three-sixths {
    left: 50%;
}
.small--push-four-sixths {
    left: 66.6667%;
}
.small--push-five-sixths {
    left: 83.3333%;
}
.small--push-one-eighth {
    left: 12.5%;
}
.small--push-two-eighths {
    left: 25%;
}
.small--push-three-eighths {
    left: 37.5%;
}
.small--push-four-eighths {
    left: 50%;
}
.small--push-five-eighths {
    left: 62.5%;
}
.small--push-six-eighths {
    left: 75%;
}
.small--push-seven-eighths {
    left: 87.5%;
}
.small--push-one-tenth {
    left: 10%;
}
.small--push-two-tenths {
    left: 20%;
}
.small--push-three-tenths {
    left: 30%;
}
.small--push-four-tenths {
    left: 40%;
}
.small--push-five-tenths {
    left: 50%;
}
.small--push-six-tenths {
    left: 60%;
}
.small--push-seven-tenths {
    left: 70%;
}
.small--push-eight-tenths {
    left: 80%;
}
.small--push-nine-tenths {
    left: 90%;
}
.small--push-one-twelfth {
    left: 8.33333%;
}
.small--push-two-twelfths {
    left: 16.6667%;
}
.small--push-three-twelfths {
    left: 25%;
}
.small--push-four-twelfths {
    left: 33.3333%;
}
.small--push-five-twelfths {
    left: 41.6667%;
}
.small--push-six-twelfths {
    left: 50%;
}
.small--push-seven-twelfths {
    left: 58.3333%;
}
.small--push-eight-twelfths {
    left: 66.6667%;
}
.small--push-nine-twelfths {
    left: 75%;
}
.small--push-ten-twelfths {
    left: 83.3333%;
}
.small--push-eleven-twelfths {
    left: 91.6667%;
}
}
@media only screen and (min-width: 750px) {
.medium-up--push-one-half {
    left: 50%;
}
.medium-up--push-one-third {
    left: 33.3333%;
}
.medium-up--push-two-thirds {
    left: 66.6667%;
}
.medium-up--push-one-quarter {
    left: 25%;
}
.medium-up--push-two-quarters {
    left: 50%;
}
.medium-up--push-three-quarters {
    left: 75%;
}
.medium-up--push-one-fifth {
    left: 20%;
}
.medium-up--push-two-fifths {
    left: 40%;
}
.medium-up--push-three-fifths {
    left: 60%;
}
.medium-up--push-four-fifths {
    left: 80%;
}
.medium-up--push-one-sixth {
    left: 16.6667%;
}
.medium-up--push-two-sixths {
    left: 33.3333%;
}
.medium-up--push-three-sixths {
    left: 50%;
}
.medium-up--push-four-sixths {
    left: 66.6667%;
}
.medium-up--push-five-sixths {
    left: 83.3333%;
}
.medium-up--push-one-eighth {
    left: 12.5%;
}
.medium-up--push-two-eighths {
    left: 25%;
}
.medium-up--push-three-eighths {
    left: 37.5%;
}
.medium-up--push-four-eighths {
    left: 50%;
}
.medium-up--push-five-eighths {
    left: 62.5%;
}
.medium-up--push-six-eighths {
    left: 75%;
}
.medium-up--push-seven-eighths {
    left: 87.5%;
}
.medium-up--push-one-tenth {
    left: 10%;
}
.medium-up--push-two-tenths {
    left: 20%;
}
.medium-up--push-three-tenths {
    left: 30%;
}
.medium-up--push-four-tenths {
    left: 40%;
}
.medium-up--push-five-tenths {
    left: 50%;
}
.medium-up--push-six-tenths {
    left: 60%;
}
.medium-up--push-seven-tenths {
    left: 70%;
}
.medium-up--push-eight-tenths {
    left: 80%;
}
.medium-up--push-nine-tenths {
    left: 90%;
}
.medium-up--push-one-twelfth {
    left: 8.33333%;
}
.medium-up--push-two-twelfths {
    left: 16.6667%;
}
.medium-up--push-three-twelfths {
    left: 25%;
}
.medium-up--push-four-twelfths {
    left: 33.3333%;
}
.medium-up--push-five-twelfths {
    left: 41.6667%;
}
.medium-up--push-six-twelfths {
    left: 50%;
}
.medium-up--push-seven-twelfths {
    left: 58.3333%;
}
.medium-up--push-eight-twelfths {
    left: 66.6667%;
}
.medium-up--push-nine-twelfths {
    left: 75%;
}
.medium-up--push-ten-twelfths {
    left: 83.3333%;
}
.medium-up--push-eleven-twelfths {
    left: 91.6667%;
}
}
.clearfix {
}
.clearfix::after {
    clear: both;
    content: "";
    display: table;
}
.visually-hidden, .icon__fallback-text {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
}
.visibility-hidden {
    visibility: hidden;
}
.js-focus-hidden:focus {
    outline: medium none;
}
.no-js:not(html) {
    display: none;
}
.no-js .no-js:not(html) {
    display: block;
}
.no-js .js {
    display: none;
}
.skip-link:focus {
    background-color: #fff;
    clip: auto;
    color: #3d4246;
    height: auto;
    margin: 0;
    opacity: 1;
    padding: 10px;
    transition: none 0s ease 0s ;
    width: auto;
    z-index: 10000;
}
body, html {
    background-color: #fff;
}
.page-width {
    margin: 0 auto;
    max-width: 1200px;
}
.page-width::after {
    clear: both;
    content: "";
    display: table;
}
.main-content {
    display: block;
    padding-top: 35px;
}
@media only screen and (min-width: 750px) {
.main-content {
    padding-top: 55px;
}
}
.section-header {
    margin-bottom: 35px;
}
@media only screen and (min-width: 750px) {
.section-header {
    margin-bottom: 55px;
}
}
blockquote {
    font-size: 1.125em;
    font-style: normal;
    margin: 0;
    padding: 0 30px;
    text-align: center;
}
.rte blockquote {
    border-color: #e8e9eb;
    border-style: solid;
    border-width: 1px 0;
    margin-bottom: 27.5px;
    padding: 30px 0;
}
blockquote p + cite {
    margin-top: 27.5px;
}
blockquote cite {
    display: block;
    font-size: 0.85em;
    font-weight: 400;
}
blockquote cite::before {
    content: "— ";
}
code, pre {
    font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif!important;
    font-size: 1em;
}
pre {
    overflow: auto;
}
body, input, textarea, button, select {
    color: #fff;
  font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif!important;
    font-size: 16px;
    line-height: 1.5;
}
@media only screen and (max-width: 989px) {
input, textarea, select, button {
    font-size: 16px;
}
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif!important;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 17.5px;
    overflow-wrap: break-word;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  color: american_captainregular;
    font-weight: inherit;
    text-decoration: none;
}
h1, .h1 {
    font-size: 2.1875em;
    letter-spacing: 0;
    text-transform: none;
}
@media only screen and (max-width: 749px) {
h1, .h1 {
    font-size: 2em;
}
}
h2, .h2 {
    font-size: 1.25em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
@media only screen and (max-width: 749px) {
h2, .h2 {
    font-size: 1.125em;
}
}
h3, .h3 {
    font-size: 1.625em;
    letter-spacing: 0;
    text-transform: none;
}
@media only screen and (max-width: 749px) {
h3, .h3 {
    font-size: 1.25em;
}
}
h4, .h4 {
    font-size: 1.0625em;
}
@media only screen and (max-width: 749px) {
h4, .h4 {
    font-size: 0.9375em;
}
}
h5, .h5 {
    font-size: 0.9375em;
}
@media only screen and (max-width: 749px) {
h5, .h5 {
    font-size: 0.8125em;
}
}
h6, .h6 {
    font-size: 0.875em;
}
@media only screen and (max-width: 749px) {
h6, .h6 {
    font-size: 0.75em;
}
}
.rte {
    color: #788188;
    margin-bottom: 35px;
}
.rte:last-child {
    margin-bottom: 0;
}
.rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-bottom: 27.5px;
    margin-top: 55px;
}
.rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
    margin-top: 0;
}
.rte li {
    list-style: inherit;
    margin-bottom: 4px;
}
.rte li:last-child {
    margin-bottom: 0;
}
.rte-setting {
    margin-bottom: 19.4444px;
}
.rte-setting:last-child {
    margin-bottom: 0;
}
p {
    color: #fff;
    margin: 0 0 19.4444px;
}
@media only screen and (max-width: 749px) {
p {
    font-size: 0.9375em;
}
}
p:last-child {
    margin-bottom: 0;
}
li {
    list-style: outside none none;
}
.fine-print {
    font-size: 0.875em;
    font-style: italic;
}
.txt--minor {
    font-size: 80%;
}
.txt--emphasis {
    font-style: italic;
}
.address {
    margin-bottom: 55px;
}
.mega-title, .mega-subtitle {
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.mega-title {
    margin-bottom: 8px;
}
.mega-title--large {
    font-size: 2.125em;
}
@media only screen and (min-width: 750px) {
.mega-title--large {
    font-size: 4.0625em;
}
}
@media only screen and (min-width: 750px) {
.mega-subtitle {
    font-size: 1.25em;
    margin: 0 auto;
    max-width: 75%;
}
}
.mega-subtitle p {
    color: inherit;
}
.mega-subtitle--large {
    font-size: 1.125em;
    font-weight: 600;
}
@media only screen and (min-width: 750px) {
.mega-subtitle--large {
    font-size: 1.5em;
}
}
.icon {
    display: inline-block;
    fill: currentcolor;
    height: 20px;
    vertical-align: middle;
    width: 20px;
}
.no-svg .icon {
    display: none;
}
svg.icon:not(.icon--full-color) circle, svg.icon:not(.icon--full-color) ellipse, svg.icon:not(.icon--full-color) g, svg.icon:not(.icon--full-color) line, svg.icon:not(.icon--full-color) path, svg.icon:not(.icon--full-color) polygon, svg.icon:not(.icon--full-color) polyline, svg.icon:not(.icon--full-color) rect, symbol.icon:not(.icon--full-color) circle, symbol.icon:not(.icon--full-color) ellipse, symbol.icon:not(.icon--full-color) g, symbol.icon:not(.icon--full-color) line, symbol.icon:not(.icon--full-color) path, symbol.icon:not(.icon--full-color) polygon, symbol.icon:not(.icon--full-color) polyline, symbol.icon:not(.icon--full-color) rect {
    fill: inherit;
    stroke: inherit;
}
.no-svg .icon__fallback-text {
    height: auto;
    margin: 0;
    overflow: inherit;
    position: static !important;
    width: auto;
}
.payment-icons {
    -moz-user-select: none;
    cursor: default;
}
.payment-icons .icon {
    height: 30px;
    width: 30px;
}
.social-icons .icon {
    height: 23px;
    width: 23px;
}
@media only screen and (min-width: 750px) {
.social-icons .icon {
    height: 25px;
    width: 25px;
}
}
.social-icons .icon.icon--wide {
    width: 40px;
}
ul, ol {
    margin: 0;
    padding: 0;
}
ol {
    list-style: outside none decimal;
}
.list--inline {
    margin: 0;
    padding: 0;
}
.list--inline li {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}
.rte img {
    height: auto;
}
.rte table {
    table-layout: fixed;
}
.rte ul, .rte ol {
    margin: 0 0 17.5px 35px;
}
.rte ul.list--inline, .rte ol.list--inline {
    margin-left: 0;
}
.rte ul {
    list-style: outside none disc;
}
.rte ul ul {
    list-style: outside none circle;
}
.rte ul ul ul {
    list-style: outside none square;
}
.rte a {
    border-bottom: 1px solid currentcolor;
    padding-bottom: 1px;
}
.text-center.rte ul, .text-center.rte ol, .text-center .rte ul, .text-center .rte ol {
    list-style-position: inside;
    margin-left: 0;
}
.rte__table-wrapper {
    max-width: 100%;
    overflow: auto;
}
a {
    color: #fff;
    text-decoration: none;
}

a.classic-link {
    text-decoration: underline;
}
.btn {
    -moz-appearance: none;
    -moz-user-select: none;
   background-color: #204a80;
  color: #ffffff;
    border: 1px solid transparent;
    border-radius: 2px;
    
    cursor: pointer;
    display: inline-block;
  font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif!important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: normal;
    width: auto; @include transition(all 0.4s ease-in-out);
}
@media only screen and (min-width: 750px) {
.btn {
    padding: 10px 18px;
}
}
.btn:hover, .btn:focus {
     background-color: #ff003a;
    color: #fff;
    border-color: #ff003a;
}
.btn .icon-arrow-right, .btn .icon-arrow-left {
    height: 9px;
}
.btn[disabled] {
    background-color: #7796a8;
    color: #fff;
    cursor: default;
    opacity: 0.5;
}
.btn.btn--secondary:hover { border-color: #204a80; background-color: #204a80;color: #fff; }

.btn--secondary {
    background: none;
    border-color: #e8e9eb;
    color: #fff;@include transition(all 0.4s ease-in-out);
}
.btn--small {
    font-size: 0.75em;
    line-height: 1;
    padding: 8px 10px;
}
@media only screen and (max-width: 749px) {
.btn--small-wide {
    padding-left: 50px;
    padding-right: 50px;
}
}
.btn--link {
    background-color: transparent;
    border: 0 none;
    color: #3d4246;
    margin: 0;
    text-align: left;
}
.btn--link:hover, .btn--link:focus {
    opacity: 0.6;
}
.btn--link .icon {
    vertical-align: middle;
}
.btn--narrow {
    padding-left: 15px;
    padding-right: 15px;
}
.btn--disabled {
    cursor: default;
    opacity: 0.5;
}
.btn--disabled:hover, .btn--disabled:focus {
    opacity: 0.5;
}
.btn--has-icon-after .icon {
    margin-left: 10px;
}
.btn--has-icon-before .icon {
    margin-right: 10px;
}
.text-link {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    display: inline;
    margin: 0;
    padding: 0;
}
.return-link-wrapper {
    margin: 82.5px 0;
}
@media only screen and (max-width: 749px) {
.return-link-wrapper {
    margin-bottom: -56px;
}
.return-link-wrapper .btn {
    display: block;
}
}
table {
    margin-bottom: 27.5px;
}
th {
    font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif!important;
    font-weight: 700;
}
th, td {
    border: 1px solid #e8e9eb;
    padding: 10px 14px;
    text-align: left;
}
@media only screen and (max-width: 749px) {
.responsive-table thead {
    display: none;
}
.responsive-table tr {
    display: block;
}
.responsive-table tr, .responsive-table td {
    clear: both;
    float: left;
    width: 100%;
}
.responsive-table th, .responsive-table td {
    border: 0 none;
    display: block;
    margin: 0;
    padding: 27.5px;
    text-align: right;
}
.responsive-table td::before {
    content: attr(data-label);
    float: left;
    font-size: 12px;
    padding-right: 10px;
    text-align: center;
}
.responsive-table__row + .responsive-table__row, tfoot > .responsive-table__row:first-child {
    margin-top: 10px;
    padding-top: 55px;
    position: relative;
}
.responsive-table__row + .responsive-table__row::after, tfoot > .responsive-table__row:first-child::after {
    border-bottom: 1px solid #e8e9eb;
    content: "";
    display: block;
    left: 27.5px;
    position: absolute;
    right: 27.5px;
    top: 0;
}
}
svg:not(:root) {
    overflow: hidden;
}
.video-wrapper {
    height: auto;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}
.video-wrapper iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
form {
    margin: 0;
}
fieldset {
    border: 1px solid #e8e9eb;
    margin: 0 0 55px;
    padding: 27.5px;
}
legend {
    border: 0 none;
    padding: 0;
}
button {
    cursor: pointer;
}
input[type="submit"] {
    cursor: pointer;
}
label {
    display: block;
    margin-bottom: 5px;
}
@media only screen and (max-width: 749px) {
label {
    font-size: 0.875em;
}
}
[type="radio"] + label, [type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0;
}
label[for] {
    cursor: pointer;
}
input, textarea, select {
    background-color: #fff;
    border: 1px solid #e8e9eb;
    border-radius: 2px;
    color: #000;
    line-height: 1.2;
    max-width: 100%;
}
input:focus, textarea:focus, select:focus {
    border-color: #cdcfd3;
}
input[disabled], textarea[disabled], select[disabled] {
    background-color: #f4f4f4;
    border-color: #f4f4f4;
    cursor: default;
}
input.input--error::-moz-placeholder, textarea.input--error::-moz-placeholder, select.input--error::-moz-placeholder {
    color: #d20000;
    opacity: 0.5;
}
input.hidden-placeholder::-moz-placeholder, textarea.hidden-placeholder::-moz-placeholder, select.hidden-placeholder::-moz-placeholder {
    color: transparent;
}
textarea {
    min-height: 100px;
}
input.input--error, select.input--error, textarea.input--error {
    background-color: #fff8f8;
    border-color: #d20000;
    color: #d20000;
}
select {
    -moz-appearance: none;
    background-image: url("//cdn.shopify.com/s/files/1/1604/4209/t/1/assets/ico-select.svg?16872005800000996561");
    background-position: right 10px center;
    background-repeat: no-repeat;
    cursor: pointer;
    line-height: 1.2;
    padding: 8px 28px 8px 15px;
    text-indent: 0.01px;
    text-overflow: "";
}
@media only screen and (min-width: 750px) {
select {
    padding-bottom: 10px;
    padding-left: 18px;
    padding-top: 10px;
}
}
.ie9 select {
    background-image: none;
    padding-right: 10px;
}
optgroup {
    font-weight: 700;
}
option {
    background-color: #fff;
    color: #3d4246;
}
.label--hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
    position: absolute;
    width: 0;
}
.ie9 .label--hidden {
    clip: initial;
    height: auto;
    margin-bottom: 2px;
    overflow: visible;
    position: static;
    width: auto;
}
*::-moz-placeholder {
    color: #000;
    opacity: 0.6;
}
.label--error {
    color: #d20000;
}
input, textarea {
    padding: 8px 15px;
}
@media only screen and (min-width: 750px) {
input, textarea {
    padding: 10px 18px;
}
}
.form-vertical input, .form-vertical select, .form-vertical textarea {
    display: block;
    margin-bottom: 19.4444px;
    width: 100%;
}
.form-vertical [type="radio"], .form-vertical [type="checkbox"] {
    display: inline-block;
    margin-right: 5px;
    width: auto;
}
.form-vertical [type="submit"], .form-vertical .btn {
    display: inline-block;
    width: auto;
}
.note, .form--success, .errors {
    margin: 0 0 27.5px;
    padding: 8px;
}
@media only screen and (min-width: 750px) {
.note, .form--success, .errors {
    padding: 10px;
}
}
.note {
    border: 1px solid #e8e9eb;
}
.form--success {
    background-color: #f8fff9;
    border: 1px solid #19a340;
    color: #19a340;
}
.errors {
    background-color: #fff8f8;
    border: 1px solid #d20000;
    color: #d20000;
}
.errors ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.errors a {
    color: #d20000;
    text-decoration: underline;
}
.input-group {
    border-collapse: separate;
    display: table;
    position: relative;
    width: 100%;
}
.form-vertical .input-group {
    margin-bottom: 55px;
}
.input-group__field, .input-group__btn {
    display: table-cell;
    margin: 0;
    vertical-align: middle;
}
.input-group__field, .input-group__btn .btn {
    height: 42px;
    padding-bottom: 0;
    padding-top: 0;
}
@media only screen and (min-width: 750px) {
.input-group__field, .input-group__btn .btn {
    height: 46px;
}
}
.input-group__field {
    border-radius: 2px 0 0 2px;
    border-right: 0 none;
    width: 100%;
}
.form-vertical .input-group__field {
    margin: 0;
}
.input-group__btn {
    white-space: nowrap;
    width: 1%;
}
.input-group__btn .btn {
    border-radius: 0 2px 2px 0;
    white-space: nowrap;
}
.site-header__logo img {
    display: block;
}
.site-nav {
    margin: 25px 0;
    padding: 0;
    position: relative;
    text-align: center;
}
.site-nav a {
    padding: 3px 10px;
}
.site-nav li {
    display: inline-block;
}
.site-nav--centered {
    padding-bottom: 22px;
}
.site-nav__link {
    display: block;
    white-space: nowrap;
}
.site-nav--centered .site-nav__link {
    padding-top: 0;
}
.site-nav__link .icon-chevron-down {
    height: 8px;
    margin-left: 2px;
    width: 8px;
}
.site-nav--active-dropdown .site-nav__link .icon-chevron-down {
    transform: rotateZ(-180deg);
}
.site-nav__link.site-nav--active-dropdown {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #e8e9eb #e8e9eb transparent;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    z-index: 2;
}
.site-nav--has-dropdown {
    position: relative;
}
.site-nav--has-centered-dropdown {
    position: static;
}
.site-nav__dropdown {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #e8e9eb;
    display: none;
    left: -1px;
    margin: 0;
    padding: 11px 17px;
    position: absolute;
    text-align: left;
    top: 41px;
    z-index: 7;
}
.site-nav__dropdown .site-nav__link {
    padding: 4px 30px 4px 0;
}
.site-nav--active-dropdown .site-nav__dropdown {
    display: block;
}
.site-nav__dropdown li {
    display: block;
}
.site-nav__dropdown--centered {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    padding: 0;
    text-align: center;
    width: 100%;
}
.site-nav__childlist {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #e8e9eb;
    display: inline-block;
    padding: 11px 17px;
    text-align: left;
}
.site-nav__childlist-grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -35px;
    width: auto;
}
.site-nav__childlist-item {
    flex: 0 1 auto;
    margin-bottom: 35px;
}
.site-nav__child-link--parent {
    font-weight: 700;
    margin: 4px 0;
}
.page-width {
    padding-left: 55px;
    padding-right: 55px;
}
@media only screen and (max-width: 749px) {
.page-width {
    padding-left: 0px;
    padding-right: 22px;
}
}
.page-container {
    overflow: hidden;
    position: relative;
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0s;
}
@media only screen and (min-width: 750px) {
.page-container {
    transform: translate3d(0px, 0px, 0px);
}
}
hr {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #e8e9eb;
    border-image: none;
    border-style: none none solid;
    border-width: 0 0 1px;
    margin: 55px 0;
}
.hr--small {
    margin: 0;
    padding: 10px 0;
}
.hr--invisible {
    border-bottom: 0 none;
}
.border-bottom {
    border-bottom: 1px solid #e8e9eb;
}
.border-top {
    border-top: 1px solid #e8e9eb;
}
.empty-page-content {
    padding: 125px 55px;
}
@media only screen and (max-width: 749px) {
.empty-page-content {
    padding-left: 22px;
    padding-right: 22px;
}
}
.grid--table {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.grid--table > .grid__item {
    display: table-cell;
    float: none;
    vertical-align: middle;
}
.grid--no-gutters {
    margin-left: 0;
}
.grid--no-gutters .grid__item {
    padding-left: 0;
}
.grid--half-gutters {
    margin-left: -15px;
}
.grid--half-gutters > .grid__item {
    padding-left: 15px;
}
.grid--double-gutters {
    margin-left: -60px;
}
.grid--double-gutters > .grid__item {
    padding-left: 60px;
}
.grid--flush-bottom {
    margin-bottom: -55px;
    overflow: auto;
}
.grid--flush-bottom > .grid__item {
    margin-bottom: 55px;
}
.is-transitioning {
    display: block !important;
    visibility: visible !important;
}
@keyframes spin {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
@keyframes spin {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
@keyframes spin {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
#CartDrawer .drawer__header {
  
    display: none !important;
}
.drawer {
    background-color: #fff;
    display: none;
    overflow: hidden;
    position: absolute;
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0s;
    z-index: 9;
}
.drawer {
    
    width: 370px !important;
    
}
.drawer input[type="text"], .drawer textarea {
    background-color: #fff;
    color: #3d4246;
}
.js-drawer-open {
    overflow: hidden;
}
.drawer--top {
    width: 100%;
}
.js-drawer-open-top .drawer--top {
    display: block;
    transform: translateY(100%);
}
.drawer-page-content::after {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0s;
    visibility: hidden;
    width: 100%;
    z-index: 8;
}
.js-drawer-open .drawer-page-content::after {
    opacity: 1;
    visibility: visible;
}
.drawer__title, .drawer__close {
    display: table-cell;
    vertical-align: middle;
}
.drawer__close-button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    color: inherit;
    font-size: 1.125em;
    height: 100%;
    padding: 0 20px;
    position: relative;
    right: -15px;
    width: 60px;
}
.drawer__close-button:active, .drawer__close-button:focus {
    background-color: rgba(0, 0, 0, 0.6);
}
.grid--view-items {
    margin-bottom: -35px;
    overflow: auto;
}
.grid-view-item {
    margin: 0 auto 35px;
}
.custom__item .grid-view-item {
    margin-bottom: 0;
}
.grid-view-item__title {
    color: #3d4246;
    margin-bottom: 0;
}
.grid-view-item__meta {
    margin-top: 8px;
}
@media only screen and (max-width: 749px) {
.grid-view-item__title, .grid-view-item__meta {
    font-size: 0.9375em;
}
}
.product-price__price {
    color: #788188;
    display: inline-block;
}
.product-price__sale {
    padding-right: 0;
}
.grid-view-item__link {
    display: block;
}
.grid-view-item__vendor {
    color: #788188;
    font-size: 0.875em;
    margin-top: 4px;
    text-transform: uppercase;
}
@media only screen and (max-width: 749px) {
.grid-view-item__vendor {
    font-size: 0.8125em;
}
}
.grid-view-item__image {
    display: block;
    margin: 0 auto 15px;
}
.grid-view-item--sold-out .grid-view-item__image {
    opacity: 0.5;
}
.list-view-item {
    display: table;
    margin-bottom: 22px;
    table-layout: fixed;
    width: 100%;
}
.list-view-item:last-child {
    margin-bottom: 0;
}
@media only screen and (min-width: 750px) {
.list-view-item {
    border-bottom: 1px solid #e8e9eb;
    padding-bottom: 22px;
}
.list-view-item:last-child {
    border-bottom: 0 none;
    padding-bottom: 0;
}
}
.list-view-item__image-column {
    display: table-cell;
    vertical-align: middle;
    width: 130px;
}
@media only screen and (max-width: 749px) {
.list-view-item__image-column {
    width: 85px;
}
}
.list-view-item__image-wrapper {
    margin-right: 35px;
    position: relative;
}
@media only screen and (max-width: 749px) {
.list-view-item__image-wrapper {
    margin-right: 17.5px;
}
}
.list-view-item__title-column {
    display: table-cell;
    vertical-align: middle;
}
.list-view-item__title {
    color: #3d4246;
    font-size: 1.125em;
    min-width: 100px;
}
@media only screen and (max-width: 749px) {
.list-view-item__title {
    font-size: 0.9375em;
}
}
.list-view-item__sold-out {
    font-size: 0.9375em;
}
.list-view-item__on-sale {
    color: #7796a8;
    font-size: 0.9375em;
}
@media only screen and (max-width: 749px) {
.list-view-item__on-sale {
    display: none;
}
}
.list-view-item__vendor-column {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 20%;
}
.list-view-item__vendor {
    font-size: 0.9375em;
    font-style: italic;
}
@media only screen and (max-width: 749px) {
.list-view-item__vendor {
    font-size: 0.875em;
}
}
.list-view-item__price-column {
    display: table-cell;
    font-size: 1.0625em;
    text-align: right;
    vertical-align: middle;
    width: 20%;
}
@media only screen and (max-width: 749px) {
.list-view-item__price-column {
    font-size: 0.9375em;
}
}
.list-view-item__price-column .product-price__sale {
    display: block;
}
.list-view-item__price-column .product-price__sale-label, .list-view-item__price-column .product-price__sold-out {
    display: none;
}
.list-view-item__price {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list-view-item__price--reg {
    color: #7796a8;
}
@media only screen and (max-width: 749px) {
.list-view-item__price--reg {
    display: block;
}
}
@media only screen and (max-width: 749px) {
.list-view-item__price--sale {
    display: block;
}
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.slick-slider .slick-dots {
    margin: 0;
    width: auto;
}
.slick-slider .slick-dots li {
    height: 10px;
    margin: 0 0 0 6px;
    vertical-align: middle;
    width: 10px;
}
.slick-slider .slick-dots li:first-of-type {
    margin-left: 0;
}
@media only screen and (min-width: 750px) {
.slick-slider .slick-dots li {
    height: 12px;
    margin-left: 8px;
    width: 12px;
}
}
.slick-slider .slick-dots li button {
    height: 10px;
    padding: 0;
    position: relative;
    width: 10px;
}
@media only screen and (min-width: 750px) {
.slick-slider .slick-dots li button {
    height: 12px;
    width: 12px;
}
}
.slick-slider .slick-dots li button::before {
    background-color: currentcolor;
    border-radius: 100%;
    height: 10px;
    opacity: 0.4;
    text-indent: -9999px;
    transition: all 0.2s ease 0s;
    width: 10px;
}
@media only screen and (min-width: 750px) {
.slick-slider .slick-dots li button::before {
    height: 12px;
    width: 12px;
}

  
}
.slick-slider .slick-dots li.slick-active button::before {
    opacity: 1;
}
.slick-slider .slick-dots li button:active::before {
    opacity: 0.7;
}
.index-section {
    
    padding-top: 35px;
}
@media only screen and (min-width: 750px) {
.index-section {
    
    padding-top: 35px;
}
}
.index-section:first-child {
    border-top: 0 none;
    padding-top: 0;
}
.index-section:last-child {
    padding-bottom: 0;
}
.index-section--flush + .index-section--flush {
    margin-top: -70px;
}
@media only screen and (min-width: 750px) {
.index-section--flush + .index-section--flush {
    margin-top: -110px;
}
}
.index-section--flush:first-child {
    margin-top: -35px;
}
@media only screen and (min-width: 750px) {
.index-section--flush:first-child {
    margin-top: -55px;
}
}
.index-section--flush:last-child {
    margin-bottom: -35px;
}
@media only screen and (min-width: 750px) {
.index-section--flush:last-child {
    margin-bottom: -55px;
}
}
@media only screen and (max-width: 749px) {
.index-section--featured-product:first-child {
    margin-top: -12px;
}
}
.placeholder-svg {
    background-color: rgba(120, 129, 136, 0.1);
    border: 1px solid rgba(120, 129, 136, 0.2);
    display: block;
    fill: rgba(120, 129, 136, 0.35);
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
}
.placeholder-noblocks {
    padding: 40px;
    text-align: center;
}
.placeholder-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.placeholder-background .icon {
    border: 0 none;
}
.image-bar__content .placeholder-svg {
    left: 0;
    position: absolute;
    top: 0;
}

.password-social-sharing a { padding:0 10px; }

.template-password {
    height: 100vh; overflow: hidden;
}
.password-page {
    background-color: #fff;
    background-size: cover;
  background-image:url(//cdn.shopify.com/s/files/1/3099/9934/t/5/assets/password_bg_img.jpg?v=14614367451507532344);
    color: $colorTextBody;
    display: table;
    height: 100%;
    width: 100%; position: absolute;
}
.ie9 .password-page {
    height: auto;
}
.password-page .errors, .password-page .form--success {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}
.password-header {
    display: table-row;
    height: 85px;
}
.password-header__inner {
    display: table-cell;
    vertical-align: middle;
}
.password-login {
    padding: 0 30px;
    text-align: right;
}
.password-logo .logo {
    color: #3d4246;
    font-weight: 700;
    max-width: 100%;
}
.password-main {
    display: table-row;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}
.password-main__inner {
    display: table-cell;
    padding: 27.5px 55px;
    vertical-align: middle;
}
.password-message {
    margin: 82.5px auto 27.5px;
    max-width: 500px;
}
.password__input-group {
    margin: 0 auto 30px;
    max-width: 400px;
}
.password__title {
    margin-bottom: 30px;font-size:60px;letter-spacing:2px;text-transform:initial;font-weight:normal;
  color:#ffffff;
}

@media only screen and (max-width: 749px) {
  
  .password__title { font-size:32px; margin-bottom: 15px; margin-top: 10px; }
  .password__form-heading { margin-bottom: 15px; }
  
}

#LoginModal { height: 100%; }
#LoginModal .password__form-heading,#LoginModal p,#LoginModal .modal__close { color:#333333; }

#LoginModal .modal__close { font-size:30px; }

.password__form-heading {
  margin-bottom: 30px;font-weight:normal;color:#ffffff;
}

.password-powered-by small { color:#ffffff; }

.password-powered-by small a { color:#fff; transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1) 0s; }
.password-powered-by small a:hover { color:#fff; }



.password-page .social-sharing label {color:#fff;}



.password-page .social-sharing a {color:#fff; transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1) 0s; }

.password-page .social-sharing a:hover {color:#fff;}



.password-page .btn {background:#ffffff;color:#ffffff;border-color:#ffffff; transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1) 0s;}


.password-page .btn:hover {background:#ffffff;color:#ffffff;border-color:#ffffff;}


.password-page .input-group__field {background:#ffffff;border-color: transparent;}



.password-page input[type="email"]::-webkit-input-placeholder {opacity:0.8;color:#ffffff;}  
.password-page input[type="email"]::-moz-placeholder { opacity:0.8;color:#ffffff;}
.password-page input[type="email"]:-ms-input-placeholder {opacity:0.8;color:#ffffff;}
.password-page input[type="email"]:-moz-placeholder { opacity:0.8;color:#ffffff;}

.password-page .logo {color:#ffffff;}





.password-powered-by {
    margin-top: 50px;
}

@media only screen and (max-width: 749px) {
  .password-powered-by { margin-top: 30px; }
  
}
h1.product-single__title, .product-single__title.h1 {
    margin-bottom: 0;
}
.product-single__price {
    color: #788188;
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 30px;
}
@media only screen and (max-width: 749px) {
.product-single__price {
    display: block;
    font-size: 1.125em;
}
}
.product-single__vendor {
    color: #788188;
    font-size: 1em;
    letter-spacing: 1px;
    margin: 5px 0 10px;
    text-transform: uppercase;
}
.product-form {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px -10px;
    width: auto;
}
.product-form__item {
    flex: 1 1 200px;
    margin-bottom: 10px;
    padding: 0 5px;
}
.product-form__item label {
    display: block;
}
.product-form--hide-variant-labels .product-form__item label {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
}
.product-form__variants {
    display: none;
}
.no-js .product-form__variants {
    display: block;
}
.product-form__item--quantity {
    flex: 0 0 100px;
}
.product-form__item--submit {
    flex-basis: 200px;
}
.product-form__input {
    display: block;
    width: 100%;
}
.product-form__cart-submit {
    display: block;
    line-height: 1.4;
    padding-left: 5px;
    padding-right: 5px;
    white-space: normal;
    width: 100%;
}
@media only screen and (min-width: 750px) {
.product-form__cart-submit--small {
    max-width: 300px;
}
}
.product-single__description {
    margin-top: 30px;
}
.product-single__thumbnail {
    border: 2px solid transparent;
    display: block;
    margin: -2px 0 8px;
}
.product-single__thumbnail.active-thumb {
    border-color: #3d4246;
}
.product-single__thumbnail-image {
    display: block;
}
.product-featured-img {
    display: block;
    margin: 0 auto;
}
.zoomImg {
    background-color: #fff;
}
@media only screen and (min-width: 750px) {
.product-single__thumbnails {
    margin-top: 30px;
}
}
@media only screen and (max-width: 749px) {
.product-single__photos {
    margin-bottom: 30px;
}
.product-single__photo--has-thumbnails {
    margin-bottom: 30px;
}
}
.product-single__photos--full {
    margin-bottom: 30px;
}
.product-single__photo {
    min-height: 1px;
}
@media only screen and (max-width: 749px) {
.template-product .main-content {
    padding-top: 22px;
}
.thumbnails-slider--active .product-single__thumbnails {
    display: none;
}
.thumbnails-slider--active .product-single__thumbnails.slick-initialized, .ie9 .thumbnails-slider--active .product-single__thumbnails {
    display: block;
    margin: 0 auto;
    max-width: 75%;
}
.product-single__photos {
    position: relative;
}
.thumbnails-wrapper {
    position: relative;
    text-align: center;
}
.thumbnails-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.thumbnails-slider__prev {
    left: -20px;
}
.thumbnails-slider__next {
    right: -20px;
}
.product-single__thumbnails-item {
    display: inline-block;
    float: none;
    padding-bottom: 10px;
    vertical-align: middle;
    width: 72px;
}
.slick-slider .product-single__thumbnails-item {
    float: left;
}
.thumbnails-slider--active .product-single__thumbnails-item {
    padding: 5px 0;
}
.product-single__thumbnail {
    margin: 0 auto;
    width: 50px;
}
}
.collection-hero {
    margin-bottom: 22px;
    margin-top: -55px;
    overflow: hidden;
    position: relative;
}
@media only screen and (min-width: 750px) {
.collection-hero {
    margin-bottom: 35px;
}
}
.collection-description {
    margin-bottom: 22px;
    margin-top: 22px;
}
@media only screen and (min-width: 750px) {
.collection-description {
    margin-bottom: 35px;
    margin-top: 35px;
}
}
.collection-hero__image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    opacity: 1;
}
@media only screen and (max-width: 749px) {
.collection-hero__image {
    height: 180px;
}
}
.collection-hero__title-wrapper::before {
    background-color: #3d4246;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0.25;
    position: absolute;
    right: 0;
    top: 0;
}
.collection-hero__title {
    color: #fff;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
@media only screen and (min-width: 750px) {
.collection-hero__title {
    font-size: 2em;
}
}
.template-blog .social-sharing {
    margin-bottom: 17.5px;
}
.blog--list-view .pagination {
    padding-top: 0;
}
.cart th, .cart td {
    border: 0 none;
}
.cart td {
    padding: 22px 0;
}
.cart th {
    font-weight: 400;
    padding: 27.5px 0;
}
.cart .cart__meta {
    padding-right: 15px;
}
.cart__meta-text {
    font-size: 0.875em;
    font-style: italic;
    padding: 5px 0;
}
.cart__qty-label {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
}
.cart__qty-input {
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    width: 60px;
}
@media only screen and (max-width: 749px) {
.cart__qty-input {
    padding-bottom: 2px;
    padding-top: 2px;
}
}
.cart__edit {
    margin-top: 10px;
}
.cart__edit--active .cart__edit-text--cancel {
    display: none;
}
.cart__edit-text--edit {
    display: none;
}
.cart__edit--active .cart__edit-text--edit {
    display: block;
}
.cart__edit-text--cancel, .cart__edit-text--edit {
    pointer-events: none;
}
.cart__row p {
    margin-bottom: 0;
}
.cart__row p + p {
    margin-top: 10px;
}
.cart__subtotal-title {
    font-size: 1.125em;
}
.cart__subtotal {
    padding-left: 27.5px;
}
@media only screen and (min-width: 750px) {
.cart__subtotal {
    display: inline-block;
    min-width: 150px;
    padding-left: 55px;
}
}
.cart__savings {
    padding-top: 18px;
}
.cart__savings-amount {
    padding-left: 27.5px;
}
@media only screen and (min-width: 750px) {
.cart__savings-amount {
    display: inline-block;
    min-width: 150px;
    padding-left: 55px;
}
}
.cart__footer {
    padding-top: 35px;
}
.cart__update--large {
    margin-right: 10px;
}
.cart__shipping {
    font-size: 0.875em;
    font-style: italic;
    padding: 18px 0 20px;
}
.cart-note__label, .cart-note__input {
    display: block;
}
@media only screen and (max-width: 749px) {
.cart-note__label, .cart-note__input {
    margin: 0 auto;
}
}
.cart-note__label {
    margin-bottom: 15px;
}
.cart-note__input {
    min-height: 50px;
    width: 100%;
}
@media only screen and (max-width: 749px) {
.cart-note__input {
    margin-bottom: 40px;
}
}
.cart__image-wrapper a {
    display: block;
    padding-right: 17.5px;
}
@media only screen and (min-width: 750px) {
.cart__image-wrapper a {
    padding-right: 35px;
}
}
@media only screen and (min-width: 750px) {
.cart__image-wrapper {
    width: 130px;
}
.cart__meta {
    max-width: 300px;
}
.cart__remove {
    margin-top: 4px;
}
.cart__qty {
    text-align: center;
}
}
@media only screen and (max-width: 749px) {
.cart table {
    display: block;
    width: 100%;
}
.cart thead {
    display: none;
}
.cart tr, .cart tbody {
    width: 100%;
}
.cart tbody {
    display: block;
}
.cart .cart__update-wrapper {
    display: none;
    padding-bottom: 22px;
    padding-top: 0;
}
.cart__update--show td {
    padding-bottom: 10px;
}
.cart__update--show .cart__update-wrapper {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.cart-flex {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.cart-flex-item {
    display: block;
    flex: 1 1 100%;
    min-width: 0;
}
.cart__meta {
    flex: 1 1 0;
}
.cart__image-wrapper {
    flex: 0 0 85px;
}
.cart__price-wrapper {
    flex: 0 1 24%;
    text-align: right;
}
.cart__header {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
}
.cart-message {
    padding-top: 20px;
}
.cart__qty {
    padding: 0 10px;
}
.cart__qty-label {
    clip: auto;
    display: inline-block;
    font-size: 0.8125em;
    height: auto;
    margin: 0 5px 0 0;
    overflow: auto;
    position: inherit !important;
    vertical-align: middle;
    width: auto;
}
}
.additional-checkout-buttons {
    margin-top: 22px;
}
.additional-checkout-buttons input[type="image"] {
    background: transparent none repeat scroll 0 0;
    border: 0 none;
    padding: 0;
}
.site-header {
    background-color: #fff;
    padding: 0 55px;
    position: relative;
}
@media only screen and (max-width: 749px) {
.site-header {
    border-bottom: 1px solid #e8e9eb;
    padding: 0;
}
}
@media only screen and (min-width: 750px) {
.site-header.logo--center {
    padding-top: 30px;
}
}
.site-header__logo {
    margin: 15px 0;
}
.logo-align--center .site-header__logo {
    margin: 0 auto;
    text-align: center;
}
@media only screen and (max-width: 749px) {
.logo-align--center .site-header__logo {
    margin: 15px 0;
    text-align: left;
}
}
.site-header__logo-link {
    display: inline-block;
}
.site-header__logo-image {
    display: block;
}
@media only screen and (min-width: 750px) {
.site-header__logo-image {
    margin: 0 auto;
}
}
.site-header__logo-image--centered img {
    margin: 0 auto;
}
@media only screen and (min-width: 750px) {
.logo-align--center .site-header__logo-link {
    margin: 0 auto;
}
}
@media only screen and (max-width: 749px) {
.site-header__icons .btn--link, .site-header__icons .site-header__cart {
    font-size: 1em;
}
}
.site-header__icons {
    position: relative;
    white-space: nowrap;
}
.site-header__icons-wrapper {
    margin-right: -10px;
    position: relative;
}
.site-header__cart, .site-header__search, .site-header__account {
    position: relative;
}
.site-header__search {
    padding-right: 45px;
}
.site-header__icons--plus .site-header__search {
    padding-right: 90px;
}
@media only screen and (min-width: 750px) {
.site-header__cart, .site-header__account {
    padding: 8px 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.site-header__account {
    right: 50px;
}
}
.site-header__cart-title, .site-header__search-title {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    display: inline-block;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    vertical-align: middle;
    width: 1px;
}
.site-header__cart-title {
    margin-right: 3px;
}
.site-header__cart-count {
    background-color: #7796a8;
    border-radius: 9px;
    color: #fff;
    display: block;
    font-weight: bold;
    height: 16px;
    min-width: 16px;
    position: absolute;
    top: -1px;
}
.site-header__cart-count span {
    display: block;
    font-family: "'Rubik', 'Arial', 'Helvetica', sans-serif!important;
    font-size: 11px;
    line-height: 1;
    padding: 2px 5px;
}
@media only screen and (min-width: 750px) {
.logo--center .site-header__cart-count {
    right: -2px;
}
.logo--left .site-header__cart-count {
    left: 12px;
    top: 4px;
}
}
@media only screen and (max-width: 749px) {
.site-header__cart-count {
    border-radius: 11px;
    height: 19px;
    left: 0px;
    min-width: 19px;
    top: 0px;
}
.site-header__cart-count span {
    font-size: 12px;
    padding: 4px 6px;
}
}
.site-header__menu {
    display: none;
}
.site-header .icon-search, .site-header .icon-hamburger, .site-header .icon-close, .site-header .icon-cart {
    height: 30px;
}
@media only screen and (min-width: 750px) {
.site-header .icon-search, .site-header .icon-hamburger, .site-header .icon-close, .site-header .icon-cart {
    margin-right: 3px;
}
}
@media only screen and (max-width: 749px) {
.site-header__logo {
    padding-left: 22px;
}
.site-header__icons {
    padding-right: 22px;
}
.site-header__menu, .site-header__search-toggle, .site-header__cart, .site-header__account {
    display: inline-block;
    margin: 0;
    padding: 18px 8px;
    vertical-align: middle;
}
.site-header__icons--plus .site-header__menu, .site-header__icons--plus .site-header__search-toggle, .site-header__icons--plus .site-header__cart, .site-header__icons--plus .site-header__account {
    padding: 18px 6px;
}
.site-header__logo {
    text-align: left;
}
.site-header__logo img {
    margin: 0;
}
}
.notification-bar {
    position: relative;
    text-align: center;
    z-index: 10;
}
.notification-bar__message {
    display: block;
    font-size: 1em;
    font-weight: 600;
    padding: 10px 22px;
}
@media only screen and (min-width: 750px) {
.notification-bar__message {
    padding: 10px 55px;
}
}
.article--listing {
    margin-bottom: 55px;
    padding-top: 55px;
}
.article__title {
    margin-bottom: 11px;
}
.article__author {
    margin-right: 10px;
}
.article__author, .article__date {
    display: inline-block;
    margin-bottom: 22px;
}
.template-article .article__author, .template-article .article__date {
    margin-bottom: 0;
}
.article__tags {
    margin-bottom: 27.5px;
}
.article__tags--list {
    font-style: italic;
}
.grid--blog {
    margin-bottom: -55px;
    overflow: auto;
}
.article__grid-tag {
    margin-right: 10px;
}
.article__grid-meta {
    margin-bottom: 55px;
}
@media only screen and (max-width: 749px) {
.article__grid-meta--has-image {
    float: left;
    padding-left: 22px;
    width: 60%;
}
}
.article__grid-excerpt {
    margin-bottom: 17.5px;
}
.article__grid-image {
    clear: both;
    display: block;
    margin-bottom: 27.5px;
}
@media only screen and (max-width: 749px) {
.article__grid-image {
    float: left;
    margin-bottom: 55px;
    width: 40%;
}
}
.article__grid-image img {
    display: block;
}
.article__list-image {
    margin: 0 auto;
}
.sidebar {
    margin-top: 40px;
}
.sidebar__list {
    list-style: outside none none;
    margin-bottom: 55px;
}
.sidebar__list li {
    margin-bottom: 10px;
}
.pagination {
    font-size: 0.9375em;
    list-style: outside none none;
    padding-top: 55px;
    text-align: center;
}
.pagination li {
    display: inline-block;
}
.pagination .icon {
    display: block;
    height: 20px;
    vertical-align: middle;
}
.pagination__text {
    padding: 0 27.5px;
}
.comment {
    margin-bottom: 30px;
}
.comment:last-child {
    margin-bottom: 0;
}
.comment__content {
    margin-bottom: 5px;
}
.comment__meta-item {
    font-size: 0.875em;
    margin-right: 10px;
}
.comment__meta-item:first-child::before {
    content: "— ";
}
.btn--share {
    margin-bottom: 10px;
    margin-right: 5px;
}
.btn--share .icon {
    height: 16px;
    margin-right: 4px;
    vertical-align: middle;
    width: 16px;
}
.btn--share .icon-facebook {
    fill: #3b5998;
}
.btn--share .icon-twitter {
    fill: #00aced;
}
.btn--share .icon-pinterest {
    fill: #cb2027;
}
.share-title {
    display: inline-block;
    vertical-align: middle;
}
.search-bar__form {
    border: 1px solid transparent;
    display: table;
    height: 40px;
    position: relative;
    width: 100%;
}
@media only screen and (max-width: 749px) {
.search-bar__form {
    width: 100%;
}
}
.search-bar__submit .icon {
    height: 30px;
    position: relative;
    top: -1px;
}
.search-bar__submit, .search-header__submit {
    display: inline-block;
    height: 100%;
    left: 0;
    padding: 0 0 0 5px;
    position: absolute;
    top: 0;
    vertical-align: middle;
    z-index: 1;
}
.search-header__input, .search-bar__input {
    background-color: transparent;
    border-color: transparent;
    border-radius: 2px;
    color: #3d4246;
    padding-left: 35px;
    width: 100%;
}
.search-header__input::-moz-placeholder, .search-bar__input::-moz-placeholder {
    color: #3d4246;
    opacity: 0.6;
}
.search-bar__input {
    border: 1px solid transparent;
}
.search-bar__input:focus {
    border-color: transparent;
}
.search-header__input:hover + .btn--link {
    opacity: 0.6;
}
.search-bar {
    border-bottom: 1px solid #e8e9eb;
    padding: 0 27.5px;
}
.search-bar__table {
    display: table;
    height: 100%;
    table-layout: fixed;
    width: 100%;
}
.search-bar__table-cell {
    display: table-cell;
    vertical-align: middle;
}
.search-bar__form-wrapper {
    width: 90%;
}
.search-header {
    display: inline-block;
    max-width: 30px;
    position: relative;
    vertical-align: middle;
    width: 100%;
}
.search-header.search--focus {
    max-width: 250px;
}
.search-header__input {
    cursor: pointer;
}
.search--focus .search-header__input {
    border-color: #e8e9eb;
    cursor: auto;
    outline: medium none;
}
.search--focus .search-header__submit {
    padding-left: 10px;
    pointer-events: auto;
}
.search-header__submit {
    pointer-events: none;
}
.search-header, .search-header__submit {
    transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1) 0s;
}
.no-svg .site-header__search {
    display: inline-block;
}
.no-svg .search-header {
    max-width: none;
}
.no-svg .search__input {
    padding-left: 60px;
    width: auto;
}
.mobile-nav {
    display: block;
    transform: translate3d(0px, 0px, 0px);
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0s;
}
.sub-nav--is-open .mobile-nav {
    transform: translate3d(-100%, 0px, 0px);
}
.third-nav--is-open .mobile-nav {
    transform: translate3d(-200%, 0px, 0px);
}
.mobile-nav__link, .mobile-nav__sublist-link {
    display: block;
    font-size: 16px;
    padding: 15px;
    width: 100%;
}
.mobile-nav__link {
    position: relative;
}
.mobile-nav__sublist-link:not(.mobile-nav__sublist-header) {
    padding-left: 70px;
}
.mobile-nav__item {
    display: block;
    width: 100%;
}
.mobile-nav__item .icon {
    height: 12px;
    left: 50%;
    margin: -6px 0 0 -5px;
    position: absolute;
    top: 50%;
    width: 10px;
}
.mobile-nav__return {
    border-right: 1px solid #e8e9eb;
}
.mobile-nav__return-btn {
    padding: 24px 0;
    position: relative;
    width: 55px;
}
.mobile-nav__icon {
    bottom: 0;
    overflow: hidden;
    padding-left: 22px;
    padding-right: 22px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}
.mobile-nav__table {
    display: table;
    width: 100%;
}
.mobile-nav__table-cell {
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    width: 1%;
}
.mobile-nav__toggle-button {
    padding: 20px 15px;
}
.mobile-nav__dropdown {
    background-color: #fff;
    display: none;
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    z-index: 8;
}
.is-active + .mobile-nav__dropdown {
    display: block;
    opacity: 1;
}
.mobile-nav__dropdown.is-closing {
    opacity: 0.99;
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0s;
}
.mobile-nav__dropdown .mobile-nav__sublist-header {
    display: table-cell;
    font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif!important;
    font-weight: 600;
    vertical-align: middle;
}
.mobile-nav-wrapper {
    background-color: #fff;
    display: none;
    overflow: hidden;
    position: absolute;
    transform: translate3d(0px, -100%, 0px);
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0s;
    width: 100%;
}
.mobile-nav-wrapper::after {
    border-bottom: 1px solid #e8e9eb;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
}
.mobile-nav-wrapper.js-menu--is-open {
    display: block;
}
.mobile-nav--open .icon-close {
    display: none;
}
.mobile-nav--close .icon-hamburger {
    display: none;
}
.modal {
    background-color: #fff;
    bottom: 0;
    color: #3d4246;
    display: none;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-20px);
}
.modal--is-active {
    display: block;
    opacity: 1;
    overflow: hidden;
    transform: translateY(0px);
}
.modal__inner {
    height: 100%;
    transform-style: preserve-3d;
}
.modal__centered {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.no-csstransforms .modal__centered {
    top: 20%;
}
.modal__close {
    border: 0 none;
    padding: 55px;
    position: fixed;
    right: 0;
    top: 0;
}
.modal__close .icon {
    font-size: 1.25em;
}
.slideshow-wrapper {
    position: relative;
}
.slideshow {
    height: 325px;
    margin-bottom: 0;
    overflow: hidden;
}
.slideshow.slideshow--medium {
    height: 500px;
}
.slideshow.slideshow--large {
    height: 575px;
}
@media only screen and (min-width: 750px) {
.slideshow {
    height: 475px;
}
.slideshow.slideshow--medium {
    height: 650px;
}
.slideshow.slideshow--large {
    height: 775px;
}
}
.slideshow .slideshow__slide, .slideshow .slick-list, .slideshow .slick-track {
    height: 100%;
}
.slideshow .slick-prev, .slideshow .slick-next {
    height: 100%;
    margin-top: 0;
    top: 0;
    width: 40px;
}
.slideshow .slick-prev {
    left: 0;
}
.slideshow .slick-next {
    right: 0;
}
.slideshow .slick-dots {
    bottom: 22px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}
.slideshow .slick-dots li button::before {
    color: #fff;
}
.video-is-playing .slick-dots {
    display: none !important;
}
.slideshow__pause:focus {
    background-color: #7796a8;
    clip: auto;
    color: #fff;
    height: auto;
    margin: 0;
    padding: 27.5px;
    transition: none 0s ease 0s ;
    width: auto;
    z-index: 10000;
}
.video-is-playing .slideshow__pause:focus {
    display: none;
}
.slideshow__pause-stop {
    display: block;
}
.is-paused .slideshow__pause-stop {
    display: none;
}
.slideshow__pause-play {
    display: none;
}
.is-paused .slideshow__pause-play {
    display: block;
}
.slideshow__slide {
    overflow: hidden;
    position: relative;
}
.slideshow__link {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.slideshow__link:active, .slideshow__link:focus {
    opacity: 1;
}
.slideshow__overlay::before {
    background-color: #3d4246;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0.25;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}
.slideshow__image {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87) 0s;
    width: 100%;
    z-index: 1;
}
.slick-initialized .slideshow__image, .no-js .slideshow__image {
    opacity: 1;
}
.slideshow__slide--background-video .slideshow__image {
    opacity: 0;
}
.no-autoplay .slideshow__image {
    opacity: 1;
}
.ie9 .slideshow__slide {
    z-index: 1 !important;
}
.ie9 .slick-dots {
    z-index: 2;
}
.slideshow__text-wrap {
    height: 100%;
}
.slideshow__link .slideshow__text-wrap {
    cursor: inherit;
}
.slideshow__slide--has-background-video .slideshow__text-wrap {
    padding-top: 165px;
}
.video-is-playing .slideshow__text-wrap {
    display: none;
}
.slideshow__slide.video-is-paused .slideshow__text-wrap {
    display: none;
}
.slideshow__text-content {
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-40%);
    transition: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87) 0.3s;
    width: 100%;
    z-index: 3;
}
.slick-active .slideshow__text-content, .no-js .slideshow__text-content {
    opacity: 1;
    transform: translateY(-50%);
}
.slideshow__text-content::after {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    animation: 0.65s linear 0s normal none infinite running spin;
    border-color: transparent #fff #fff;
    border-image: none;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    bottom: -55px;
    content: "";
    display: block;
    height: 40px;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    opacity: 1;
    position: absolute;
    transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1) 0s;
    width: 40px;
}
.slick-initialized .slideshow__text-content::after, .no-js .slideshow__text-content::after {
    content: none;
    opacity: 0;
    visibility: hidden;
}
.slideshow__title {
    color: #fff;
}
.slideshow__subtitle {
    color: #fff;
    display: block;
}
.slideshow__slide--has-background-video::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
.slideshow__video {
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 2;
}
.slideshow__video--background {
    opacity: 0;
    position: relative;
    transition: all 0.2s ease-in 0s;
    visibility: hidden;
}
.autoplay .slideshow__video--background.video-is-loaded {
    display: block;
    opacity: 1;
    visibility: visible;
}
.slideshow__slide--background-video::after {
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
.slideshow__video--chrome {
    display: none;
    height: 100%;
    opacity: 0;
    transition: all 0.2s ease-in 0s;
    width: 100%;
}
.ie9 .slideshow__video--chrome {
    display: block;
}
.slideshow__slide.video-is-playing .slideshow__video--chrome, .slideshow__slide.video-is-paused .slideshow__video--chrome {
    display: block;
    opacity: 1;
    visibility: visible;
}
.slideshow__video-control {
    display: none;
    opacity: 0;
    padding: 5px;
    position: absolute;
    transition: all 0.1s ease-out 0s;
    visibility: hidden;
    z-index: 4;
}
.slideshow__video-control:hover, .slideshow__video-control:focus {
    opacity: 0.7;
}
.video-loader {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    animation: 0.65s linear 0s normal none infinite running spin;
    border-color: transparent #fff #fff;
    border-image: none;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    content: "";
    display: block;
    height: 40px;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    transition: all 0.1s ease-out 0.5s;
    width: 40px;
    z-index: 4;
}
.ie9 .video-loader, .video-is-loaded .video-loader, .video-is-playing .video-loader, .video-is-paused .video-loader, .autoplay .video-loader, .no-autoplay .video-loader {
    content: none;
    display: none;
}
.video-is-loading .video-loader, .autoplay .video-is-loading .video-loader, .no-autoplay .video-is-loading .video-loader {
    display: block;
    opacity: 1;
    visibility: visible;
}
.slideshow__video-control--play-wrapper {
    height: 30px;
}
@media only screen and (min-width: 750px) {
.slideshow__video-control--play-wrapper {
    height: 45px;
}
}
@media only screen and (min-width: 750px) {
.slideshow__video-control--play-wrapper--push {
    margin-top: 30px;
}
}
.slideshow__video-control--play {
    color: #fff;
    margin: 0 auto;
    opacity: 0;
    position: relative;
}
.slideshow__video-control--play .slideshow__video--background {
    top: 50%;
    transform: translateY(-50%);
}
.video-is-loaded .slideshow__video-control--play {
    display: block;
    opacity: 1;
    visibility: visible;
}
.video-is-loading .slideshow__video-control--play, .video-is-playing .slideshow__video-control--play, .slideshow__slide.video-is-paused .slideshow__video-control--play {
    display: none;
    opacity: 0;
    visibility: hidden;
}
.slideshow__video-control--play .icon {
    height: 100%;
    width: 42px;
}
@media only screen and (min-width: 750px) {
.slideshow__video-control--play .icon {
    width: 65px;
}
}
.slideshow__video-control--close {
    background-color: #fff;
    color: #000;
    right: 10px;
    top: 10px;
}
.video-is-playing .slideshow__video-control--close, .slideshow__slide.video-is-paused .slideshow__video-control--close {
    display: block;
    opacity: 1;
    visibility: visible;
}
.slideshow__video-control--close .icon {
    display: block;
    height: 20px;
    width: 20px;
}
.product-price__price {
    font-weight: 600;
}
.grid-view-item.product-price--sold-out .product-price__price {
    text-decoration: line-through;
}
.product-price__sale--single {
    padding-left: 10px;
}
.product-price__sale, .product__price--sale {
    color: #7796a8;
}
.product-price__sale-label {
    display: inline-block;
    font-size: 0.9375em;
    white-space: nowrap;
}
.product-price__sold-out {
    font-weight: 600;
    white-space: nowrap;
}
.filters-toolbar-wrapper {
    border-bottom: 1px solid #e8e9eb;
    border-top: 1px solid #e8e9eb;
    margin-bottom: 22px;
}
@media only screen and (min-width: 750px) {
.filters-toolbar-wrapper {
    margin-bottom: 55px;
}
}
.filters-toolbar {
    align-items: center;
    display: flex;
    width: 100%;
}
.filters-toolbar__item {
    flex: 1 1 33%;
    min-width: 33%;
}
.no-flexbox .filters-toolbar__item {
    text-align: left !important;
}
.filters-toolbar__item--count {
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
}
.no-flexbox .filters-toolbar select {
    width: 100% !important;
}
.filters-toolbar__input {
    background-color: #fff;
    border: 0 solid transparent;
    height: 55px;
    max-width: 100%;
    opacity: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.15s ease-out 0s;
    white-space: nowrap;
}
@media only screen and (max-width: 749px) {
.filters-toolbar__input {
    height: 46px;
}
}
.filters-toolbar__input.hidden {
    opacity: 0;
}
.filters-toolbar__input option {
    overflow: hidden;
    text-overflow: ellipsis;
}
.filters-toolbar__input--sort {
    margin-right: -10px;
}
.no-flexbox .filters-toolbar__input--sort {
    margin: 0;
}
.filters-toolbar__input--filter {
    margin-left: -15px;
}
.no-flexbox .filters-toolbar__input--filter {
    margin: 0;
}
.filters-toolbar__product-count {
    font-size: 0.9375em;
    font-style: italic;
    line-height: 55px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media only screen and (max-width: 749px) {
.filters-toolbar__product-count {
    font-size: 0.875em;
    line-height: 46px;
}
}
.site-footer {
    margin: 55px 0;
}
@media only screen and (max-width: 749px) {
.site-footer {
    text-align: center;
}
}
@media only screen and (min-width: 750px) {
.site-footer__linklist--center {
    margin-top: 35px;
    padding-right: 0;
}
}
.site-footer__linklist, .site-footer__newsletter {
    margin-top: 35px;
}
@media only screen and (min-width: 750px) {
.site-footer__linklist, .site-footer__newsletter {
    margin-top: 55px;
}
}
.site-footer__linklist-item {
    display: inline-block;
    padding: 5px 10px;
}
@media only screen and (min-width: 750px) {
.site-footer__linklist-item {
    display: block;
    padding: 0 20px 6px 0;
}
.site-footer__linklist--center .site-footer__linklist-item {
    display: inline-block;
    padding: 3px 10px;
}
}
.site-footer__newsletter {
    margin: 35px auto 0;
    max-width: 320px;
}
@media only screen and (min-width: 750px) {
.site-footer__newsletter {
    margin: 55px 0 0;
    max-width: none;
}
}
.site-footer__social-icons, .site-footer__copyright {
    margin-top: 35px;
}
@media only screen and (min-width: 750px) {
.site-footer__social-icons, .site-footer__copyright {
    margin-top: 55px;
}
}
.social-icons__link {
    display: block;
    padding: 0 3px;
}
.social-icons__link:first-child {
    margin-left: 0;
}
.site-footer__copyright {
    text-align: center;
}
.site-footer__copyright-content {
    font-size: 0.8125em;
    padding-right: 20px;
}
.site-footer__copyright--right .site-footer__copyright-content {
    padding: 0 0 0 20px;
}
.site-footer__copyright--right .site-footer__copyright-content:first-child {
    padding-left: 0;
}
@media only screen and (min-width: 750px) {
.site-footer__copyright--right .site-footer__copyright-content {
    padding: 0 0 0 30px;
}
}
.site-footer__copyright-content--powered-by {
    padding-right: 0;
}
.site-footer__payment-icons {
    margin-top: 22px;
}
@media only screen and (min-width: 750px) {
.site-footer__payment-icons {
    margin-top: 22px;
}
.site-footer__copyright--right .site-footer__payment-icons {
    padding-left: 30px;
}
}
.site-footer__payment-icons .payment-icon {
    margin-right: 5px;
}
.site-footer__payment-icons .payment-icon:last-child {
    margin-right: 0;
}
.site-footer__copyright--bottom {
    margin-top: 35px;
}
@media only screen and (min-width: 750px) {
.site-footer__payment-icons--right {
    float: right;
    margin-top: 0;
}
}
.feature-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
@media only screen and (max-width: 749px) {
.feature-row {
    flex-direction: column;
}
}
.feature-row__item {
    flex: 0 1 50%;
}
@media only screen and (max-width: 749px) {
.feature-row__item {
    flex: 1 1 auto;
    max-width: 100%;
}
}
.feature-row__image {
    display: block;
    margin: 0 auto;
}
@media only screen and (max-width: 749px) {
.feature-row__image {
    order: 1;
}
}
.feature-row__text {
    padding-bottom: 35px;
    padding-top: 35px;
}
@media only screen and (max-width: 749px) {
.feature-row__text {
    order: 2;
    padding-bottom: 0;
}
}
@media only screen and (min-width: 750px) {
.feature-row__text--left {
    padding-left: 35px;
}
.feature-row__text--right {
    padding-right: 35px;
}
}
@media only screen and (min-width: 750px) {
.featured-row__subtext {
    font-size: 1.125em;
}
}
.hero {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: table;
    height: 475px;
    position: relative;
    width: 100%;
}
.hero--x-small {
    height: 94px;
}
.hero--small {
    height: 225px;
}
.hero--medium {
    height: 357px;
}
.hero--large {
    height: 488px;
}
.hero--x-large {
    height: 582px;
}
@media only screen and (min-width: 750px) {
.hero--x-small {
    height: 125px;
}
.hero--small {
    height: 300px;
}
.hero--medium {
    height: 475px;
}
.hero--large {
    height: 650px;
}
.hero--x-large {
    height: 775px;
}
}
.hero__overlay::before {
    background-color: #3d4246;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0.25;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.hero__inner {
    color: #fff;
    display: table-cell;
    padding: 55px 0;
    position: relative;
    vertical-align: middle;
    z-index: 2;
}
.hero__btn {
    background-color: #fff;
    color: #000;
    margin-top: 27.5px;
}
.quote-icon {
    display: block;
    margin: 0 auto 20px;
}
.quotes-slider__text {
    font-size: 1.10938em;
    font-style: normal;
    font-weight: 400;
    padding: 0 15px;
}
.quotes-slider__text cite {
    font-size: 0.8em;
    font-style: normal;
}
.quotes-slider__text p {
    margin-bottom: 30px;
}
.quotes-slider__text p + cite {
    margin-top: 0;
}
.quotes-slider.slick-initialized {
    cursor: grab;
}
.quotes-wrapper .slick-dots {
    bottom: 0;
    margin-top: 55px;
    position: relative;
}
.quotes-wrapper .slick-dots li button::before {
    color: #3d4246;
    opacity: 0.2;
}
.quotes-wrapper .slick-slide[tabindex="0"] {
    outline: medium none;
}
.logo-bar {
    margin-bottom: -35px;
    text-align: center;
}
@media only screen and (min-width: 750px) {
.logo-bar--large {
    margin-bottom: -55px;
}
}
.logo-bar__item {
    display: inline-block;
    margin: 0 27.5px 35px;
    max-width: 160px;
    vertical-align: middle;
}
@media only screen and (min-width: 750px) {
.logo-bar__item--large {
    margin-bottom: 55px;
}
}
.logo-bar__image {
    display: block;
    margin: 0 auto;
}
.logo-bar__link {
    display: block;
}
.map-section {
    height: 650px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
@media only screen and (min-width: 750px) {
.map-section {
    height: 500px;
}
}
.map-section .page-width {
    height: 100%;
}
.map-section--load-error {
    height: auto;
}
.map-section__overlay-wrapper {
    height: 100%;
    position: relative;
    text-align: center;
}
.map-section__overlay {
    background-color: #fff;
    display: inline-block;
    margin-top: 22px;
    padding: 35px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 3;
}
@media only screen and (min-width: 750px) {
.map-section__overlay {
    left: 0;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 33.3333%;
}
.ie9 .map-section__overlay {
    top: 10%;
}
}
.map-section--load-error .map-section__overlay {
    position: static;
    transform: translateY(0px);
}
.map-section__link {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.map-section__container {
    height: 150%;
    left: 0;
    margin-bottom: -50%;
    position: absolute;
    top: 0;
    width: 100%;
}
@media only screen and (min-width: 750px) {
.map-section__container {
    height: 100%;
    margin: 0 -30% 0 0;
    width: 130%;
}
}
.gm-style-cc, .gm-style-cc + div {
    visibility: hidden;
}
@media only screen and (max-width: 749px) {
.image-bar {
    margin: 0 auto;
    max-width: 400px;
}
}
.image-bar__item {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: block;
}
.image-bar__link:focus .image-bar__content {
    border-color: #3d4246;
}
.image-bar__content {
    position: relative;
    width: 100%;
}
.image-bar--x-small .image-bar__content {
    height: 94px;
}
.image-bar--small .image-bar__content {
    height: 225px;
}
.image-bar--medium .image-bar__content {
    height: 357px;
}
.image-bar--large .image-bar__content {
    height: 488px;
}
.image-bar--x-large .image-bar__content {
    height: 582px;
}
@media only screen and (min-width: 750px) {
.image-bar--x-small .image-bar__content {
    height: 125px;
}
.image-bar--small .image-bar__content {
    height: 300px;
}
.image-bar--medium .image-bar__content {
    height: 475px;
}
.image-bar--large .image-bar__content {
    height: 650px;
}
.image-bar--x-large .image-bar__content {
    height: 775px;
}
}
.image-bar__overlay::before {
    background-color: #3d4246;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0.25;
    position: absolute;
    right: 0;
    top: 0;
}
.image-bar__caption {
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87) 0s;
    width: 100%;
}
.collection-grid {
    margin-bottom: -22px;
    overflow: auto;
}
.collection-grid-item {
    margin-bottom: 22px;
    padding-bottom: 100%;
    position: relative;
    width: 100%;
}
@media only screen and (min-width: 750px) {
.collection-grid-item {
    margin-bottom: 30px;
}
}
.collection-grid-item__title {
    color: #fff;
    padding: 0 5px;
    position: absolute;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87) 0s;
    width: 100%;
}
@media only screen and (min-width: 750px) {
.collection-grid-item__title {
    padding: 0 15px;
}
}
.collection-grid-item__link {
    border: 2px solid transparent;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.collection-grid-item__link:focus {
    border-color: #3d4246;
}
.collection-grid-item__overlay {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
}
.collection-grid-item__title-wrapper::before {
    background-color: #3d4246;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0.25;
    position: absolute;
    right: 0;
    top: 0;
}
.custom-content {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
    margin-left: -30px;
    width: auto;
}
@media only screen and (max-width: 749px) {
.custom-content {
    margin-bottom: -22px;
    margin-left: -22px;
}
}
.custom__item {
    flex: 0 0 auto;
    margin-bottom: 30px;
    max-width: 100%;
    padding-left: 30px;
}
@media only screen and (max-width: 749px) {
.custom__item {
    flex: 0 0 auto;
    margin-bottom: 22px;
    padding-left: 22px;
}
.custom__item.small--one-half {
    flex: 1 0 50%;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}
}
.custom__item .collection-grid-item {
    margin-bottom: 0;
}
.custom__item-inner {
    display: inline-block;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.custom__item-inner--video, .custom__item-inner--collection, .custom__item-inner--html {
    display: block;
}
.align--top-middle {
    text-align: center;
}
.align--top-right {
    text-align: right;
}
.align--middle-left {
    align-self: center;
}
.align--center {
    align-self: center;
    text-align: center;
}
.align--middle-right {
    align-self: center;
    text-align: right;
}
.align--bottom-left {
    align-self: flex-end;
}
.align--bottom-middle {
    align-self: flex-end;
    text-align: center;
}
.align--bottom-right {
    align-self: flex-end;
    text-align: right;
}


.site-header__account-dropdown {
  position: relative;
  display: inline-block;
}

.site-header__account-button {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  cursor: pointer;
}

.site-header__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* Show below the button */
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 120px;
}
.site-footer .footer_menu.dt-sc-list li a:before {
    content: "\2022"!important; /* Unicode for bullet */
    font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif!important;
    position: relative!important;
    padding-right: 10px!important;
  color: #6c6c6c!important;
  
}
.site-header__dropdown-link {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.site-header__dropdown-link:hover {
  background-color: #f7f7f7;
}

.site-header__account-dropdown:hover .site-header__dropdown-menu {
  display: block;
}
/*social icons */
.social-icons {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-icons a {
    display: flex;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.social-icons img {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Ensures all images are circular */
    object-fit: cover; /* Crops square icons into circle without distortion */
}

/* Hover Effect */
.social-icons a:hover {
    background-color: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons {
        left: 5px; /* Adjust position for mobile */
    }
    .social-icons a {
        width: 25px;
        height: 25px;
    }
}

