/** 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: "Open Sans Condensed";
  font-weight: 700;
  font-style: normal;
  src: url("//waypointgames.ca/cdn/fonts/open_sans_condensed/opensanscondensed_n7.4affb7f68a527b5e8ba3583f0c8be9404f7cdd8f.woff2?h1=d2F5cG9pbnRnYW1lcy5jYQ&h2=d2F5cG9pbnQtZ2FtZXMtY2EuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=01882bdb3030937aad61fc1e08408403d6d0ca659b72897de25c66e03a8c557f") format("woff2"),
       url("//waypointgames.ca/cdn/fonts/open_sans_condensed/opensanscondensed_n7.8faad0d8c3abca6fda8625364794e267fb4d378e.woff?h1=d2F5cG9pbnRnYW1lcy5jYQ&h2=d2F5cG9pbnQtZ2FtZXMtY2EuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=bc5d8780ed0184a160ad5d927d05f1ad761cefce5ea58885db66d3b53c86e89c") format("woff");
}

@font-face {
  font-family: "Open Sans Condensed";
  font-weight: 700;
  font-style: normal;
  src: url("//waypointgames.ca/cdn/fonts/open_sans_condensed/opensanscondensed_n7.4affb7f68a527b5e8ba3583f0c8be9404f7cdd8f.woff2?h1=d2F5cG9pbnRnYW1lcy5jYQ&h2=d2F5cG9pbnQtZ2FtZXMtY2EuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=01882bdb3030937aad61fc1e08408403d6d0ca659b72897de25c66e03a8c557f") format("woff2"),
       url("//waypointgames.ca/cdn/fonts/open_sans_condensed/opensanscondensed_n7.8faad0d8c3abca6fda8625364794e267fb4d378e.woff?h1=d2F5cG9pbnRnYW1lcy5jYQ&h2=d2F5cG9pbnQtZ2FtZXMtY2EuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=bc5d8780ed0184a160ad5d927d05f1ad761cefce5ea58885db66d3b53c86e89c") format("woff");
}





/* Typography */

body
{
  font-family: "Open Sans Condensed";
  color:var(--text-color);
  font-size:var(--text-size);
}

p, a, button, input, select
{
  color:inherit;
  font-family: "Open Sans Condensed";
}

h1,h2,h3,h4,h5,h6
{
  font-family: "Open Sans Condensed";
  margin-bottom: 16px;
}

/* General Variables */

:root {

    /* Borders */

    --border-radius: 5px;
    --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: "Open Sans Condensed";
    --header-font: "Open Sans Condensed";

    /* Colors */
    --input-background: #fff;
    --color-gradient: linear-gradient(103.4deg, #3576e5 2.77%, #82aaef 84.58%);
    --color-gradient-secondary: linear-gradient(103.4deg,#1DA9A1 2.77%,#8bdbd6 84.58%);
    --color-primary: #000000;
    --color-secondary: #3576e5;
    --color-page-background: #ffffff;
    --brand-secondary: #000000;
    --button-bg-color: #000000;
    --button-text-color:  #fff;
    --button-bg-hover-color: #000000;
    --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                   :  0, 0, 0;
    --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);
}





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

