/** 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: Righteous;
  font-weight: 400;
  font-style: normal;
  src: url("//www.realmhoppers.com/cdn/fonts/righteous/righteous_n4.24438723c0e385d01cf4f33f6dfe358566782dc3.woff2?h1=YzM1NTBhLTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cmVhbG1ob3BwZXJzLmNvbQ&hmac=f4926520f587027310e04111d28e55bbe1b44e1ffbe7037e204333b588f2917f") format("woff2"),
       url("//www.realmhoppers.com/cdn/fonts/righteous/righteous_n4.616f412bc99f0188e6e2b866fb39cb62f60b80e2.woff?h1=YzM1NTBhLTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cmVhbG1ob3BwZXJzLmNvbQ&hmac=9ed67077618bab92da4c70a258842123f329b1281959efa6cfac03214bed2b27") format("woff");
}

@font-face {
  font-family: Righteous;
  font-weight: 400;
  font-style: normal;
  src: url("//www.realmhoppers.com/cdn/fonts/righteous/righteous_n4.24438723c0e385d01cf4f33f6dfe358566782dc3.woff2?h1=YzM1NTBhLTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cmVhbG1ob3BwZXJzLmNvbQ&hmac=f4926520f587027310e04111d28e55bbe1b44e1ffbe7037e204333b588f2917f") format("woff2"),
       url("//www.realmhoppers.com/cdn/fonts/righteous/righteous_n4.616f412bc99f0188e6e2b866fb39cb62f60b80e2.woff?h1=YzM1NTBhLTMuYWNjb3VudC5teXNob3BpZnkuY29t&h2=cmVhbG1ob3BwZXJzLmNvbQ&hmac=9ed67077618bab92da4c70a258842123f329b1281959efa6cfac03214bed2b27") format("woff");
}





/* Typography */

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

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

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

/* General Variables */

:root {

    /* Borders */

    --border-radius: 4px;
    --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: Righteous;
    --header-font: Righteous;

    /* Colors */
    --input-background: #fff;
    --color-gradient: linear-gradient(103.4deg, #ffbd00 2.77%, #f79206 84.58%);
    --color-gradient-secondary: linear-gradient(103.4deg,#ffbd00 2.77%,#f79206 84.58%);
    --color-primary: #00badb;
    --color-secondary: #ffbd00;
    --color-page-background: #ffffff;
    --brand-secondary: #00badb;
    --button-bg-color: #00badb;
    --button-text-color:  #fff;
    --button-bg-hover-color: #00badb;
    --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);
}





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

