/** Shopify CDN: Minification failed

Line 138:0 Unexpected "<"
Line 139:2 Comments in CSS use "/* ... */" instead of "//"
Line 141:9 Expected ":"
Line 142:10 Expected ":"
Line 143:10 Expected ":"
Line 144:18 Unexpected "="
Line 145:6 Expected identifier but found "cssVars("
Line 148:12 Expected ":"
Line 150:0 Unexpected "<"

**/
@font-face {
  font-family: Righteous;
  font-weight: 400;
  font-style: normal;
  src: url("//badgerssettnz.com/cdn/fonts/righteous/righteous_n4.24438723c0e385d01cf4f33f6dfe358566782dc3.woff2?h1=YmFkZ2Vyc3NldHRuei5hY2NvdW50Lm15c2hvcGlmeS5jb20&h2=YmFkZ2Vyc3NldHRuei5jb20&hmac=de23b781926403802c0769b60eedea34b9fecfc26b9e9d69de412f6d6e0b3175") format("woff2"),
       url("//badgerssettnz.com/cdn/fonts/righteous/righteous_n4.616f412bc99f0188e6e2b866fb39cb62f60b80e2.woff?h1=YmFkZ2Vyc3NldHRuei5hY2NvdW50Lm15c2hvcGlmeS5jb20&h2=YmFkZ2Vyc3NldHRuei5jb20&hmac=4631f9da6d6b62ce638f2963caad0dafacb297e6b18ddf6a6e1e6f49012e0965") format("woff");
}

@font-face {
  font-family: Righteous;
  font-weight: 400;
  font-style: normal;
  src: url("//badgerssettnz.com/cdn/fonts/righteous/righteous_n4.24438723c0e385d01cf4f33f6dfe358566782dc3.woff2?h1=YmFkZ2Vyc3NldHRuei5hY2NvdW50Lm15c2hvcGlmeS5jb20&h2=YmFkZ2Vyc3NldHRuei5jb20&hmac=de23b781926403802c0769b60eedea34b9fecfc26b9e9d69de412f6d6e0b3175") format("woff2"),
       url("//badgerssettnz.com/cdn/fonts/righteous/righteous_n4.616f412bc99f0188e6e2b866fb39cb62f60b80e2.woff?h1=YmFkZ2Vyc3NldHRuei5hY2NvdW50Lm15c2hvcGlmeS5jb20&h2=YmFkZ2Vyc3NldHRuei5jb20&hmac=4631f9da6d6b62ce638f2963caad0dafacb297e6b18ddf6a6e1e6f49012e0965") format("woff");
}





/* Typography */

body
{
  font-family: Righteous;
  color:var(--text-color);
  font-size:var(--text-size);
}

p, a, button, input, select
{
  color:inherit;
  font-family: Righteous;
}

h1,h2,h3,h4,h5,h6
{
  font-family: Righteous;
  margin-bottom: 16px;
}

/* General Variables */

:root {

    /* Borders */

    --border-radius: 2px;
    --border-color: #BDBDBD;
    --header-border-color: rgba(30, 52, 93, 0.3);

    /* Text */

    --text-size: 14px;
    --text-color: #5F5F5F;
    --text-font-weight: 400;
    --default-text-font-size: 15px;
    --base-text-font-size: 16px;
    --text-font-bolder-weight: 600;

    /* Typography */

    --base-font: Righteous;
    --header-font: Righteous;

    /* Colors */
    --input-background: #fff;
    --color-gradient: linear-gradient(103.4deg, #0f4c5c 2.77%, #0f4c5c 84.58%);
    --color-gradient-secondary: linear-gradient(103.4deg,#1DA9A1 2.77%,#8bdbd6 84.58%);
    --color-primary: #0f4c5c;
    --color-secondary: #d97706;
    --color-page-background: #a7c7b7;
    --brand-secondary: #0f4c5c;
    --button-bg-color: #0f4c5c;
    --button-text-color:  #fff;
    --button-bg-hover-color: #0f4c5c;
    --button-text-hover-color: #fff;

    /* Padding */

    --page-padding-y: 24px;
    --page-padding-x: 40px;
    --mobile-container-gutter: 20px;
    --desktop-container-gutter: 40px;
    
  /* Product */--text-color-rgb                   :  217, 119, 6;
    --product-on-sale-accent           : #ff6f61;
    --product-on-sale-accent-rgb       : 255, 111, 97;
    --product-on-sale-color            : #000000;
    --product-in-stock-color           : #0f4c5c;
    --product-low-stock-color          : #e63946;
    --product-sold-out-color           : #6b7280;
    --product-custom-label-1-background: #facc15;
    --product-custom-label-1-color     : #ffffff;
    --product-custom-label-2-background: #6a2c8b;
    --product-custom-label-2-color     : #ffffff;
    --product-review-star-color        : #facc15;

}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}





<script>
  // IE11 does not have support for CSS variables, so we have to polyfill them
  if (!(((window || {}).CSS || {}).supports && window.CSS.supports('(--a: 0)'))) {
    const script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2';
    script.onload = function() {
      cssVars({});
    };

    document.getElementsByTagName('head')[0].appendChild(script);
  }
</script>

