/** 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: "Mouse Memoirs";
  font-weight: 400;
  font-style: normal;
  src: url("//www.magiclair.com.ar/cdn/fonts/mouse_memoirs/mousememoirs_n4.c16829164fe37057d4c76919ec2e611b37e9cd2f.woff2?h1=bWFnaWNsYWlyLmNvbS5hcg&h2=bWFnaWMtbGFpci5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=250496171887b3679f382b6aef351ad13dc1f920312aa4a87df7487a58869c31") format("woff2"),
       url("//www.magiclair.com.ar/cdn/fonts/mouse_memoirs/mousememoirs_n4.348cc2886430eba4bc3fae40d4133e095b510485.woff?h1=bWFnaWNsYWlyLmNvbS5hcg&h2=bWFnaWMtbGFpci5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=6f99863d3785e19caf009bb61d1d003889b72c7280698ddbb0f0196ea6dcbeb5") format("woff");
}

@font-face {
  font-family: "Fjalla One";
  font-weight: 400;
  font-style: normal;
  src: url("//www.magiclair.com.ar/cdn/fonts/fjalla_one/fjallaone_n4.262edaf1abaf5ed669f7ecd26fc3e24707a0ad85.woff2?h1=bWFnaWNsYWlyLmNvbS5hcg&h2=bWFnaWMtbGFpci5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=e29069c8f35ed28b6a1a55b3cd98e65f189e8f2b1467e5603e36400b9d0075dd") format("woff2"),
       url("//www.magiclair.com.ar/cdn/fonts/fjalla_one/fjallaone_n4.f67f40342efd2b34cae019d50b4b5c4da6fc5da7.woff?h1=bWFnaWNsYWlyLmNvbS5hcg&h2=bWFnaWMtbGFpci5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=fac26ecaaf7a742be22a921f7f1d22ab52a79621d494199a9b3ffb081e91c4e1") format("woff");
}





/* Typography */

body
{
  font-family: "Fjalla One";
  color:var(--text-color);
  font-size:var(--text-size);
}

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

h1,h2,h3,h4,h5,h6
{
  font-family: "Mouse Memoirs";
  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: "Fjalla One";
    --header-font: "Mouse Memoirs";

    /* Colors */
    --input-background: #fff;
    --color-gradient: linear-gradient(103.4deg, #7535E5 2.77%, #8484FF 84.58%);
    --color-gradient-secondary: linear-gradient(103.4deg,#ffbd00 2.77%,#25878c 84.58%);
    --color-primary: #000000;
    --color-secondary: #1DA9A1;
    --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>

