/** Shopify CDN: Minification failed

Line 159:0 Unexpected "<"
Line 160:2 Comments in CSS use "/* ... */" instead of "//"
Line 162:9 Expected ":"
Line 163:10 Expected ":"
Line 164:10 Expected ":"
Line 165:18 Unexpected "="
Line 166:6 Expected identifier but found "cssVars("
Line 169:12 Expected ":"
Line 171:0 Unexpected "<"

**/
@font-face {
  font-family: Muli;
  font-weight: 800;
  font-style: normal;
  src: url("//badgerssettnz.com/cdn/fonts/muli/muli_n8.0235752f433990abe1f2c7555d19b86ae6eb8a1c.woff2") format("woff2"),
       url("//badgerssettnz.com/cdn/fonts/muli/muli_n8.ddbd0eed949d5df233e7d3883337932038a076a6.woff") format("woff");
}

@font-face {
  font-family: Muli;
  font-weight: 800;
  font-style: normal;
  src: url("//badgerssettnz.com/cdn/fonts/muli/muli_n8.0235752f433990abe1f2c7555d19b86ae6eb8a1c.woff2") format("woff2"),
       url("//badgerssettnz.com/cdn/fonts/muli/muli_n8.ddbd0eed949d5df233e7d3883337932038a076a6.woff") format("woff");
}

@font-face {
  font-family: Muli;
  font-weight: 900;
  font-style: normal;
  src: url("//badgerssettnz.com/cdn/fonts/muli/muli_n9.7d66dc53f2718d25858080de2e0ed540c07d1bad.woff2") format("woff2"),
       url("//badgerssettnz.com/cdn/fonts/muli/muli_n9.73693cff699117abf881b7381fb75f2bb2c48ced.woff") format("woff");
}

@font-face {
  font-family: Muli;
  font-weight: 800;
  font-style: italic;
  src: url("//badgerssettnz.com/cdn/fonts/muli/muli_i8.422be35a6ce34cf84f486c04010583ac86dede96.woff2") format("woff2"),
       url("//badgerssettnz.com/cdn/fonts/muli/muli_i8.1c4bb64f3a2112c8c7407ea04db5cd693235eb75.woff") format("woff");
}

@font-face {
  font-family: Muli;
  font-weight: 900;
  font-style: italic;
  src: url("//badgerssettnz.com/cdn/fonts/muli/muli_i9.d20a598e220582fa7245c7a453b24e7f3ade0a38.woff2") format("woff2"),
       url("//badgerssettnz.com/cdn/fonts/muli/muli_i9.9eb3d1a9ba677548ec3675b4830a57685dcb978c.woff") format("woff");
}


/* Typography */

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

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

h1,h2,h3,h4,h5,h6
{
  font-family: Muli;
  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: Muli;
    --header-font: Muli;

    /* 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>

