/** Shopify CDN: Minification failed

Line 133:0 Unexpected "<"
Line 134:2 Comments in CSS use "/* ... */" instead of "//"
Line 136:9 Expected ":"
Line 137:10 Expected ":"
Line 138:10 Expected ":"
Line 139:18 Unexpected "="
Line 140:6 Expected identifier but found "cssVars("
Line 143:12 Expected ":"
Line 145:0 Unexpected "<"

**/
@font-face {
  font-family: "Sackers Square Gothic";
  font-weight: 400;
  font-style: normal;
  src: url("//thewarpgate.net/cdn/fonts/sackers_square_gothic/sackerssquaregothic_n4.1e165d1bae1f808d2e8fdf25b800589193479621.woff2?h1=dGhld2FycGdhdGUubmV0&h2=dGhld2FycGdhdGUuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=51db97f7d0e475d355f4eb54bd5ad2121af1d8db78bdfb7fa883136d2b10329e") format("woff2"),
       url("//thewarpgate.net/cdn/fonts/sackers_square_gothic/sackerssquaregothic_n4.b4b25808c2f08348541c34a576b49b837ea7d357.woff?h1=dGhld2FycGdhdGUubmV0&h2=dGhld2FycGdhdGUuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=cf0ae8e9c4e22c894a970887e77bb630b853a14d632e39273488257143036095") format("woff");
}

@font-face {
  font-family: "Sackers Square Gothic";
  font-weight: 400;
  font-style: normal;
  src: url("//thewarpgate.net/cdn/fonts/sackers_square_gothic/sackerssquaregothic_n4.1e165d1bae1f808d2e8fdf25b800589193479621.woff2?h1=dGhld2FycGdhdGUubmV0&h2=dGhld2FycGdhdGUuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=51db97f7d0e475d355f4eb54bd5ad2121af1d8db78bdfb7fa883136d2b10329e") format("woff2"),
       url("//thewarpgate.net/cdn/fonts/sackers_square_gothic/sackerssquaregothic_n4.b4b25808c2f08348541c34a576b49b837ea7d357.woff?h1=dGhld2FycGdhdGUubmV0&h2=dGhld2FycGdhdGUuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=cf0ae8e9c4e22c894a970887e77bb630b853a14d632e39273488257143036095") format("woff");
}





/* Typography */

body
{
  font-family: "Sackers Square Gothic";
  color:var(--text-color);
  font-size:var(--text-size);
}

p, a, button, input, select
{
  color:inherit;
  font-family: "Sackers Square Gothic";
}

h1,h2,h3,h4,h5,h6
{
  font-family: "Sackers Square Gothic";
  margin-bottom: 16px;
}

/* General Variables */

:root {

    /* Borders */

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

    /* Text */

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

    /* Typography */

    --base-font: "Sackers Square Gothic";
    --header-font: "Sackers Square Gothic";

    /* Colors */
    --input-background: #fff;
    --color-gradient: linear-gradient(103.4deg, #7535E5 2.77%, #8484FF 84.58%);
    --color-gradient-secondary: linear-gradient(103.4deg,#1DA9A1 2.77%,#8bdbd6 84.58%);
    --color-primary: #5de033;
    --color-secondary: #5de033;
    --color-page-background: rgba(0,0,0,0);

    /* Padding */

    --page-padding-y: 24px;
    --page-padding-x: 40px;
    --mobile-container-gutter: 20px;
    --desktop-container-gutter: 40px;
    
  /* Product */--text-color-rgb                   :  93, 224, 51;
    --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           : #8484FF;
    --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);
}





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

