{"cookies_consent":"<div id=\"shopify-section-cookies_consent\" class=\"shopify-section type_Cookies_Consent\"><style>\n  consent-bar {position: fixed; z-index: 100; width: 100%; bottom: 0; left: 0; background: transparent !important;}\n  consent-bar:before {content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--scheme-background-gradient); opacity: 90%; border-radius: inherit;}\n  consent-bar .wrap {position: relative; z-index: 1; background: transparent; padding: 1em 0;}\n  consent-bar.border-true {border-top: 1px solid var(--scheme-borders-color);}\n  consent-bar.shadow-true {box-shadow: 0 0 6px rgba(0,0,0,.1);}\n  consent-bar .btn {white-space: nowrap;}\n  consent-bar .accept {cursor: pointer;}\n  consent-bar .close-btn {position: absolute; right: 1em; bottom: 0; height: 100%;}\n  \n  @media (max-width: 38em){\n    consent-bar {padding: ;}\n    consent-bar .btn {margin-top: 0.5em;}\n  }\n\n</style>\n\n<consent-bar class=\"scheme ease-animation color-scheme-3 border-false shadow-false full-width-true\">\n  <div class=\"container\">\n    <div class=\"wrap main-content grid align-items-center \">\n      <div class=\"grid-item large--flex-1 medium--flex-1 small--one-whole\">\n        <div class=\"text p3\"><p>This site uses cookies to provide an optimized shopping experience. By using this site, you agree to the use of cookies.</p></div>\n      </div><div class=\"grid-item small--one-whole\">\n          <button type=\"button\" class=\"btn accept small--one-whole\">I Agree</button>\n        </div></div>\n  </div>\n</consent-bar>\n\n<script type=\"module\">\n  if(!customElements.get('consent-bar')) {\n    class ConsentBar extends HTMLElement {\n      constructor() {\n        super();\n        const saveConsent = (answer)=> {\n          Cookies.set('CookiesConsent', 'true', 365);\n          this.style.display = 'none';\n        }\n\n        this.querySelector('.accept').addEventListener('click', (e)=>{\n          saveConsent(true);\n        });\n      }\n    }\n    customElements.define('consent-bar', ConsentBar);\n  }\n</script>\n\n\n</div>"}