/**
 *  ===============================================================
 *        COOKIE CONSENT SCRIPT
 *  ===============================================================
 */

$(function () {
    window.addEventListener('load', function () {
        window.cookieconsent.initialise({
            'palette': {
                'popup': {
                    'background': '#D8D8D8'
                },
                'button': {
                    'background': 'transparent',
                    'text': '#1E2530',
                    'border': '#1E2530'
                }
            },
            'content': {
                'message': 'This website uses cookies to ensure you get the best experience on our website.',
                'dismiss': 'Got it!',
                'link': 'Learn more',
                'href': 'https://www.extremesailingseries.com/policies/privacy'
            }
        })
    })
})