/** 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: Cormorant;
  font-weight: 400;
  font-style: normal;
  src: url("//www.fantasyforged.ca/cdn/fonts/cormorant/cormorant_n4.bd66e8e0031690b46374315bd1c15a17a8dcd450.woff2") format("woff2"),
       url("//www.fantasyforged.ca/cdn/fonts/cormorant/cormorant_n4.e5604516683cb4cc166c001f2ff5f387255e3b45.woff") format("woff");
}

@font-face {
  font-family: "EB Garamond";
  font-weight: 700;
  font-style: normal;
  src: url("//www.fantasyforged.ca/cdn/fonts/ebgaramond/ebgaramond_n7.d08d282a03b4a9cde493a0a5c170eb41fd0a48a6.woff2") format("woff2"),
       url("//www.fantasyforged.ca/cdn/fonts/ebgaramond/ebgaramond_n7.7c8306185882f01a9ed6edf77ce46bbf9dd53b41.woff") format("woff");
}

@font-face {
  font-family: "EB Garamond";
  font-weight: 800;
  font-style: normal;
  src: url("//www.fantasyforged.ca/cdn/fonts/ebgaramond/ebgaramond_n8.5ffe99acaefd060c0967e2c420850abf50f963c0.woff2") format("woff2"),
       url("//www.fantasyforged.ca/cdn/fonts/ebgaramond/ebgaramond_n8.21be4316bc272e8535fd058c7b38d558a5f48014.woff") format("woff");
}

@font-face {
  font-family: "EB Garamond";
  font-weight: 700;
  font-style: italic;
  src: url("//www.fantasyforged.ca/cdn/fonts/ebgaramond/ebgaramond_i7.a554120900e2a1ba4ba64bd80ad36a8fd44041f5.woff2") format("woff2"),
       url("//www.fantasyforged.ca/cdn/fonts/ebgaramond/ebgaramond_i7.7101ca1f5cf9647cc8a47fe8b7268d197f62e702.woff") format("woff");
}

@font-face {
  font-family: "EB Garamond";
  font-weight: 800;
  font-style: italic;
  src: url("//www.fantasyforged.ca/cdn/fonts/ebgaramond/ebgaramond_i8.9a7a8c2dfa7b83ec981c7056068e2028f5aff011.woff2") format("woff2"),
       url("//www.fantasyforged.ca/cdn/fonts/ebgaramond/ebgaramond_i8.2abaa56f1d46063a0fbe81f1fcdf29276b6b15dd.woff") format("woff");
}


/* Typography */

body
{
  font-family: "EB Garamond";
  color:var(--text-color);
  font-size:var(--text-size);
}

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

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

/* General Variables */

:root {

    /* Borders */

    --border-radius: 3px;
    --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: "EB Garamond";
    --header-font: Cormorant;

    /* Colors */
    --input-background: #fff;
    --color-gradient: linear-gradient(0deg, #F4E8D0 2.77%, #F4E8D0 84.58%);
    --color-gradient-secondary: linear-gradient(0deg,#F4E8D0 2.77%,#F4E8D0 84.58%);
    --color-primary: #d94a2b;
    --color-secondary: #d94a2b;
    --color-page-background: #1f2326;
    --brand-secondary: #d94a2b;
    --button-bg-color: #d94a2b;
    --button-text-color:  #fff;
    --button-bg-hover-color: #d94a2b;
    --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                   :  244, 232, 208;
    --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           : #b32323;
    --product-custom-label-1-background: #d71f20;
    --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>

