<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 124:0 Unexpected "&lt;"
Line 125:2 Comments in CSS use "/* ... */" instead of "//"
Line 127:9 Expected ":"
Line 128:10 Expected ":"
Line 129:10 Expected ":"
Line 130:18 Unexpected "="
Line 131:6 Expected identifier but found "cssVars("
Line 134:12 Expected ":"
Line 136:0 Unexpected "&lt;"

**/






/* Typography */

body
{
  font-family: "New York";
  color:var(--text-color);
  font-size:var(--text-size);
}

p, a, button, input, select
{
  color:inherit;
  font-family: "New York";
}

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

/* General Variables */

:root {

    /* Borders */

    --border-radius: 9px;
    --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: "New York";
    --header-font: "New York";

    /* Colors */
    --input-background: #fff;
    --color-gradient: linear-gradient(103.4deg, #7535E5 2.77%, #3232a1 84.58%);
    --color-gradient-secondary: linear-gradient(103.4deg,#1DA9A1 2.77%,#8bdbd6 84.58%);
    --color-primary: #292929;
    --color-secondary: #1DA9A1;
    --color-page-background: #e4e4e4;
    --brand-secondary: #292929;
    --button-bg-color: #292929;
    --button-text-color:  #fff;
    --button-bg-hover-color: #292929;
    --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                   :  41, 41, 41;
    --product-on-sale-accent           : #ee0000;
    --product-on-sale-accent-rgb       : 238, 0, 0;
    --product-on-sale-color            : #ffffff;
    --product-in-stock-color           : #00a500;
    --product-low-stock-color          : #ee0000;
    --product-sold-out-color           : #8a9297;
    --product-custom-label-1-background: #0774d7;
    --product-custom-label-1-color     : #ffffff;
    --product-custom-label-2-background: #00a500;
    --product-custom-label-2-color     : #ffffff;
    --product-review-star-color        : #ffbd00;

}

/* 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);
}





&lt;script&gt;
  // IE11 does not have support for CSS variables, so we have to polyfill them
  if (!(((window || {}).CSS || {}).supports &amp;&amp; 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);
  }
&lt;/script&gt;

</pre></body></html>