GDPR Cookie Compliance - Version 4.8.3

Version Description

Download this release

Release Info

Developer MooveAgency
Plugin Icon 128x128 GDPR Cookie Compliance
Version 4.8.3
Comparing to
See all releases

Code changes from version 4.8.2 to 4.8.3

class-gdpr-modules.php CHANGED
@@ -93,6 +93,15 @@ class GDPR_Modules {
93
  $modal_theme = 'moove_gdpr_modal_theme_' . $layout;
94
  $data->modal_title = 'v1' === $layout ? false : $tab_title;
95
  $view_type = 'v1' === $layout ? 'tabs' : 'onepage';
 
 
 
 
 
 
 
 
 
96
  return $view_controller->load( 'modal.modal-base-' . $view_type, $data );
97
  }
98
 
@@ -370,7 +379,7 @@ class GDPR_Modules {
370
 
371
  $data->reject_v = isset( $modal_options['moove_gdpr_reject_all_button_enable'] ) ? ( intval( $modal_options['moove_gdpr_reject_all_button_enable'] ) === 1 ? true : ( ! isset( $modal_options['moove_gdpr_reject_all_button_enable'] ) ? false : false ) ) : false;
372
  $data->reject_label = isset( $modal_options[ 'moove_gdpr_modal_reject_button_label' . $wpml_lang ] ) && $modal_options[ 'moove_gdpr_modal_reject_button_label' . $wpml_lang ] ? $modal_options[ 'moove_gdpr_modal_reject_button_label' . $wpml_lang ] : __( 'Reject All', 'gdpr-cookie-compliance' );
373
- $data->buttons_order = isset( $modal_options['gdpr_gs_buttons_order'] ) ? json_decode( $modal_options['gdpr_gs_buttons_order'], true ) : array( 'enable', 'reject', 'save' );
374
 
375
  return $view_controller->load( 'modal.tab-footer-buttons', $data );
376
  }
93
  $modal_theme = 'moove_gdpr_modal_theme_' . $layout;
94
  $data->modal_title = 'v1' === $layout ? false : $tab_title;
95
  $view_type = 'v1' === $layout ? 'tabs' : 'onepage';
96
+ $close_button_v = true;
97
+
98
+ $gdpr_gs_buttons_order = isset( $modal_options['gdpr_gs_buttons_order'] ) ? json_decode( $modal_options['gdpr_gs_buttons_order'], true ) : array( 'enable', 'reject', 'save', 'close' );
99
+
100
+ if ( is_array( $gdpr_gs_buttons_order ) && in_array( 'close', $gdpr_gs_buttons_order ) && isset( $modal_options['moove_gdpr_cb_close_button_enable'] ) && 0 === intval( $modal_options['moove_gdpr_cb_close_button_enable'] ) ) :
101
+ $close_button_v = false;
102
+ endif;
103
+
104
+ $data->close = $close_button_v;
105
  return $view_controller->load( 'modal.modal-base-' . $view_type, $data );
106
  }
107
 
379
 
380
  $data->reject_v = isset( $modal_options['moove_gdpr_reject_all_button_enable'] ) ? ( intval( $modal_options['moove_gdpr_reject_all_button_enable'] ) === 1 ? true : ( ! isset( $modal_options['moove_gdpr_reject_all_button_enable'] ) ? false : false ) ) : false;
381
  $data->reject_label = isset( $modal_options[ 'moove_gdpr_modal_reject_button_label' . $wpml_lang ] ) && $modal_options[ 'moove_gdpr_modal_reject_button_label' . $wpml_lang ] ? $modal_options[ 'moove_gdpr_modal_reject_button_label' . $wpml_lang ] : __( 'Reject All', 'gdpr-cookie-compliance' );
382
+ $data->buttons_order = isset( $modal_options['gdpr_gs_buttons_order'] ) ? json_decode( $modal_options['gdpr_gs_buttons_order'], true ) : array( 'enable', 'reject', 'save', 'close' );
383
 
384
  return $view_controller->load( 'modal.tab-footer-buttons', $data );
385
  }
class-moove-gdpr-actions.php CHANGED
@@ -501,6 +501,13 @@ class Moove_GDPR_Actions {
501
 
502
  $hide_save_btn = apply_filters( 'gdpr_keep_save_changes_button_visible', true );
503
  $hide_save_btn = $hide_save_btn ? 'false' : 'true';
 
 
 
 
 
 
 
504
 
505
  $loc_data = array(
506
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
@@ -521,6 +528,7 @@ class Moove_GDPR_Actions {
521
  'cookie_expiration' => apply_filters( 'gdpr_cookie_expiration_days', $cookie_expiration ),
522
  'script_delay' => apply_filters( 'gdpr_init_script_delay', 2000 ),
523
  'close_btn_action' => isset( $modal_options['gdpr_close_button_bhv'] ) && intval( $modal_options['gdpr_close_button_bhv'] ) ? intval( $modal_options['gdpr_close_button_bhv'] ) : 1,
 
524
  );
525
 
526
  $ajax_script_handler = apply_filters( 'gdpr_cc_prevent_ajax_script_inject', false );
501
 
502
  $hide_save_btn = apply_filters( 'gdpr_keep_save_changes_button_visible', true );
503
  $hide_save_btn = $hide_save_btn ? 'false' : 'true';
504
+ $close_button_v = true;
505
+
506
+ $gdpr_gs_buttons_order = isset( $modal_options['gdpr_gs_buttons_order'] ) ? json_decode( $modal_options['gdpr_gs_buttons_order'], true ) : array( 'enable', 'reject', 'save', 'close' );
507
+
508
+ if ( is_array( $gdpr_gs_buttons_order ) && in_array( 'close', $gdpr_gs_buttons_order ) && isset( $modal_options['moove_gdpr_cb_close_button_enable'] ) && 0 === intval( $modal_options['moove_gdpr_cb_close_button_enable'] ) ) :
509
+ $close_button_v = false;
510
+ endif;
511
 
512
  $loc_data = array(
513
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
528
  'cookie_expiration' => apply_filters( 'gdpr_cookie_expiration_days', $cookie_expiration ),
529
  'script_delay' => apply_filters( 'gdpr_init_script_delay', 2000 ),
530
  'close_btn_action' => isset( $modal_options['gdpr_close_button_bhv'] ) && intval( $modal_options['gdpr_close_button_bhv'] ) ? intval( $modal_options['gdpr_close_button_bhv'] ) : 1,
531
+ 'close_cs_action' => $close_button_v && isset( $modal_options['gdpr_cb_close_button_bhv'] ) && intval( $modal_options['gdpr_cb_close_button_bhv'] ) ? intval( $modal_options['gdpr_cb_close_button_bhv'] ) : 1,
532
  );
533
 
534
  $ajax_script_handler = apply_filters( 'gdpr_cc_prevent_ajax_script_inject', false );
class-moove-gdpr-content.php CHANGED
@@ -209,7 +209,7 @@ class Moove_GDPR_Content {
209
  * Licence token
210
  */
211
  public function get_license_token() {
212
- $license_token = trailingslashit( get_bloginfo( 'url' ) );
213
  return $license_token;
214
  }
215
 
209
  * Licence token
210
  */
211
  public function get_license_token() {
212
+ $license_token = trailingslashit( site_url() );
213
  return $license_token;
214
  }
215
 
controllers/class-moove-gdpr-license-manager.php CHANGED
@@ -54,7 +54,7 @@ class Moove_GDPR_License_Manager {
54
  'key' => $license_key,
55
  'message' => array(
56
  'We cannot activate the licence due to the following errors with the setup of your website and/or your hosting: ',
57
- '<strong>' . implode('<br />', $error->get_error_messages() ) . '</strong>',
58
  'Once you resolve the above, you will be able to activate the licence. You can also <a href="mailto:plugins@mooveagency.com" class="error_admin_link">contact our support</a> if you need any additional assistance.',
59
  ),
60
  );
@@ -69,7 +69,7 @@ class Moove_GDPR_License_Manager {
69
  'key' => $license_key,
70
  'message' => array(
71
  'We cannot activate the licence due to the following errors with the setup of your website and/or your hosting: ',
72
- '<strong>' . implode('<br />', $error->get_error_messages() ) . '</strong>',
73
  'Once you resolve the above, you will be able to activate the licence. You can also <a href="mailto:plugins@mooveagency.com" class="error_admin_link">contact our support</a> if you need any additional assistance.',
74
  ),
75
  );
54
  'key' => $license_key,
55
  'message' => array(
56
  'We cannot activate the licence due to the following errors with the setup of your website and/or your hosting: ',
57
+ '<strong>' . ( method_exists( $error, 'get_error_messages' ) ? implode('<br />', $error->get_error_messages() ) : '' ) . '</strong>',
58
  'Once you resolve the above, you will be able to activate the licence. You can also <a href="mailto:plugins@mooveagency.com" class="error_admin_link">contact our support</a> if you need any additional assistance.',
59
  ),
60
  );
69
  'key' => $license_key,
70
  'message' => array(
71
  'We cannot activate the licence due to the following errors with the setup of your website and/or your hosting: ',
72
+ '<strong>' . ( method_exists( $error, 'get_error_messages' ) ? implode('<br />', $error->get_error_messages() ) : '' ) . '</strong>',
73
  'Once you resolve the above, you will be able to activate the licence. You can also <a href="mailto:plugins@mooveagency.com" class="error_admin_link">contact our support</a> if you need any additional assistance.',
74
  ),
75
  );
dist/scripts/admin.js CHANGED
@@ -1 +1 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.postscribe=e():t.postscribe=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){"use strict";var r=n(1),o=function(t){return t&&t.__esModule?t:{default:t}}(r);t.exports=o.default},function(t,e,n){"use strict";function r(){}function o(){var t=h.shift();if(t){var e=l.last(t);e.afterDequeue(),t.stream=i.apply(void 0,t),e.afterStreamStart()}}function i(t,e,n){function i(t){t=n.beforeWrite(t),g.write(t),n.afterWrite(t)}g=new u.default(t,n),g.id=f++,g.name=n.name||g.id,a.streams[g.name]=g;var c=t.ownerDocument,p={close:c.close,open:c.open,write:c.write,writeln:c.writeln};s(c,{close:r,open:r,write:function(){for(var t=arguments.length,e=Array(t),n=0;n<t;n++)e[n]=arguments[n];return i(e.join(""))},writeln:function(){for(var t=arguments.length,e=Array(t),n=0;n<t;n++)e[n]=arguments[n];return i(e.join("")+"\n")}});var l=g.win.onerror||r;return g.win.onerror=function(t,e,r){n.error({msg:t+" - "+e+": "+r}),l.apply(g.win,[t,e,r])},g.write(e,function(){s(c,p),g.win.onerror=l,n.done(),g=null,o()}),g}function a(t,e,n){if(l.isFunction(n))n={done:n};else if("clear"===n)return h=[],g=null,void(f=0);n=l.defaults(n,d),t=/^#/.test(t)?window.document.getElementById(t.substr(1)):t.jquery?t[0]:t;var i=[t,e,n];return t.postscribe={cancel:function(){i.stream?i.stream.abort():i[1]=r}},n.beforeEnqueue(i),h.push(i),g||o(),t.postscribe}e.__esModule=!0;var s=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t};e.default=a;var c=n(2),u=function(t){return t&&t.__esModule?t:{default:t}}(c),p=n(4),l=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}(p),d={afterAsync:r,afterDequeue:r,afterStreamStart:r,afterWrite:r,autoFix:!0,beforeEnqueue:r,beforeWriteToken:function(t){return t},beforeWrite:function(t){return t},done:r,error:function(t){throw new Error(t.msg)},releaseAsync:!1},f=0,h=[],g=null;s(a,{streams:{},queue:h,WriteStream:u.default})},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){var n=l+e,r=t.getAttribute(n);return p.existy(r)?String(r):r}function i(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=l+e;p.existy(n)&&""!==n?t.setAttribute(r,n):t.removeAttribute(r)}e.__esModule=!0;var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},s=n(3),c=function(t){return t&&t.__esModule?t:{default:t}}(s),u=n(4),p=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}(u),l="data-ps-",d="ps-style",f="ps-script",h=function(){function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,t),this.root=e,this.options=n,this.doc=e.ownerDocument,this.win=this.doc.defaultView||this.doc.parentWindow,this.parser=new c.default("",{autoFix:n.autoFix}),this.actuals=[e],this.proxyHistory="",this.proxyRoot=this.doc.createElement(e.nodeName),this.scriptStack=[],this.writeQueue=[],i(this.proxyRoot,"proxyof",0)}return t.prototype.write=function(){var t;for((t=this.writeQueue).push.apply(t,arguments);!this.deferredRemote&&this.writeQueue.length;){var e=this.writeQueue.shift();p.isFunction(e)?this._callFunction(e):this._writeImpl(e)}},t.prototype._callFunction=function(t){var e={type:"function",value:t.name||t.toString()};this._onScriptStart(e),t.call(this.win,this.doc),this._onScriptDone(e)},t.prototype._writeImpl=function(t){this.parser.append(t);for(var e=void 0,n=void 0,r=void 0,o=[];(e=this.parser.readToken())&&!(n=p.isScript(e))&&!(r=p.isStyle(e));)(e=this.options.beforeWriteToken(e))&&o.push(e);o.length>0&&this._writeStaticTokens(o),n&&this._handleScriptToken(e),r&&this._handleStyleToken(e)},t.prototype._writeStaticTokens=function(t){var e=this._buildChunk(t);return e.actual?(e.html=this.proxyHistory+e.actual,this.proxyHistory+=e.proxy,this.proxyRoot.innerHTML=e.html,this._walkChunk(),e):null},t.prototype._buildChunk=function(t){for(var e=this.actuals.length,n=[],r=[],o=[],i=t.length,a=0;a<i;a++){var s=t[a],c=s.toString();if(n.push(c),s.attrs){if(!/^noscript$/i.test(s.tagName)){var u=e++;r.push(c.replace(/(\/?>)/," "+l+"id="+u+" $1")),s.attrs.id!==f&&s.attrs.id!==d&&o.push("atomicTag"===s.type?"":"<"+s.tagName+" "+l+"proxyof="+u+(s.unary?" />":">"))}}else r.push(c),o.push("endTag"===s.type?c:"")}return{tokens:t,raw:n.join(""),actual:r.join(""),proxy:o.join("")}},t.prototype._walkChunk=function(){for(var t=void 0,e=[this.proxyRoot];p.existy(t=e.shift());){var n=1===t.nodeType;if(!(n&&o(t,"proxyof"))){n&&(this.actuals[o(t,"id")]=t,i(t,"id"));var r=t.parentNode&&o(t.parentNode,"proxyof");r&&this.actuals[r].appendChild(t)}e.unshift.apply(e,p.toArray(t.childNodes))}},t.prototype._handleScriptToken=function(t){var e=this,n=this.parser.clear();n&&this.writeQueue.unshift(n),t.src=t.attrs.src||t.attrs.SRC,(t=this.options.beforeWriteToken(t))&&(t.src&&this.scriptStack.length?this.deferredRemote=t:this._onScriptStart(t),this._writeScriptToken(t,function(){e._onScriptDone(t)}))},t.prototype._handleStyleToken=function(t){var e=this.parser.clear();e&&this.writeQueue.unshift(e),t.type=t.attrs.type||t.attrs.TYPE||"text/css",t=this.options.beforeWriteToken(t),t&&this._writeStyleToken(t),e&&this.write()},t.prototype._writeStyleToken=function(t){var e=this._buildStyle(t);this._insertCursor(e,d),t.content&&(e.styleSheet&&!e.sheet?e.styleSheet.cssText=t.content:e.appendChild(this.doc.createTextNode(t.content)))},t.prototype._buildStyle=function(t){var e=this.doc.createElement(t.tagName);return e.setAttribute("type",t.type),p.eachKey(t.attrs,function(t,n){e.setAttribute(t,n)}),e},t.prototype._insertCursor=function(t,e){this._writeImpl('<span id="'+e+'"/>');var n=this.doc.getElementById(e);n&&n.parentNode.replaceChild(t,n)},t.prototype._onScriptStart=function(t){t.outerWrites=this.writeQueue,this.writeQueue=[],this.scriptStack.unshift(t)},t.prototype._onScriptDone=function(t){return t!==this.scriptStack[0]?void this.options.error({msg:"Bad script nesting or script finished twice"}):(this.scriptStack.shift(),this.write.apply(this,t.outerWrites),void(!this.scriptStack.length&&this.deferredRemote&&(this._onScriptStart(this.deferredRemote),this.deferredRemote=null)))},t.prototype._writeScriptToken=function(t,e){var n=this._buildScript(t),r=this._shouldRelease(n),o=this.options.afterAsync;t.src&&(n.src=t.src,this._scriptLoadHandler(n,r?o:function(){e(),o()}));try{this._insertCursor(n,f),n.src&&!r||e()}catch(t){this.options.error(t),e()}},t.prototype._buildScript=function(t){var e=this.doc.createElement(t.tagName);return p.eachKey(t.attrs,function(t,n){e.setAttribute(t,n)}),t.content&&(e.text=t.content),e},t.prototype._scriptLoadHandler=function(t,e){function n(){t=t.onload=t.onreadystatechange=t.onerror=null}function r(){n(),null!=e&&e(),e=null}function o(t){n(),s(t),null!=e&&e(),e=null}function i(t,e){var n=t["on"+e];null!=n&&(t["_on"+e]=n)}var s=this.options.error;i(t,"load"),i(t,"error"),a(t,{onload:function(){if(t._onload)try{t._onload.apply(this,Array.prototype.slice.call(arguments,0))}catch(e){o({msg:"onload handler failed "+e+" @ "+t.src})}r()},onerror:function(){if(t._onerror)try{t._onerror.apply(this,Array.prototype.slice.call(arguments,0))}catch(e){return void o({msg:"onerror handler failed "+e+" @ "+t.src})}o({msg:"remote script failed "+t.src})},onreadystatechange:function(){/^(loaded|complete)$/.test(t.readyState)&&r()}})},t.prototype._shouldRelease=function(t){return!/^script$/i.test(t.nodeName)||!!(this.options.releaseAsync&&t.src&&t.hasAttribute("async"))},t}();e.default=h},function(t,e,n){!function(e,n){t.exports=function(){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){"use strict";var r=n(1),o=function(t){return t&&t.__esModule?t:{default:t}}(r);t.exports=o.default},function(t,e,n){"use strict";function r(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}e.__esModule=!0;var i=n(2),a=r(i),s=n(3),c=r(s),u=n(6),p=function(t){return t&&t.__esModule?t:{default:t}}(u),l=n(5),d={comment:/^<!--/,endTag:/^<\//,atomicTag:/^<\s*(script|style|noscript|iframe|textarea)[\s\/>]/i,startTag:/^</,chars:/^[^<]/},f=function(){function t(){var e=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};o(this,t),this.stream=n;var i=!1,s={};for(var c in a)a.hasOwnProperty(c)&&(r.autoFix&&(s[c+"Fix"]=!0),i=i||s[c+"Fix"]);i?(this._readToken=(0,p.default)(this,s,function(){return e._readTokenImpl()}),this._peekToken=(0,p.default)(this,s,function(){return e._peekTokenImpl()})):(this._readToken=this._readTokenImpl,this._peekToken=this._peekTokenImpl)}return t.prototype.append=function(t){this.stream+=t},t.prototype.prepend=function(t){this.stream=t+this.stream},t.prototype._readTokenImpl=function(){var t=this._peekTokenImpl();if(t)return this.stream=this.stream.slice(t.length),t},t.prototype._peekTokenImpl=function(){for(var t in d)if(d.hasOwnProperty(t)&&d[t].test(this.stream)){var e=c[t](this.stream);if(e)return"startTag"===e.type&&/script|style/i.test(e.tagName)?null:(e.text=this.stream.substr(0,e.length),e)}},t.prototype.peekToken=function(){return this._peekToken()},t.prototype.readToken=function(){return this._readToken()},t.prototype.readTokens=function(t){for(var e=void 0;e=this.readToken();)if(t[e.type]&&!1===t[e.type](e))return},t.prototype.clear=function(){var t=this.stream;return this.stream="",t},t.prototype.rest=function(){return this.stream},t}();e.default=f,f.tokenToString=function(t){return t.toString()},f.escapeAttributes=function(t){var e={};for(var n in t)t.hasOwnProperty(n)&&(e[n]=(0,l.escapeQuotes)(t[n],null));return e},f.supports=a;for(var h in a)a.hasOwnProperty(h)&&(f.browserHasFlaw=f.browserHasFlaw||!a[h]&&h)},function(t,e){"use strict";e.__esModule=!0;var n=!1,r=!1,o=window.document.createElement("div");try{var i="<P><I></P></I>";o.innerHTML=i,e.tagSoup=n=o.innerHTML!==i}catch(t){e.tagSoup=n=!1}try{o.innerHTML="<P><i><P></P></i></P>",e.selfClose=r=2===o.childNodes.length}catch(t){e.selfClose=r=!1}o=null,e.tagSoup=n,e.selfClose=r},function(t,e,n){"use strict";function r(t){var e=t.indexOf("--\x3e");if(e>=0)return new u.CommentToken(t.substr(4,e-1),e+3)}function o(t){var e=t.indexOf("<");return new u.CharsToken(e>=0?e:t.length)}function i(t){if(-1!==t.indexOf(">")){var e=t.match(p.startTag);if(e){var n=function(){var t={},n={},r=e[2];return e[2].replace(p.attr,function(e,o){arguments[2]||arguments[3]||arguments[4]||arguments[5]?arguments[5]?(t[arguments[5]]="",n[arguments[5]]=!0):t[o]=arguments[2]||arguments[3]||arguments[4]||p.fillAttr.test(o)&&o||"":t[o]="",r=r.replace(e,"")}),{v:new u.StartTagToken(e[1],e[0].length,t,n,!!e[3],r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""))}}();if("object"===(void 0===n?"undefined":c(n)))return n.v}}}function a(t){var e=i(t);if(e){var n=t.slice(e.length);if(n.match(new RegExp("</\\s*"+e.tagName+"\\s*>","i"))){var r=n.match(new RegExp("([\\s\\S]*?)</\\s*"+e.tagName+"\\s*>","i"));if(r)return new u.AtomicTagToken(e.tagName,r[0].length+e.length,e.attrs,e.booleanAttrs,r[1])}}}function s(t){var e=t.match(p.endTag);if(e)return new u.EndTagToken(e[1],e[0].length)}e.__esModule=!0;var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.comment=r,e.chars=o,e.startTag=i,e.atomicTag=a,e.endTag=s;var u=n(4),p={startTag:/^<([\-A-Za-z0-9_]+)((?:\s+[\w\-]+(?:\s*=?\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/,endTag:/^<\/([\-A-Za-z0-9_]+)[^>]*>/,attr:/(?:([\-A-Za-z0-9_]+)\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))|(?:([\-A-Za-z0-9_]+)(\s|$)+)/g,fillAttr:/^(checked|compact|declare|defer|disabled|ismap|multiple|nohref|noresize|noshade|nowrap|readonly|selected)$/i}},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}e.__esModule=!0,e.EndTagToken=e.AtomicTagToken=e.StartTagToken=e.TagToken=e.CharsToken=e.CommentToken=e.Token=void 0;var o=n(5),i=(e.Token=function t(e,n){r(this,t),this.type=e,this.length=n,this.text=""},e.CommentToken=function(){function t(e,n){r(this,t),this.type="comment",this.length=n||(e?e.length:0),this.text="",this.content=e}return t.prototype.toString=function(){return"\x3c!--"+this.content},t}(),e.CharsToken=function(){function t(e){r(this,t),this.type="chars",this.length=e,this.text=""}return t.prototype.toString=function(){return this.text},t}(),e.TagToken=function(){function t(e,n,o,i,a){r(this,t),this.type=e,this.length=o,this.text="",this.tagName=n,this.attrs=i,this.booleanAttrs=a,this.unary=!1,this.html5Unary=!1}return t.formatTag=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n="<"+t.tagName;for(var r in t.attrs)if(t.attrs.hasOwnProperty(r)){n+=" "+r;var i=t.attrs[r];void 0!==t.booleanAttrs&&void 0!==t.booleanAttrs[r]||(n+='="'+(0,o.escapeQuotes)(i)+'"')}return t.rest&&(n+=" "+t.rest),n+=t.unary&&!t.html5Unary?"/>":">",void 0!==e&&null!==e&&(n+=e+"</"+t.tagName+">"),n},t}());e.StartTagToken=function(){function t(e,n,o,i,a,s){r(this,t),this.type="startTag",this.length=n,this.text="",this.tagName=e,this.attrs=o,this.booleanAttrs=i,this.html5Unary=!1,this.unary=a,this.rest=s}return t.prototype.toString=function(){return i.formatTag(this)},t}(),e.AtomicTagToken=function(){function t(e,n,o,i,a){r(this,t),this.type="atomicTag",this.length=n,this.text="",this.tagName=e,this.attrs=o,this.booleanAttrs=i,this.unary=!1,this.html5Unary=!1,this.content=a}return t.prototype.toString=function(){return i.formatTag(this,this.content)},t}(),e.EndTagToken=function(){function t(e,n){r(this,t),this.type="endTag",this.length=n,this.text="",this.tagName=e}return t.prototype.toString=function(){return"</"+this.tagName+">"},t}()},function(t,e){"use strict";function n(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return t?t.replace(/([^"]*)"/g,function(t,e){return/\\/.test(e)?e+'"':e+'\\"'}):e}e.__esModule=!0,e.escapeQuotes=n},function(t,e){"use strict";function n(t){return t&&"startTag"===t.type&&(t.unary=s.test(t.tagName)||t.unary,t.html5Unary=!/\/>$/.test(t.text)),t}function r(t,e){var r=t.stream,o=n(e());return t.stream=r,o}function o(t,e){var n=e.pop();t.prepend("</"+n.tagName+">")}function i(){var t=[];return t.last=function(){return this[this.length-1]},t.lastTagNameEq=function(t){var e=this.last();return e&&e.tagName&&e.tagName.toUpperCase()===t.toUpperCase()},t.containsTagName=function(t){for(var e,n=0;e=this[n];n++)if(e.tagName===t)return!0;return!1},t}function a(t,e,a){function s(){var e=r(t,a);e&&p[e.type]&&p[e.type](e)}var u=i(),p={startTag:function(n){var r=n.tagName;"TR"===r.toUpperCase()&&u.lastTagNameEq("TABLE")?(t.prepend("<TBODY>"),s()):e.selfCloseFix&&c.test(r)&&u.containsTagName(r)?u.lastTagNameEq(r)?o(t,u):(t.prepend("</"+n.tagName+">"),s()):n.unary||u.push(n)},endTag:function(n){u.last()?e.tagSoupFix&&!u.lastTagNameEq(n.tagName)?o(t,u):u.pop():e.tagSoupFix&&(a(),s())}};return function(){return s(),n(a())}}e.__esModule=!0,e.default=a;var s=/^(AREA|BASE|BASEFONT|BR|COL|FRAME|HR|IMG|INPUT|ISINDEX|LINK|META|PARAM|EMBED)$/i,c=/^(COLGROUP|DD|DT|LI|OPTIONS|P|TD|TFOOT|TH|THEAD|TR)$/i}])}()}()},function(t,e){"use strict";function n(t){return void 0!==t&&null!==t}function r(t){return"function"==typeof t}function o(t,e,n){var r=void 0,o=t&&t.length||0;for(r=0;r<o;r++)e.call(n,t[r],r)}function i(t,e,n){for(var r in t)t.hasOwnProperty(r)&&e.call(n,r,t[r])}function a(t,e){return t=t||{},i(e,function(e,r){n(t[e])||(t[e]=r)}),t}function s(t){try{return Array.prototype.slice.call(t)}catch(n){var e=function(){var e=[];return o(t,function(t){e.push(t)}),{v:e}}();if("object"===(void 0===e?"undefined":d(e)))return e.v}}function c(t){return t[t.length-1]}function u(t,e){return!(!t||"startTag"!==t.type&&"atomicTag"!==t.type||!("tagName"in t)||!~t.tagName.toLowerCase().indexOf(e))}function p(t){return u(t,"script")}function l(t){return u(t,"style")}e.__esModule=!0;var d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.existy=n,e.isFunction=r,e.each=o,e.eachKey=i,e.defaults=a,e.toArray=s,e.last=c,e.isTag=u,e.isScript=p,e.isStyle=l}])}),function(t){var e={common:{init:function(){function e(e){var n=0,r={};e.find(".gdpr-sortable-button").each(function(){n++;t(this);r[n]=t(this).attr("data-type")}),e.closest(".gdpr-sortable-buttons-wrap").find(".gdpr-buttons-order-inpval").val(JSON.stringify(r))}t(document).on("click",".gdpr-help-content-cnt .gdpr-faq-toggle h3",function(){var e=t(this).closest(".gdpr-faq-toggle");e.hasClass("gdpr-faq-open")?e.removeClass("gdpr-faq-open").find(".gdpr-faq-accordion-content").slideUp(200):(e.closest(".gdpr-help-content-block").find(".gdpr-faq-open").each(function(){t(this).find(".gdpr-faq-accordion-content").slideUp(200),t(this).removeClass("gdpr-faq-open")}),e.addClass("gdpr-faq-open").find(".gdpr-faq-accordion-content").slideDown(200))}),t(".gdpr-sortable-buttons").each(function(){try{t(this).sortable({connectWith:t(this),update:function(n,r){e(t(n.target).closest(".gdpr-sortable-buttons-wrap"))}})}catch(t){}});var n=!1,r=!1,o=t("input[name=moove_gdpr_strictly_necessary_cookies_functionality]");o.on("focus",function(){r=o.filter(":checked")}),t(document).on("change",'input[name="moove_gdpr_strictly_necessary_cookies_functionality"]',function(e){"1"===t(this).val()&&"true"===t(this).closest("td").attr("data-fsm")&&(e.preventDefault(),r.prop("checked",!0).focus(),t(".gdpr-admin-popup.gdpr-admin-popup-fsm-settings").fadeIn(200))}),t(document).on("click",".button-reset-settings",function(e){e.preventDefault(),t(".gdpr-admin-popup.gdpr-admin-popup-reset-settings").fadeIn(200)}),t(document).on("click",".gdpr_deactivate_license_key",function(e){e.preventDefault(),t(".gdpr-admin-popup.gdpr-admin-popup-deactivate").fadeIn(200)}),t(document).on("click",".gdpr-admin-popup .gdpr-popup-overlay, .gdpr-admin-popup .gdpr-popup-close",function(e){e.preventDefault(),t(this).closest(".gdpr-admin-popup").fadeOut(200)}),t(document).on("click",".gdpr-admin-popup.gdpr-admin-popup-deactivate .button-deactivate-confirm",function(e){e.preventDefault(),n=!0,t("<input type='hidden' value='1' />").attr("id","gdpr_deactivate_license").attr("name","gdpr_deactivate_license").appendTo("#moove_gdpr_license_settings"),t("#moove_gdpr_license_settings").submit(),t("#moove_gdpr_license_key").val(""),t(this).closest(".gdpr-admin-popup").fadeOut(200)}),t(document).on("click",".gdpr-cookie-alert .gdpr-dismiss",function(e){e.preventDefault(),t(this).closest(".gdpr-cookie-alert").slideUp(400);var n=t(this).attr("data-adminajax"),r=t(this).attr("data-uid"),o=t(this).attr("data-nonce");console.warn(o),jQuery.post(n,{action:"moove_hide_language_notice",user_id:r,nonce:o},function(t){})}),t(document).on("click",".gdpr-cookie-update-alert .gdpr-dismiss-update",function(e){e.preventDefault(),t(this).closest(".gdpr-cookie-alert").slideUp(400);var n=t(this).attr("data-adminajax"),r=t(this).attr("data-version");jQuery.post(n,{action:"moove_hide_update_notice",version:r},function(t){})}),t(document).on("click","a.gdpr-help-tab-toggle",function(e){e.preventDefault();var n=t(this).attr("href");if(t(n).length>0){t(".gdpr-help-content-block").slideUp(),t(n).slideDown(),t(".gdpr-help-tab-toggle").removeClass("active");var r=t(this).attr("href");t(document).find('a.gdpr-help-tab-toggle[href="'+r+'"]').addClass("active")}}),t(document).on("click",".gdpr-script-tab-content .gdpr-tab-code-section-nav li > a ",function(e){e.preventDefault();var n=t(this).attr("href");t(this).closest(".gdpr-script-tab-content").find(".gdpr-active").removeClass("gdpr-active"),t(this).addClass("gdpr-active"),t(n).addClass("gdpr-active")}),t(document).find(".gdpr-conditional-field").each(function(){var e=t(this).attr("data-dependency");t(e).is(":checked")?t(this).addClass("gdpr-conditional-on"):t(this).removeClass("gdpr-conditional-on")}),t(document).on("change",'.gdpr-checkbox-toggle input[type="checkbox"]',function(){t(this).is(":checked")?t(document).find('.gdpr-conditional-field[data-dependency="#'+t(this).attr("id")+'"]').addClass("gdpr-conditional-on"):t(document).find('.gdpr-conditional-field[data-dependency="#'+t(this).attr("id")+'"]').removeClass("gdpr-conditional-on")}),t(document).on("keyup","input[name=moove_gdpr_company_logo]",function(){t(".moove_gdpr_company_logo_holder").css("background-image","url("+t(this).val()+")")}),t(document).on("change",'input[name="moove_gdpr_plugin_font_type"]',function(){"1"===t(this).val()||"2"===t(this).val()?t("#moove_gdpr_plugin_font_family").addClass("moove-not-visible"):t("#moove_gdpr_plugin_font_family").removeClass("moove-not-visible")}),t("#moove_form_checker_wrap .iris-colorpicker").each(function(){t(this).iris({width:300,hide:!0,change:function(e,n){t(this).css("background",n.color.toString())}}).on("click",function(){t(this).iris("toggle")}),t(this).iris("color",t(this).val())}),t(document).on("click",".iris-selectbtn",function(){t(this).parent().find(".iris-colorpicker").iris("toggle")}),t(document).on("click",".iris-picker:visible",function(){t(".iris-colorpicker").iris("hide")})},finalize:function(){}},home:{init:function(){},finalize:function(){}},about_us:{init:function(){}}},n={fire:function(t,n,r){var o,i=e;n=void 0===n?"init":n,o=""!==t,o=o&&i[t],(o=o&&"function"==typeof i[t][n])&&i[t][n](r)},loadEvents:function(){n.fire("common"),t.each(document.body.className.replace(/-/g,"_").split(/\s+/),function(t,e){n.fire(e),n.fire(e,"finalize")}),n.fire("common","finalize")}};t(document).ready(n.loadEvents)}(jQuery);
1
+ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.postscribe=e():t.postscribe=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){"use strict";var r=n(1),o=function(t){return t&&t.__esModule?t:{default:t}}(r);t.exports=o.default},function(t,e,n){"use strict";function r(){}function o(){var t=h.shift();if(t){var e=l.last(t);e.afterDequeue(),t.stream=i.apply(void 0,t),e.afterStreamStart()}}function i(t,e,n){function i(t){t=n.beforeWrite(t),g.write(t),n.afterWrite(t)}g=new u.default(t,n),g.id=f++,g.name=n.name||g.id,a.streams[g.name]=g;var c=t.ownerDocument,p={close:c.close,open:c.open,write:c.write,writeln:c.writeln};s(c,{close:r,open:r,write:function(){for(var t=arguments.length,e=Array(t),n=0;n<t;n++)e[n]=arguments[n];return i(e.join(""))},writeln:function(){for(var t=arguments.length,e=Array(t),n=0;n<t;n++)e[n]=arguments[n];return i(e.join("")+"\n")}});var l=g.win.onerror||r;return g.win.onerror=function(t,e,r){n.error({msg:t+" - "+e+": "+r}),l.apply(g.win,[t,e,r])},g.write(e,function(){s(c,p),g.win.onerror=l,n.done(),g=null,o()}),g}function a(t,e,n){if(l.isFunction(n))n={done:n};else if("clear"===n)return h=[],g=null,void(f=0);n=l.defaults(n,d),t=/^#/.test(t)?window.document.getElementById(t.substr(1)):t.jquery?t[0]:t;var i=[t,e,n];return t.postscribe={cancel:function(){i.stream?i.stream.abort():i[1]=r}},n.beforeEnqueue(i),h.push(i),g||o(),t.postscribe}e.__esModule=!0;var s=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t};e.default=a;var c=n(2),u=function(t){return t&&t.__esModule?t:{default:t}}(c),p=n(4),l=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}(p),d={afterAsync:r,afterDequeue:r,afterStreamStart:r,afterWrite:r,autoFix:!0,beforeEnqueue:r,beforeWriteToken:function(t){return t},beforeWrite:function(t){return t},done:r,error:function(t){throw new Error(t.msg)},releaseAsync:!1},f=0,h=[],g=null;s(a,{streams:{},queue:h,WriteStream:u.default})},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){var n=l+e,r=t.getAttribute(n);return p.existy(r)?String(r):r}function i(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=l+e;p.existy(n)&&""!==n?t.setAttribute(r,n):t.removeAttribute(r)}e.__esModule=!0;var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},s=n(3),c=function(t){return t&&t.__esModule?t:{default:t}}(s),u=n(4),p=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}(u),l="data-ps-",d="ps-style",f="ps-script",h=function(){function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,t),this.root=e,this.options=n,this.doc=e.ownerDocument,this.win=this.doc.defaultView||this.doc.parentWindow,this.parser=new c.default("",{autoFix:n.autoFix}),this.actuals=[e],this.proxyHistory="",this.proxyRoot=this.doc.createElement(e.nodeName),this.scriptStack=[],this.writeQueue=[],i(this.proxyRoot,"proxyof",0)}return t.prototype.write=function(){var t;for((t=this.writeQueue).push.apply(t,arguments);!this.deferredRemote&&this.writeQueue.length;){var e=this.writeQueue.shift();p.isFunction(e)?this._callFunction(e):this._writeImpl(e)}},t.prototype._callFunction=function(t){var e={type:"function",value:t.name||t.toString()};this._onScriptStart(e),t.call(this.win,this.doc),this._onScriptDone(e)},t.prototype._writeImpl=function(t){this.parser.append(t);for(var e=void 0,n=void 0,r=void 0,o=[];(e=this.parser.readToken())&&!(n=p.isScript(e))&&!(r=p.isStyle(e));)(e=this.options.beforeWriteToken(e))&&o.push(e);o.length>0&&this._writeStaticTokens(o),n&&this._handleScriptToken(e),r&&this._handleStyleToken(e)},t.prototype._writeStaticTokens=function(t){var e=this._buildChunk(t);return e.actual?(e.html=this.proxyHistory+e.actual,this.proxyHistory+=e.proxy,this.proxyRoot.innerHTML=e.html,this._walkChunk(),e):null},t.prototype._buildChunk=function(t){for(var e=this.actuals.length,n=[],r=[],o=[],i=t.length,a=0;a<i;a++){var s=t[a],c=s.toString();if(n.push(c),s.attrs){if(!/^noscript$/i.test(s.tagName)){var u=e++;r.push(c.replace(/(\/?>)/," "+l+"id="+u+" $1")),s.attrs.id!==f&&s.attrs.id!==d&&o.push("atomicTag"===s.type?"":"<"+s.tagName+" "+l+"proxyof="+u+(s.unary?" />":">"))}}else r.push(c),o.push("endTag"===s.type?c:"")}return{tokens:t,raw:n.join(""),actual:r.join(""),proxy:o.join("")}},t.prototype._walkChunk=function(){for(var t=void 0,e=[this.proxyRoot];p.existy(t=e.shift());){var n=1===t.nodeType;if(!(n&&o(t,"proxyof"))){n&&(this.actuals[o(t,"id")]=t,i(t,"id"));var r=t.parentNode&&o(t.parentNode,"proxyof");r&&this.actuals[r].appendChild(t)}e.unshift.apply(e,p.toArray(t.childNodes))}},t.prototype._handleScriptToken=function(t){var e=this,n=this.parser.clear();n&&this.writeQueue.unshift(n),t.src=t.attrs.src||t.attrs.SRC,(t=this.options.beforeWriteToken(t))&&(t.src&&this.scriptStack.length?this.deferredRemote=t:this._onScriptStart(t),this._writeScriptToken(t,function(){e._onScriptDone(t)}))},t.prototype._handleStyleToken=function(t){var e=this.parser.clear();e&&this.writeQueue.unshift(e),t.type=t.attrs.type||t.attrs.TYPE||"text/css",t=this.options.beforeWriteToken(t),t&&this._writeStyleToken(t),e&&this.write()},t.prototype._writeStyleToken=function(t){var e=this._buildStyle(t);this._insertCursor(e,d),t.content&&(e.styleSheet&&!e.sheet?e.styleSheet.cssText=t.content:e.appendChild(this.doc.createTextNode(t.content)))},t.prototype._buildStyle=function(t){var e=this.doc.createElement(t.tagName);return e.setAttribute("type",t.type),p.eachKey(t.attrs,function(t,n){e.setAttribute(t,n)}),e},t.prototype._insertCursor=function(t,e){this._writeImpl('<span id="'+e+'"/>');var n=this.doc.getElementById(e);n&&n.parentNode.replaceChild(t,n)},t.prototype._onScriptStart=function(t){t.outerWrites=this.writeQueue,this.writeQueue=[],this.scriptStack.unshift(t)},t.prototype._onScriptDone=function(t){return t!==this.scriptStack[0]?void this.options.error({msg:"Bad script nesting or script finished twice"}):(this.scriptStack.shift(),this.write.apply(this,t.outerWrites),void(!this.scriptStack.length&&this.deferredRemote&&(this._onScriptStart(this.deferredRemote),this.deferredRemote=null)))},t.prototype._writeScriptToken=function(t,e){var n=this._buildScript(t),r=this._shouldRelease(n),o=this.options.afterAsync;t.src&&(n.src=t.src,this._scriptLoadHandler(n,r?o:function(){e(),o()}));try{this._insertCursor(n,f),n.src&&!r||e()}catch(t){this.options.error(t),e()}},t.prototype._buildScript=function(t){var e=this.doc.createElement(t.tagName);return p.eachKey(t.attrs,function(t,n){e.setAttribute(t,n)}),t.content&&(e.text=t.content),e},t.prototype._scriptLoadHandler=function(t,e){function n(){t=t.onload=t.onreadystatechange=t.onerror=null}function r(){n(),null!=e&&e(),e=null}function o(t){n(),s(t),null!=e&&e(),e=null}function i(t,e){var n=t["on"+e];null!=n&&(t["_on"+e]=n)}var s=this.options.error;i(t,"load"),i(t,"error"),a(t,{onload:function(){if(t._onload)try{t._onload.apply(this,Array.prototype.slice.call(arguments,0))}catch(e){o({msg:"onload handler failed "+e+" @ "+t.src})}r()},onerror:function(){if(t._onerror)try{t._onerror.apply(this,Array.prototype.slice.call(arguments,0))}catch(e){return void o({msg:"onerror handler failed "+e+" @ "+t.src})}o({msg:"remote script failed "+t.src})},onreadystatechange:function(){/^(loaded|complete)$/.test(t.readyState)&&r()}})},t.prototype._shouldRelease=function(t){return!/^script$/i.test(t.nodeName)||!!(this.options.releaseAsync&&t.src&&t.hasAttribute("async"))},t}();e.default=h},function(t,e,n){!function(e,n){t.exports=function(){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){"use strict";var r=n(1),o=function(t){return t&&t.__esModule?t:{default:t}}(r);t.exports=o.default},function(t,e,n){"use strict";function r(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}e.__esModule=!0;var i=n(2),a=r(i),s=n(3),c=r(s),u=n(6),p=function(t){return t&&t.__esModule?t:{default:t}}(u),l=n(5),d={comment:/^<!--/,endTag:/^<\//,atomicTag:/^<\s*(script|style|noscript|iframe|textarea)[\s\/>]/i,startTag:/^</,chars:/^[^<]/},f=function(){function t(){var e=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};o(this,t),this.stream=n;var i=!1,s={};for(var c in a)a.hasOwnProperty(c)&&(r.autoFix&&(s[c+"Fix"]=!0),i=i||s[c+"Fix"]);i?(this._readToken=(0,p.default)(this,s,function(){return e._readTokenImpl()}),this._peekToken=(0,p.default)(this,s,function(){return e._peekTokenImpl()})):(this._readToken=this._readTokenImpl,this._peekToken=this._peekTokenImpl)}return t.prototype.append=function(t){this.stream+=t},t.prototype.prepend=function(t){this.stream=t+this.stream},t.prototype._readTokenImpl=function(){var t=this._peekTokenImpl();if(t)return this.stream=this.stream.slice(t.length),t},t.prototype._peekTokenImpl=function(){for(var t in d)if(d.hasOwnProperty(t)&&d[t].test(this.stream)){var e=c[t](this.stream);if(e)return"startTag"===e.type&&/script|style/i.test(e.tagName)?null:(e.text=this.stream.substr(0,e.length),e)}},t.prototype.peekToken=function(){return this._peekToken()},t.prototype.readToken=function(){return this._readToken()},t.prototype.readTokens=function(t){for(var e=void 0;e=this.readToken();)if(t[e.type]&&!1===t[e.type](e))return},t.prototype.clear=function(){var t=this.stream;return this.stream="",t},t.prototype.rest=function(){return this.stream},t}();e.default=f,f.tokenToString=function(t){return t.toString()},f.escapeAttributes=function(t){var e={};for(var n in t)t.hasOwnProperty(n)&&(e[n]=(0,l.escapeQuotes)(t[n],null));return e},f.supports=a;for(var h in a)a.hasOwnProperty(h)&&(f.browserHasFlaw=f.browserHasFlaw||!a[h]&&h)},function(t,e){"use strict";e.__esModule=!0;var n=!1,r=!1,o=window.document.createElement("div");try{var i="<P><I></P></I>";o.innerHTML=i,e.tagSoup=n=o.innerHTML!==i}catch(t){e.tagSoup=n=!1}try{o.innerHTML="<P><i><P></P></i></P>",e.selfClose=r=2===o.childNodes.length}catch(t){e.selfClose=r=!1}o=null,e.tagSoup=n,e.selfClose=r},function(t,e,n){"use strict";function r(t){var e=t.indexOf("--\x3e");if(e>=0)return new u.CommentToken(t.substr(4,e-1),e+3)}function o(t){var e=t.indexOf("<");return new u.CharsToken(e>=0?e:t.length)}function i(t){if(-1!==t.indexOf(">")){var e=t.match(p.startTag);if(e){var n=function(){var t={},n={},r=e[2];return e[2].replace(p.attr,function(e,o){arguments[2]||arguments[3]||arguments[4]||arguments[5]?arguments[5]?(t[arguments[5]]="",n[arguments[5]]=!0):t[o]=arguments[2]||arguments[3]||arguments[4]||p.fillAttr.test(o)&&o||"":t[o]="",r=r.replace(e,"")}),{v:new u.StartTagToken(e[1],e[0].length,t,n,!!e[3],r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""))}}();if("object"===(void 0===n?"undefined":c(n)))return n.v}}}function a(t){var e=i(t);if(e){var n=t.slice(e.length);if(n.match(new RegExp("</\\s*"+e.tagName+"\\s*>","i"))){var r=n.match(new RegExp("([\\s\\S]*?)</\\s*"+e.tagName+"\\s*>","i"));if(r)return new u.AtomicTagToken(e.tagName,r[0].length+e.length,e.attrs,e.booleanAttrs,r[1])}}}function s(t){var e=t.match(p.endTag);if(e)return new u.EndTagToken(e[1],e[0].length)}e.__esModule=!0;var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.comment=r,e.chars=o,e.startTag=i,e.atomicTag=a,e.endTag=s;var u=n(4),p={startTag:/^<([\-A-Za-z0-9_]+)((?:\s+[\w\-]+(?:\s*=?\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/,endTag:/^<\/([\-A-Za-z0-9_]+)[^>]*>/,attr:/(?:([\-A-Za-z0-9_]+)\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))|(?:([\-A-Za-z0-9_]+)(\s|$)+)/g,fillAttr:/^(checked|compact|declare|defer|disabled|ismap|multiple|nohref|noresize|noshade|nowrap|readonly|selected)$/i}},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}e.__esModule=!0,e.EndTagToken=e.AtomicTagToken=e.StartTagToken=e.TagToken=e.CharsToken=e.CommentToken=e.Token=void 0;var o=n(5),i=(e.Token=function t(e,n){r(this,t),this.type=e,this.length=n,this.text=""},e.CommentToken=function(){function t(e,n){r(this,t),this.type="comment",this.length=n||(e?e.length:0),this.text="",this.content=e}return t.prototype.toString=function(){return"\x3c!--"+this.content},t}(),e.CharsToken=function(){function t(e){r(this,t),this.type="chars",this.length=e,this.text=""}return t.prototype.toString=function(){return this.text},t}(),e.TagToken=function(){function t(e,n,o,i,a){r(this,t),this.type=e,this.length=o,this.text="",this.tagName=n,this.attrs=i,this.booleanAttrs=a,this.unary=!1,this.html5Unary=!1}return t.formatTag=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n="<"+t.tagName;for(var r in t.attrs)if(t.attrs.hasOwnProperty(r)){n+=" "+r;var i=t.attrs[r];void 0!==t.booleanAttrs&&void 0!==t.booleanAttrs[r]||(n+='="'+(0,o.escapeQuotes)(i)+'"')}return t.rest&&(n+=" "+t.rest),n+=t.unary&&!t.html5Unary?"/>":">",void 0!==e&&null!==e&&(n+=e+"</"+t.tagName+">"),n},t}());e.StartTagToken=function(){function t(e,n,o,i,a,s){r(this,t),this.type="startTag",this.length=n,this.text="",this.tagName=e,this.attrs=o,this.booleanAttrs=i,this.html5Unary=!1,this.unary=a,this.rest=s}return t.prototype.toString=function(){return i.formatTag(this)},t}(),e.AtomicTagToken=function(){function t(e,n,o,i,a){r(this,t),this.type="atomicTag",this.length=n,this.text="",this.tagName=e,this.attrs=o,this.booleanAttrs=i,this.unary=!1,this.html5Unary=!1,this.content=a}return t.prototype.toString=function(){return i.formatTag(this,this.content)},t}(),e.EndTagToken=function(){function t(e,n){r(this,t),this.type="endTag",this.length=n,this.text="",this.tagName=e}return t.prototype.toString=function(){return"</"+this.tagName+">"},t}()},function(t,e){"use strict";function n(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return t?t.replace(/([^"]*)"/g,function(t,e){return/\\/.test(e)?e+'"':e+'\\"'}):e}e.__esModule=!0,e.escapeQuotes=n},function(t,e){"use strict";function n(t){return t&&"startTag"===t.type&&(t.unary=s.test(t.tagName)||t.unary,t.html5Unary=!/\/>$/.test(t.text)),t}function r(t,e){var r=t.stream,o=n(e());return t.stream=r,o}function o(t,e){var n=e.pop();t.prepend("</"+n.tagName+">")}function i(){var t=[];return t.last=function(){return this[this.length-1]},t.lastTagNameEq=function(t){var e=this.last();return e&&e.tagName&&e.tagName.toUpperCase()===t.toUpperCase()},t.containsTagName=function(t){for(var e,n=0;e=this[n];n++)if(e.tagName===t)return!0;return!1},t}function a(t,e,a){function s(){var e=r(t,a);e&&p[e.type]&&p[e.type](e)}var u=i(),p={startTag:function(n){var r=n.tagName;"TR"===r.toUpperCase()&&u.lastTagNameEq("TABLE")?(t.prepend("<TBODY>"),s()):e.selfCloseFix&&c.test(r)&&u.containsTagName(r)?u.lastTagNameEq(r)?o(t,u):(t.prepend("</"+n.tagName+">"),s()):n.unary||u.push(n)},endTag:function(n){u.last()?e.tagSoupFix&&!u.lastTagNameEq(n.tagName)?o(t,u):u.pop():e.tagSoupFix&&(a(),s())}};return function(){return s(),n(a())}}e.__esModule=!0,e.default=a;var s=/^(AREA|BASE|BASEFONT|BR|COL|FRAME|HR|IMG|INPUT|ISINDEX|LINK|META|PARAM|EMBED)$/i,c=/^(COLGROUP|DD|DT|LI|OPTIONS|P|TD|TFOOT|TH|THEAD|TR)$/i}])}()}()},function(t,e){"use strict";function n(t){return void 0!==t&&null!==t}function r(t){return"function"==typeof t}function o(t,e,n){var r=void 0,o=t&&t.length||0;for(r=0;r<o;r++)e.call(n,t[r],r)}function i(t,e,n){for(var r in t)t.hasOwnProperty(r)&&e.call(n,r,t[r])}function a(t,e){return t=t||{},i(e,function(e,r){n(t[e])||(t[e]=r)}),t}function s(t){try{return Array.prototype.slice.call(t)}catch(n){var e=function(){var e=[];return o(t,function(t){e.push(t)}),{v:e}}();if("object"===(void 0===e?"undefined":d(e)))return e.v}}function c(t){return t[t.length-1]}function u(t,e){return!(!t||"startTag"!==t.type&&"atomicTag"!==t.type||!("tagName"in t)||!~t.tagName.toLowerCase().indexOf(e))}function p(t){return u(t,"script")}function l(t){return u(t,"style")}e.__esModule=!0;var d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.existy=n,e.isFunction=r,e.each=o,e.eachKey=i,e.defaults=a,e.toArray=s,e.last=c,e.isTag=u,e.isScript=p,e.isStyle=l}])}),function(t){var e={common:{init:function(){function e(e){var n=0,r={};e.find(".gdpr-sortable-button").each(function(){n++;t(this);r[n]=t(this).attr("data-type")}),e.closest(".gdpr-sortable-buttons-wrap").find(".gdpr-buttons-order-inpval").val(JSON.stringify(r))}t(document).on("click",".gdpr-help-content-cnt .gdpr-faq-toggle h3",function(){var e=t(this).closest(".gdpr-faq-toggle");e.hasClass("gdpr-faq-open")?e.removeClass("gdpr-faq-open").find(".gdpr-faq-accordion-content").slideUp(200):(e.closest(".gdpr-help-content-block").find(".gdpr-faq-open").each(function(){t(this).find(".gdpr-faq-accordion-content").slideUp(200),t(this).removeClass("gdpr-faq-open")}),e.addClass("gdpr-faq-open").find(".gdpr-faq-accordion-content").slideDown(200))}),t(".gdpr-sortable-buttons").each(function(){try{t(this).sortable({items:".gdpr-sortable-button:not(.ui-state-disabled)",connectWith:t(this),update:function(n,r){e(t(n.target).closest(".gdpr-sortable-buttons-wrap"))}})}catch(t){}});var n=!1,r=!1,o=t("input[name=moove_gdpr_strictly_necessary_cookies_functionality]");o.on("focus",function(){r=o.filter(":checked")}),t(document).on("change",'input[name="moove_gdpr_strictly_necessary_cookies_functionality"]',function(e){"1"===t(this).val()&&"true"===t(this).closest("td").attr("data-fsm")&&(e.preventDefault(),r.prop("checked",!0).focus(),t(".gdpr-admin-popup.gdpr-admin-popup-fsm-settings").fadeIn(200))}),t(document).on("click",".button-reset-settings",function(e){e.preventDefault(),t(".gdpr-admin-popup.gdpr-admin-popup-reset-settings").fadeIn(200)}),t(document).on("click",".gdpr_deactivate_license_key",function(e){e.preventDefault(),t(".gdpr-admin-popup.gdpr-admin-popup-deactivate").fadeIn(200)}),t(document).on("click",".gdpr-admin-popup .gdpr-popup-overlay, .gdpr-admin-popup .gdpr-popup-close",function(e){e.preventDefault(),t(this).closest(".gdpr-admin-popup").fadeOut(200)}),t(document).on("click",".gdpr-admin-popup.gdpr-admin-popup-deactivate .button-deactivate-confirm",function(e){e.preventDefault(),n=!0,t("<input type='hidden' value='1' />").attr("id","gdpr_deactivate_license").attr("name","gdpr_deactivate_license").appendTo("#moove_gdpr_license_settings"),t("#moove_gdpr_license_settings").submit(),t("#moove_gdpr_license_key").val(""),t(this).closest(".gdpr-admin-popup").fadeOut(200)}),t(document).on("click",".gdpr-cookie-alert .gdpr-dismiss",function(e){e.preventDefault(),t(this).closest(".gdpr-cookie-alert").slideUp(400);var n=t(this).attr("data-adminajax"),r=t(this).attr("data-uid"),o=t(this).attr("data-nonce");console.warn(o),jQuery.post(n,{action:"moove_hide_language_notice",user_id:r,nonce:o},function(t){})}),t(document).on("click",".gdpr-cookie-update-alert .gdpr-dismiss-update",function(e){e.preventDefault(),t(this).closest(".gdpr-cookie-alert").slideUp(400);var n=t(this).attr("data-adminajax"),r=t(this).attr("data-version");jQuery.post(n,{action:"moove_hide_update_notice",version:r},function(t){})}),t(document).on("click","a.gdpr-help-tab-toggle",function(e){e.preventDefault();var n=t(this).attr("href");if(t(n).length>0){t(".gdpr-help-content-block").slideUp(),t(n).slideDown(),t(".gdpr-help-tab-toggle").removeClass("active");var r=t(this).attr("href");t(document).find('a.gdpr-help-tab-toggle[href="'+r+'"]').addClass("active")}}),t(document).on("click",".gdpr-script-tab-content .gdpr-tab-code-section-nav li > a ",function(e){e.preventDefault();var n=t(this).attr("href");t(this).closest(".gdpr-script-tab-content").find(".gdpr-active").removeClass("gdpr-active"),t(this).addClass("gdpr-active"),t(n).addClass("gdpr-active")}),t(document).find(".gdpr-conditional-field").each(function(){var e=t(this).attr("data-dependency");t(e).is(":checked")?t(this).addClass("gdpr-conditional-on"):t(this).removeClass("gdpr-conditional-on")}),t(document).on("change",'.gdpr-checkbox-toggle input[type="checkbox"]',function(){t(this).is(":checked")?t(document).find('.gdpr-conditional-field[data-dependency="#'+t(this).attr("id")+'"]').addClass("gdpr-conditional-on"):t(document).find('.gdpr-conditional-field[data-dependency="#'+t(this).attr("id")+'"]').removeClass("gdpr-conditional-on")}),t(document).on("keyup","input[name=moove_gdpr_company_logo]",function(){t(".moove_gdpr_company_logo_holder").css("background-image","url("+t(this).val()+")")}),t(document).on("change",'input[name="moove_gdpr_plugin_font_type"]',function(){"1"===t(this).val()||"2"===t(this).val()?t("#moove_gdpr_plugin_font_family").addClass("moove-not-visible"):t("#moove_gdpr_plugin_font_family").removeClass("moove-not-visible")}),t("#moove_form_checker_wrap .iris-colorpicker").each(function(){t(this).iris({width:300,hide:!0,change:function(e,n){t(this).css("background",n.color.toString())}}).on("click",function(){t(this).iris("toggle")}),t(this).iris("color",t(this).val())}),t(document).on("click",".iris-selectbtn",function(){t(this).parent().find(".iris-colorpicker").iris("toggle")}),t(document).on("click",".iris-picker:visible",function(){t(".iris-colorpicker").iris("hide")})},finalize:function(){}},home:{init:function(){},finalize:function(){}},about_us:{init:function(){}}},n={fire:function(t,n,r){var o,i=e;n=void 0===n?"init":n,o=""!==t,o=o&&i[t],(o=o&&"function"==typeof i[t][n])&&i[t][n](r)},loadEvents:function(){n.fire("common"),t.each(document.body.className.replace(/-/g,"_").split(/\s+/),function(t,e){n.fire(e),n.fire(e,"finalize")}),n.fire("common","finalize")}};t(document).ready(n.loadEvents)}(jQuery);
dist/scripts/main.js CHANGED
@@ -1,2 +1,2 @@
1
- !function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o():"function"==typeof define&&define.amd?define([],o):"object"==typeof exports?exports.postscribe=o():e.postscribe=o()}(this,function(){return function(e){function o(r){if(t[r])return t[r].exports;var n=t[r]={exports:{},id:r,loaded:!1};return e[r].call(n.exports,n,n.exports,o),n.loaded=!0,n.exports}var t={};return o.m=e,o.c=t,o.p="",o(0)}([function(e,o,t){"use strict";var r=t(1),n=function(e){return e&&e.__esModule?e:{default:e}}(r);e.exports=n.default},function(e,o,t){"use strict";function r(){}function n(){var e=u.shift();if(e){var o=_.last(e);o.afterDequeue(),e.stream=i.apply(void 0,e),o.afterStreamStart()}}function i(e,o,t){function i(e){e=t.beforeWrite(e),f.write(e),t.afterWrite(e)}f=new c.default(e,t),f.id=g++,f.name=t.name||f.id,s.streams[f.name]=f;var d=e.ownerDocument,p={close:d.close,open:d.open,write:d.write,writeln:d.writeln};a(d,{close:r,open:r,write:function(){for(var e=arguments.length,o=Array(e),t=0;t<e;t++)o[t]=arguments[t];return i(o.join(""))},writeln:function(){for(var e=arguments.length,o=Array(e),t=0;t<e;t++)o[t]=arguments[t];return i(o.join("")+"\n")}});var _=f.win.onerror||r;return f.win.onerror=function(e,o,r){t.error({msg:e+" - "+o+": "+r}),_.apply(f.win,[e,o,r])},f.write(o,function(){a(d,p),f.win.onerror=_,t.done(),f=null,n()}),f}function s(e,o,t){if(_.isFunction(t))t={done:t};else if("clear"===t)return u=[],f=null,void(g=0);t=_.defaults(t,l),e=/^#/.test(e)?window.document.getElementById(e.substr(1)):e.jquery?e[0]:e;var i=[e,o,t];return e.postscribe={cancel:function(){i.stream?i.stream.abort():i[1]=r}},t.beforeEnqueue(i),u.push(i),f||n(),e.postscribe}o.__esModule=!0;var a=Object.assign||function(e){for(var o=1;o<arguments.length;o++){var t=arguments[o];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e};o.default=s;var d=t(2),c=function(e){return e&&e.__esModule?e:{default:e}}(d),p=t(4),_=function(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(o[t]=e[t]);return o.default=e,o}(p),l={afterAsync:r,afterDequeue:r,afterStreamStart:r,afterWrite:r,autoFix:!0,beforeEnqueue:r,beforeWriteToken:function(e){return e},beforeWrite:function(e){return e},done:r,error:function(e){throw new Error(e.msg)},releaseAsync:!1},g=0,u=[],f=null;a(s,{streams:{},queue:u,WriteStream:c.default})},function(e,o,t){"use strict";function r(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function n(e,o){var t=_+o,r=e.getAttribute(t);return p.existy(r)?String(r):r}function i(e,o){var t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=_+o;p.existy(t)&&""!==t?e.setAttribute(r,t):e.removeAttribute(r)}o.__esModule=!0;var s=Object.assign||function(e){for(var o=1;o<arguments.length;o++){var t=arguments[o];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},a=t(3),d=function(e){return e&&e.__esModule?e:{default:e}}(a),c=t(4),p=function(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(o[t]=e[t]);return o.default=e,o}(c),_="data-ps-",l="ps-style",g="ps-script",u=function(){function e(o){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,e),this.root=o,this.options=t,this.doc=o.ownerDocument,this.win=this.doc.defaultView||this.doc.parentWindow,this.parser=new d.default("",{autoFix:t.autoFix}),this.actuals=[o],this.proxyHistory="",this.proxyRoot=this.doc.createElement(o.nodeName),this.scriptStack=[],this.writeQueue=[],i(this.proxyRoot,"proxyof",0)}return e.prototype.write=function(){var e;for((e=this.writeQueue).push.apply(e,arguments);!this.deferredRemote&&this.writeQueue.length;){var o=this.writeQueue.shift();p.isFunction(o)?this._callFunction(o):this._writeImpl(o)}},e.prototype._callFunction=function(e){var o={type:"function",value:e.name||e.toString()};this._onScriptStart(o),e.call(this.win,this.doc),this._onScriptDone(o)},e.prototype._writeImpl=function(e){this.parser.append(e);for(var o=void 0,t=void 0,r=void 0,n=[];(o=this.parser.readToken())&&!(t=p.isScript(o))&&!(r=p.isStyle(o));)(o=this.options.beforeWriteToken(o))&&n.push(o);n.length>0&&this._writeStaticTokens(n),t&&this._handleScriptToken(o),r&&this._handleStyleToken(o)},e.prototype._writeStaticTokens=function(e){var o=this._buildChunk(e);return o.actual?(o.html=this.proxyHistory+o.actual,this.proxyHistory+=o.proxy,this.proxyRoot.innerHTML=o.html,this._walkChunk(),o):null},e.prototype._buildChunk=function(e){for(var o=this.actuals.length,t=[],r=[],n=[],i=e.length,s=0;s<i;s++){var a=e[s],d=a.toString();if(t.push(d),a.attrs){if(!/^noscript$/i.test(a.tagName)){var c=o++;r.push(d.replace(/(\/?>)/," "+_+"id="+c+" $1")),a.attrs.id!==g&&a.attrs.id!==l&&n.push("atomicTag"===a.type?"":"<"+a.tagName+" "+_+"proxyof="+c+(a.unary?" />":">"))}}else r.push(d),n.push("endTag"===a.type?d:"")}return{tokens:e,raw:t.join(""),actual:r.join(""),proxy:n.join("")}},e.prototype._walkChunk=function(){for(var e=void 0,o=[this.proxyRoot];p.existy(e=o.shift());){var t=1===e.nodeType;if(!(t&&n(e,"proxyof"))){t&&(this.actuals[n(e,"id")]=e,i(e,"id"));var r=e.parentNode&&n(e.parentNode,"proxyof");r&&this.actuals[r].appendChild(e)}o.unshift.apply(o,p.toArray(e.childNodes))}},e.prototype._handleScriptToken=function(e){var o=this,t=this.parser.clear();t&&this.writeQueue.unshift(t),e.src=e.attrs.src||e.attrs.SRC,(e=this.options.beforeWriteToken(e))&&(e.src&&this.scriptStack.length?this.deferredRemote=e:this._onScriptStart(e),this._writeScriptToken(e,function(){o._onScriptDone(e)}))},e.prototype._handleStyleToken=function(e){var o=this.parser.clear();o&&this.writeQueue.unshift(o),e.type=e.attrs.type||e.attrs.TYPE||"text/css",e=this.options.beforeWriteToken(e),e&&this._writeStyleToken(e),o&&this.write()},e.prototype._writeStyleToken=function(e){var o=this._buildStyle(e);this._insertCursor(o,l),e.content&&(o.styleSheet&&!o.sheet?o.styleSheet.cssText=e.content:o.appendChild(this.doc.createTextNode(e.content)))},e.prototype._buildStyle=function(e){var o=this.doc.createElement(e.tagName);return o.setAttribute("type",e.type),p.eachKey(e.attrs,function(e,t){o.setAttribute(e,t)}),o},e.prototype._insertCursor=function(e,o){this._writeImpl('<span id="'+o+'"/>');var t=this.doc.getElementById(o);t&&t.parentNode.replaceChild(e,t)},e.prototype._onScriptStart=function(e){e.outerWrites=this.writeQueue,this.writeQueue=[],this.scriptStack.unshift(e)},e.prototype._onScriptDone=function(e){return e!==this.scriptStack[0]?void this.options.error({msg:"Bad script nesting or script finished twice"}):(this.scriptStack.shift(),this.write.apply(this,e.outerWrites),void(!this.scriptStack.length&&this.deferredRemote&&(this._onScriptStart(this.deferredRemote),this.deferredRemote=null)))},e.prototype._writeScriptToken=function(e,o){var t=this._buildScript(e),r=this._shouldRelease(t),n=this.options.afterAsync;e.src&&(t.src=e.src,this._scriptLoadHandler(t,r?n:function(){o(),n()}));try{this._insertCursor(t,g),t.src&&!r||o()}catch(e){this.options.error(e),o()}},e.prototype._buildScript=function(e){var o=this.doc.createElement(e.tagName);return p.eachKey(e.attrs,function(e,t){o.setAttribute(e,t)}),e.content&&(o.text=e.content),o},e.prototype._scriptLoadHandler=function(e,o){function t(){e=e.onload=e.onreadystatechange=e.onerror=null}function r(){t(),null!=o&&o(),o=null}function n(e){t(),a(e),null!=o&&o(),o=null}function i(e,o){var t=e["on"+o];null!=t&&(e["_on"+o]=t)}var a=this.options.error;i(e,"load"),i(e,"error"),s(e,{onload:function(){if(e._onload)try{e._onload.apply(this,Array.prototype.slice.call(arguments,0))}catch(o){n({msg:"onload handler failed "+o+" @ "+e.src})}r()},onerror:function(){if(e._onerror)try{e._onerror.apply(this,Array.prototype.slice.call(arguments,0))}catch(o){return void n({msg:"onerror handler failed "+o+" @ "+e.src})}n({msg:"remote script failed "+e.src})},onreadystatechange:function(){/^(loaded|complete)$/.test(e.readyState)&&r()}})},e.prototype._shouldRelease=function(e){return!/^script$/i.test(e.nodeName)||!!(this.options.releaseAsync&&e.src&&e.hasAttribute("async"))},e}();o.default=u},function(e,o,t){!function(o,t){e.exports=function(){return function(e){function o(r){if(t[r])return t[r].exports;var n=t[r]={exports:{},id:r,loaded:!1};return e[r].call(n.exports,n,n.exports,o),n.loaded=!0,n.exports}var t={};return o.m=e,o.c=t,o.p="",o(0)}([function(e,o,t){"use strict";var r=t(1),n=function(e){return e&&e.__esModule?e:{default:e}}(r);e.exports=n.default},function(e,o,t){"use strict";function r(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(o[t]=e[t]);return o.default=e,o}function n(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}o.__esModule=!0;var i=t(2),s=r(i),a=t(3),d=r(a),c=t(6),p=function(e){return e&&e.__esModule?e:{default:e}}(c),_=t(5),l={comment:/^<!--/,endTag:/^<\//,atomicTag:/^<\s*(script|style|noscript|iframe|textarea)[\s\/>]/i,startTag:/^</,chars:/^[^<]/},g=function(){function e(){var o=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};n(this,e),this.stream=t;var i=!1,a={};for(var d in s)s.hasOwnProperty(d)&&(r.autoFix&&(a[d+"Fix"]=!0),i=i||a[d+"Fix"]);i?(this._readToken=(0,p.default)(this,a,function(){return o._readTokenImpl()}),this._peekToken=(0,p.default)(this,a,function(){return o._peekTokenImpl()})):(this._readToken=this._readTokenImpl,this._peekToken=this._peekTokenImpl)}return e.prototype.append=function(e){this.stream+=e},e.prototype.prepend=function(e){this.stream=e+this.stream},e.prototype._readTokenImpl=function(){var e=this._peekTokenImpl();if(e)return this.stream=this.stream.slice(e.length),e},e.prototype._peekTokenImpl=function(){for(var e in l)if(l.hasOwnProperty(e)&&l[e].test(this.stream)){var o=d[e](this.stream);if(o)return"startTag"===o.type&&/script|style/i.test(o.tagName)?null:(o.text=this.stream.substr(0,o.length),o)}},e.prototype.peekToken=function(){return this._peekToken()},e.prototype.readToken=function(){return this._readToken()},e.prototype.readTokens=function(e){for(var o=void 0;o=this.readToken();)if(e[o.type]&&!1===e[o.type](o))return},e.prototype.clear=function(){var e=this.stream;return this.stream="",e},e.prototype.rest=function(){return this.stream},e}();o.default=g,g.tokenToString=function(e){return e.toString()},g.escapeAttributes=function(e){var o={};for(var t in e)e.hasOwnProperty(t)&&(o[t]=(0,_.escapeQuotes)(e[t],null));return o},g.supports=s;for(var u in s)s.hasOwnProperty(u)&&(g.browserHasFlaw=g.browserHasFlaw||!s[u]&&u)},function(e,o){"use strict";o.__esModule=!0;var t=!1,r=!1,n=window.document.createElement("div");try{var i="<P><I></P></I>";n.innerHTML=i,o.tagSoup=t=n.innerHTML!==i}catch(e){o.tagSoup=t=!1}try{n.innerHTML="<P><i><P></P></i></P>",o.selfClose=r=2===n.childNodes.length}catch(e){o.selfClose=r=!1}n=null,o.tagSoup=t,o.selfClose=r},function(e,o,t){"use strict";function r(e){var o=e.indexOf("--\x3e");if(o>=0)return new c.CommentToken(e.substr(4,o-1),o+3)}function n(e){var o=e.indexOf("<");return new c.CharsToken(o>=0?o:e.length)}function i(e){if(-1!==e.indexOf(">")){var o=e.match(p.startTag);if(o){var t=function(){var e={},t={},r=o[2];return o[2].replace(p.attr,function(o,n){arguments[2]||arguments[3]||arguments[4]||arguments[5]?arguments[5]?(e[arguments[5]]="",t[arguments[5]]=!0):e[n]=arguments[2]||arguments[3]||arguments[4]||p.fillAttr.test(n)&&n||"":e[n]="",r=r.replace(o,"")}),{v:new c.StartTagToken(o[1],o[0].length,e,t,!!o[3],r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""))}}();if("object"===(void 0===t?"undefined":d(t)))return t.v}}}function s(e){var o=i(e);if(o){var t=e.slice(o.length);if(t.match(new RegExp("</\\s*"+o.tagName+"\\s*>","i"))){var r=t.match(new RegExp("([\\s\\S]*?)</\\s*"+o.tagName+"\\s*>","i"));if(r)return new c.AtomicTagToken(o.tagName,r[0].length+o.length,o.attrs,o.booleanAttrs,r[1])}}}function a(e){var o=e.match(p.endTag);if(o)return new c.EndTagToken(o[1],o[0].length)}o.__esModule=!0;var d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};o.comment=r,o.chars=n,o.startTag=i,o.atomicTag=s,o.endTag=a;var c=t(4),p={startTag:/^<([\-A-Za-z0-9_]+)((?:\s+[\w\-]+(?:\s*=?\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/,endTag:/^<\/([\-A-Za-z0-9_]+)[^>]*>/,attr:/(?:([\-A-Za-z0-9_]+)\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))|(?:([\-A-Za-z0-9_]+)(\s|$)+)/g,fillAttr:/^(checked|compact|declare|defer|disabled|ismap|multiple|nohref|noresize|noshade|nowrap|readonly|selected)$/i}},function(e,o,t){"use strict";function r(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}o.__esModule=!0,o.EndTagToken=o.AtomicTagToken=o.StartTagToken=o.TagToken=o.CharsToken=o.CommentToken=o.Token=void 0;var n=t(5),i=(o.Token=function e(o,t){r(this,e),this.type=o,this.length=t,this.text=""},o.CommentToken=function(){function e(o,t){r(this,e),this.type="comment",this.length=t||(o?o.length:0),this.text="",this.content=o}return e.prototype.toString=function(){return"\x3c!--"+this.content},e}(),o.CharsToken=function(){function e(o){r(this,e),this.type="chars",this.length=o,this.text=""}return e.prototype.toString=function(){return this.text},e}(),o.TagToken=function(){function e(o,t,n,i,s){r(this,e),this.type=o,this.length=n,this.text="",this.tagName=t,this.attrs=i,this.booleanAttrs=s,this.unary=!1,this.html5Unary=!1}return e.formatTag=function(e){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,t="<"+e.tagName;for(var r in e.attrs)if(e.attrs.hasOwnProperty(r)){t+=" "+r;var i=e.attrs[r];void 0!==e.booleanAttrs&&void 0!==e.booleanAttrs[r]||(t+='="'+(0,n.escapeQuotes)(i)+'"')}return e.rest&&(t+=" "+e.rest),t+=e.unary&&!e.html5Unary?"/>":">",void 0!==o&&null!==o&&(t+=o+"</"+e.tagName+">"),t},e}());o.StartTagToken=function(){function e(o,t,n,i,s,a){r(this,e),this.type="startTag",this.length=t,this.text="",this.tagName=o,this.attrs=n,this.booleanAttrs=i,this.html5Unary=!1,this.unary=s,this.rest=a}return e.prototype.toString=function(){return i.formatTag(this)},e}(),o.AtomicTagToken=function(){function e(o,t,n,i,s){r(this,e),this.type="atomicTag",this.length=t,this.text="",this.tagName=o,this.attrs=n,this.booleanAttrs=i,this.unary=!1,this.html5Unary=!1,this.content=s}return e.prototype.toString=function(){return i.formatTag(this,this.content)},e}(),o.EndTagToken=function(){function e(o,t){r(this,e),this.type="endTag",this.length=t,this.text="",this.tagName=o}return e.prototype.toString=function(){return"</"+this.tagName+">"},e}()},function(e,o){"use strict";function t(e){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return e?e.replace(/([^"]*)"/g,function(e,o){return/\\/.test(o)?o+'"':o+'\\"'}):o}o.__esModule=!0,o.escapeQuotes=t},function(e,o){"use strict";function t(e){return e&&"startTag"===e.type&&(e.unary=a.test(e.tagName)||e.unary,e.html5Unary=!/\/>$/.test(e.text)),e}function r(e,o){var r=e.stream,n=t(o());return e.stream=r,n}function n(e,o){var t=o.pop();e.prepend("</"+t.tagName+">")}function i(){var e=[];return e.last=function(){return this[this.length-1]},e.lastTagNameEq=function(e){var o=this.last();return o&&o.tagName&&o.tagName.toUpperCase()===e.toUpperCase()},e.containsTagName=function(e){for(var o,t=0;o=this[t];t++)if(o.tagName===e)return!0;return!1},e}function s(e,o,s){function a(){var o=r(e,s);o&&p[o.type]&&p[o.type](o)}var c=i(),p={startTag:function(t){var r=t.tagName;"TR"===r.toUpperCase()&&c.lastTagNameEq("TABLE")?(e.prepend("<TBODY>"),a()):o.selfCloseFix&&d.test(r)&&c.containsTagName(r)?c.lastTagNameEq(r)?n(e,c):(e.prepend("</"+t.tagName+">"),a()):t.unary||c.push(t)},endTag:function(t){c.last()?o.tagSoupFix&&!c.lastTagNameEq(t.tagName)?n(e,c):c.pop():o.tagSoupFix&&(s(),a())}};return function(){return a(),t(s())}}o.__esModule=!0,o.default=s;var a=/^(AREA|BASE|BASEFONT|BR|COL|FRAME|HR|IMG|INPUT|ISINDEX|LINK|META|PARAM|EMBED)$/i,d=/^(COLGROUP|DD|DT|LI|OPTIONS|P|TD|TFOOT|TH|THEAD|TR)$/i}])}()}()},function(e,o){"use strict";function t(e){return void 0!==e&&null!==e}function r(e){return"function"==typeof e}function n(e,o,t){var r=void 0,n=e&&e.length||0;for(r=0;r<n;r++)o.call(t,e[r],r)}function i(e,o,t){for(var r in e)e.hasOwnProperty(r)&&o.call(t,r,e[r])}function s(e,o){return e=e||{},i(o,function(o,r){t(e[o])||(e[o]=r)}),e}function a(e){try{return Array.prototype.slice.call(e)}catch(t){var o=function(){var o=[];return n(e,function(e){o.push(e)}),{v:o}}();if("object"===(void 0===o?"undefined":l(o)))return o.v}}function d(e){return e[e.length-1]}function c(e,o){return!(!e||"startTag"!==e.type&&"atomicTag"!==e.type||!("tagName"in e)||!~e.tagName.toLowerCase().indexOf(o))}function p(e){return c(e,"script")}function _(e){return c(e,"style")}o.__esModule=!0;var l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};o.existy=t,o.isFunction=r,o.each=n,o.eachKey=i,o.defaults=s,o.toArray=a,o.last=d,o.isTag=c,o.isScript=p,o.isStyle=_}])}),function(e,o){e.gdpr_lightbox=function(e,o){"use strict";function t(e){var o=I();return U&&e.length?(e.one(U,o.resolve),setTimeout(o.resolve,500)):o.resolve(),o.promise()}function r(e,t,r){if(1===arguments.length)return o.extend({},e);if("string"==typeof t){if(void 0===r)return void 0===e[t]?null:e[t];e[t]=r}else o.extend(e,t);return this}function n(e){for(var o,t=decodeURI(e.split("#")[0]).split("&"),r={},n=0,i=t.length;n<i;n++)t[n]&&(o=t[n].split("="),r[o[0]]=o[1]);return r}function i(e,t){return e+(e.indexOf("?")>-1?"&":"?")+o.param(t)}function s(e,o){var t=e.indexOf("#");return-1===t?o:(t>0&&(e=e.substr(t)),o+e)}function a(e){return o('<span class="gdpr_lightbox-error"></span>').append(e)}function d(e,t){var r=t.opener()&&t.opener().data("gdpr_lightbox-desc")||"Image with no description",n=o('<img src="'+e+'" alt="'+r+'"/>'),i=I(),s=function(){i.reject(a("Failed loading image"))};return n.on("load",function(){if(0===this.naturalWidth)return s();i.resolve(n)}).on("error",s),i.promise()}function c(e,t){var r,n,i;try{r=o(e)}catch(e){return!1}return!!r.length&&(n=o('<i style="display:none !important"></i>'),i=r.hasClass("gdpr_lightbox-hide"),t.element().one("gdpr_lightbox:remove",function(){n.before(r).remove(),i&&!r.closest(".gdpr_lightbox-content").length&&r.addClass("gdpr_lightbox-hide")}),r.removeClass("gdpr_lightbox-hide").after(n))}function p(e){var t=M.exec(e);return!!t&&u(s(e,i("https://www.youtube"+(t[2]||"")+".com/embed/"+t[4],o.extend({autoplay:1},n(t[5]||"")))))}function _(e){var t=P.exec(e);return!!t&&u(s(e,i("https://player.vimeo.com/video/"+t[3],o.extend({autoplay:1},n(t[4]||"")))))}function l(e){var t=F.exec(e);return!!t&&(0!==e.indexOf("http")&&(e="https:"+e),u(s(e,i("https://www.facebook.com/plugins/video.php?href="+e,o.extend({autoplay:1},n(t[4]||""))))))}function g(e){var o=R.exec(e);return!!o&&u(s(e,i("https://www.google."+o[3]+"/maps?"+o[6],{output:o[6].indexOf("layer=c")>0?"svembed":"embed"})))}function u(e){return'<div class="gdpr_lightbox-iframe-container"><iframe frameborder="0" allowfullscreen allow="autoplay; fullscreen" src="'+e+'"/></div>'}function f(){return S.documentElement.clientHeight?S.documentElement.clientHeight:Math.round(C.height())}function v(e){var o=k();o&&(27===e.keyCode&&o.options("esc")&&o.close(),9===e.keyCode&&m(e,o))}function m(e,o){var t=o.element().find(E),r=t.index(S.activeElement);e.shiftKey&&r<=0?(t.get(t.length-1),e.preventDefault()):e.shiftKey||r!==t.length-1||(t.get(0),e.preventDefault())}function h(){o.each(O,function(e,o){o.resize()})}function b(e){1===O.unshift(e)&&(N.addClass("gdpr_lightbox-active"),C.on({resize:h,keydown:v})),o("body > *").not(e.element()).addClass("gdpr_lightbox-hidden").each(function(){var e=o(this);void 0===e.data(D)&&e.data(D,e.attr(j)||null)}).attr(j,"true")}function y(e){var t;e.element().attr(j,"true"),1===O.length&&(N.removeClass("gdpr_lightbox-active"),C.off({resize:h,keydown:v})),O=o.grep(O,function(o){return e!==o}),t=O.length?O[0].element():o(".gdpr_lightbox-hidden"),t.removeClass("gdpr_lightbox-hidden").each(function(){var e=o(this),t=e.data(D);t?e.attr(j,t):e.removeAttr(j),e.removeData(D)})}function k(){return 0===O.length?null:O[0]}function x(e,t,r,n){var i,s="inline",a=o.extend({},r);return n&&a[n]?(i=a[n](e,t),s=n):(o.each(["inline","iframe"],function(e,o){delete a[o],a[o]=r[o]}),o.each(a,function(o,r){return!r||(!(!r.test||r.test(e,t))||(i=r(e,t),!1!==i?(s=o,!1):void 0))})),{handler:s,content:i||""}}function w(e,n,i,s){function a(e){p=o(e).css("max-height",f()+"px"),c.find(".gdpr_lightbox-loader").each(function(){var e=o(this);t(e).always(function(){e.remove()})}),c.removeClass("gdpr_lightbox-loading").find(".gdpr_lightbox-content").empty().append(p),l=!0,p.trigger("gdpr_lightbox:ready",[_])}var d,c,p,_=this,l=!1,g=!1;n=o.extend({},A,n),c=o(n.template),_.element=function(){return c},_.opener=function(){return i},_.options=o.proxy(r,_,n),_.handlers=o.proxy(r,_,n.handlers),_.resize=function(){l&&!g&&p.css("max-height",f()+"px").trigger("gdpr_lightbox:resize",[_])},_.close=function(){if(l&&!g){g=!0,y(_);var e=I();return s&&(S.activeElement===c[0]||o.contains(c[0],S.activeElement)),p.trigger("gdpr_lightbox:close",[_]),c.removeClass("gdpr_lightbox-opened").addClass("gdpr_lightbox-closed"),t(p.add(c)).always(function(){p.trigger("gdpr_lightbox:remove",[_]),c.remove(),c=void 0,e.resolve()}),e.promise()}},d=x(e,_,n.handlers,n.handler),c.attr(j,"false").addClass("gdpr_lightbox-loading gdpr_lightbox-opened gdpr_lightbox-"+d.handler).appendTo("body").on("click","[data-gdpr_lightbox-close]",function(e){o(e.target).is("[data-gdpr_lightbox-close]")&&_.close()}).trigger("gdpr_lightbox:open",[_]),b(_),o.when(d.content).always(a)}function T(e,t,r){e.preventDefault?(e.preventDefault(),r=o(this),e=r.data("gdpr_lightbox-target")||r.attr("href")||r.attr("src")):r=o(r);var n=new w(e,o.extend({},r.data("gdpr_lightbox-options")||r.data("gdpr_lightbox"),t),r,S.activeElement);if(!e.preventDefault)return n}var S=e.document,C=o(e),I=o.Deferred,N=o("html"),O=[],j="aria-hidden",D="gdpr_lightbox-"+j,E='a[href],area[href],input:not([disabled]),select:not([disabled]),textarea:not([disabled]),button:not([disabled]),iframe,object,embed,[contenteditable],[tabindex]:not([tabindex^="-"])',A={esc:!0,handler:null,handlers:{image:d,inline:c,youtube:p,vimeo:_,googlemaps:g,facebookvideo:l,iframe:u},template:'<div class="gdpr_lightbox" role="dialog" aria-label="Dialog Window (Press escape to close)" tabindex="-1"><div class="gdpr_lightbox-wrap" data-gdpr_lightbox-close role="document"><div class="gdpr_lightbox-loader" aria-hidden="true">Loading...</div><div class="gdpr_lightbox-container"><div class="gdpr_lightbox-content"></div><button class="gdpr_lightbox-close" type="button" aria-label="Close (Press escape to close)" data-gdpr_lightbox-close>&times;</button></div></div></div>'},J=/(^data:image\/)|(\.(png|jpe?g|gif|svg|webp|bmp|ico|tiff?)(\?\S*)?$)/i,M=/(youtube(-nocookie)?\.com|youtu\.be)\/(watch\?v=|v\/|u\/|embed\/?)?([\w-]{11})(.*)?/i,P=/(vimeo(pro)?.com)\/(?:[^\d]+)?(\d+)\??(.*)?$/,R=/((maps|www)\.)?google\.([^\/\?]+)\/?((maps\/?)?\?)(.*)/i,F=/(facebook\.com)\/([a-z0-9_-]*)\/videos\/([0-9]*)(.*)?$/i,U=function(){var e=S.createElement("div"),o={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var t in o)if(void 0!==e.style[t])return o[t];return!1}();return d.test=function(e){return J.test(e)},T.options=o.proxy(r,T,A),T.handlers=o.proxy(r,T,A.handlers),T.current=k,o(S).on("click.gdpr_lightbox","[data-gdpr_lightbox]",T),T}(e,e.jQuery||e.Zepto)}("undefined"!=typeof window?window:this),function(e){var o={common:{init:function(){"use strict";function o(e){try{new URLSearchParams(window.location.search).has("gdpr_dbg")&&console.warn(e)}catch(e){console.warn(e)}}function t(){e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_remove_php_cookies"},function(e){o("dbg - cookies removed")})}function r(){t();var o=void 0!==moove_frontend_gdpr_scripts.wp_lang?moove_frontend_gdpr_scripts.wp_lang:"";e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_get_scripts",strict:0,thirdparty:0,advanced:0,wp_lang:o},function(e){var o={};o.strict=1,o.thirdparty=0,o.advanced=0,m(),n("script_inject",o),p(o)})}function n(e,o){try{jQuery().gdpr_cookie_compliance_analytics(e,o)}catch(e){}}function i(e){try{jQuery().gdpr_cookie_compliance_consent_log(e)}catch(e){}}function s(){var e=u("moove_gdpr_popup"),o={};return o.strict="0",o.thirdparty="0",o.advanced="0",e&&(e=JSON.parse(e),o.strict=e.strict,o.thirdparty=e.thirdparty,o.advanced=e.advanced,p(o),n("script_inject",e)),void 0!==moove_frontend_gdpr_scripts.ifbc?("strict"===moove_frontend_gdpr_scripts.ifbc&&e&&1===parseInt(e.strict)&&a(),"thirdparty"===moove_frontend_gdpr_scripts.ifbc&&e&&1===parseInt(e.thirdparty)&&a(),"advanced"===moove_frontend_gdpr_scripts.ifbc&&e&&1===parseInt(e.advanced)&&a()):"1"!==moove_frontend_gdpr_scripts.strict_init&&a(),o}function a(){e(document).find("iframe[data-gdpr-iframesrc]").each(function(){e(this).attr("src",e(this).attr("data-gdpr-iframesrc"))})}function d(e){g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"1",advanced:"1"}),b),c("enabled-all"),n("accept_all","")}function c(t){var r=!1;try{void 0!==moove_frontend_gdpr_scripts.force_reload&&"true"===moove_frontend_gdpr_scripts.force_reload&&(r=!0)}catch(e){}var i=s(),a=moove_frontend_gdpr_scripts.enabled_default.third_party,d=moove_frontend_gdpr_scripts.enabled_default.advanced;if(document.cookie.indexOf("moove_gdpr_popup")>=0||1==a||1==d){var c=u("moove_gdpr_popup");1==a&&(I.strict=1,I.thirdparty=a),1==d&&(I.strict=1,I.advanced=d),I&&(parseInt(i.strict)-parseInt(I.strict)<0&&(r=!0),parseInt(i.thirdparty)-parseInt(I.thirdparty)<0&&(r=!0),parseInt(i.advanced)-parseInt(I.advanced)<0&&(r=!0))}if(r)if(c={strict:0,thirdparty:0,advanced:0},n("script_inject",c),void 0!==moove_frontend_gdpr_scripts.scripts_defined)setTimeout(function(){location.reload(!0)},800);else{var p=e(document).find("script[data-gdpr][src*=googletagmanager]");if(p.length>0){var l=e(document).find("script[data-gdpr][src*=googletagmanager]").attr("src");if(l){var g=new URL(l),v=g.searchParams.get("id");v&&(document.cookie="woocommerce_"+v+"=true; expires=Thu, 31 Dec 1970 23:59:59 UTC; path=/",window["ga-disable-"+v]=!0),window.gtag&&window.gtag("remove"),p.remove()}}e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_remove_php_cookies"},function(e){location.reload(!0)}).fail(function(){location.reload(!0)})}else{var m=u("moove_gdpr_popup");o("dbg - inject - 4"),f(m),_(),e("#moove_gdpr_save_popup_settings_button").show()}}function p(o){o&&(n("script_inject",o),1===parseInt(o.strict)?e("#moove_gdpr_strict_cookies").is(":checked")||(e("#moove_gdpr_strict_cookies").trigger("click"),e("#third_party_cookies fieldset, #third_party_cookies .gdpr-cc-form-fieldset").removeClass("fl-disabled"),e("#moove_gdpr_performance_cookies").prop("disabled",!1),e("#third_party_cookies .moove-gdpr-strict-secondary-warning-message").slideUp(),e("#advanced-cookies fieldset, #advanced-cookies .gdpr-cc-form-fieldset").removeClass("fl-disabled"),e("#advanced-cookies .moove-gdpr-strict-secondary-warning-message").slideUp(),e("#moove_gdpr_advanced_cookies").prop("disabled",!1)):e("#moove_gdpr_strict_cookies").is(":checked")&&(e("#moove_gdpr_strict_cookies").trigger("click").prop("checked",!0),e("#third_party_cookies fieldset, #third_party_cookies .gdpr-cc-form-fieldset").addClass("fl-disabled").closest(".moove-gdpr-status-bar").removeClass("checkbox-selected"),e("#moove_gdpr_performance_cookies").prop("disabled",!0).prop("checked",!1),e("#advanced-cookies fieldset, #advanced-cookies .gdpr-cc-form-fieldset").addClass("fl-disabled").closest(".moove-gdpr-status-bar").removeClass("checkbox-selected"),e("#moove_gdpr_advanced_cookies").prop("disabled",!0).prop("checked",!1)),1===parseInt(o.thirdparty)?e("#moove_gdpr_performance_cookies").is(":checked")||e("#moove_gdpr_performance_cookies").trigger("click"):e("#moove_gdpr_performance_cookies").is(":checked")&&e("#moove_gdpr_performance_cookies").trigger("click"),1===parseInt(o.advanced)?e("#moove_gdpr_advanced_cookies").is(":checked")||e("#moove_gdpr_advanced_cookies").trigger("click"):e("#moove_gdpr_advanced_cookies").is(":checked")&&e("#moove_gdpr_advanced_cookies").trigger("click"),e('input[data-name="moove_gdpr_performance_cookies"]').prop("checked",e("#moove_gdpr_performance_cookies").is(":checked")),e('input[data-name="moove_gdpr_strict_cookies"]').prop("checked",e("#moove_gdpr_strict_cookies").is(":checked")),e('input[data-name="moove_gdpr_advanced_cookies"]').prop("checked",e("#moove_gdpr_advanced_cookies").is(":checked")))}function _(){e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide())}function l(){var t=!0;if("undefined"!=typeof sessionStorage&&1===parseInt(sessionStorage.getItem("gdpr_infobar_hidden"))&&(t=!1),void 0!==moove_frontend_gdpr_scripts.display_cookie_banner&&t){if("true"===moove_frontend_gdpr_scripts.display_cookie_banner)e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").removeClass("moove-gdpr-info-bar-hidden"),e("#moove_gdpr_save_popup_settings_button:not(.button-visible)").hide(),e("body").addClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").show(),n("show_infobar",""));else if(e("#moove_gdpr_cookie_info_bar").length>0){e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide();var r={strict:1,thirdparty:1,advanced:1};o("dbg - inject - 5"),f(JSON.stringify(r))}}else e("#moove_gdpr_cookie_info_bar").length>0&&t&&(e("#moove_gdpr_cookie_info_bar").removeClass("moove-gdpr-info-bar-hidden"),e("#moove_gdpr_save_popup_settings_button:not(.button-visible)").hide(),e("body").addClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").show(),n("show_infobar",""))}function g(e,t,r){var n;if(r>0){var s=new Date;s.setTime(s.getTime()+24*r*60*60*1e3),n="; expires="+s.toGMTString()}else n="";try{var a="SameSite=Lax";void 0!==moove_frontend_gdpr_scripts.cookie_attributes&&(a=moove_frontend_gdpr_scripts.cookie_attributes),void 0!==moove_frontend_gdpr_scripts.gdpr_consent_version&&(t=JSON.parse(t),t.version=moove_frontend_gdpr_scripts.gdpr_consent_version,t=JSON.stringify(t)),"moove_gdpr_popup"===e&&0===parseInt(t.strict)?void 0!==moove_frontend_gdpr_scripts.gdpr_scor&&"false"===moove_frontend_gdpr_scripts.gdpr_scor?document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(t)+n+"; path=/; "+a:document.cookie=encodeURIComponent(e)+"=; Path=/;":document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(t)+n+"; path=/; "+a,i(t)}catch(e){o("error - moove_gdpr_create_cookie: "+e)}}function u(e){for(var o=encodeURIComponent(e)+"=",t=document.cookie.split(";"),r=0;r<t.length;r++){for(var n=t[r];" "===n.charAt(0);)n=n.substring(1,n.length);if(0===n.indexOf(o)){var i=decodeURIComponent(n.substring(o.length,n.length)),s=JSON.parse(i);if(void 0!==s.version){if(void 0!==moove_frontend_gdpr_scripts.gdpr_consent_version){var a=moove_frontend_gdpr_scripts.gdpr_consent_version;if(parseFloat(a)>parseFloat(s.version))return document.cookie=e+"=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;",null}}else if(void 0!==moove_frontend_gdpr_scripts.gdpr_consent_version&&parseFloat(moove_frontend_gdpr_scripts.gdpr_consent_version)>1)return document.cookie=e+"=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;",null;return i}}return null}function f(o){if(I=s(),o){
2
- var t=o;o=JSON.parse(o);s();if(!1!==N){var i=JSON.parse(N);1===parseInt(i.thirdparty)&&1===parseInt(o.thirdparty)&&(o.thirdparty="0"),1===parseInt(i.advanced)&&1===parseInt(o.advanced)&&(o.advanced="0")}if(n("script_inject",o),O=!0,void 0!==moove_frontend_gdpr_scripts.ifbc?("strict"===moove_frontend_gdpr_scripts.ifbc&&o&&1===parseInt(o.strict)&&a(),"thirdparty"===moove_frontend_gdpr_scripts.ifbc&&o&&1===parseInt(o.thirdparty)&&a(),"advanced"===moove_frontend_gdpr_scripts.ifbc&&o&&1===parseInt(o.advanced)&&a()):1===parseInt(o.strict)&&a(),void 0!==moove_frontend_gdpr_scripts.scripts_defined)try{var d=JSON.parse(moove_frontend_gdpr_scripts.scripts_defined);if(1===parseInt(o.strict))1===parseInt(o.thirdparty)&&void 0===y.thirdparty&&(d.thirdparty.header&&postscribe(document.head,d.thirdparty.header),d.thirdparty.body&&e(d.thirdparty.body).prependTo(document.body),d.thirdparty.footer&&postscribe(document.body,d.thirdparty.footer),y.thirdparty=!0),1===parseInt(o.advanced)&&void 0===y.advanced&&(d.advanced.header&&postscribe(document.head,d.advanced.header),d.advanced.body&&e(d.advanced.body).prependTo(document.body),d.advanced.footer&&postscribe(document.body,d.advanced.footer),y.advanced=!0);else{var o=u("moove_gdpr_popup");o&&(m(),r())}}catch(e){console.error(e)}else if(void 0===y.thirdparty||void 0===y.advanced){1===o.thirdparty&&(y.thirdparty=!0),1===o.advanced&&(y.advanced=!0);var c=void 0!==moove_frontend_gdpr_scripts.wp_lang?moove_frontend_gdpr_scripts.wp_lang:"";0===parseInt(o.thirdparty)&&0===parseInt(o.advanced)&&m(),e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_get_scripts",strict:o.strict,thirdparty:o.thirdparty,advanced:o.advanced,wp_lang:c},function(r){N=t,n("script_inject",o);var i=JSON.parse(r);i.header&&postscribe(document.head,i.header),i.body&&e(i.body).prependTo(document.body),i.footer&&postscribe(document.body,i.footer)})}}else l()}function v(){var o=!0;e(document).find("#moove_gdpr_cookie_modal input[type=checkbox]").each(function(){e(this).is(":checked")||(o=!1)})}function m(t){try{e(document).find("script[data-gdpr]").each(function(){o("script_removed: "+e(this).attr("src"))});for(var r=document.cookie.split(";"),n=window.location.hostname,i=0;i<r.length;i++){var s=r[i],a=s.indexOf("="),d=a>-1?s.substr(0,a):s;d.includes("woocommerce")||d.includes("wc_")||d.includes("moove_gdpr_popup")||d.includes("wordpress")||(document.cookie=d+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT;domain="+n,document.cookie=d+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT;domain=."+n,o("cookie removed: "+d+" - "+n))}}catch(e){o("error in gdpr_delete_all_cookies: "+e)}"undefined"!=typeof sessionStorage&&sessionStorage.removeItem("gdpr_session")}function h(){var o=u("moove_gdpr_popup");m(),t();var r="0",n="0",i="0",s=!1;o&&(o=JSON.parse(o),r=o.strict,n=o.advanced,i=o.thirdparty),e("#moove_gdpr_strict_cookies").length>0?e("#moove_gdpr_strict_cookies").is(":checked")?(r="1",s=!0):r="0":(s=!0,r="1"),e("#moove_gdpr_performance_cookies").is(":checked")?(i="1",s=!0):i="0",e("#moove_gdpr_advanced_cookies").is(":checked")?(n="1",s=!0):n="0",!o&&s?(g("moove_gdpr_popup",JSON.stringify({strict:r,thirdparty:i,advanced:n}),b),_(),e("#moove_gdpr_save_popup_settings_button").show()):o&&g("moove_gdpr_popup",JSON.stringify({strict:r,thirdparty:i,advanced:n}),b);var o=u("moove_gdpr_popup");o&&(o=JSON.parse(o),"0"==o.strict&&"0"==o.advanced&&"0"==o.thirdparty&&m())}var b=365,y=[];void 0!==moove_frontend_gdpr_scripts.cookie_expiration&&(b=moove_frontend_gdpr_scripts.cookie_expiration),e(document).on("click",'#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-reject-btn, [href*="#gdpr-reject-cookies"], .moove-gdpr-modal-reject-all',function(o){o.preventDefault(),m(),r(),e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide(),e("#moove_gdpr_save_popup_settings_button").show()),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close(),void 0!==moove_frontend_gdpr_scripts.gdpr_scor&&"false"===moove_frontend_gdpr_scripts.gdpr_scor||(g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b),setTimeout(function(){g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b)},500)),c("reject-btn")});var k=!1,x=e(".moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main").first(),w=e(".moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main").first(),T=0,S=-1,C=!1;e(document).on("keydown",function(o){if(e("body").hasClass("moove_gdpr_overflow")&&e(".moove-gdpr-modal-content").hasClass("moove_gdpr_modal_theme_v1")){if(38==o.keyCode){o.preventDefault();var t=e("#moove-gdpr-menu li.menu-item-selected"),r=t.prev();0===r.length&&(r=e("#moove-gdpr-menu li").last()),r.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}if(40==o.keyCode||9==o.keyCode)if(o.preventDefault(),C){var t=e("#moove-gdpr-menu li.menu-item-selected"),r=t.prev();0===r.length&&(r=e("#moove-gdpr-menu li").last()),r.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}else{var t=e("#moove-gdpr-menu li.menu-item-selected"),n=t.next();0===n.length&&(n=e("#moove-gdpr-menu li").first()),n.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}if(32==o.keyCode){o.preventDefault();e(".moove-gdpr-tab-main:visible").find(".moove-gdpr-status-bar input[type=checkbox]").trigger("click")}13==o.keyCode&&(o.preventDefault(),e(".moove-gdpr-modal-save-settings").trigger("click"))}if(e("body").hasClass("moove_gdpr_overflow")&&e(".moove-gdpr-modal-content").hasClass("moove_gdpr_modal_theme_v2")){if(38==o.keyCode){o.preventDefault();var t=e("#moove-gdpr-menu li.menu-item-selected"),r=t.prev();0===r.length&&(r=e("#moove-gdpr-menu li").last()),r.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}if(40==o.keyCode){o.preventDefault();var t=e("#moove-gdpr-menu li.menu-item-selected"),n=t.next();0===n.length&&(n=e("#moove-gdpr-menu li").first()),n.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}if(32==o.keyCode){o.preventDefault();e("#moove_gdpr_cookie_modal").find(".focus-g").trigger("click")}if(9==o.keyCode){o.preventDefault();var i=e("#moove_gdpr_cookie_modal .cookie-switch, #moove_gdpr_cookie_modal .mgbutton, #moove_gdpr_cookie_modal a:not(.moove-gdpr-branding), #moove_gdpr_cookie_modal .moove-gdpr-modal-close");if(i.length>0){var s=!1;if(T<i.length?(C?T--:T++,s=i[T],e(s).is(":visible")||(C?T--:T++,s=i[T])):(T=0,s=i[T]),e("#moove_gdpr_cookie_modal .focus-g").removeClass("focus-g"),e(s).addClass("focus-g").trigger("focus"),e(s).length>0)try{e(s)[0].scrollIntoViewIfNeeded()}catch(e){console.warn(e)}}else{e(".cookie-switch").removeClass("focus-g");var n=x.next();if(x=n,0===n.length&&(n=w,x=w),n.find(".cookie-switch").trigger("focus").addClass("focus-g"),n.find(".cookie-switch").length>0)try{n.find(".cookie-switch")[0].scrollIntoViewIfNeeded()}catch(e){console.warn(e)}}}13==o.keyCode&&(e("#moove_gdpr_cookie_modal .focus-g").length>0&&(e("#moove_gdpr_cookie_modal .focus-g").hasClass("mgbutton")||e("#moove_gdpr_cookie_modal .focus-g").attr("href"))?e("#moove_gdpr_cookie_modal .focus-g").attr("href")?e("#moove_gdpr_cookie_modal .focus-g").trigger("click"):(o.preventDefault(),e("#moove_gdpr_cookie_modal .focus-g").trigger("click")):(o.preventDefault(),e(".moove-gdpr-modal-save-settings").trigger("click")))}}),e(document).on("keyup",function(e){16==e.keyCode&&(C=!1)}),e(document).on("keydown",function(o){if(16==o.keyCode&&(C=!0),e("body").hasClass("gdpr-infobar-visible")&&!e("body").hasClass("moove_gdpr_overflow")){if(9==o.keyCode){var t=e("#moove_gdpr_cookie_info_bar button:visible, #moove_gdpr_cookie_info_bar .change-settings-button");if(t.length>0&&S<t.length){var r=!1;if(o.preventDefault(),S<t.length&&(C?S--:S++,r=t[S]),e("#moove_gdpr_cookie_info_bar .focus-g").removeClass("focus-g"),e(r).addClass("focus-g").trigger("focus"),e(r).length>0)try{e(r)[0].scrollIntoViewIfNeeded()}catch(e){console.warn(e)}}else S>=t.length&&e("#moove_gdpr_cookie_info_bar .focus-g").removeClass("focus-g"),e("body").hasClass("gdpr-infobar-visible")&&e("#moove_gdpr_cookie_info_bar").hasClass("gdpr-full-screen-infobar")&&(S=-1,o.preventDefault())}13==o.keyCode&&e("#moove_gdpr_cookie_info_bar .focus-g").length>0&&(o.preventDefault(),e("#moove_gdpr_cookie_info_bar .focus-g").trigger("click"))}}),e.fn.moove_gdpr_read_cookies=function(e){var o=u("moove_gdpr_popup"),t={};return t.strict="0",t.thirdparty="0",t.advanced="0",o&&(o=JSON.parse(o),t.strict=parseInt(o.strict),t.thirdparty=parseInt(o.thirdparty),t.advanced=parseInt(o.advanced)),t};var I=s(),N=!1,O=!1,j="",D=!1;e(document).on("click","#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn",function(o){if(o.preventDefault(),void 0!==moove_frontend_gdpr_scripts.close_btn_action){var t=parseInt(moove_frontend_gdpr_scripts.close_btn_action);1===t&&(_(),e("#moove_gdpr_save_popup_settings_button").show(),"undefined"!=typeof sessionStorage&&sessionStorage.setItem("gdpr_infobar_hidden",1)),2===t&&(m(),r(),e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide(),e("#moove_gdpr_save_popup_settings_button").show()),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close(),void 0!==moove_frontend_gdpr_scripts.gdpr_scor&&"false"===moove_frontend_gdpr_scripts.gdpr_scor||(g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b),setTimeout(function(){g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b)},500)),c("reject-btn")),3===t&&d("enable_all close-btn")}else _(),e("#moove_gdpr_save_popup_settings_button").show(),"undefined"!=typeof sessionStorage&&sessionStorage.setItem("gdpr_infobar_hidden",1)}),e.fn.moove_gdpr_save_cookie=function(o){var t=u("moove_gdpr_popup"),i=t,s=e(window).scrollTop();if(!t){if(o.thirdParty)var d="1";else var d="0";if(o.advanced)var c="1";else var c="0";if(o.scrollEnable){var _=o.scrollEnable;e(window).scroll(function(){!O&&e(this).scrollTop()-s>_&&("undefined"===o.thirdparty&&"undefined"===o.advanced||(g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:d,advanced:c}),b),t=JSON.parse(t),p(t)))})}else"undefined"===o.thirdparty&&"undefined"===o.advanced||(g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:d,advanced:c}),b),t=JSON.parse(t),p(t));if(t=u("moove_gdpr_popup"))if(t=JSON.parse(t),n("script_inject",t),O=!0,void 0!==moove_frontend_gdpr_scripts.ifbc?("strict"===moove_frontend_gdpr_scripts.ifbc&&t&&1===parseInt(t.strict)&&a(),"thirdparty"===moove_frontend_gdpr_scripts.ifbc&&t&&1===parseInt(t.thirdparty)&&a(),"advanced"===moove_frontend_gdpr_scripts.ifbc&&t&&1===parseInt(t.advanced)&&a()):1===parseInt(t.strict)&&a(),void 0!==moove_frontend_gdpr_scripts.scripts_defined)try{var l=JSON.parse(moove_frontend_gdpr_scripts.scripts_defined);if(1===parseInt(t.strict))1===parseInt(t.thirdparty)&&void 0===y.thirdparty&&(l.thirdparty.header&&postscribe(document.head,l.thirdparty.header),l.thirdparty.body&&e(l.thirdparty.body).prependTo(document.body),l.thirdparty.footer&&postscribe(document.body,l.thirdparty.footer),y.thirdparty=!0),1===parseInt(t.advanced)&&void 0===y.advanced&&(l.advanced.header&&postscribe(document.head,l.advanced.header),l.advanced.body&&e(l.advanced.body).prependTo(document.body),l.advanced.footer&&postscribe(document.body,l.advanced.footer),y.advanced=!0);else{var t=u("moove_gdpr_popup");t&&(m(),r())}}catch(e){console.error(e)}else if(void 0===y.thirdparty||void 0===y.advanced){1===t.thirdparty&&(y.thirdparty=!0),1===t.advanced&&(y.advanced=!0);var f=void 0!==moove_frontend_gdpr_scripts.wp_lang?moove_frontend_gdpr_scripts.wp_lang:"";0===parseInt(t.thirdparty)&&0===parseInt(t.advanced)&&m(),e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_get_scripts",strict:t.strict,thirdparty:t.thirdparty,advanced:t.advanced,wp_lang:f},function(o){N=i,n("script_inject",t);var r=JSON.parse(o);r.header&&postscribe(document.head,r.header),r.body&&e(r.body).prependTo(document.body),r.footer&&postscribe(document.body,r.footer)})}}},function(){var t=(location.pathname,e(window).scrollTop());e("#moove_gdpr_save_popup_settings_button").show();var r=moove_frontend_gdpr_scripts.enabled_default.third_party,n=moove_frontend_gdpr_scripts.enabled_default.advanced;if(void 0!==moove_frontend_gdpr_scripts.enable_on_scroll&&"true"===moove_frontend_gdpr_scripts.enable_on_scroll&&1!==parseInt(r)&&1!==parseInt(n)&&(r=1,n=1),document.cookie.indexOf("moove_gdpr_popup")>=0||1==r||1==n){var i=u("moove_gdpr_popup");if(i){var a=s();"0"==a.strict&&"0"==a.advanced&&"0"==a.thirdparty&&(m(),l())}else{var d=!1;if("undefined"!=typeof sessionStorage&&(d=sessionStorage.getItem("gdpr_session")),void 0!==moove_frontend_gdpr_scripts.enable_on_scroll&&"true"===moove_frontend_gdpr_scripts.enable_on_scroll){if(d)try{p(JSON.parse(d)),O=!0,o("dbg - inject - 1"),f(d),g("moove_gdpr_popup",d,b),_()}catch(e){}else if((!O&&1==moove_frontend_gdpr_scripts.enabled_default.third_party||!O&&1==moove_frontend_gdpr_scripts.enabled_default.advanced)&&(i={strict:1,thirdparty:r,advanced:n},p(i),i=JSON.stringify(i),k=!0,l(),o("dbg - default scroll inject")),void 0!==moove_frontend_gdpr_scripts.gdpr_aos_hide&&("1"===moove_frontend_gdpr_scripts.gdpr_aos_hide||"true"===moove_frontend_gdpr_scripts.gdpr_aos_hide||"object"==typeof moove_frontend_gdpr_scripts.gdpr_aos_hide&&moove_frontend_gdpr_scripts.gdpr_aos_hide.includes("1"))&&(o("dbg - enable on scroll - enter"),e(window).scroll(function(){if((!O||k)&&e(this).scrollTop()-t>200){i={strict:1,thirdparty:r,advanced:n},u("moove_gdpr_popup")||"undefined"!=typeof sessionStorage&&((d=sessionStorage.getItem("gdpr_session"))||(sessionStorage.setItem("gdpr_session",JSON.stringify(i)),d=sessionStorage.getItem("gdpr_session")));try{p(i),i=JSON.stringify(i),l(),O=!0,o("dbg - inject - 2 - accept on scroll"),k||f(i),k=!1,g("moove_gdpr_popup",i,b),_(),c("check reload on scroll"),e("#moove_gdpr_save_popup_settings_button").show()}catch(e){}}})),void 0!==moove_frontend_gdpr_scripts.gdpr_aos_hide&&("2"===moove_frontend_gdpr_scripts.gdpr_aos_hide||"object"==typeof moove_frontend_gdpr_scripts.gdpr_aos_hide&&moove_frontend_gdpr_scripts.gdpr_aos_hide.includes("2"))){var v=30;if(void 0!==moove_frontend_gdpr_scripts.gdpr_aos_hide_seconds)var v=parseInt(moove_frontend_gdpr_scripts.gdpr_aos_hide_seconds);o("dbg - hidetimer - enter, seconds: "+v),setTimeout(function(){if(o("dbg - hidetimer - is_created: "+O),!O){i={strict:1,thirdparty:r,advanced:n};var t=u("moove_gdpr_popup");o("dbg - hidetimer - cookies_stored: "+t),t||"undefined"!=typeof sessionStorage&&((d=sessionStorage.getItem("gdpr_session"))||(sessionStorage.setItem("gdpr_session",JSON.stringify(i)),d=sessionStorage.getItem("gdpr_session")));try{p(i),i=JSON.stringify(i),l(),O=!0,o("dbg - inject - 2a"),f(i),g("moove_gdpr_popup",i,b),c("check reload hidetimer")}catch(e){}}_(),e("#moove_gdpr_save_popup_settings_button").show()},1e3*v)}}else i={strict:1,thirdparty:r,advanced:n},p(i),i=JSON.stringify(i),l()}o("dbg - inject - 3"),f(i)}else l()}(),e(document).on("click",'[data-href*="#moove_gdpr_cookie_modal"],[href*="#moove_gdpr_cookie_modal"]',function(o){o.preventDefault(),e("#moove_gdpr_cookie_modal").length>0&&(D=!0,j=gdpr_lightbox("#moove_gdpr_cookie_modal"),e(".gdpr_lightbox").addClass("moove_gdpr_cookie_modal_open"),e(document).moove_gdpr_lightbox_open(),n("opened_modal_from_link",""))}),e(document).on("click",'[data-href*="#gdpr_cookie_modal"],[href*="#gdpr_cookie_modal"]',function(o){o.preventDefault(),e("#moove_gdpr_cookie_modal").length>0&&(D=!0,j=gdpr_lightbox("#moove_gdpr_cookie_modal"),e(".gdpr_lightbox").addClass("moove_gdpr_cookie_modal_open"),e(document).moove_gdpr_lightbox_open(),n("opened_modal_from_link",""))}),e(document).on("click","#moove_gdpr_cookie_info_bar .moove-gdpr-close-modal-button a, #moove_gdpr_cookie_info_bar .moove-gdpr-close-modal-button button",function(e){e.preventDefault()}),e(document).on("click",".moove-gdpr-modal-close",function(o){o.preventDefault(),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close()}),e(document).on("click","#moove-gdpr-menu .moove-gdpr-tab-nav",function(o){o.preventDefault(),o.stopPropagation(),e("#moove-gdpr-menu li").removeClass("menu-item-selected"),e(this).parent().addClass("menu-item-selected"),e(".moove-gdpr-tab-content .moove-gdpr-tab-main").hide(),e(e(this).attr("href")).show(),e(e(this).attr("data-href")).show(),n("clicked_to_tab",e(this).attr("data-href"))}),e(document).on("gdpr_lightbox:close",function(o,t){e(document).moove_gdpr_lightbox_close()}),e.fn.moove_gdpr_lightbox_close=function(o){D&&(e("body").removeClass("moove_gdpr_overflow"),D=!1)},e.fn.moove_gdpr_lightbox_open=function(o){if(D){e("body").addClass("moove_gdpr_overflow");var t=u("moove_gdpr_popup");"none"===moove_frontend_gdpr_scripts.show_icons&&e("body").addClass("gdpr-no-icons"),e(".moove-gdpr-status-bar input[type=checkbox]").each(function(){e(this).is(":checked")?e(this).closest(".moove-gdpr-tab-main").find(".moove-gdpr-strict-warning-message").slideUp():e(this).closest(".moove-gdpr-tab-main").find(".moove-gdpr-strict-warning-message").slideDown()}),t?(t=JSON.parse(t),p(t)):e("#moove_gdpr_strict_cookies").is(":checked")||(e("#advanced-cookies .gdpr-cc-form-fieldset").addClass("fl-disabled"),e("#third_party_cookies .gdpr-cc-form-fieldset").addClass("fl-disabled")),void 0!==moove_frontend_gdpr_scripts.hide_save_btn&&"true"===moove_frontend_gdpr_scripts.hide_save_btn?e(".moove-gdpr-modal-save-settings").removeClass("button-visible").hide():e(".moove-gdpr-modal-save-settings").addClass("button-visible").show(),v()}},e(document).on("gdpr_lightbox:open",function(o,t){e(document).moove_gdpr_lightbox_open()}),e(document).on("click",".fl-disabled",function(o){e("#moove_gdpr_cookie_modal .moove-gdpr-modal-content").is(".moove_gdpr_modal_theme_v2")?e("#moove_gdpr_strict_cookies").length>0&&(e("#moove_gdpr_strict_cookies").trigger("click"),e(this).trigger("click")):e(this).closest(".moove-gdpr-tab-main-content").find(".moove-gdpr-strict-secondary-warning-message").slideDown()}),e(document).on("change",".moove-gdpr-status-bar input[type=checkbox]",function(o){e(".moove-gdpr-modal-save-settings").addClass("button-visible").show();var t=e(this).closest(".moove-gdpr-tab-main").attr("id");e(this).closest(".moove-gdpr-status-bar").toggleClass("checkbox-selected"),e(this).closest(".moove-gdpr-tab-main").toggleClass("checkbox-selected"),e("#moove-gdpr-menu .menu-item-"+t).toggleClass("menu-item-off"),e(this).is(":checked")?e(this).closest(".moove-gdpr-tab-main").find(".moove-gdpr-strict-warning-message").slideUp():e(this).closest(".moove-gdpr-tab-main").find(".moove-gdpr-strict-warning-message").slideDown(),e(this).is("#moove_gdpr_strict_cookies")&&(e(this).is(":checked")?(e("#third_party_cookies fieldset, #third_party_cookies .gdpr-cc-form-fieldset").removeClass("fl-disabled"),e("#moove_gdpr_performance_cookies").prop("disabled",!1),e("#third_party_cookies .moove-gdpr-strict-secondary-warning-message").slideUp(),e("#advanced-cookies fieldset, #advanced-cookies .gdpr-cc-form-fieldset").removeClass("fl-disabled"),e("#advanced-cookies .moove-gdpr-strict-secondary-warning-message").slideUp(),e("#moove_gdpr_advanced_cookies").prop("disabled",!1)):(e(".gdpr_cookie_settings_shortcode_content").find("input").each(function(){e(this).prop("checked",!1)}),e("#third_party_cookies fieldset, #third_party_cookies .gdpr-cc-form-fieldset").addClass("fl-disabled").closest(".moove-gdpr-status-bar").removeClass("checkbox-selected"),e("#moove_gdpr_performance_cookies").prop("disabled",!0).prop("checked",!1),e("#advanced-cookies fieldset, #advanced-cookies .gdpr-cc-form-fieldset").addClass("fl-disabled").closest(".moove-gdpr-status-bar").removeClass("checkbox-selected"),e("#moove_gdpr_advanced_cookies").prop("disabled",!0).prop("checked",!1))),e('input[data-name="'+e(this).attr("name")+'"]').prop("checked",e(this).is(":checked")),v()}),e(document).on("click",".gdpr_cookie_settings_shortcode_content a.gdpr-shr-save-settings",function(o){o.preventDefault(),h(),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close(),c("modal-save-settings")}),e(document).on("change",".gdpr_cookie_settings_shortcode_content input[type=checkbox]",function(o){var t=e(this).attr("data-name"),r=e("#"+t);e(this).is(":checked")?(e('input[data-name="'+t+'"]').prop("checked",!0),"moove_gdpr_strict_cookies"!==e(this).attr("data-name")&&(e(this).closest(".gdpr_cookie_settings_shortcode_content").find('input[data-name="moove_gdpr_strict_cookies"]').is(":checked")||(e('input[data-name="'+t+'"]').prop("checked",!1),e('.gdpr_cookie_settings_shortcode_content input[data-name="moove_gdpr_strict_cookies"]').closest(".gdpr-shr-switch").css("transform","scale(1.2)"),setTimeout(function(){e('.gdpr_cookie_settings_shortcode_content input[data-name="moove_gdpr_strict_cookies"]').closest(".gdpr-shr-switch").css("transform","scale(1)")},300)))):(e('input[data-name="'+t+'"]').prop("checked",e(this).is(":checked")),"moove_gdpr_strict_cookies"===e(this).attr("data-name")&&e(".gdpr_cookie_settings_shortcode_content").find('input[type="checkbox"]').prop("checked",!1)),r.trigger("click")}),e(document).on("click",'.moove-gdpr-modal-allow-all, [href*="#gdpr-accept-cookies"]',function(o){o.preventDefault(),e("#moove_gdpr_cookie_modal").find("input[type=checkbox]").each(function(){var o=e(this);o.is(":checked")||o.trigger("click")}),d("enable_all enable-all-button"),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),_(),h(),e(document).moove_gdpr_lightbox_close()}),e(document).on("click",".moove-gdpr-infobar-allow-all",function(e){e.preventDefault(),d("enable_all allow-btn")}),e(document).on("click",".moove-gdpr-modal-save-settings",function(o){o.preventDefault(),h(),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close(),c("modal-save-settings")});if(window.location.hash){var E=window.location.hash.substring(1);E=E.replace(/\/$/,""),"moove_gdpr_cookie_modal"!==E&&"gdpr_cookie_modal"!==E||(D=!0,n("opened_modal_from_link",""),setTimeout(function(){e("#moove_gdpr_cookie_modal").length>0&&(j=gdpr_lightbox("#moove_gdpr_cookie_modal"),e(".gdpr_lightbox").addClass("moove_gdpr_cookie_modal_open"),e(document).moove_gdpr_lightbox_open())},500)),"gdpr-accept-cookies"===E&&(e("#moove_gdpr_cookie_modal").find("input[type=checkbox]").each(function(){var o=e(this);o.is(":checked")||o.trigger("click")}),d("enable_all enable-all-button"),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),_(),h(),e(document).moove_gdpr_lightbox_close()),"gdpr-reject-cookies"===E&&(m(),r(),e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide(),e("#moove_gdpr_save_popup_settings_button").show()),l(),g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b),setTimeout(function(){g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b)},500))}},finalize:function(){}}},t={fire:function(e,t,r){var n,i=o;t=void 0===t?"init":t,n=""!==e,n=n&&i[e],(n=n&&"function"==typeof i[e][t])&&i[e][t](r)},loadEvents:function(){var o=!1;if(void 0!==moove_frontend_gdpr_scripts.geo_location&&"true"===moove_frontend_gdpr_scripts.geo_location)jQuery.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_localize_scripts"},function(e){var r=JSON.parse(e);void 0!==r.display_cookie_banner&&(moove_frontend_gdpr_scripts.display_cookie_banner=r.display_cookie_banner),void 0!==r.enabled_default&&(moove_frontend_gdpr_scripts.enabled_default=r.enabled_default),o||(o=!0,t.fire("common"))});else{var r=void 0!==typeof moove_frontend_gdpr_scripts.script_delay&&parseInt(moove_frontend_gdpr_scripts.script_delay)?parseInt(moove_frontend_gdpr_scripts.script_delay):0;r>0?setTimeout(function(){t.fire("common")},r):t.fire("common")}e.each(document.body.className.replace(/-/g,"_").split(/\s+/),function(e,o){t.fire(o),t.fire(o,"finalize")}),t.fire("common","finalize")}};e(document).ready(t.loadEvents)}(jQuery);
1
+ !function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o():"function"==typeof define&&define.amd?define([],o):"object"==typeof exports?exports.postscribe=o():e.postscribe=o()}(this,function(){return function(e){function o(r){if(t[r])return t[r].exports;var n=t[r]={exports:{},id:r,loaded:!1};return e[r].call(n.exports,n,n.exports,o),n.loaded=!0,n.exports}var t={};return o.m=e,o.c=t,o.p="",o(0)}([function(e,o,t){"use strict";var r=t(1),n=function(e){return e&&e.__esModule?e:{default:e}}(r);e.exports=n.default},function(e,o,t){"use strict";function r(){}function n(){var e=f.shift();if(e){var o=_.last(e);o.afterDequeue(),e.stream=i.apply(void 0,e),o.afterStreamStart()}}function i(e,o,t){function i(e){e=t.beforeWrite(e),u.write(e),t.afterWrite(e)}u=new c.default(e,t),u.id=g++,u.name=t.name||u.id,s.streams[u.name]=u;var d=e.ownerDocument,p={close:d.close,open:d.open,write:d.write,writeln:d.writeln};a(d,{close:r,open:r,write:function(){for(var e=arguments.length,o=Array(e),t=0;t<e;t++)o[t]=arguments[t];return i(o.join(""))},writeln:function(){for(var e=arguments.length,o=Array(e),t=0;t<e;t++)o[t]=arguments[t];return i(o.join("")+"\n")}});var _=u.win.onerror||r;return u.win.onerror=function(e,o,r){t.error({msg:e+" - "+o+": "+r}),_.apply(u.win,[e,o,r])},u.write(o,function(){a(d,p),u.win.onerror=_,t.done(),u=null,n()}),u}function s(e,o,t){if(_.isFunction(t))t={done:t};else if("clear"===t)return f=[],u=null,void(g=0);t=_.defaults(t,l),e=/^#/.test(e)?window.document.getElementById(e.substr(1)):e.jquery?e[0]:e;var i=[e,o,t];return e.postscribe={cancel:function(){i.stream?i.stream.abort():i[1]=r}},t.beforeEnqueue(i),f.push(i),u||n(),e.postscribe}o.__esModule=!0;var a=Object.assign||function(e){for(var o=1;o<arguments.length;o++){var t=arguments[o];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e};o.default=s;var d=t(2),c=function(e){return e&&e.__esModule?e:{default:e}}(d),p=t(4),_=function(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(o[t]=e[t]);return o.default=e,o}(p),l={afterAsync:r,afterDequeue:r,afterStreamStart:r,afterWrite:r,autoFix:!0,beforeEnqueue:r,beforeWriteToken:function(e){return e},beforeWrite:function(e){return e},done:r,error:function(e){throw new Error(e.msg)},releaseAsync:!1},g=0,f=[],u=null;a(s,{streams:{},queue:f,WriteStream:c.default})},function(e,o,t){"use strict";function r(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function n(e,o){var t=_+o,r=e.getAttribute(t);return p.existy(r)?String(r):r}function i(e,o){var t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=_+o;p.existy(t)&&""!==t?e.setAttribute(r,t):e.removeAttribute(r)}o.__esModule=!0;var s=Object.assign||function(e){for(var o=1;o<arguments.length;o++){var t=arguments[o];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},a=t(3),d=function(e){return e&&e.__esModule?e:{default:e}}(a),c=t(4),p=function(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(o[t]=e[t]);return o.default=e,o}(c),_="data-ps-",l="ps-style",g="ps-script",f=function(){function e(o){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,e),this.root=o,this.options=t,this.doc=o.ownerDocument,this.win=this.doc.defaultView||this.doc.parentWindow,this.parser=new d.default("",{autoFix:t.autoFix}),this.actuals=[o],this.proxyHistory="",this.proxyRoot=this.doc.createElement(o.nodeName),this.scriptStack=[],this.writeQueue=[],i(this.proxyRoot,"proxyof",0)}return e.prototype.write=function(){var e;for((e=this.writeQueue).push.apply(e,arguments);!this.deferredRemote&&this.writeQueue.length;){var o=this.writeQueue.shift();p.isFunction(o)?this._callFunction(o):this._writeImpl(o)}},e.prototype._callFunction=function(e){var o={type:"function",value:e.name||e.toString()};this._onScriptStart(o),e.call(this.win,this.doc),this._onScriptDone(o)},e.prototype._writeImpl=function(e){this.parser.append(e);for(var o=void 0,t=void 0,r=void 0,n=[];(o=this.parser.readToken())&&!(t=p.isScript(o))&&!(r=p.isStyle(o));)(o=this.options.beforeWriteToken(o))&&n.push(o);n.length>0&&this._writeStaticTokens(n),t&&this._handleScriptToken(o),r&&this._handleStyleToken(o)},e.prototype._writeStaticTokens=function(e){var o=this._buildChunk(e);return o.actual?(o.html=this.proxyHistory+o.actual,this.proxyHistory+=o.proxy,this.proxyRoot.innerHTML=o.html,this._walkChunk(),o):null},e.prototype._buildChunk=function(e){for(var o=this.actuals.length,t=[],r=[],n=[],i=e.length,s=0;s<i;s++){var a=e[s],d=a.toString();if(t.push(d),a.attrs){if(!/^noscript$/i.test(a.tagName)){var c=o++;r.push(d.replace(/(\/?>)/," "+_+"id="+c+" $1")),a.attrs.id!==g&&a.attrs.id!==l&&n.push("atomicTag"===a.type?"":"<"+a.tagName+" "+_+"proxyof="+c+(a.unary?" />":">"))}}else r.push(d),n.push("endTag"===a.type?d:"")}return{tokens:e,raw:t.join(""),actual:r.join(""),proxy:n.join("")}},e.prototype._walkChunk=function(){for(var e=void 0,o=[this.proxyRoot];p.existy(e=o.shift());){var t=1===e.nodeType;if(!(t&&n(e,"proxyof"))){t&&(this.actuals[n(e,"id")]=e,i(e,"id"));var r=e.parentNode&&n(e.parentNode,"proxyof");r&&this.actuals[r].appendChild(e)}o.unshift.apply(o,p.toArray(e.childNodes))}},e.prototype._handleScriptToken=function(e){var o=this,t=this.parser.clear();t&&this.writeQueue.unshift(t),e.src=e.attrs.src||e.attrs.SRC,(e=this.options.beforeWriteToken(e))&&(e.src&&this.scriptStack.length?this.deferredRemote=e:this._onScriptStart(e),this._writeScriptToken(e,function(){o._onScriptDone(e)}))},e.prototype._handleStyleToken=function(e){var o=this.parser.clear();o&&this.writeQueue.unshift(o),e.type=e.attrs.type||e.attrs.TYPE||"text/css",e=this.options.beforeWriteToken(e),e&&this._writeStyleToken(e),o&&this.write()},e.prototype._writeStyleToken=function(e){var o=this._buildStyle(e);this._insertCursor(o,l),e.content&&(o.styleSheet&&!o.sheet?o.styleSheet.cssText=e.content:o.appendChild(this.doc.createTextNode(e.content)))},e.prototype._buildStyle=function(e){var o=this.doc.createElement(e.tagName);return o.setAttribute("type",e.type),p.eachKey(e.attrs,function(e,t){o.setAttribute(e,t)}),o},e.prototype._insertCursor=function(e,o){this._writeImpl('<span id="'+o+'"/>');var t=this.doc.getElementById(o);t&&t.parentNode.replaceChild(e,t)},e.prototype._onScriptStart=function(e){e.outerWrites=this.writeQueue,this.writeQueue=[],this.scriptStack.unshift(e)},e.prototype._onScriptDone=function(e){return e!==this.scriptStack[0]?void this.options.error({msg:"Bad script nesting or script finished twice"}):(this.scriptStack.shift(),this.write.apply(this,e.outerWrites),void(!this.scriptStack.length&&this.deferredRemote&&(this._onScriptStart(this.deferredRemote),this.deferredRemote=null)))},e.prototype._writeScriptToken=function(e,o){var t=this._buildScript(e),r=this._shouldRelease(t),n=this.options.afterAsync;e.src&&(t.src=e.src,this._scriptLoadHandler(t,r?n:function(){o(),n()}));try{this._insertCursor(t,g),t.src&&!r||o()}catch(e){this.options.error(e),o()}},e.prototype._buildScript=function(e){var o=this.doc.createElement(e.tagName);return p.eachKey(e.attrs,function(e,t){o.setAttribute(e,t)}),e.content&&(o.text=e.content),o},e.prototype._scriptLoadHandler=function(e,o){function t(){e=e.onload=e.onreadystatechange=e.onerror=null}function r(){t(),null!=o&&o(),o=null}function n(e){t(),a(e),null!=o&&o(),o=null}function i(e,o){var t=e["on"+o];null!=t&&(e["_on"+o]=t)}var a=this.options.error;i(e,"load"),i(e,"error"),s(e,{onload:function(){if(e._onload)try{e._onload.apply(this,Array.prototype.slice.call(arguments,0))}catch(o){n({msg:"onload handler failed "+o+" @ "+e.src})}r()},onerror:function(){if(e._onerror)try{e._onerror.apply(this,Array.prototype.slice.call(arguments,0))}catch(o){return void n({msg:"onerror handler failed "+o+" @ "+e.src})}n({msg:"remote script failed "+e.src})},onreadystatechange:function(){/^(loaded|complete)$/.test(e.readyState)&&r()}})},e.prototype._shouldRelease=function(e){return!/^script$/i.test(e.nodeName)||!!(this.options.releaseAsync&&e.src&&e.hasAttribute("async"))},e}();o.default=f},function(e,o,t){!function(o,t){e.exports=function(){return function(e){function o(r){if(t[r])return t[r].exports;var n=t[r]={exports:{},id:r,loaded:!1};return e[r].call(n.exports,n,n.exports,o),n.loaded=!0,n.exports}var t={};return o.m=e,o.c=t,o.p="",o(0)}([function(e,o,t){"use strict";var r=t(1),n=function(e){return e&&e.__esModule?e:{default:e}}(r);e.exports=n.default},function(e,o,t){"use strict";function r(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(o[t]=e[t]);return o.default=e,o}function n(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}o.__esModule=!0;var i=t(2),s=r(i),a=t(3),d=r(a),c=t(6),p=function(e){return e&&e.__esModule?e:{default:e}}(c),_=t(5),l={comment:/^<!--/,endTag:/^<\//,atomicTag:/^<\s*(script|style|noscript|iframe|textarea)[\s\/>]/i,startTag:/^</,chars:/^[^<]/},g=function(){function e(){var o=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};n(this,e),this.stream=t;var i=!1,a={};for(var d in s)s.hasOwnProperty(d)&&(r.autoFix&&(a[d+"Fix"]=!0),i=i||a[d+"Fix"]);i?(this._readToken=(0,p.default)(this,a,function(){return o._readTokenImpl()}),this._peekToken=(0,p.default)(this,a,function(){return o._peekTokenImpl()})):(this._readToken=this._readTokenImpl,this._peekToken=this._peekTokenImpl)}return e.prototype.append=function(e){this.stream+=e},e.prototype.prepend=function(e){this.stream=e+this.stream},e.prototype._readTokenImpl=function(){var e=this._peekTokenImpl();if(e)return this.stream=this.stream.slice(e.length),e},e.prototype._peekTokenImpl=function(){for(var e in l)if(l.hasOwnProperty(e)&&l[e].test(this.stream)){var o=d[e](this.stream);if(o)return"startTag"===o.type&&/script|style/i.test(o.tagName)?null:(o.text=this.stream.substr(0,o.length),o)}},e.prototype.peekToken=function(){return this._peekToken()},e.prototype.readToken=function(){return this._readToken()},e.prototype.readTokens=function(e){for(var o=void 0;o=this.readToken();)if(e[o.type]&&!1===e[o.type](o))return},e.prototype.clear=function(){var e=this.stream;return this.stream="",e},e.prototype.rest=function(){return this.stream},e}();o.default=g,g.tokenToString=function(e){return e.toString()},g.escapeAttributes=function(e){var o={};for(var t in e)e.hasOwnProperty(t)&&(o[t]=(0,_.escapeQuotes)(e[t],null));return o},g.supports=s;for(var f in s)s.hasOwnProperty(f)&&(g.browserHasFlaw=g.browserHasFlaw||!s[f]&&f)},function(e,o){"use strict";o.__esModule=!0;var t=!1,r=!1,n=window.document.createElement("div");try{var i="<P><I></P></I>";n.innerHTML=i,o.tagSoup=t=n.innerHTML!==i}catch(e){o.tagSoup=t=!1}try{n.innerHTML="<P><i><P></P></i></P>",o.selfClose=r=2===n.childNodes.length}catch(e){o.selfClose=r=!1}n=null,o.tagSoup=t,o.selfClose=r},function(e,o,t){"use strict";function r(e){var o=e.indexOf("--\x3e");if(o>=0)return new c.CommentToken(e.substr(4,o-1),o+3)}function n(e){var o=e.indexOf("<");return new c.CharsToken(o>=0?o:e.length)}function i(e){if(-1!==e.indexOf(">")){var o=e.match(p.startTag);if(o){var t=function(){var e={},t={},r=o[2];return o[2].replace(p.attr,function(o,n){arguments[2]||arguments[3]||arguments[4]||arguments[5]?arguments[5]?(e[arguments[5]]="",t[arguments[5]]=!0):e[n]=arguments[2]||arguments[3]||arguments[4]||p.fillAttr.test(n)&&n||"":e[n]="",r=r.replace(o,"")}),{v:new c.StartTagToken(o[1],o[0].length,e,t,!!o[3],r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""))}}();if("object"===(void 0===t?"undefined":d(t)))return t.v}}}function s(e){var o=i(e);if(o){var t=e.slice(o.length);if(t.match(new RegExp("</\\s*"+o.tagName+"\\s*>","i"))){var r=t.match(new RegExp("([\\s\\S]*?)</\\s*"+o.tagName+"\\s*>","i"));if(r)return new c.AtomicTagToken(o.tagName,r[0].length+o.length,o.attrs,o.booleanAttrs,r[1])}}}function a(e){var o=e.match(p.endTag);if(o)return new c.EndTagToken(o[1],o[0].length)}o.__esModule=!0;var d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};o.comment=r,o.chars=n,o.startTag=i,o.atomicTag=s,o.endTag=a;var c=t(4),p={startTag:/^<([\-A-Za-z0-9_]+)((?:\s+[\w\-]+(?:\s*=?\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/,endTag:/^<\/([\-A-Za-z0-9_]+)[^>]*>/,attr:/(?:([\-A-Za-z0-9_]+)\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))|(?:([\-A-Za-z0-9_]+)(\s|$)+)/g,fillAttr:/^(checked|compact|declare|defer|disabled|ismap|multiple|nohref|noresize|noshade|nowrap|readonly|selected)$/i}},function(e,o,t){"use strict";function r(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}o.__esModule=!0,o.EndTagToken=o.AtomicTagToken=o.StartTagToken=o.TagToken=o.CharsToken=o.CommentToken=o.Token=void 0;var n=t(5),i=(o.Token=function e(o,t){r(this,e),this.type=o,this.length=t,this.text=""},o.CommentToken=function(){function e(o,t){r(this,e),this.type="comment",this.length=t||(o?o.length:0),this.text="",this.content=o}return e.prototype.toString=function(){return"\x3c!--"+this.content},e}(),o.CharsToken=function(){function e(o){r(this,e),this.type="chars",this.length=o,this.text=""}return e.prototype.toString=function(){return this.text},e}(),o.TagToken=function(){function e(o,t,n,i,s){r(this,e),this.type=o,this.length=n,this.text="",this.tagName=t,this.attrs=i,this.booleanAttrs=s,this.unary=!1,this.html5Unary=!1}return e.formatTag=function(e){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,t="<"+e.tagName;for(var r in e.attrs)if(e.attrs.hasOwnProperty(r)){t+=" "+r;var i=e.attrs[r];void 0!==e.booleanAttrs&&void 0!==e.booleanAttrs[r]||(t+='="'+(0,n.escapeQuotes)(i)+'"')}return e.rest&&(t+=" "+e.rest),t+=e.unary&&!e.html5Unary?"/>":">",void 0!==o&&null!==o&&(t+=o+"</"+e.tagName+">"),t},e}());o.StartTagToken=function(){function e(o,t,n,i,s,a){r(this,e),this.type="startTag",this.length=t,this.text="",this.tagName=o,this.attrs=n,this.booleanAttrs=i,this.html5Unary=!1,this.unary=s,this.rest=a}return e.prototype.toString=function(){return i.formatTag(this)},e}(),o.AtomicTagToken=function(){function e(o,t,n,i,s){r(this,e),this.type="atomicTag",this.length=t,this.text="",this.tagName=o,this.attrs=n,this.booleanAttrs=i,this.unary=!1,this.html5Unary=!1,this.content=s}return e.prototype.toString=function(){return i.formatTag(this,this.content)},e}(),o.EndTagToken=function(){function e(o,t){r(this,e),this.type="endTag",this.length=t,this.text="",this.tagName=o}return e.prototype.toString=function(){return"</"+this.tagName+">"},e}()},function(e,o){"use strict";function t(e){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return e?e.replace(/([^"]*)"/g,function(e,o){return/\\/.test(o)?o+'"':o+'\\"'}):o}o.__esModule=!0,o.escapeQuotes=t},function(e,o){"use strict";function t(e){return e&&"startTag"===e.type&&(e.unary=a.test(e.tagName)||e.unary,e.html5Unary=!/\/>$/.test(e.text)),e}function r(e,o){var r=e.stream,n=t(o());return e.stream=r,n}function n(e,o){var t=o.pop();e.prepend("</"+t.tagName+">")}function i(){var e=[];return e.last=function(){return this[this.length-1]},e.lastTagNameEq=function(e){var o=this.last();return o&&o.tagName&&o.tagName.toUpperCase()===e.toUpperCase()},e.containsTagName=function(e){for(var o,t=0;o=this[t];t++)if(o.tagName===e)return!0;return!1},e}function s(e,o,s){function a(){var o=r(e,s);o&&p[o.type]&&p[o.type](o)}var c=i(),p={startTag:function(t){var r=t.tagName;"TR"===r.toUpperCase()&&c.lastTagNameEq("TABLE")?(e.prepend("<TBODY>"),a()):o.selfCloseFix&&d.test(r)&&c.containsTagName(r)?c.lastTagNameEq(r)?n(e,c):(e.prepend("</"+t.tagName+">"),a()):t.unary||c.push(t)},endTag:function(t){c.last()?o.tagSoupFix&&!c.lastTagNameEq(t.tagName)?n(e,c):c.pop():o.tagSoupFix&&(s(),a())}};return function(){return a(),t(s())}}o.__esModule=!0,o.default=s;var a=/^(AREA|BASE|BASEFONT|BR|COL|FRAME|HR|IMG|INPUT|ISINDEX|LINK|META|PARAM|EMBED)$/i,d=/^(COLGROUP|DD|DT|LI|OPTIONS|P|TD|TFOOT|TH|THEAD|TR)$/i}])}()}()},function(e,o){"use strict";function t(e){return void 0!==e&&null!==e}function r(e){return"function"==typeof e}function n(e,o,t){var r=void 0,n=e&&e.length||0;for(r=0;r<n;r++)o.call(t,e[r],r)}function i(e,o,t){for(var r in e)e.hasOwnProperty(r)&&o.call(t,r,e[r])}function s(e,o){return e=e||{},i(o,function(o,r){t(e[o])||(e[o]=r)}),e}function a(e){try{return Array.prototype.slice.call(e)}catch(t){var o=function(){var o=[];return n(e,function(e){o.push(e)}),{v:o}}();if("object"===(void 0===o?"undefined":l(o)))return o.v}}function d(e){return e[e.length-1]}function c(e,o){return!(!e||"startTag"!==e.type&&"atomicTag"!==e.type||!("tagName"in e)||!~e.tagName.toLowerCase().indexOf(o))}function p(e){return c(e,"script")}function _(e){return c(e,"style")}o.__esModule=!0;var l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};o.existy=t,o.isFunction=r,o.each=n,o.eachKey=i,o.defaults=s,o.toArray=a,o.last=d,o.isTag=c,o.isScript=p,o.isStyle=_}])}),function(e,o){e.gdpr_lightbox=function(e,o){"use strict";function t(e){var o=I();return U&&e.length?(e.one(U,o.resolve),setTimeout(o.resolve,500)):o.resolve(),o.promise()}function r(e,t,r){if(1===arguments.length)return o.extend({},e);if("string"==typeof t){if(void 0===r)return void 0===e[t]?null:e[t];e[t]=r}else o.extend(e,t);return this}function n(e){for(var o,t=decodeURI(e.split("#")[0]).split("&"),r={},n=0,i=t.length;n<i;n++)t[n]&&(o=t[n].split("="),r[o[0]]=o[1]);return r}function i(e,t){return e+(e.indexOf("?")>-1?"&":"?")+o.param(t)}function s(e,o){var t=e.indexOf("#");return-1===t?o:(t>0&&(e=e.substr(t)),o+e)}function a(e){return o('<span class="gdpr_lightbox-error"></span>').append(e)}function d(e,t){var r=t.opener()&&t.opener().data("gdpr_lightbox-desc")||"Image with no description",n=o('<img src="'+e+'" alt="'+r+'"/>'),i=I(),s=function(){i.reject(a("Failed loading image"))};return n.on("load",function(){if(0===this.naturalWidth)return s();i.resolve(n)}).on("error",s),i.promise()}function c(e,t){var r,n,i;try{r=o(e)}catch(e){return!1}return!!r.length&&(n=o('<i style="display:none !important"></i>'),i=r.hasClass("gdpr_lightbox-hide"),t.element().one("gdpr_lightbox:remove",function(){n.before(r).remove(),i&&!r.closest(".gdpr_lightbox-content").length&&r.addClass("gdpr_lightbox-hide")}),r.removeClass("gdpr_lightbox-hide").after(n))}function p(e){var t=M.exec(e);return!!t&&f(s(e,i("https://www.youtube"+(t[2]||"")+".com/embed/"+t[4],o.extend({autoplay:1},n(t[5]||"")))))}function _(e){var t=P.exec(e);return!!t&&f(s(e,i("https://player.vimeo.com/video/"+t[3],o.extend({autoplay:1},n(t[4]||"")))))}function l(e){var t=F.exec(e);return!!t&&(0!==e.indexOf("http")&&(e="https:"+e),f(s(e,i("https://www.facebook.com/plugins/video.php?href="+e,o.extend({autoplay:1},n(t[4]||""))))))}function g(e){var o=R.exec(e);return!!o&&f(s(e,i("https://www.google."+o[3]+"/maps?"+o[6],{output:o[6].indexOf("layer=c")>0?"svembed":"embed"})))}function f(e){return'<div class="gdpr_lightbox-iframe-container"><iframe frameborder="0" allowfullscreen allow="autoplay; fullscreen" src="'+e+'"/></div>'}function u(){return S.documentElement.clientHeight?S.documentElement.clientHeight:Math.round(C.height())}function v(e){var o=k();o&&(27===e.keyCode&&o.options("esc")&&o.close(),9===e.keyCode&&m(e,o))}function m(e,o){var t=o.element().find(E),r=t.index(S.activeElement);e.shiftKey&&r<=0?(t.get(t.length-1),e.preventDefault()):e.shiftKey||r!==t.length-1||(t.get(0),e.preventDefault())}function h(){o.each(O,function(e,o){o.resize()})}function b(e){1===O.unshift(e)&&(N.addClass("gdpr_lightbox-active"),C.on({resize:h,keydown:v})),o("body > *").not(e.element()).addClass("gdpr_lightbox-hidden").each(function(){var e=o(this);void 0===e.data(D)&&e.data(D,e.attr(j)||null)}).attr(j,"true")}function y(e){var t;e.element().attr(j,"true"),1===O.length&&(N.removeClass("gdpr_lightbox-active"),C.off({resize:h,keydown:v})),O=o.grep(O,function(o){return e!==o}),t=O.length?O[0].element():o(".gdpr_lightbox-hidden"),t.removeClass("gdpr_lightbox-hidden").each(function(){var e=o(this),t=e.data(D);t?e.attr(j,t):e.removeAttr(j),e.removeData(D)})}function k(){return 0===O.length?null:O[0]}function x(e,t,r,n){var i,s="inline",a=o.extend({},r);return n&&a[n]?(i=a[n](e,t),s=n):(o.each(["inline","iframe"],function(e,o){delete a[o],a[o]=r[o]}),o.each(a,function(o,r){return!r||(!(!r.test||r.test(e,t))||(i=r(e,t),!1!==i?(s=o,!1):void 0))})),{handler:s,content:i||""}}function w(e,n,i,s){function a(e){p=o(e).css("max-height",u()+"px"),c.find(".gdpr_lightbox-loader").each(function(){var e=o(this);t(e).always(function(){e.remove()})}),c.removeClass("gdpr_lightbox-loading").find(".gdpr_lightbox-content").empty().append(p),l=!0,p.trigger("gdpr_lightbox:ready",[_])}var d,c,p,_=this,l=!1,g=!1;n=o.extend({},A,n),c=o(n.template),_.element=function(){return c},_.opener=function(){return i},_.options=o.proxy(r,_,n),_.handlers=o.proxy(r,_,n.handlers),_.resize=function(){l&&!g&&p.css("max-height",u()+"px").trigger("gdpr_lightbox:resize",[_])},_.close=function(){if(l&&!g){g=!0,y(_);var e=I();return s&&(S.activeElement===c[0]||o.contains(c[0],S.activeElement)),p.trigger("gdpr_lightbox:close",[_]),c.removeClass("gdpr_lightbox-opened").addClass("gdpr_lightbox-closed"),t(p.add(c)).always(function(){p.trigger("gdpr_lightbox:remove",[_]),c.remove(),c=void 0,e.resolve()}),e.promise()}},d=x(e,_,n.handlers,n.handler),c.attr(j,"false").addClass("gdpr_lightbox-loading gdpr_lightbox-opened gdpr_lightbox-"+d.handler).appendTo("body").on("click","[data-gdpr_lightbox-close]",function(e){o(e.target).is("[data-gdpr_lightbox-close]")&&_.close()}).trigger("gdpr_lightbox:open",[_]),b(_),o.when(d.content).always(a)}function T(e,t,r){e.preventDefault?(e.preventDefault(),r=o(this),e=r.data("gdpr_lightbox-target")||r.attr("href")||r.attr("src")):r=o(r);var n=new w(e,o.extend({},r.data("gdpr_lightbox-options")||r.data("gdpr_lightbox"),t),r,S.activeElement);if(!e.preventDefault)return n}var S=e.document,C=o(e),I=o.Deferred,N=o("html"),O=[],j="aria-hidden",D="gdpr_lightbox-"+j,E='a[href],area[href],input:not([disabled]),select:not([disabled]),textarea:not([disabled]),button:not([disabled]),iframe,object,embed,[contenteditable],[tabindex]:not([tabindex^="-"])',A={esc:!0,handler:null,handlers:{image:d,inline:c,youtube:p,vimeo:_,googlemaps:g,facebookvideo:l,iframe:f},template:'<div class="gdpr_lightbox" role="dialog" aria-label="Dialog Window (Press escape to close)" tabindex="-1"><div class="gdpr_lightbox-wrap" data-gdpr_lightbox-close role="document"><div class="gdpr_lightbox-loader" aria-hidden="true">Loading...</div><div class="gdpr_lightbox-container"><div class="gdpr_lightbox-content"></div><button class="gdpr_lightbox-close" type="button" aria-label="Close (Press escape to close)" data-gdpr_lightbox-close>&times;</button></div></div></div>'},J=/(^data:image\/)|(\.(png|jpe?g|gif|svg|webp|bmp|ico|tiff?)(\?\S*)?$)/i,M=/(youtube(-nocookie)?\.com|youtu\.be)\/(watch\?v=|v\/|u\/|embed\/?)?([\w-]{11})(.*)?/i,P=/(vimeo(pro)?.com)\/(?:[^\d]+)?(\d+)\??(.*)?$/,R=/((maps|www)\.)?google\.([^\/\?]+)\/?((maps\/?)?\?)(.*)/i,F=/(facebook\.com)\/([a-z0-9_-]*)\/videos\/([0-9]*)(.*)?$/i,U=function(){var e=S.createElement("div"),o={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var t in o)if(void 0!==e.style[t])return o[t];return!1}();return d.test=function(e){return J.test(e)},T.options=o.proxy(r,T,A),T.handlers=o.proxy(r,T,A.handlers),T.current=k,o(S).on("click.gdpr_lightbox","[data-gdpr_lightbox]",T),T}(e,e.jQuery||e.Zepto)}("undefined"!=typeof window?window:this),function(e){var o={common:{init:function(){"use strict";function o(e){try{new URLSearchParams(window.location.search).has("gdpr_dbg")&&console.warn(e)}catch(e){console.warn(e)}}function t(){e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_remove_php_cookies"},function(e){o("dbg - cookies removed")})}function r(){t();var o=void 0!==moove_frontend_gdpr_scripts.wp_lang?moove_frontend_gdpr_scripts.wp_lang:"";e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_get_scripts",strict:0,thirdparty:0,advanced:0,wp_lang:o},function(e){var o={};o.strict=1,o.thirdparty=0,o.advanced=0,m(),n("script_inject",o),p(o)})}function n(e,o){try{jQuery().gdpr_cookie_compliance_analytics(e,o)}catch(e){}}function i(e){try{jQuery().gdpr_cookie_compliance_consent_log(e)}catch(e){}}function s(){var e=f("moove_gdpr_popup"),o={};return o.strict="0",o.thirdparty="0",o.advanced="0",e&&(e=JSON.parse(e),o.strict=e.strict,o.thirdparty=e.thirdparty,o.advanced=e.advanced,p(o),n("script_inject",e)),void 0!==moove_frontend_gdpr_scripts.ifbc?("strict"===moove_frontend_gdpr_scripts.ifbc&&e&&1===parseInt(e.strict)&&a(),"thirdparty"===moove_frontend_gdpr_scripts.ifbc&&e&&1===parseInt(e.thirdparty)&&a(),"advanced"===moove_frontend_gdpr_scripts.ifbc&&e&&1===parseInt(e.advanced)&&a()):"1"!==moove_frontend_gdpr_scripts.strict_init&&a(),o}function a(){e(document).find("iframe[data-gdpr-iframesrc]").each(function(){e(this).attr("src",e(this).attr("data-gdpr-iframesrc"))})}function d(e){g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"1",advanced:"1"}),b),c("enabled-all"),n("accept_all","")}function c(t){var r=!1;try{void 0!==moove_frontend_gdpr_scripts.force_reload&&"true"===moove_frontend_gdpr_scripts.force_reload&&(r=!0)}catch(e){}var i=s(),a=moove_frontend_gdpr_scripts.enabled_default.third_party,d=moove_frontend_gdpr_scripts.enabled_default.advanced;if(document.cookie.indexOf("moove_gdpr_popup")>=0||1==a||1==d){var c=f("moove_gdpr_popup");1==a&&(I.strict=1,I.thirdparty=a),1==d&&(I.strict=1,I.advanced=d),I&&(parseInt(i.strict)-parseInt(I.strict)<0&&(r=!0),parseInt(i.thirdparty)-parseInt(I.thirdparty)<0&&(r=!0),parseInt(i.advanced)-parseInt(I.advanced)<0&&(r=!0))}if(r)if(c={strict:0,thirdparty:0,advanced:0},n("script_inject",c),void 0!==moove_frontend_gdpr_scripts.scripts_defined)setTimeout(function(){location.reload(!0)},800);else{var p=e(document).find("script[data-gdpr][src*=googletagmanager]");if(p.length>0){var l=e(document).find("script[data-gdpr][src*=googletagmanager]").attr("src");if(l){var g=new URL(l),v=g.searchParams.get("id");v&&(document.cookie="woocommerce_"+v+"=true; expires=Thu, 31 Dec 1970 23:59:59 UTC; path=/",window["ga-disable-"+v]=!0),window.gtag&&window.gtag("remove"),p.remove()}}e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_remove_php_cookies"},function(e){location.reload(!0)}).fail(function(){location.reload(!0)})}else{var m=f("moove_gdpr_popup");o("dbg - inject - 4"),u(m),_(),e("#moove_gdpr_save_popup_settings_button").show()}}function p(o){o&&(n("script_inject",o),1===parseInt(o.strict)?e("#moove_gdpr_strict_cookies").is(":checked")||(e("#moove_gdpr_strict_cookies").trigger("click"),e("#third_party_cookies fieldset, #third_party_cookies .gdpr-cc-form-fieldset").removeClass("fl-disabled"),e("#moove_gdpr_performance_cookies").prop("disabled",!1),e("#third_party_cookies .moove-gdpr-strict-secondary-warning-message").slideUp(),e("#advanced-cookies fieldset, #advanced-cookies .gdpr-cc-form-fieldset").removeClass("fl-disabled"),e("#advanced-cookies .moove-gdpr-strict-secondary-warning-message").slideUp(),e("#moove_gdpr_advanced_cookies").prop("disabled",!1)):e("#moove_gdpr_strict_cookies").is(":checked")&&(e("#moove_gdpr_strict_cookies").trigger("click").prop("checked",!0),e("#third_party_cookies fieldset, #third_party_cookies .gdpr-cc-form-fieldset").addClass("fl-disabled").closest(".moove-gdpr-status-bar").removeClass("checkbox-selected"),e("#moove_gdpr_performance_cookies").prop("disabled",!0).prop("checked",!1),e("#advanced-cookies fieldset, #advanced-cookies .gdpr-cc-form-fieldset").addClass("fl-disabled").closest(".moove-gdpr-status-bar").removeClass("checkbox-selected"),e("#moove_gdpr_advanced_cookies").prop("disabled",!0).prop("checked",!1)),1===parseInt(o.thirdparty)?e("#moove_gdpr_performance_cookies").is(":checked")||e("#moove_gdpr_performance_cookies").trigger("click"):e("#moove_gdpr_performance_cookies").is(":checked")&&e("#moove_gdpr_performance_cookies").trigger("click"),1===parseInt(o.advanced)?e("#moove_gdpr_advanced_cookies").is(":checked")||e("#moove_gdpr_advanced_cookies").trigger("click"):e("#moove_gdpr_advanced_cookies").is(":checked")&&e("#moove_gdpr_advanced_cookies").trigger("click"),e('input[data-name="moove_gdpr_performance_cookies"]').prop("checked",e("#moove_gdpr_performance_cookies").is(":checked")),e('input[data-name="moove_gdpr_strict_cookies"]').prop("checked",e("#moove_gdpr_strict_cookies").is(":checked")),e('input[data-name="moove_gdpr_advanced_cookies"]').prop("checked",e("#moove_gdpr_advanced_cookies").is(":checked")))}function _(){e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide())}function l(){var t=!0;if("undefined"!=typeof sessionStorage&&1===parseInt(sessionStorage.getItem("gdpr_infobar_hidden"))&&(t=!1),void 0!==moove_frontend_gdpr_scripts.display_cookie_banner&&t){if("true"===moove_frontend_gdpr_scripts.display_cookie_banner)e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").removeClass("moove-gdpr-info-bar-hidden"),e("#moove_gdpr_save_popup_settings_button:not(.button-visible)").hide(),e("body").addClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").show(),n("show_infobar",""));else if(e("#moove_gdpr_cookie_info_bar").length>0){e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide();var r={strict:1,thirdparty:1,advanced:1};o("dbg - inject - 5"),u(JSON.stringify(r))}}else e("#moove_gdpr_cookie_info_bar").length>0&&t&&(e("#moove_gdpr_cookie_info_bar").removeClass("moove-gdpr-info-bar-hidden"),e("#moove_gdpr_save_popup_settings_button:not(.button-visible)").hide(),e("body").addClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").show(),n("show_infobar",""))}function g(e,t,r){var n;if(r>0){var s=new Date;s.setTime(s.getTime()+24*r*60*60*1e3),n="; expires="+s.toGMTString()}else n="";try{var a="SameSite=Lax";void 0!==moove_frontend_gdpr_scripts.cookie_attributes&&(a=moove_frontend_gdpr_scripts.cookie_attributes),void 0!==moove_frontend_gdpr_scripts.gdpr_consent_version&&(t=JSON.parse(t),t.version=moove_frontend_gdpr_scripts.gdpr_consent_version,t=JSON.stringify(t)),"moove_gdpr_popup"===e&&0===parseInt(t.strict)?void 0!==moove_frontend_gdpr_scripts.gdpr_scor&&"false"===moove_frontend_gdpr_scripts.gdpr_scor?document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(t)+n+"; path=/; "+a:document.cookie=encodeURIComponent(e)+"=; Path=/;":document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(t)+n+"; path=/; "+a,i(t)}catch(e){o("error - moove_gdpr_create_cookie: "+e)}}function f(e){for(var o=encodeURIComponent(e)+"=",t=document.cookie.split(";"),r=0;r<t.length;r++){for(var n=t[r];" "===n.charAt(0);)n=n.substring(1,n.length);if(0===n.indexOf(o)){var i=decodeURIComponent(n.substring(o.length,n.length)),s=JSON.parse(i);if(void 0!==s.version){if(void 0!==moove_frontend_gdpr_scripts.gdpr_consent_version){var a=moove_frontend_gdpr_scripts.gdpr_consent_version;if(parseFloat(a)>parseFloat(s.version))return document.cookie=e+"=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;",null}}else if(void 0!==moove_frontend_gdpr_scripts.gdpr_consent_version&&parseFloat(moove_frontend_gdpr_scripts.gdpr_consent_version)>1)return document.cookie=e+"=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;",null;return i}}return null}function u(o){if(I=s(),o){
2
+ var t=o;o=JSON.parse(o);s();if(!1!==N){var i=JSON.parse(N);1===parseInt(i.thirdparty)&&1===parseInt(o.thirdparty)&&(o.thirdparty="0"),1===parseInt(i.advanced)&&1===parseInt(o.advanced)&&(o.advanced="0")}if(n("script_inject",o),O=!0,void 0!==moove_frontend_gdpr_scripts.ifbc?("strict"===moove_frontend_gdpr_scripts.ifbc&&o&&1===parseInt(o.strict)&&a(),"thirdparty"===moove_frontend_gdpr_scripts.ifbc&&o&&1===parseInt(o.thirdparty)&&a(),"advanced"===moove_frontend_gdpr_scripts.ifbc&&o&&1===parseInt(o.advanced)&&a()):1===parseInt(o.strict)&&a(),void 0!==moove_frontend_gdpr_scripts.scripts_defined)try{var d=JSON.parse(moove_frontend_gdpr_scripts.scripts_defined);if(1===parseInt(o.strict))1===parseInt(o.thirdparty)&&void 0===y.thirdparty&&(d.thirdparty.header&&postscribe(document.head,d.thirdparty.header),d.thirdparty.body&&e(d.thirdparty.body).prependTo(document.body),d.thirdparty.footer&&postscribe(document.body,d.thirdparty.footer),y.thirdparty=!0),1===parseInt(o.advanced)&&void 0===y.advanced&&(d.advanced.header&&postscribe(document.head,d.advanced.header),d.advanced.body&&e(d.advanced.body).prependTo(document.body),d.advanced.footer&&postscribe(document.body,d.advanced.footer),y.advanced=!0);else{var o=f("moove_gdpr_popup");o&&(m(),r())}}catch(e){console.error(e)}else if(void 0===y.thirdparty||void 0===y.advanced){1===o.thirdparty&&(y.thirdparty=!0),1===o.advanced&&(y.advanced=!0);var c=void 0!==moove_frontend_gdpr_scripts.wp_lang?moove_frontend_gdpr_scripts.wp_lang:"";0===parseInt(o.thirdparty)&&0===parseInt(o.advanced)&&m(),e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_get_scripts",strict:o.strict,thirdparty:o.thirdparty,advanced:o.advanced,wp_lang:c},function(r){N=t,n("script_inject",o);var i=JSON.parse(r);i.header&&postscribe(document.head,i.header),i.body&&e(i.body).prependTo(document.body),i.footer&&postscribe(document.body,i.footer)})}}else l()}function v(){var o=!0;e(document).find("#moove_gdpr_cookie_modal input[type=checkbox]").each(function(){e(this).is(":checked")||(o=!1)})}function m(t){try{e(document).find("script[data-gdpr]").each(function(){o("script_removed: "+e(this).attr("src"))});for(var r=document.cookie.split(";"),n=window.location.hostname,i=0;i<r.length;i++){var s=r[i],a=s.indexOf("="),d=a>-1?s.substr(0,a):s;d.includes("woocommerce")||d.includes("wc_")||d.includes("moove_gdpr_popup")||d.includes("wordpress")||(document.cookie=d+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT;domain="+n,document.cookie=d+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT;domain=."+n,o("cookie removed: "+d+" - "+n))}}catch(e){o("error in gdpr_delete_all_cookies: "+e)}"undefined"!=typeof sessionStorage&&sessionStorage.removeItem("gdpr_session")}function h(){var o=f("moove_gdpr_popup");m(),t();var r="0",n="0",i="0",s=!1;o&&(o=JSON.parse(o),r=o.strict,n=o.advanced,i=o.thirdparty),e("#moove_gdpr_strict_cookies").length>0?e("#moove_gdpr_strict_cookies").is(":checked")?(r="1",s=!0):r="0":(s=!0,r="1"),e("#moove_gdpr_performance_cookies").is(":checked")?(i="1",s=!0):i="0",e("#moove_gdpr_advanced_cookies").is(":checked")?(n="1",s=!0):n="0",!o&&s?(g("moove_gdpr_popup",JSON.stringify({strict:r,thirdparty:i,advanced:n}),b),_(),e("#moove_gdpr_save_popup_settings_button").show()):o&&g("moove_gdpr_popup",JSON.stringify({strict:r,thirdparty:i,advanced:n}),b);var o=f("moove_gdpr_popup");o&&(o=JSON.parse(o),"0"==o.strict&&"0"==o.advanced&&"0"==o.thirdparty&&m())}var b=365,y=[];void 0!==moove_frontend_gdpr_scripts.cookie_expiration&&(b=moove_frontend_gdpr_scripts.cookie_expiration),e(document).on("click",'#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-reject-btn, [href*="#gdpr-reject-cookies"], .moove-gdpr-modal-reject-all',function(o){o.preventDefault(),m(),r(),e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide(),e("#moove_gdpr_save_popup_settings_button").show()),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close(),void 0!==moove_frontend_gdpr_scripts.gdpr_scor&&"false"===moove_frontend_gdpr_scripts.gdpr_scor||(g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b),setTimeout(function(){g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b)},500)),c("reject-btn")});var k=!1,x=e(".moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main").first(),w=e(".moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main").first(),T=0,S=-1,C=!1;e(document).on("keydown",function(o){if(e("body").hasClass("moove_gdpr_overflow")&&e(".moove-gdpr-modal-content").hasClass("moove_gdpr_modal_theme_v1")){if(38==o.keyCode){o.preventDefault();var t=e("#moove-gdpr-menu li.menu-item-selected"),r=t.prev();0===r.length&&(r=e("#moove-gdpr-menu li").last()),r.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}if(40==o.keyCode||9==o.keyCode)if(o.preventDefault(),C){var t=e("#moove-gdpr-menu li.menu-item-selected"),r=t.prev();0===r.length&&(r=e("#moove-gdpr-menu li").last()),r.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}else{var t=e("#moove-gdpr-menu li.menu-item-selected"),n=t.next();0===n.length&&(n=e("#moove-gdpr-menu li").first()),n.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}if(32==o.keyCode){o.preventDefault();e(".moove-gdpr-tab-main:visible").find(".moove-gdpr-status-bar input[type=checkbox]").trigger("click")}13==o.keyCode&&(o.preventDefault(),e(".moove-gdpr-modal-save-settings").trigger("click"))}if(e("body").hasClass("moove_gdpr_overflow")&&e(".moove-gdpr-modal-content").hasClass("moove_gdpr_modal_theme_v2")){if(38==o.keyCode){o.preventDefault();var t=e("#moove-gdpr-menu li.menu-item-selected"),r=t.prev();0===r.length&&(r=e("#moove-gdpr-menu li").last()),r.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}if(40==o.keyCode){o.preventDefault();var t=e("#moove-gdpr-menu li.menu-item-selected"),n=t.next();0===n.length&&(n=e("#moove-gdpr-menu li").first()),n.find(".moove-gdpr-tab-nav:visible").trigger("click"),e(".moove-gdpr-tab-main:visible").trigger("focus")}if(32==o.keyCode){o.preventDefault();e("#moove_gdpr_cookie_modal").find(".focus-g").trigger("click")}if(9==o.keyCode){o.preventDefault();var i=e("#moove_gdpr_cookie_modal .cookie-switch, #moove_gdpr_cookie_modal .mgbutton, #moove_gdpr_cookie_modal a:not(.moove-gdpr-branding), #moove_gdpr_cookie_modal .moove-gdpr-modal-close");if(i.length>0){var s=!1;if(T<i.length?(C?T--:T++,s=i[T],e(s).is(":visible")||(C?T--:T++,s=i[T])):(T=0,s=i[T]),e("#moove_gdpr_cookie_modal .focus-g").removeClass("focus-g"),e(s).addClass("focus-g").trigger("focus"),e(s).length>0)try{e(s)[0].scrollIntoViewIfNeeded()}catch(e){console.warn(e)}}else{e(".cookie-switch").removeClass("focus-g");var n=x.next();if(x=n,0===n.length&&(n=w,x=w),n.find(".cookie-switch").trigger("focus").addClass("focus-g"),n.find(".cookie-switch").length>0)try{n.find(".cookie-switch")[0].scrollIntoViewIfNeeded()}catch(e){console.warn(e)}}}13==o.keyCode&&(e("#moove_gdpr_cookie_modal .focus-g").length>0&&(e("#moove_gdpr_cookie_modal .focus-g").hasClass("mgbutton")||e("#moove_gdpr_cookie_modal .focus-g").attr("href"))?e("#moove_gdpr_cookie_modal .focus-g").attr("href")?e("#moove_gdpr_cookie_modal .focus-g").trigger("click"):(o.preventDefault(),e("#moove_gdpr_cookie_modal .focus-g").trigger("click")):(o.preventDefault(),e(".moove-gdpr-modal-save-settings").trigger("click")))}}),e(document).on("keyup",function(e){16==e.keyCode&&(C=!1)}),e(document).on("keydown",function(o){if(16==o.keyCode&&(C=!0),e("body").hasClass("gdpr-infobar-visible")&&!e("body").hasClass("moove_gdpr_overflow")){if(9==o.keyCode){var t=e("#moove_gdpr_cookie_info_bar button:visible, #moove_gdpr_cookie_info_bar .change-settings-button");if(t.length>0&&S<t.length){var r=!1;if(o.preventDefault(),S<t.length&&(C?S--:S++,r=t[S]),e("#moove_gdpr_cookie_info_bar .focus-g").removeClass("focus-g"),e(r).addClass("focus-g").trigger("focus"),e(r).length>0)try{e(r)[0].scrollIntoViewIfNeeded()}catch(e){console.warn(e)}}else S>=t.length&&e("#moove_gdpr_cookie_info_bar .focus-g").removeClass("focus-g"),e("body").hasClass("gdpr-infobar-visible")&&e("#moove_gdpr_cookie_info_bar").hasClass("gdpr-full-screen-infobar")&&(S=-1,o.preventDefault())}13==o.keyCode&&e("#moove_gdpr_cookie_info_bar .focus-g").length>0&&(o.preventDefault(),e("#moove_gdpr_cookie_info_bar .focus-g").trigger("click"))}}),e.fn.moove_gdpr_read_cookies=function(e){var o=f("moove_gdpr_popup"),t={};return t.strict="0",t.thirdparty="0",t.advanced="0",o&&(o=JSON.parse(o),t.strict=parseInt(o.strict),t.thirdparty=parseInt(o.thirdparty),t.advanced=parseInt(o.advanced)),t};var I=s(),N=!1,O=!1,j="",D=!1;e(document).on("click","#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn",function(o){if(o.preventDefault(),void 0!==moove_frontend_gdpr_scripts.close_btn_action){var t=parseInt(moove_frontend_gdpr_scripts.close_btn_action);1===t&&(_(),e("#moove_gdpr_save_popup_settings_button").show(),"undefined"!=typeof sessionStorage&&sessionStorage.setItem("gdpr_infobar_hidden",1)),2===t&&(m(),r(),e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide(),e("#moove_gdpr_save_popup_settings_button").show()),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close(),void 0!==moove_frontend_gdpr_scripts.gdpr_scor&&"false"===moove_frontend_gdpr_scripts.gdpr_scor||(g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b),setTimeout(function(){g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b)},500)),c("reject-btn")),3===t&&d("enable_all close-btn")}else _(),e("#moove_gdpr_save_popup_settings_button").show(),"undefined"!=typeof sessionStorage&&sessionStorage.setItem("gdpr_infobar_hidden",1)}),e.fn.moove_gdpr_save_cookie=function(o){var t=f("moove_gdpr_popup"),i=t,s=e(window).scrollTop();if(!t){if(o.thirdParty)var d="1";else var d="0";if(o.advanced)var c="1";else var c="0";if(o.scrollEnable){var _=o.scrollEnable;e(window).scroll(function(){!O&&e(this).scrollTop()-s>_&&("undefined"===o.thirdparty&&"undefined"===o.advanced||(g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:d,advanced:c}),b),t=JSON.parse(t),p(t)))})}else"undefined"===o.thirdparty&&"undefined"===o.advanced||(g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:d,advanced:c}),b),t=JSON.parse(t),p(t));if(t=f("moove_gdpr_popup"))if(t=JSON.parse(t),n("script_inject",t),O=!0,void 0!==moove_frontend_gdpr_scripts.ifbc?("strict"===moove_frontend_gdpr_scripts.ifbc&&t&&1===parseInt(t.strict)&&a(),"thirdparty"===moove_frontend_gdpr_scripts.ifbc&&t&&1===parseInt(t.thirdparty)&&a(),"advanced"===moove_frontend_gdpr_scripts.ifbc&&t&&1===parseInt(t.advanced)&&a()):1===parseInt(t.strict)&&a(),void 0!==moove_frontend_gdpr_scripts.scripts_defined)try{var l=JSON.parse(moove_frontend_gdpr_scripts.scripts_defined);if(1===parseInt(t.strict))1===parseInt(t.thirdparty)&&void 0===y.thirdparty&&(l.thirdparty.header&&postscribe(document.head,l.thirdparty.header),l.thirdparty.body&&e(l.thirdparty.body).prependTo(document.body),l.thirdparty.footer&&postscribe(document.body,l.thirdparty.footer),y.thirdparty=!0),1===parseInt(t.advanced)&&void 0===y.advanced&&(l.advanced.header&&postscribe(document.head,l.advanced.header),l.advanced.body&&e(l.advanced.body).prependTo(document.body),l.advanced.footer&&postscribe(document.body,l.advanced.footer),y.advanced=!0);else{var t=f("moove_gdpr_popup");t&&(m(),r())}}catch(e){console.error(e)}else if(void 0===y.thirdparty||void 0===y.advanced){1===t.thirdparty&&(y.thirdparty=!0),1===t.advanced&&(y.advanced=!0);var u=void 0!==moove_frontend_gdpr_scripts.wp_lang?moove_frontend_gdpr_scripts.wp_lang:"";0===parseInt(t.thirdparty)&&0===parseInt(t.advanced)&&m(),e.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_get_scripts",strict:t.strict,thirdparty:t.thirdparty,advanced:t.advanced,wp_lang:u},function(o){N=i,n("script_inject",t);var r=JSON.parse(o);r.header&&postscribe(document.head,r.header),r.body&&e(r.body).prependTo(document.body),r.footer&&postscribe(document.body,r.footer)})}}},function(){var t=(location.pathname,e(window).scrollTop());e("#moove_gdpr_save_popup_settings_button").show();var r=moove_frontend_gdpr_scripts.enabled_default.third_party,n=moove_frontend_gdpr_scripts.enabled_default.advanced;if(void 0!==moove_frontend_gdpr_scripts.enable_on_scroll&&"true"===moove_frontend_gdpr_scripts.enable_on_scroll&&1!==parseInt(r)&&1!==parseInt(n)&&(r=1,n=1),document.cookie.indexOf("moove_gdpr_popup")>=0||1==r||1==n){var i=f("moove_gdpr_popup");if(i){var a=s();"0"==a.strict&&"0"==a.advanced&&"0"==a.thirdparty&&(m(),l())}else{var d=!1;if("undefined"!=typeof sessionStorage&&(d=sessionStorage.getItem("gdpr_session")),void 0!==moove_frontend_gdpr_scripts.enable_on_scroll&&"true"===moove_frontend_gdpr_scripts.enable_on_scroll){if(d)try{p(JSON.parse(d)),O=!0,o("dbg - inject - 1"),u(d),g("moove_gdpr_popup",d,b),_()}catch(e){}else if((!O&&1==moove_frontend_gdpr_scripts.enabled_default.third_party||!O&&1==moove_frontend_gdpr_scripts.enabled_default.advanced)&&(i={strict:1,thirdparty:r,advanced:n},p(i),i=JSON.stringify(i),k=!0,l(),o("dbg - default scroll inject")),void 0!==moove_frontend_gdpr_scripts.gdpr_aos_hide&&("1"===moove_frontend_gdpr_scripts.gdpr_aos_hide||"true"===moove_frontend_gdpr_scripts.gdpr_aos_hide||"object"==typeof moove_frontend_gdpr_scripts.gdpr_aos_hide&&moove_frontend_gdpr_scripts.gdpr_aos_hide.includes("1"))&&(o("dbg - enable on scroll - enter"),e(window).scroll(function(){if((!O||k)&&e(this).scrollTop()-t>200){i={strict:1,thirdparty:r,advanced:n},f("moove_gdpr_popup")||"undefined"!=typeof sessionStorage&&((d=sessionStorage.getItem("gdpr_session"))||(sessionStorage.setItem("gdpr_session",JSON.stringify(i)),d=sessionStorage.getItem("gdpr_session")));try{p(i),i=JSON.stringify(i),l(),O=!0,o("dbg - inject - 2 - accept on scroll"),k||u(i),k=!1,g("moove_gdpr_popup",i,b),_(),c("check reload on scroll"),e("#moove_gdpr_save_popup_settings_button").show()}catch(e){}}})),void 0!==moove_frontend_gdpr_scripts.gdpr_aos_hide&&("2"===moove_frontend_gdpr_scripts.gdpr_aos_hide||"object"==typeof moove_frontend_gdpr_scripts.gdpr_aos_hide&&moove_frontend_gdpr_scripts.gdpr_aos_hide.includes("2"))){var v=30;if(void 0!==moove_frontend_gdpr_scripts.gdpr_aos_hide_seconds)var v=parseInt(moove_frontend_gdpr_scripts.gdpr_aos_hide_seconds);o("dbg - hidetimer - enter, seconds: "+v),setTimeout(function(){if(o("dbg - hidetimer - is_created: "+O),!O){i={strict:1,thirdparty:r,advanced:n};var t=f("moove_gdpr_popup");o("dbg - hidetimer - cookies_stored: "+t),t||"undefined"!=typeof sessionStorage&&((d=sessionStorage.getItem("gdpr_session"))||(sessionStorage.setItem("gdpr_session",JSON.stringify(i)),d=sessionStorage.getItem("gdpr_session")));try{p(i),i=JSON.stringify(i),l(),O=!0,o("dbg - inject - 2a"),u(i),g("moove_gdpr_popup",i,b),c("check reload hidetimer")}catch(e){}}_(),e("#moove_gdpr_save_popup_settings_button").show()},1e3*v)}}else i={strict:1,thirdparty:r,advanced:n},p(i),i=JSON.stringify(i),l()}o("dbg - inject - 3"),u(i)}else l()}(),e(document).on("click",'[data-href*="#moove_gdpr_cookie_modal"],[href*="#moove_gdpr_cookie_modal"]',function(o){o.preventDefault(),e("#moove_gdpr_cookie_modal").length>0&&(D=!0,j=gdpr_lightbox("#moove_gdpr_cookie_modal"),e(".gdpr_lightbox").addClass("moove_gdpr_cookie_modal_open"),e(document).moove_gdpr_lightbox_open(),n("opened_modal_from_link",""))}),e(document).on("click",'[data-href*="#gdpr_cookie_modal"],[href*="#gdpr_cookie_modal"]',function(o){o.preventDefault(),e("#moove_gdpr_cookie_modal").length>0&&(D=!0,j=gdpr_lightbox("#moove_gdpr_cookie_modal"),e(".gdpr_lightbox").addClass("moove_gdpr_cookie_modal_open"),e(document).moove_gdpr_lightbox_open(),n("opened_modal_from_link",""))}),e(document).on("click","#moove_gdpr_cookie_info_bar .moove-gdpr-close-modal-button a, #moove_gdpr_cookie_info_bar .moove-gdpr-close-modal-button button",function(e){e.preventDefault()}),e(document).on("click",".moove-gdpr-modal-close",function(o){o.preventDefault(),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close()}),e(document).on("click","#moove-gdpr-menu .moove-gdpr-tab-nav",function(o){o.preventDefault(),o.stopPropagation(),e("#moove-gdpr-menu li").removeClass("menu-item-selected"),e(this).parent().addClass("menu-item-selected"),e(".moove-gdpr-tab-content .moove-gdpr-tab-main").hide(),e(e(this).attr("href")).show(),e(e(this).attr("data-href")).show(),n("clicked_to_tab",e(this).attr("data-href"))}),e(document).on("gdpr_lightbox:close",function(o,t){e(document).moove_gdpr_lightbox_close()}),e.fn.moove_gdpr_lightbox_close=function(o){if(D&&(e("body").removeClass("moove_gdpr_overflow"),D=!1),void 0!==moove_frontend_gdpr_scripts.close_cs_action){var t=parseInt(moove_frontend_gdpr_scripts.close_cs_action);2===t&&(m(),r(),e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide(),e("#moove_gdpr_save_popup_settings_button").show()),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),void 0!==moove_frontend_gdpr_scripts.gdpr_scor&&"false"===moove_frontend_gdpr_scripts.gdpr_scor||(g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b),setTimeout(function(){g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b)},500)),c("reject-btn")),3===t&&d("enable_all close-btn")}},e.fn.moove_gdpr_lightbox_open=function(o){if(D){e("body").addClass("moove_gdpr_overflow");var t=f("moove_gdpr_popup");"none"===moove_frontend_gdpr_scripts.show_icons&&e("body").addClass("gdpr-no-icons"),e(".moove-gdpr-status-bar input[type=checkbox]").each(function(){e(this).is(":checked")?e(this).closest(".moove-gdpr-tab-main").find(".moove-gdpr-strict-warning-message").slideUp():e(this).closest(".moove-gdpr-tab-main").find(".moove-gdpr-strict-warning-message").slideDown()}),t?(t=JSON.parse(t),p(t)):e("#moove_gdpr_strict_cookies").is(":checked")||(e("#advanced-cookies .gdpr-cc-form-fieldset").addClass("fl-disabled"),e("#third_party_cookies .gdpr-cc-form-fieldset").addClass("fl-disabled")),void 0!==moove_frontend_gdpr_scripts.hide_save_btn&&"true"===moove_frontend_gdpr_scripts.hide_save_btn?e(".moove-gdpr-modal-save-settings").removeClass("button-visible").hide():e(".moove-gdpr-modal-save-settings").addClass("button-visible").show(),v()}},e(document).on("gdpr_lightbox:open",function(o,t){e(document).moove_gdpr_lightbox_open()}),e(document).on("click",".fl-disabled",function(o){e("#moove_gdpr_cookie_modal .moove-gdpr-modal-content").is(".moove_gdpr_modal_theme_v2")?e("#moove_gdpr_strict_cookies").length>0&&(e("#moove_gdpr_strict_cookies").trigger("click"),e(this).trigger("click")):e(this).closest(".moove-gdpr-tab-main-content").find(".moove-gdpr-strict-secondary-warning-message").slideDown()}),e(document).on("change",".moove-gdpr-status-bar input[type=checkbox]",function(o){e(".moove-gdpr-modal-save-settings").addClass("button-visible").show();var t=e(this).closest(".moove-gdpr-tab-main").attr("id");e(this).closest(".moove-gdpr-status-bar").toggleClass("checkbox-selected"),e(this).closest(".moove-gdpr-tab-main").toggleClass("checkbox-selected"),e("#moove-gdpr-menu .menu-item-"+t).toggleClass("menu-item-off"),e(this).is(":checked")?e(this).closest(".moove-gdpr-tab-main").find(".moove-gdpr-strict-warning-message").slideUp():e(this).closest(".moove-gdpr-tab-main").find(".moove-gdpr-strict-warning-message").slideDown(),e(this).is("#moove_gdpr_strict_cookies")&&(e(this).is(":checked")?(e("#third_party_cookies fieldset, #third_party_cookies .gdpr-cc-form-fieldset").removeClass("fl-disabled"),e("#moove_gdpr_performance_cookies").prop("disabled",!1),e("#third_party_cookies .moove-gdpr-strict-secondary-warning-message").slideUp(),e("#advanced-cookies fieldset, #advanced-cookies .gdpr-cc-form-fieldset").removeClass("fl-disabled"),e("#advanced-cookies .moove-gdpr-strict-secondary-warning-message").slideUp(),e("#moove_gdpr_advanced_cookies").prop("disabled",!1)):(e(".gdpr_cookie_settings_shortcode_content").find("input").each(function(){e(this).prop("checked",!1)}),e("#third_party_cookies fieldset, #third_party_cookies .gdpr-cc-form-fieldset").addClass("fl-disabled").closest(".moove-gdpr-status-bar").removeClass("checkbox-selected"),e("#moove_gdpr_performance_cookies").prop("disabled",!0).prop("checked",!1),e("#advanced-cookies fieldset, #advanced-cookies .gdpr-cc-form-fieldset").addClass("fl-disabled").closest(".moove-gdpr-status-bar").removeClass("checkbox-selected"),e("#moove_gdpr_advanced_cookies").prop("disabled",!0).prop("checked",!1))),e('input[data-name="'+e(this).attr("name")+'"]').prop("checked",e(this).is(":checked")),v()}),e(document).on("click",".gdpr_cookie_settings_shortcode_content a.gdpr-shr-save-settings",function(o){o.preventDefault(),h(),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close(),c("modal-save-settings")}),e(document).on("change",".gdpr_cookie_settings_shortcode_content input[type=checkbox]",function(o){var t=e(this).attr("data-name"),r=e("#"+t);e(this).is(":checked")?(e('input[data-name="'+t+'"]').prop("checked",!0),"moove_gdpr_strict_cookies"!==e(this).attr("data-name")&&(e(this).closest(".gdpr_cookie_settings_shortcode_content").find('input[data-name="moove_gdpr_strict_cookies"]').is(":checked")||(e('input[data-name="'+t+'"]').prop("checked",!1),e('.gdpr_cookie_settings_shortcode_content input[data-name="moove_gdpr_strict_cookies"]').closest(".gdpr-shr-switch").css("transform","scale(1.2)"),setTimeout(function(){e('.gdpr_cookie_settings_shortcode_content input[data-name="moove_gdpr_strict_cookies"]').closest(".gdpr-shr-switch").css("transform","scale(1)")},300)))):(e('input[data-name="'+t+'"]').prop("checked",e(this).is(":checked")),"moove_gdpr_strict_cookies"===e(this).attr("data-name")&&e(".gdpr_cookie_settings_shortcode_content").find('input[type="checkbox"]').prop("checked",!1)),r.trigger("click")}),e(document).on("click",'.moove-gdpr-modal-allow-all, [href*="#gdpr-accept-cookies"]',function(o){o.preventDefault(),e("#moove_gdpr_cookie_modal").find("input[type=checkbox]").each(function(){var o=e(this);o.is(":checked")||o.trigger("click")}),d("enable_all enable-all-button"),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),_(),h(),e(document).moove_gdpr_lightbox_close()}),e(document).on("click",".moove-gdpr-infobar-allow-all",function(e){e.preventDefault(),d("enable_all allow-btn")}),e(document).on("click",".moove-gdpr-modal-save-settings",function(o){o.preventDefault(),h(),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),e(document).moove_gdpr_lightbox_close(),c("modal-save-settings")});if(window.location.hash){var E=window.location.hash.substring(1);E=E.replace(/\/$/,""),"moove_gdpr_cookie_modal"!==E&&"gdpr_cookie_modal"!==E||(D=!0,n("opened_modal_from_link",""),setTimeout(function(){e("#moove_gdpr_cookie_modal").length>0&&(j=gdpr_lightbox("#moove_gdpr_cookie_modal"),e(".gdpr_lightbox").addClass("moove_gdpr_cookie_modal_open"),e(document).moove_gdpr_lightbox_open())},500)),"gdpr-accept-cookies"===E&&(e("#moove_gdpr_cookie_modal").find("input[type=checkbox]").each(function(){var o=e(this);o.is(":checked")||o.trigger("click")}),d("enable_all enable-all-button"),e(".gdpr_lightbox .gdpr_lightbox-close").trigger("click"),_(),h(),e(document).moove_gdpr_lightbox_close()),"gdpr-reject-cookies"===E&&(m(),r(),e("#moove_gdpr_cookie_info_bar").length>0&&(e("#moove_gdpr_cookie_info_bar").addClass("moove-gdpr-info-bar-hidden"),e("body").removeClass("gdpr-infobar-visible"),e("#moove_gdpr_cookie_info_bar").hide(),e("#moove_gdpr_save_popup_settings_button").show()),l(),g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b),setTimeout(function(){g("moove_gdpr_popup",JSON.stringify({strict:"1",thirdparty:"0",advanced:"0"}),b)},500))}},finalize:function(){}}},t={fire:function(e,t,r){var n,i=o;t=void 0===t?"init":t,n=""!==e,n=n&&i[e],(n=n&&"function"==typeof i[e][t])&&i[e][t](r)},loadEvents:function(){var o=!1;if(void 0!==moove_frontend_gdpr_scripts.geo_location&&"true"===moove_frontend_gdpr_scripts.geo_location)jQuery.post(moove_frontend_gdpr_scripts.ajaxurl,{action:"moove_gdpr_localize_scripts"},function(e){var r=JSON.parse(e);void 0!==r.display_cookie_banner&&(moove_frontend_gdpr_scripts.display_cookie_banner=r.display_cookie_banner),void 0!==r.enabled_default&&(moove_frontend_gdpr_scripts.enabled_default=r.enabled_default),o||(o=!0,t.fire("common"))});else{var r=void 0!==typeof moove_frontend_gdpr_scripts.script_delay&&parseInt(moove_frontend_gdpr_scripts.script_delay)?parseInt(moove_frontend_gdpr_scripts.script_delay):0;r>0?setTimeout(function(){t.fire("common")},r):t.fire("common")}e.each(document.body.className.replace(/-/g,"_").split(/\s+/),function(e,o){t.fire(o),t.fire(o,"finalize")}),t.fire("common","finalize")}};e(document).ready(t.loadEvents)}(jQuery);
dist/styles/admin.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-family:Nunito;src:url(../fonts/nunito-v8-latin-regular.eot);src:url(../fonts/nunito-v8-latin-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/nunito-v8-latin-regular.woff2) format("woff2"),url(../fonts/nunito-v8-latin-regular.woff) format("woff"),url(../fonts/nunito-v8-latin-regular.ttf) format("truetype"),url(../fonts/nunito-v8-latin-regular.svg#svgFontName) format("svg");font-style:normal;font-weight:400;font-display:swap}@font-face{font-family:Nunito;src:url(../fonts/nunito-v8-latin-700.eot);src:url(../fonts/nunito-v8-latin-700.eot?#iefix) format("embedded-opentype"),url(../fonts/nunito-v8-latin-700.woff2) format("woff2"),url(../fonts/nunito-v8-latin-700.woff) format("woff"),url(../fonts/nunito-v8-latin-700.ttf) format("truetype"),url(../fonts/nunito-v8-latin-700.svg#svgFontName) format("svg");font-style:normal;font-weight:700;font-display:swap}.moove-gdpr-donation-box-wrapper{width:auto;margin:10px 20px 0 2px}.moove-gdpr-donation-box-wrapper .moove-gdpr-donate-form{float:left;margin-right:20px}.moove-gdpr-donation-box-wrapper .moove-donation-box{padding-bottom:20px}.gdpr_cb_bhv_desc{display:block;font-size:12px;line-height:1.2;margin-top:2px;font-style:italic}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon{background-color:#f79322;color:#fff}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon.nav-tab-active,#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon:hover{color:#f79322;background-color:#fff}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon.nav-tab-active:after{background-color:#fff}fieldset.gdpr-close-options label{font-weight:500}fieldset.gdpr-close-options label span{font-weight:300}#moove_form_checker_wrap .gdpr-faq-accordion-content .cm-s-default .cm-string-2{color:inherit}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap>td{padding:0}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons{width:100%;counter-reset:a}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons table{width:100%}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons p{font-size:12px}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons .gdpr-sortable-button{border:1px solid #e5e5e5;padding:0 20px 20px 60px;position:relative;counter-increment:a;margin:10px 0;background-color:#fff}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons .gdpr-sortable-button:before{position:absolute;content:counter(a);top:1px;left:1px;width:30px;height:calc(100% - 2px);background-color:#f5f5f5;color:#23282d;text-align:center;line-height:30px;border:none;padding:0;box-shadow:none;transition:all .4s ease;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;border-right:1px solid #e5e5e5;font-weight:700;font-size:14px}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons td{padding:0}#moove_form_checker_wrap>.notice.is-dismissible:not(.gdpr-cc-notice){display:none!important}.gdpr-tab-section-cnt .nav-tab-wrapper a.nav-tab-dark{background-color:#232323;color:#fff}.gdpr-tab-section-cnt .nav-tab-wrapper a.nav-tab-dark:hover{background-color:#fff;color:#555}.gdpr-tab-section-cnt .nav-tab-wrapper a.nav-tab-dark.nav-tab-active{background-color:#fff}.gdpr-admin-popup{position:fixed;top:0;left:0;width:100%;height:100%;z-index:999}.gdpr-admin-popup,.gdpr-admin-popup .gdpr-popup-close{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.gdpr-admin-popup .gdpr-popup-close{position:absolute;top:-15px;right:-15px;width:30px;height:30px;text-decoration:none;border-radius:50%;background-color:#f79322;color:#fff;transition:all .4 ease}.gdpr-admin-popup .gdpr-popup-close:hover{background-color:#232323}.gdpr-admin-popup .gdpr-popup-overlay{background-color:rgba(0,0,0,.8);position:absolute;top:0;left:0;bottom:0;right:0;z-index:15}.gdpr-admin-popup .gdpr-popup-content{width:420px;max-width:70vw;background-color:#fff;padding:30px;border-radius:8px;text-align:center;position:relative;z-index:35}.gdpr-admin-popup .gdpr-popup-content p{font-size:14px;line-height:20px;margin-top:0}.gdpr-admin-popup .gdpr-popup-content h4{font-size:18px;line-height:28px;margin-top:0}#moove-gdpr-setting-error-settings_updated .wrap{width:100%;margin:0}#moove-gdpr-setting-error-settings_updated .wrap p{padding-left:0;margin-left:0}.gdpr-video-tutorial-content{position:relative;padding-bottom:56.25%;padding-top:25px;height:0}.gdpr_admin_link{text-decoration:none;color:#f79322;transition:all .4s ease}.gdpr_admin_link.gdpr_premium_buy_link{font-weight:600}.gdpr_admin_link:hover{text-decoration:underline;color:#f79322}.gdpr_license_info{font-style:italic}#moove_gdpr_license_settings .wrap,#moove_gdpr_license_settings pre{width:100%;white-space:normal;word-break:break-all;margin:0}#moove_gdpr_license_settings .wrap span,#moove_gdpr_license_settings pre span{font-size:13px}#moove_gdpr_license_settings .wrap p,#moove_gdpr_license_settings pre p{margin-bottom:0}#moove_gdpr_license_settings .gdpr_license_log{padding:0}.gdpr-video-tutorial-content iframe{width:100%;height:auto;position:absolute;top:0;left:0;height:100%}.gdpr-faq-accordion-content textarea{width:100%;height:auto;height:200px}.gdpr-cookie-alert{background-color:#f79322;border:1px solid #f79322;color:#fff;box-shadow:0 3px 51px 0 rgba(0,0,0,.05);padding:10px;display:inline-block;width:auto;box-sizing:border-box;margin:10px 0 20px;border-radius:3px;padding-right:50px;position:relative}.gdpr-cookie-alert.gdpr-cookie-alert-dark{background-color:#23282d;border-color:#23282d;display:block;width:100%}.gdpr-cookie-alert.gdpr-cookie-alert-dark span.gdpr-dismiss,.gdpr-cookie-alert.gdpr-cookie-alert-dark span.gdpr-dismiss-update{color:#fff;top:6px}.gdpr-cookie-alert.gdpr-cookie-alert-dark span.gdpr-dismiss-update:hover,.gdpr-cookie-alert.gdpr-cookie-alert-dark span.gdpr-dismiss:hover{color:#f79322}.gdpr-cookie-alert.gdpr-cookie-update-alert{display:block;width:100%;background-color:#fff;border:1px solid #ccc;box-shadow:0 3px 51px 0 rgba(0,0,0,.05);color:#23282d}.gdpr-cookie-alert.gdpr-cookie-update-alert a{color:#f79322}.gdpr-cookie-alert.gdpr-cookie-update-alert span.gdpr-dismiss,.gdpr-cookie-alert.gdpr-cookie-update-alert span.gdpr-dismiss-update{color:#23282d}.gdpr-cookie-alert.gdpr-cookie-update-alert span.gdpr-dismiss-update:hover,.gdpr-cookie-alert.gdpr-cookie-update-alert span.gdpr-dismiss:hover{color:#f79322}.gdpr-cookie-alert span.gdpr-dismiss,.gdpr-cookie-alert span.gdpr-dismiss-update{position:absolute;top:4px;right:8px;font-size:25px;font-weight:400;line-height:1;color:#fff;cursor:pointer;transition:all .4s ease}.gdpr-cookie-alert span.gdpr-dismiss-update:hover,.gdpr-cookie-alert span.gdpr-dismiss:hover{color:#23282d}.gdpr-cookie-alert h4{margin:0 0 10px;font-size:16px}.gdpr-cookie-alert p{margin:0;font-size:13px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gdpr-cookie-alert p strong{padding:2px 3px;display:inline-block;background-color:#fff;color:#23282d;margin:0 5px}.gdpr-disabled{pointer-events:none;cursor:default;opacity:.5}.gdpr-script-tabs-main-cnt{position:relative;overflow:hidden}body.toplevel_page_moove-gdpr{background-color:#fff}#moove_form_checker_wrap button.button-primary.button-reset-settings{float:right;background-color:#262c33;border-color:#737373;opacity:.5}#moove_form_checker_wrap button.button-primary.button-reset-settings:hover{opacity:1}#moove_form_checker_wrap .moove-gdpr-form-container{min-height:895px}.gdpr_license_log_alert{padding:0}.gdpr_license_log_alert .wrap>.update-messages,.gdpr_license_log_alert .wrap>h1,.gdpr_license_log_alert .wrap>p{display:none}.gdpr_license_log_alert .gdpr-admin-alert{position:relative;padding-right:40px;margin:20px 0}.gdpr_license_log_alert .gdpr-admin-alert .gdpr-alert-content{padding-right:30px}.gdpr_license_log_alert .gdpr-admin-alert .dashicons{position:absolute;top:5px;right:5px;width:30px;height:30px;border-radius:50%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;color:rgba(5,150,24,.5);font-size:34px!important;background-color:#fff}.gdpr_license_log_alert .gdpr-admin-alert a{color:inherit;text-decoration:underline;margin-right:5px;font-weight:700}.gdpr_license_log_alert .gdpr-admin-alert a:hover{color:#262c33;text-decoration:underline}.gdpr_license_log_alert .gdpr-admin-alert.gdpr-admin-alert-success{background-color:rgba(5,150,24,.1);color:#059618;padding:5px 10px;border-radius:15px;border:2px solid rgba(5,150,24,.5)}.gdpr_license_log_alert .gdpr-admin-alert.gdpr-admin-alert-error{background-color:rgba(225,0,0,.1);color:#e10000;padding:5px 10px;border-radius:15px;border:2px solid rgba(225,0,0,.5)}.gdpr_license_log_alert .gdpr-admin-alert.gdpr-admin-alert-error .dashicons{color:rgba(225,0,0,.5)}.gdpr_license_log_alert .gdpr-admin-alert p{margin:5px 0}.gdpr-plugin-star-rating{display:inline-block;color:#ffb900;position:relative;top:3px}.gdpr-plugin-star-rating svg,.gdpr-plugin-star-rating svg:hover{fill:#ffb900}.gdpr-plugin-star-rating svg:hover~svg{fill:none}.gdpr-help-content-cnt .gdpr-help-content-block{margin-top:20px}.gdpr-help-content-cnt .gdpr-faq-toggle{box-shadow:0 3px 51px 0 rgba(0,0,0,.05);border:1px solid #ccc;margin-bottom:20px}.gdpr-help-content-cnt .gdpr-faq-toggle code{display:block;white-space:pre-wrap}.gdpr-help-content-cnt .gdpr-faq-toggle ul li{position:relative;padding-left:15px}.gdpr-help-content-cnt .gdpr-faq-toggle ul li:before{content:"";position:absolute;top:7px;left:0;width:5px;height:5px;border-radius:50%;background-color:#f79322}.gdpr-help-content-cnt .gdpr-faq-toggle.gdpr-faq-open .gdpr-faq-accordion-header h3{background-color:#f79322;color:#fff}.gdpr-help-content-cnt .gdpr-faq-toggle.gdpr-faq-open .gdpr-faq-accordion-header h3:after{content:"-"}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-header h3{margin:0;position:relative;padding:15px 20px;padding-right:60px;cursor:pointer;transition:all .3s ease;font-size:16px!important}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-header h3:hover{background-color:#f79322;color:#fff}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-header h3:after{content:"+";width:50px;position:absolute;top:0;right:0;border-left:1px solid #ccc;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;font-size:26px;text-align:center;bottom:0;-ms-flex-pack:center;justify-content:center}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-content{padding:15px 60px 15px 20px;border-top:1px solid #ccc}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-content code{line-height:1.8;overflow:auto;display:block}.gdpr-disable-posts-nav{list-style-type:none;padding:5px 10px;margin:20px 0;background-color:#fff;box-shadow:0 3px 51px 0 rgba(0,0,0,.05);border:1px solid #ccc}.gdpr-disable-posts-nav li:first-child a{padding-left:0}.gdpr-disable-posts-nav li:last-child a{padding-right:0}.gdpr-disable-posts-nav li:after{content:"|";display:inline-block;position:absolute;right:-2px;top:10px}.gdpr-disable-posts-nav li:first-child:after,.gdpr-disable-posts-nav li:last-child:after{display:none}.gdpr-disable-posts-nav li{list-style:none;display:inline-block;float:left;position:relative;margin:0}.gdpr-disable-posts-nav li a.active{color:#f79322}.gdpr-disable-posts-nav li a,.gdpr-disable-posts-nav li strong{display:block;padding:10px;outline:none;box-shadow:none}.gdpr-disable-posts-nav li strong{padding-left:0}body.toplevel_page_moove-gdpr #wpcontent{background-color:#fff}.gdpr-script-tab-content{position:relative;overflow:hidden}.gdpr-script-tab-content .gdpr-tab-code-section{transition:all .8s ease;top:0;right:0;left:0}.gdpr-script-tab-content .gdpr-tab-code-section:not(.gdpr-active){height:0;opacity:0;margin:0;position:absolute;top:100%;visibility:hidden}.gdpr-tab-code-section-nav ul{list-style-type:none;padding:0;margin:20px 1px 0;display:-ms-flexbox;display:flex}.gdpr-tab-code-section-nav ul li{list-style:none;padding:0;margin:0 -1px;position:relative;border:1px solid #f79322;border-bottom:0;overflow:hidden}.gdpr-tab-code-section-nav ul li:first-child{border-top-left-radius:10px}.gdpr-tab-code-section-nav ul li:last-child{border-top-right-radius:10px}.gdpr-tab-code-section-nav ul li a{background-color:#fff;display:block;padding:8px 20px;text-decoration:none;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:14px;color:#555;transition:all .3s ease;outline:none;box-shadow:none}.gdpr-tab-code-section-nav ul li a:before{content:"\21B3";transform:rotate(90deg);display:inline-block;position:absolute;top:0;left:0;width:0;color:#fff;opacity:0;transition:all .3s ease}.gdpr-tab-code-section-nav ul li a.gdpr-active:before{opacity:1;top:4px;left:10px}.gdpr-tab-code-section-nav ul li a.gdpr-active,.gdpr-tab-code-section-nav ul li a:hover{background-color:#f79322;color:#fff}.gdpr-tab-code-section{background-color:#fff;padding:20px;border:1px solid #f79322;border-bottom-left-radius:10px;border-bottom-right-radius:10px;border-top-right-radius:10px;position:relative;overflow-wrap:hidden}.gdpr-tab-code-section .CodeMirror{font-size:15px;width:100%;height:300px;box-sizing:border-box;background-color:#fff;border:1px solid #ccc}.gdpr-tab-code-section .CodeMirror-gutters{padding-bottom:0;background-color:#f1f1f1}.gdpr-tab-code-section p.description{font-weight:700;font-size:13px}.gdpr-tab-code-section h4{margin:-20px -20px 0;padding:15px 20px;border-bottom:1px solid #ccc}.gdpr-tab-code-section table{width:100%}.gdpr-tab-code-section .gdpr-code{padding:10px;background-color:#f1f1f1}.gdpr-img-responsive{max-width:100%;height:auto}.gdpr-tab-section-cnt{max-width:calc(100% - 380px);display:inline-block;width:100%}.gdpr-tab-section-cnt .regular-text{width:100%}.gdpr-tab-section-cnt .powered-by-label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-bottom:15px}.gdpr-tab-section-cnt .powered-by-label label{white-space:nowrap;margin-right:20px}.gdpr-tab-section-cnt.gdpr-has-premium{max-width:100%}.gdpr-conditional-field:not(.gdpr-conditional-on),.gdpr-tab-section-cnt.gdpr-has-premium+.moove-plugins-info-boxes{display:none}.gdpr-checkbox-toggle{position:relative;display:inline-block;width:160px;height:24px;box-sizing:border-box}.gdpr-checkbox-toggle *{box-sizing:border-box}.gdpr-checkbox-toggle.gdpr-checkbox-inverted input:checked+.gdpr-checkbox-slider{background-color:red}.gdpr-checkbox-toggle.gdpr-checkbox-inverted input:checked+.gdpr-checkbox-slider:after{content:attr(data-disable)}.gdpr-checkbox-toggle.gdpr-checkbox-inverted .gdpr-checkbox-slider{background-color:#2e9935}.gdpr-checkbox-toggle.gdpr-checkbox-inverted .gdpr-checkbox-slider:after{content:attr(data-enable)}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle input:checked+.gdpr-checkbox-slider{background-color:#202020}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle input:checked+.gdpr-checkbox-slider:after{color:#fff}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle .gdpr-checkbox-slider,.gdpr-checkbox-toggle.gdpr-color-scheme-toggle input:checked+.gdpr-checkbox-slider:before{background-color:#fff}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle .gdpr-checkbox-slider:after{color:#202020}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle .gdpr-checkbox-slider:before{background-color:#202020}.gdpr-checkbox-toggle input{opacity:0;width:0;height:0}.gdpr-checkbox-toggle input:checked+.gdpr-checkbox-slider{background-color:#2e9935}.gdpr-checkbox-toggle input:checked+.gdpr-checkbox-slider:after{content:attr(data-enable)}.gdpr-checkbox-toggle input:checked+.gdpr-checkbox-slider:before{transform:translateX(136px)}.gdpr-checkbox-toggle .gdpr-checkbox-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:red;transition:.4s;border-radius:34px;border:1px solid #ddd}.gdpr-checkbox-toggle .gdpr-checkbox-slider:before{position:absolute;content:"";height:20px;width:20px;left:1px;bottom:1px;background-color:#fff;transition:.4s;border-radius:50%}.gdpr-checkbox-toggle .gdpr-checkbox-slider:after{content:attr(data-disable);position:absolute;top:5px;left:0;right:0;color:#fff;font-size:12px;display:block;z-index:4;text-transform:uppercase;text-align:center;font-weight:600;font-family:Helvetica;letter-spacing:.5px}.moove-plugins-info-boxes{display:inline-block;float:right;width:350px;background-color:#fff}.moove-plugins-info-boxes .m-plugin-box{border:1px solid #ccc;margin-bottom:30px;background-color:#fff;border-radius:5px;box-shadow:0 3px 51px 0 rgba(0,0,0,.05)}.moove-plugins-info-boxes .m-plugin-box.m-plugin-box-highlighted{border:2px solid #f79322}.moove-plugins-info-boxes .m-plugin-box.m-plugin-box-highlighted .box-header{background-color:#f79322;border-color:#f79322;color:#fff}.moove-plugins-info-boxes .m-plugin-box.m-plugin-box-support:not(.m-plugin-box-highlighted) .gdpr-review-bnt{background-color:rgba(85,85,85,.5);color:#fff}.moove-plugins-info-boxes .m-plugin-box.m-plugin-box-support:not(.m-plugin-box-highlighted) .gdpr-review-bnt:hover{background-color:#232323;color:#fff}.moove-plugins-info-boxes .m-plugin-box .box-content .gdpr-faq-forum-content p{position:relative;padding-left:15px;line-height:1.3;margin-bottom:10px}.moove-plugins-info-boxes .m-plugin-box .box-content .gdpr-faq-forum-content p .gdpr-chevron-left{color:#f79322;font-size:18px;position:absolute;left:0;top:7px;line-height:0}.moove-plugins-info-boxes .m-plugin-box a:not(.gdpr-review-bnt):not(.plugin-buy-now-btn){color:#f79322;transition:all .3s ease}.moove-plugins-info-boxes .m-plugin-box a:not(.gdpr-review-bnt):not(.plugin-buy-now-btn):hover{color:#23282d}.moove-plugins-info-boxes .m-plugin-box .gdpr-review-bnt{text-decoration:none;outline:none;padding:7px 20px;font-size:12px;font-weight:700;background-color:#f79322;color:#fff;transition:all .3s ease;line-height:18px;border:none;display:inline-block;margin:10px 0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.moove-plugins-info-boxes .m-plugin-box .gdpr-review-bnt:hover{background-color:#262c33}.moove-plugins-info-boxes .m-plugin-box .box-header{padding:10px;border-bottom:1px solid #ccc}.moove-plugins-info-boxes .m-plugin-box .box-header h4{font-size:14px;font-weight:700;margin:0;font-family:Nunito}.moove-plugins-info-boxes .m-plugin-box .box-content{padding:10px}.moove-plugins-info-boxes .m-plugin-box .box-content p{margin-top:5px;margin-bottom:5px}.moove-plugins-info-boxes .m-plugin-box .box-content hr{margin:10px 0}.moove-plugins-info-boxes .m-plugin-box .plugin-rating{display:-ms-flexbox;display:flex;margin:10px 0 20px;-ms-flex-align:center;align-items:center;transform:scale(1.3);width:100%;padding-left:13%}.moove-plugins-info-boxes .m-plugin-box .plugin-rating .plugin-stars{display:inline-block;width:50%}.moove-plugins-info-boxes .m-plugin-box .gdpr-review-container{display:block;text-align:left;margin:0}.moove-plugins-info-boxes .m-plugin-box .plugin-stats{display:-ms-flexbox;display:flex}.moove-plugins-info-boxes .m-plugin-box .plugin-stats *{box-sizing:border-box}.moove-plugins-info-boxes .m-plugin-box .plugin-stats .plugin-download-ainstalls-cnt{display:inline-block;width:calc(100% - 130px);line-height:20px}.moove-plugins-info-boxes .m-plugin-box .plugin-stats .plugin-rating{width:125px;box-sizing:border-box;text-align:right;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:0;margin:0}.moove-plugins-info-boxes .m-plugin-box .plugin-stats .plugin-rating .plugin-stars{width:100px;transform:scale(.8)}.moove-plugins-info-boxes .m-plugin-box .plugin-features{padding-left:20px;margin-top:5px}.moove-plugins-info-boxes .m-plugin-box .plugin-features li{list-style-type:square}.moove-plugins-info-boxes .m-plugin-box .plugin-buy-now-btn{display:block;text-decoration:none;outline:none;box-shadow:none;padding:7px 20px;background-color:#f79322;color:#fff;text-align:center;transition:all .3s ease;margin:15px 0;font-weight:700;font-size:12px}.moove-plugins-info-boxes .m-plugin-box .plugin-buy-now-btn:hover{background-color:#232323}.gdpr-tab-section-cnt{position:relative;overflow:hidden}.gdpr-tab-section-cnt .form-table th{width:250px;max-width:250px}@media (max-width:1280px){.gdpr-tab-section-cnt{max-width:100%;display:block;width:100%}.gdpr-tab-section-cnt .form-table th{width:200px}.moove-plugins-info-boxes{display:inline-block;float:none;width:100%;padding:0;margin:15px 0;background-color:#f1f1f1}}.gdpr-locked-section{padding:0 40px;background-color:#fff;border:1px solid #ccc;display:-ms-flexbox;display:flex;-ms-flex-item-align:center;align-self:center;margin-top:90px;border-radius:5px}.gdpr-locked-section span{display:block;width:100%;transform:translateY(-50px);text-align:center}.gdpr-locked-section h4{font-size:28px;line-height:32px;margin:60px 0 30px;text-align:center}.gdpr-locked-section *{box-sizing:border-box}.gdpr-locked-section i{font-size:30px;line-height:55px;color:#f79322;width:60px;height:50px;background-color:#fff;border:1px solid #ccc;border-bottom:1px solid #fff;border-top-left-radius:100px;border-top-right-radius:100px}.gdpr-locked-section .plugin-buy-now-btn{display:block;text-decoration:none;outline:none;box-shadow:none;padding:7px 20px;background-color:#f79322;color:#fff;text-align:center;transition:all .3s ease;margin:15px auto 0;font-weight:700;font-size:12px;max-width:200px}.gdpr-locked-section .plugin-buy-now-btn:hover{background-color:#232323}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon.gdpr-cc-disabled{background-color:#fff;color:#f79322}.moove-donation-box{position:relative;width:calc(100% - 20px);margin:16px 0;padding:0 15px 10px;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;font-size:13px}.moove-donation-box .notice-dismiss:before{float:left;margin:0 4px -2px 0}.moove-redirect-box{width:100%}.moove-not-visible{opacity:0;visibility:hidden;position:absolute}.moove-gdpr-form-container{min-height:45vh}.moove-gdpr-form-container input[type=radio].on-off{margin:0}.moove-gdpr-form-container input.iris-colorpicker{text-shadow:1px 0 0 #fff,-1px 0 0 #fff,0 1px 0 #fff,0 -1px 0 #fff,1px 1px #fff,-1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff;text-transform:uppercase;outline:none!important;box-shadow:none!important;font-weight:700;font-size:14px;border:none;width:120px;height:30px;margin:0;border-top-left-radius:5px;border-bottom-left-radius:5px}.moove-gdpr-form-container .iris-selectbtn{position:relative;background-color:#fff;display:inline-block;padding:0 5px;text-transform:uppercase;font-size:11px;line-height:30px;font-weight:700;float:right;border-top-right-radius:5px;border-bottom-right-radius:5px;cursor:pointer}.moove-gdpr-form-container .iris-colorpicker-group-cnt{display:inline-block;border:1px solid #ddd;border-radius:5px}.moove-gdpr-form-container .iris-picker{position:absolute}.moove-gdpr-form-container .iris-picker:before{content:"";position:fixed;width:100%;height:100%;top:0;left:0}.moove-gdpr-form-container .iris-picker .iris-picker-inner{z-index:100}.moove-clearfix:after{content:"";clear:both;display:table}.moove_gdpr_company_logo_holder{display:inline-block;padding-bottom:50px;width:130px;height:0;background-position:0;background-repeat:no-repeat;background-size:contain;cursor:pointer}#wp-moove_gdpr_advanced_cookies_tab_content-wrap,#wp-moove_gdpr_cookies_policy_tab_content-wrap,#wp-moove_gdpr_ifb_content-wrap,#wp-moove_gdpr_info_bar_content-wrap,#wp-moove_gdpr_modal_strictly_secondary_notice-wrap,#wp-moove_gdpr_performance_cookies_tab_content-wrap,#wp-moove_gdpr_privacy_overview_tab_content-wrap,#wp-moove_gdpr_strict_necessary_cookies_tab_content-wrap,#wp-moove_gdpr_strictly_necessary_cookies_warning-wrap{max-width:100%}span.separator{display:inline-block;margin-left:10px}.gdpr-cookie-compliance-header-section{padding-left:100px;position:relative;margin:30px 0}.gdpr-cookie-compliance-header-section a{color:#f79322}.gdpr-cookie-compliance-header-section:before{content:"";position:absolute;left:0;top:0;width:100px;height:100px;background-image:url(../images/gdpr-cookie-compliance-icon.png);background-position:0;background-repeat:no-repeat;background-size:contain}.gdpr-cookie-compliance-header-section h2{font-family:Nunito,sans-serif;font-size:30px;font-weight:700;padding-top:25px;margin-bottom:10px}.gdpr-cookie-compliance-header-section h2 .gdpr-plugin-version{font-size:16px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;color:#565656;margin-left:5px}.gdpr-cookie-compliance-header-section h4{margin-top:10px}#moove_form_checker_wrap{position:relative}#moove_form_checker_wrap .button-primary{background-color:#f89e26;border:none;border-radius:0;text-shadow:none;box-shadow:none;outline:none;padding:8px 15px;font-size:12px;font-weight:400;color:#fff;transition:all .3s ease;height:auto;line-height:18px;border:1px solid #d28b21}#moove_form_checker_wrap .button-primary.button-inverse,#moove_form_checker_wrap .button-primary:hover{background-color:#262c33;border:1px solid #737373}#moove_form_checker_wrap .button-primary.button-inverse:hover{background-color:#f89e26;border:1px solid #d28b21}#moove_form_checker_wrap h1{margin:0;padding:0}#moove_form_checker_wrap h2,#moove_form_checker_wrap h3{font-family:Nunito,sans-serif;font-weight:700;font-size:20px}#moove_form_checker_wrap .gdpr-tab-section-cnt:after{content:"";clear:both;display:table}#moove_form_checker_wrap .nav-tab-wrapper{width:200px;display:inline-block;padding-right:17px;padding-top:0;position:relative}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab{font-size:12px;padding:10px 8px;width:100%;font-weight:700;margin-left:0;outline:none;box-shadow:none;border-right:0;position:relative;white-space:normal;line-height:1.3;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-bottom:1px solid #ccc;margin-bottom:-1px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab .dashicons{margin-right:5px}#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active,#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active:focus,#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active:focus:active,#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active:hover{border-bottom:1px solid #ccc;color:#f79322;outline:none;box-shadow:none;background-color:#fff}#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active:after{content:"";position:absolute;right:-1px;top:0;width:2px;bottom:0;background-color:#fff}#moove_form_checker_wrap .moove-gdpr-form-container{width:calc(100% - 279px);float:right;padding:5px 30px 30px;border:1px solid #ccc}#moove_gdpr_info_bar_content-html,#moove_gdpr_info_bar_content-tmce{display:none}#moove_form_checker_wrap .moove-gdpr-settings-branding{margin:25px 0;font-style:italic}#moove_form_checker_wrap .moove-gdpr-settings-branding hr{margin:0}#moove_form_checker_wrap .moove-gdpr-settings-branding p{margin:15px 0}#moove_form_checker_wrap .moove-gdpr-settings-branding p span{display:inline-block;background-image:url(../images/moove_logo_br.png);width:66px;height:15px;background-size:contain;background-repeat:no-repeat;background-position:0 100%}#moove_form_checker_wrap .moove-gdpr-settings-branding p a{text-decoration:none;color:inherit}#moove_form_checker_wrap .moove-gdpr-settings-branding p a:hover{text-decoration:underline}.moove-gdpr-form-error .alert.script-error{color:#fff;padding:10px;background-color:red;text-transform:uppercase}#moove_form_checker_wrap .CodeMirror{font-family:monospace;height:auto;color:#000;direction:ltr}#moove_form_checker_wrap .CodeMirror-lines{padding:4px 0}#moove_form_checker_wrap .CodeMirror pre{padding:0 4px}#moove_form_checker_wrap .CodeMirror-gutter-filler,#moove_form_checker_wrap .CodeMirror-scrollbar-filler{background-color:#fff}#moove_form_checker_wrap .CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}#moove_form_checker_wrap .CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}#moove_form_checker_wrap .CodeMirror-guttermarker{color:#000}#moove_form_checker_wrap .CodeMirror-guttermarker-subtle{color:#999}#moove_form_checker_wrap .CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}#moove_form_checker_wrap .CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}#moove_form_checker_wrap .cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}#moove_form_checker_wrap .cm-fat-cursor div.CodeMirror-cursors{z-index:1}#moove_form_checker_wrap .cm-fat-cursor-mark{background-color:rgba(20,255,20,.5);animation:blink 1.06s steps(1) infinite}#moove_form_checker_wrap .cm-animate-fat-cursor{width:auto;border:0;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@keyframes blink{50%{background-color:transparent}}#moove_form_checker_wrap .cm-tab{display:inline-block;text-decoration:inherit}#moove_form_checker_wrap .CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}#moove_form_checker_wrap .CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}#moove_form_checker_wrap .cm-s-default .cm-header{color:blue}#moove_form_checker_wrap .cm-s-default .cm-quote{color:#090}#moove_form_checker_wrap .cm-negative{color:#d44}#moove_form_checker_wrap .cm-positive{color:#292}#moove_form_checker_wrap .cm-header,.cm-strong{font-weight:700}#moove_form_checker_wrap .cm-em{font-style:italic}#moove_form_checker_wrap .cm-link{text-decoration:underline}#moove_form_checker_wrap .cm-strikethrough{text-decoration:line-through}#moove_form_checker_wrap .cm-s-default .cm-keyword{color:#708}#moove_form_checker_wrap .cm-s-default .cm-atom{color:#219}#moove_form_checker_wrap .cm-s-default .cm-number{color:#164}#moove_form_checker_wrap .cm-s-default .cm-def{color:#00f}#moove_form_checker_wrap .cm-s-default .cm-variable-2{color:#05a}#moove_form_checker_wrap .cm-s-default .cm-variable-3,.cm-s-default .cm-type{color:#085}#moove_form_checker_wrap .cm-s-default .cm-comment{color:#a50}#moove_form_checker_wrap .cm-s-default .cm-string{color:#a11}#moove_form_checker_wrap .cm-s-default .cm-string-2{color:#f50}#moove_form_checker_wrap .cm-s-default .cm-meta,#moove_form_checker_wrap .cm-s-default .cm-qualifier{color:#555}#moove_form_checker_wrap .cm-s-default .cm-builtin{color:#30a}#moove_form_checker_wrap .cm-s-default .cm-bracket{color:#997}#moove_form_checker_wrap .cm-s-default .cm-tag{color:#170}#moove_form_checker_wrap .cm-s-default .cm-attribute{color:#00c}#moove_form_checker_wrap .cm-s-default .cm-hr{color:#999}#moove_form_checker_wrap .cm-s-default .cm-link{color:#00c}#moove_form_checker_wrap .cm-invalidchar,#moove_form_checker_wrap .cm-s-default .cm-error{color:red}#moove_form_checker_wrap .CodeMirror-composing{border-bottom:2px solid}#moove_form_checker_wrap div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}#moove_form_checker_wrap div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}#moove_form_checker_wrap .CodeMirror-matchingtag{background:rgba(255,150,0,.3)}#moove_form_checker_wrap .CodeMirror-activeline-background{background:#e8f2ff}#moove_form_checker_wrap .CodeMirror{position:relative;overflow:hidden;background:#fff}.gdpr-script-tabs-main-cnt .CodeMirror-scroll{min-height:300px}#moove_form_checker_wrap .CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;max-height:300px;outline:none;position:relative}#moove_form_checker_wrap .CodeMirror-sizer{position:relative;border-right:30px solid transparent}#moove_form_checker_wrap .CodeMirror-gutter-filler,#moove_form_checker_wrap .CodeMirror-hscrollbar,#moove_form_checker_wrap .CodeMirror-scrollbar-filler,#moove_form_checker_wrap .CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}#moove_form_checker_wrap .CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}#moove_form_checker_wrap .CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}#moove_form_checker_wrap .CodeMirror-scrollbar-filler{right:0;bottom:0}#moove_form_checker_wrap .CodeMirror-gutter-filler{left:0;bottom:0}#moove_form_checker_wrap .CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}#moove_form_checker_wrap .CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}#moove_form_checker_wrap .CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none!important;border:none!important}#moove_form_checker_wrap .CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}#moove_form_checker_wrap .CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}#moove_form_checker_wrap .CodeMirror-gutter-wrapper ::selection{background-color:transparent}#moove_form_checker_wrap .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}#moove_form_checker_wrap .CodeMirror-lines{cursor:text;min-height:1px}#moove_form_checker_wrap .CodeMirror pre{border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}#moove_form_checker_wrap .CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}#moove_form_checker_wrap .CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}#moove_form_checker_wrap .CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}#moove_form_checker_wrap .CodeMirror-rtl pre{direction:rtl}#moove_form_checker_wrap .CodeMirror-code{outline:none}#moove_form_checker_wrap .CodeMirror-gutter,#moove_form_checker_wrap .CodeMirror-gutters,#moove_form_checker_wrap .CodeMirror-linenumber,#moove_form_checker_wrap .CodeMirror-scroll,#moove_form_checker_wrap .CodeMirror-sizer{box-sizing:content-box}#moove_form_checker_wrap .CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}#moove_form_checker_wrap .CodeMirror-cursor{position:absolute;pointer-events:none}#moove_form_checker_wrap .CodeMirror-measure pre{position:static}#moove_form_checker_wrap div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}#moove_form_checker_wrap .CodeMirror-focused div.CodeMirror-cursors,#moove_form_checker_wrap div.CodeMirror-dragcursors{visibility:visible}#moove_form_checker_wrap .CodeMirror-selected{background:#d9d9d9}#moove_form_checker_wrap .CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}#moove_form_checker_wrap .CodeMirror-crosshair{cursor:crosshair}#moove_form_checker_wrap .CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}#moove_form_checker_wrap .CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}#moove_form_checker_wrap .cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}#moove_form_checker_wrap .cm-force-border{padding-right:.1px}@media print{#moove_form_checker_wrap .CodeMirror div.CodeMirror-cursors{visibility:hidden}}#moove_form_checker_wrap .cm-tab-wrap-hack:after{content:""}#moove_form_checker_wrap span.CodeMirror-selectedtext{background:none}
1
+ @font-face{font-family:Nunito;src:url(../fonts/nunito-v8-latin-regular.eot);src:url(../fonts/nunito-v8-latin-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/nunito-v8-latin-regular.woff2) format("woff2"),url(../fonts/nunito-v8-latin-regular.woff) format("woff"),url(../fonts/nunito-v8-latin-regular.ttf) format("truetype"),url(../fonts/nunito-v8-latin-regular.svg#svgFontName) format("svg");font-style:normal;font-weight:400;font-display:swap}@font-face{font-family:Nunito;src:url(../fonts/nunito-v8-latin-700.eot);src:url(../fonts/nunito-v8-latin-700.eot?#iefix) format("embedded-opentype"),url(../fonts/nunito-v8-latin-700.woff2) format("woff2"),url(../fonts/nunito-v8-latin-700.woff) format("woff"),url(../fonts/nunito-v8-latin-700.ttf) format("truetype"),url(../fonts/nunito-v8-latin-700.svg#svgFontName) format("svg");font-style:normal;font-weight:700;font-display:swap}.moove-gdpr-donation-box-wrapper{width:auto;margin:10px 20px 0 2px}.moove-gdpr-donation-box-wrapper .moove-gdpr-donate-form{float:left;margin-right:20px}.moove-gdpr-donation-box-wrapper .moove-donation-box{padding-bottom:20px}.gdpr_cb_bhv_desc{display:block;font-size:12px;line-height:1.2;margin-top:2px;font-style:italic}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon{background-color:#f79322;color:#fff}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon.nav-tab-active,#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon:hover{color:#f79322;background-color:#fff}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon.nav-tab-active:after{background-color:#fff}fieldset.gdpr-close-options label{font-weight:500}fieldset.gdpr-close-options label span{font-weight:300}#moove_form_checker_wrap .gdpr-faq-accordion-content .cm-s-default .cm-string-2{color:inherit}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap>td{padding:0}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons{width:100%;counter-reset:a}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons table{width:100%}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons p{font-size:12px}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons .gdpr-sortable-button{border:1px solid #e5e5e5;padding:0 20px 20px 60px;position:relative;counter-increment:a;margin:10px 0;background-color:#fff}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons .gdpr-sortable-button.ui-state-disabled{pointer-events:none}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons .gdpr-sortable-button.ui-state-disabled *{pointer-events:auto}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons .gdpr-sortable-button:before{position:absolute;content:counter(a);top:1px;left:1px;width:30px;height:calc(100% - 2px);background-color:#f5f5f5;color:#23282d;text-align:center;line-height:30px;border:none;padding:0;box-shadow:none;transition:all .4s ease;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;border-right:1px solid #e5e5e5;font-weight:700;font-size:14px}.gdpr-tab-section-cnt .gdpr-sortable-buttons-wrap .gdpr-sortable-buttons td{padding:0}#moove_form_checker_wrap>.notice.is-dismissible:not(.gdpr-cc-notice){display:none!important}.gdpr-tab-section-cnt .nav-tab-wrapper a.nav-tab-dark{background-color:#232323;color:#fff}.gdpr-tab-section-cnt .nav-tab-wrapper a.nav-tab-dark:hover{background-color:#fff;color:#555}.gdpr-tab-section-cnt .nav-tab-wrapper a.nav-tab-dark.nav-tab-active{background-color:#fff}.gdpr-admin-popup{position:fixed;top:0;left:0;width:100%;height:100%;z-index:999}.gdpr-admin-popup,.gdpr-admin-popup .gdpr-popup-close{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.gdpr-admin-popup .gdpr-popup-close{position:absolute;top:-15px;right:-15px;width:30px;height:30px;text-decoration:none;border-radius:50%;background-color:#f79322;color:#fff;transition:all .4 ease}.gdpr-admin-popup .gdpr-popup-close:hover{background-color:#232323}.gdpr-admin-popup .gdpr-popup-overlay{background-color:rgba(0,0,0,.8);position:absolute;top:0;left:0;bottom:0;right:0;z-index:15}.gdpr-admin-popup .gdpr-popup-content{width:420px;max-width:70vw;background-color:#fff;padding:30px;border-radius:8px;text-align:center;position:relative;z-index:35}.gdpr-admin-popup .gdpr-popup-content p{font-size:14px;line-height:20px;margin-top:0}.gdpr-admin-popup .gdpr-popup-content h4{font-size:18px;line-height:28px;margin-top:0}#moove-gdpr-setting-error-settings_updated .wrap{width:100%;margin:0}#moove-gdpr-setting-error-settings_updated .wrap p{padding-left:0;margin-left:0}.gdpr-video-tutorial-content{position:relative;padding-bottom:56.25%;padding-top:25px;height:0}.gdpr_admin_link{text-decoration:none;color:#f79322;transition:all .4s ease}.gdpr_admin_link.gdpr_premium_buy_link{font-weight:600}.gdpr_admin_link:hover{text-decoration:underline;color:#f79322}.gdpr_license_info{font-style:italic}#moove_gdpr_license_settings .wrap,#moove_gdpr_license_settings pre{width:100%;white-space:normal;word-break:break-all;margin:0}#moove_gdpr_license_settings .wrap span,#moove_gdpr_license_settings pre span{font-size:13px}#moove_gdpr_license_settings .wrap p,#moove_gdpr_license_settings pre p{margin-bottom:0}#moove_gdpr_license_settings .gdpr_license_log{padding:0}.gdpr-video-tutorial-content iframe{width:100%;height:auto;position:absolute;top:0;left:0;height:100%}.gdpr-faq-accordion-content textarea{width:100%;height:auto;height:200px}.gdpr-cookie-alert{background-color:#f79322;border:1px solid #f79322;color:#fff;box-shadow:0 3px 51px 0 rgba(0,0,0,.05);padding:10px;display:inline-block;width:auto;box-sizing:border-box;margin:10px 0 20px;border-radius:3px;padding-right:50px;position:relative}.gdpr-cookie-alert.gdpr-cookie-alert-dark{background-color:#23282d;border-color:#23282d;display:block;width:100%}.gdpr-cookie-alert.gdpr-cookie-alert-dark span.gdpr-dismiss,.gdpr-cookie-alert.gdpr-cookie-alert-dark span.gdpr-dismiss-update{color:#fff;top:6px}.gdpr-cookie-alert.gdpr-cookie-alert-dark span.gdpr-dismiss-update:hover,.gdpr-cookie-alert.gdpr-cookie-alert-dark span.gdpr-dismiss:hover{color:#f79322}.gdpr-cookie-alert.gdpr-cookie-update-alert{display:block;width:100%;background-color:#fff;border:1px solid #ccc;box-shadow:0 3px 51px 0 rgba(0,0,0,.05);color:#23282d}.gdpr-cookie-alert.gdpr-cookie-update-alert a{color:#f79322}.gdpr-cookie-alert.gdpr-cookie-update-alert span.gdpr-dismiss,.gdpr-cookie-alert.gdpr-cookie-update-alert span.gdpr-dismiss-update{color:#23282d}.gdpr-cookie-alert.gdpr-cookie-update-alert span.gdpr-dismiss-update:hover,.gdpr-cookie-alert.gdpr-cookie-update-alert span.gdpr-dismiss:hover{color:#f79322}.gdpr-cookie-alert span.gdpr-dismiss,.gdpr-cookie-alert span.gdpr-dismiss-update{position:absolute;top:4px;right:8px;font-size:25px;font-weight:400;line-height:1;color:#fff;cursor:pointer;transition:all .4s ease}.gdpr-cookie-alert span.gdpr-dismiss-update:hover,.gdpr-cookie-alert span.gdpr-dismiss:hover{color:#23282d}.gdpr-cookie-alert h4{margin:0 0 10px;font-size:16px}.gdpr-cookie-alert p{margin:0;font-size:13px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gdpr-cookie-alert p strong{padding:2px 3px;display:inline-block;background-color:#fff;color:#23282d;margin:0 5px}.gdpr-disabled{pointer-events:none;cursor:default;opacity:.5}.gdpr-script-tabs-main-cnt{position:relative;overflow:hidden}body.toplevel_page_moove-gdpr{background-color:#fff}#moove_form_checker_wrap button.button-primary.button-reset-settings{float:right;background-color:#262c33;border-color:#737373;opacity:.5}#moove_form_checker_wrap button.button-primary.button-reset-settings:hover{opacity:1}#moove_form_checker_wrap .moove-gdpr-form-container{min-height:895px}.gdpr_license_log_alert{padding:0}.gdpr_license_log_alert .wrap>.update-messages,.gdpr_license_log_alert .wrap>h1,.gdpr_license_log_alert .wrap>p{display:none}.gdpr_license_log_alert .gdpr-admin-alert{position:relative;padding-right:40px;margin:20px 0}.gdpr_license_log_alert .gdpr-admin-alert .gdpr-alert-content{padding-right:30px}.gdpr_license_log_alert .gdpr-admin-alert .dashicons{position:absolute;top:5px;right:5px;width:30px;height:30px;border-radius:50%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;color:rgba(5,150,24,.5);font-size:34px!important;background-color:#fff}.gdpr_license_log_alert .gdpr-admin-alert a{color:inherit;text-decoration:underline;margin-right:5px;font-weight:700}.gdpr_license_log_alert .gdpr-admin-alert a:hover{color:#262c33;text-decoration:underline}.gdpr_license_log_alert .gdpr-admin-alert.gdpr-admin-alert-success{background-color:rgba(5,150,24,.1);color:#059618;padding:5px 10px;border-radius:15px;border:2px solid rgba(5,150,24,.5)}.gdpr_license_log_alert .gdpr-admin-alert.gdpr-admin-alert-error{background-color:rgba(225,0,0,.1);color:#e10000;padding:5px 10px;border-radius:15px;border:2px solid rgba(225,0,0,.5)}.gdpr_license_log_alert .gdpr-admin-alert.gdpr-admin-alert-error .dashicons{color:rgba(225,0,0,.5)}.gdpr_license_log_alert .gdpr-admin-alert p{margin:5px 0}.gdpr-plugin-star-rating{display:inline-block;color:#ffb900;position:relative;top:3px}.gdpr-plugin-star-rating svg,.gdpr-plugin-star-rating svg:hover{fill:#ffb900}.gdpr-plugin-star-rating svg:hover~svg{fill:none}.gdpr-help-content-cnt .gdpr-help-content-block{margin-top:20px}.gdpr-help-content-cnt .gdpr-faq-toggle{box-shadow:0 3px 51px 0 rgba(0,0,0,.05);border:1px solid #ccc;margin-bottom:20px}.gdpr-help-content-cnt .gdpr-faq-toggle code{display:block;white-space:pre-wrap}.gdpr-help-content-cnt .gdpr-faq-toggle ul li{position:relative;padding-left:15px}.gdpr-help-content-cnt .gdpr-faq-toggle ul li:before{content:"";position:absolute;top:7px;left:0;width:5px;height:5px;border-radius:50%;background-color:#f79322}.gdpr-help-content-cnt .gdpr-faq-toggle.gdpr-faq-open .gdpr-faq-accordion-header h3{background-color:#f79322;color:#fff}.gdpr-help-content-cnt .gdpr-faq-toggle.gdpr-faq-open .gdpr-faq-accordion-header h3:after{content:"-"}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-header h3{margin:0;position:relative;padding:15px 20px;padding-right:60px;cursor:pointer;transition:all .3s ease;font-size:16px!important}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-header h3:hover{background-color:#f79322;color:#fff}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-header h3:after{content:"+";width:50px;position:absolute;top:0;right:0;border-left:1px solid #ccc;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;font-size:26px;text-align:center;bottom:0;-ms-flex-pack:center;justify-content:center}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-content{padding:15px 60px 15px 20px;border-top:1px solid #ccc}.gdpr-help-content-cnt .gdpr-faq-toggle .gdpr-faq-accordion-content code{line-height:1.8;overflow:auto;display:block}.gdpr-disable-posts-nav{list-style-type:none;padding:5px 10px;margin:20px 0;background-color:#fff;box-shadow:0 3px 51px 0 rgba(0,0,0,.05);border:1px solid #ccc}.gdpr-disable-posts-nav li:first-child a{padding-left:0}.gdpr-disable-posts-nav li:last-child a{padding-right:0}.gdpr-disable-posts-nav li:after{content:"|";display:inline-block;position:absolute;right:-2px;top:10px}.gdpr-disable-posts-nav li:first-child:after,.gdpr-disable-posts-nav li:last-child:after{display:none}.gdpr-disable-posts-nav li{list-style:none;display:inline-block;float:left;position:relative;margin:0}.gdpr-disable-posts-nav li a.active{color:#f79322}.gdpr-disable-posts-nav li a,.gdpr-disable-posts-nav li strong{display:block;padding:10px;outline:none;box-shadow:none}.gdpr-disable-posts-nav li strong{padding-left:0}body.toplevel_page_moove-gdpr #wpcontent{background-color:#fff}.gdpr-script-tab-content{position:relative;overflow:hidden}.gdpr-script-tab-content .gdpr-tab-code-section{transition:all .8s ease;top:0;right:0;left:0}.gdpr-script-tab-content .gdpr-tab-code-section:not(.gdpr-active){height:0;opacity:0;margin:0;position:absolute;top:100%;visibility:hidden}.gdpr-tab-code-section-nav ul{list-style-type:none;padding:0;margin:20px 1px 0;display:-ms-flexbox;display:flex}.gdpr-tab-code-section-nav ul li{list-style:none;padding:0;margin:0 -1px;position:relative;border:1px solid #f79322;border-bottom:0;overflow:hidden}.gdpr-tab-code-section-nav ul li:first-child{border-top-left-radius:10px}.gdpr-tab-code-section-nav ul li:last-child{border-top-right-radius:10px}.gdpr-tab-code-section-nav ul li a{background-color:#fff;display:block;padding:8px 20px;text-decoration:none;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:14px;color:#555;transition:all .3s ease;outline:none;box-shadow:none}.gdpr-tab-code-section-nav ul li a:before{content:"\21B3";transform:rotate(90deg);display:inline-block;position:absolute;top:0;left:0;width:0;color:#fff;opacity:0;transition:all .3s ease}.gdpr-tab-code-section-nav ul li a.gdpr-active:before{opacity:1;top:4px;left:10px}.gdpr-tab-code-section-nav ul li a.gdpr-active,.gdpr-tab-code-section-nav ul li a:hover{background-color:#f79322;color:#fff}.gdpr-tab-code-section{background-color:#fff;padding:20px;border:1px solid #f79322;border-bottom-left-radius:10px;border-bottom-right-radius:10px;border-top-right-radius:10px;position:relative;overflow-wrap:hidden}.gdpr-tab-code-section .CodeMirror{font-size:15px;width:100%;height:300px;box-sizing:border-box;background-color:#fff;border:1px solid #ccc}.gdpr-tab-code-section .CodeMirror-gutters{padding-bottom:0;background-color:#f1f1f1}.gdpr-tab-code-section p.description{font-weight:700;font-size:13px}.gdpr-tab-code-section h4{margin:-20px -20px 0;padding:15px 20px;border-bottom:1px solid #ccc}.gdpr-tab-code-section table{width:100%}.gdpr-tab-code-section .gdpr-code{padding:10px;background-color:#f1f1f1}.gdpr-img-responsive{max-width:100%;height:auto}.gdpr-tab-section-cnt{max-width:calc(100% - 380px);display:inline-block;width:100%}.gdpr-tab-section-cnt .regular-text{width:100%}.gdpr-tab-section-cnt .powered-by-label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-bottom:15px}.gdpr-tab-section-cnt .powered-by-label label{white-space:nowrap;margin-right:20px}.gdpr-tab-section-cnt.gdpr-has-premium{max-width:100%}.gdpr-conditional-field:not(.gdpr-conditional-on),.gdpr-tab-section-cnt.gdpr-has-premium+.moove-plugins-info-boxes{display:none}.gdpr-checkbox-toggle{position:relative;display:inline-block;width:160px;height:24px;box-sizing:border-box}.gdpr-checkbox-toggle *{box-sizing:border-box}.gdpr-checkbox-toggle.gdpr-checkbox-inverted input:checked+.gdpr-checkbox-slider{background-color:red}.gdpr-checkbox-toggle.gdpr-checkbox-inverted input:checked+.gdpr-checkbox-slider:after{content:attr(data-disable)}.gdpr-checkbox-toggle.gdpr-checkbox-inverted .gdpr-checkbox-slider{background-color:#2e9935}.gdpr-checkbox-toggle.gdpr-checkbox-inverted .gdpr-checkbox-slider:after{content:attr(data-enable)}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle input:checked+.gdpr-checkbox-slider{background-color:#202020}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle input:checked+.gdpr-checkbox-slider:after{color:#fff}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle .gdpr-checkbox-slider,.gdpr-checkbox-toggle.gdpr-color-scheme-toggle input:checked+.gdpr-checkbox-slider:before{background-color:#fff}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle .gdpr-checkbox-slider:after{color:#202020}.gdpr-checkbox-toggle.gdpr-color-scheme-toggle .gdpr-checkbox-slider:before{background-color:#202020}.gdpr-checkbox-toggle input{opacity:0;width:0;height:0}.gdpr-checkbox-toggle input:checked+.gdpr-checkbox-slider{background-color:#2e9935}.gdpr-checkbox-toggle input:checked+.gdpr-checkbox-slider:after{content:attr(data-enable)}.gdpr-checkbox-toggle input:checked+.gdpr-checkbox-slider:before{transform:translateX(136px)}.gdpr-checkbox-toggle .gdpr-checkbox-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:red;transition:.4s;border-radius:34px;border:1px solid #ddd}.gdpr-checkbox-toggle .gdpr-checkbox-slider:before{position:absolute;content:"";height:20px;width:20px;left:1px;bottom:1px;background-color:#fff;transition:.4s;border-radius:50%}.gdpr-checkbox-toggle .gdpr-checkbox-slider:after{content:attr(data-disable);position:absolute;top:5px;left:0;right:0;color:#fff;font-size:12px;display:block;z-index:4;text-transform:uppercase;text-align:center;font-weight:600;font-family:Helvetica;letter-spacing:.5px}.moove-plugins-info-boxes{display:inline-block;float:right;width:350px;background-color:#fff}.moove-plugins-info-boxes .m-plugin-box{border:1px solid #ccc;margin-bottom:30px;background-color:#fff;border-radius:5px;box-shadow:0 3px 51px 0 rgba(0,0,0,.05)}.moove-plugins-info-boxes .m-plugin-box.m-plugin-box-highlighted{border:2px solid #f79322}.moove-plugins-info-boxes .m-plugin-box.m-plugin-box-highlighted .box-header{background-color:#f79322;border-color:#f79322;color:#fff}.moove-plugins-info-boxes .m-plugin-box.m-plugin-box-support:not(.m-plugin-box-highlighted) .gdpr-review-bnt{background-color:rgba(85,85,85,.5);color:#fff}.moove-plugins-info-boxes .m-plugin-box.m-plugin-box-support:not(.m-plugin-box-highlighted) .gdpr-review-bnt:hover{background-color:#232323;color:#fff}.moove-plugins-info-boxes .m-plugin-box .box-content .gdpr-faq-forum-content p{position:relative;padding-left:15px;line-height:1.3;margin-bottom:10px}.moove-plugins-info-boxes .m-plugin-box .box-content .gdpr-faq-forum-content p .gdpr-chevron-left{color:#f79322;font-size:18px;position:absolute;left:0;top:7px;line-height:0}.moove-plugins-info-boxes .m-plugin-box a:not(.gdpr-review-bnt):not(.plugin-buy-now-btn){color:#f79322;transition:all .3s ease}.moove-plugins-info-boxes .m-plugin-box a:not(.gdpr-review-bnt):not(.plugin-buy-now-btn):hover{color:#23282d}.moove-plugins-info-boxes .m-plugin-box .gdpr-review-bnt{text-decoration:none;outline:none;padding:7px 20px;font-size:12px;font-weight:700;background-color:#f79322;color:#fff;transition:all .3s ease;line-height:18px;border:none;display:inline-block;margin:10px 0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.moove-plugins-info-boxes .m-plugin-box .gdpr-review-bnt:hover{background-color:#262c33}.moove-plugins-info-boxes .m-plugin-box .box-header{padding:10px;border-bottom:1px solid #ccc}.moove-plugins-info-boxes .m-plugin-box .box-header h4{font-size:14px;font-weight:700;margin:0;font-family:Nunito}.moove-plugins-info-boxes .m-plugin-box .box-content{padding:10px}.moove-plugins-info-boxes .m-plugin-box .box-content p{margin-top:5px;margin-bottom:5px}.moove-plugins-info-boxes .m-plugin-box .box-content hr{margin:10px 0}.moove-plugins-info-boxes .m-plugin-box .plugin-rating{display:-ms-flexbox;display:flex;margin:10px 0 20px;-ms-flex-align:center;align-items:center;transform:scale(1.3);width:100%;padding-left:13%}.moove-plugins-info-boxes .m-plugin-box .plugin-rating .plugin-stars{display:inline-block;width:50%}.moove-plugins-info-boxes .m-plugin-box .gdpr-review-container{display:block;text-align:left;margin:0}.moove-plugins-info-boxes .m-plugin-box .plugin-stats{display:-ms-flexbox;display:flex}.moove-plugins-info-boxes .m-plugin-box .plugin-stats *{box-sizing:border-box}.moove-plugins-info-boxes .m-plugin-box .plugin-stats .plugin-download-ainstalls-cnt{display:inline-block;width:calc(100% - 130px);line-height:20px}.moove-plugins-info-boxes .m-plugin-box .plugin-stats .plugin-rating{width:125px;box-sizing:border-box;text-align:right;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:0;margin:0}.moove-plugins-info-boxes .m-plugin-box .plugin-stats .plugin-rating .plugin-stars{width:100px;transform:scale(.8)}.moove-plugins-info-boxes .m-plugin-box .plugin-features{padding-left:20px;margin-top:5px}.moove-plugins-info-boxes .m-plugin-box .plugin-features li{list-style-type:square}.moove-plugins-info-boxes .m-plugin-box .plugin-buy-now-btn{display:block;text-decoration:none;outline:none;box-shadow:none;padding:7px 20px;background-color:#f79322;color:#fff;text-align:center;transition:all .3s ease;margin:15px 0;font-weight:700;font-size:12px}.moove-plugins-info-boxes .m-plugin-box .plugin-buy-now-btn:hover{background-color:#232323}.gdpr-tab-section-cnt{position:relative;overflow:hidden}.gdpr-tab-section-cnt .form-table th{width:250px;max-width:250px}@media (max-width:1280px){.gdpr-tab-section-cnt{max-width:100%;display:block;width:100%}.gdpr-tab-section-cnt .form-table th{width:200px}.moove-plugins-info-boxes{display:inline-block;float:none;width:100%;padding:0;margin:15px 0;background-color:#f1f1f1}}.gdpr-locked-section{padding:0 40px;background-color:#fff;border:1px solid #ccc;display:-ms-flexbox;display:flex;-ms-flex-item-align:center;align-self:center;margin-top:90px;border-radius:5px}.gdpr-locked-section span{display:block;width:100%;transform:translateY(-50px);text-align:center}.gdpr-locked-section h4{font-size:28px;line-height:32px;margin:60px 0 30px;text-align:center}.gdpr-locked-section *{box-sizing:border-box}.gdpr-locked-section i{font-size:30px;line-height:55px;color:#f79322;width:60px;height:50px;background-color:#fff;border:1px solid #ccc;border-bottom:1px solid #fff;border-top-left-radius:100px;border-top-right-radius:100px}.gdpr-locked-section .plugin-buy-now-btn{display:block;text-decoration:none;outline:none;box-shadow:none;padding:7px 20px;background-color:#f79322;color:#fff;text-align:center;transition:all .3s ease;margin:15px auto 0;font-weight:700;font-size:12px;max-width:200px}.gdpr-locked-section .plugin-buy-now-btn:hover{background-color:#232323}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab.gdpr-cc-addon.gdpr-cc-disabled{background-color:#fff;color:#f79322}.moove-donation-box{position:relative;width:calc(100% - 20px);margin:16px 0;padding:0 15px 10px;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;font-size:13px}.moove-donation-box .notice-dismiss:before{float:left;margin:0 4px -2px 0}.moove-redirect-box{width:100%}.moove-not-visible{opacity:0;visibility:hidden;position:absolute}.moove-gdpr-form-container{min-height:45vh}.moove-gdpr-form-container input[type=radio].on-off{margin:0}.moove-gdpr-form-container input.iris-colorpicker{text-shadow:1px 0 0 #fff,-1px 0 0 #fff,0 1px 0 #fff,0 -1px 0 #fff,1px 1px #fff,-1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff;text-transform:uppercase;outline:none!important;box-shadow:none!important;font-weight:700;font-size:14px;border:none;width:120px;height:30px;margin:0;border-top-left-radius:5px;border-bottom-left-radius:5px}.moove-gdpr-form-container .iris-selectbtn{position:relative;background-color:#fff;display:inline-block;padding:0 5px;text-transform:uppercase;font-size:11px;line-height:30px;font-weight:700;float:right;border-top-right-radius:5px;border-bottom-right-radius:5px;cursor:pointer}.moove-gdpr-form-container .iris-colorpicker-group-cnt{display:inline-block;border:1px solid #ddd;border-radius:5px}.moove-gdpr-form-container .iris-picker{position:absolute}.moove-gdpr-form-container .iris-picker:before{content:"";position:fixed;width:100%;height:100%;top:0;left:0}.moove-gdpr-form-container .iris-picker .iris-picker-inner{z-index:100}.moove-clearfix:after{content:"";clear:both;display:table}.moove_gdpr_company_logo_holder{display:inline-block;padding-bottom:50px;width:130px;height:0;background-position:0;background-repeat:no-repeat;background-size:contain;cursor:pointer}#wp-moove_gdpr_advanced_cookies_tab_content-wrap,#wp-moove_gdpr_cookies_policy_tab_content-wrap,#wp-moove_gdpr_ifb_content-wrap,#wp-moove_gdpr_info_bar_content-wrap,#wp-moove_gdpr_modal_strictly_secondary_notice-wrap,#wp-moove_gdpr_performance_cookies_tab_content-wrap,#wp-moove_gdpr_privacy_overview_tab_content-wrap,#wp-moove_gdpr_strict_necessary_cookies_tab_content-wrap,#wp-moove_gdpr_strictly_necessary_cookies_warning-wrap{max-width:100%}span.separator{display:inline-block;margin-left:10px}.gdpr-cookie-compliance-header-section{padding-left:100px;position:relative;margin:30px 0}.gdpr-cookie-compliance-header-section a{color:#f79322}.gdpr-cookie-compliance-header-section:before{content:"";position:absolute;left:0;top:0;width:100px;height:100px;background-image:url(../images/gdpr-cookie-compliance-icon.png);background-position:0;background-repeat:no-repeat;background-size:contain}.gdpr-cookie-compliance-header-section h2{font-family:Nunito,sans-serif;font-size:30px;font-weight:700;padding-top:25px;margin-bottom:10px}.gdpr-cookie-compliance-header-section h2 .gdpr-plugin-version{font-size:16px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;color:#565656;margin-left:5px}.gdpr-cookie-compliance-header-section h4{margin-top:10px}#moove_form_checker_wrap{position:relative}#moove_form_checker_wrap .button-primary{background-color:#f89e26;border:none;border-radius:0;text-shadow:none;box-shadow:none;outline:none;padding:8px 15px;font-size:12px;font-weight:400;color:#fff;transition:all .3s ease;height:auto;line-height:18px;border:1px solid #d28b21}#moove_form_checker_wrap .button-primary.button-inverse,#moove_form_checker_wrap .button-primary:hover{background-color:#262c33;border:1px solid #737373}#moove_form_checker_wrap .button-primary.button-inverse:hover{background-color:#f89e26;border:1px solid #d28b21}#moove_form_checker_wrap h1{margin:0;padding:0}#moove_form_checker_wrap h2,#moove_form_checker_wrap h3{font-family:Nunito,sans-serif;font-weight:700;font-size:20px}#moove_form_checker_wrap .gdpr-tab-section-cnt:after{content:"";clear:both;display:table}#moove_form_checker_wrap .nav-tab-wrapper{width:200px;display:inline-block;padding-right:17px;padding-top:0;position:relative}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab{font-size:12px;padding:10px 8px;width:100%;font-weight:700;margin-left:0;outline:none;box-shadow:none;border-right:0;position:relative;white-space:normal;line-height:1.3;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-bottom:1px solid #ccc;margin-bottom:-1px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}#moove_form_checker_wrap .nav-tab-wrapper a.nav-tab .dashicons{margin-right:5px}#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active,#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active:focus,#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active:focus:active,#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active:hover{border-bottom:1px solid #ccc;color:#f79322;outline:none;box-shadow:none;background-color:#fff}#moove_form_checker_wrap .nav-tab-wrapper .nav-tab-active:after{content:"";position:absolute;right:-1px;top:0;width:2px;bottom:0;background-color:#fff}#moove_form_checker_wrap .moove-gdpr-form-container{width:calc(100% - 279px);float:right;padding:5px 30px 30px;border:1px solid #ccc}#moove_gdpr_info_bar_content-html,#moove_gdpr_info_bar_content-tmce{display:none}#moove_form_checker_wrap .moove-gdpr-settings-branding{margin:25px 0;font-style:italic}#moove_form_checker_wrap .moove-gdpr-settings-branding hr{margin:0}#moove_form_checker_wrap .moove-gdpr-settings-branding p{margin:15px 0}#moove_form_checker_wrap .moove-gdpr-settings-branding p span{display:inline-block;background-image:url(../images/moove_logo_br.png);width:66px;height:15px;background-size:contain;background-repeat:no-repeat;background-position:0 100%}#moove_form_checker_wrap .moove-gdpr-settings-branding p a{text-decoration:none;color:inherit}#moove_form_checker_wrap .moove-gdpr-settings-branding p a:hover{text-decoration:underline}.moove-gdpr-form-error .alert.script-error{color:#fff;padding:10px;background-color:red;text-transform:uppercase}#moove_form_checker_wrap .CodeMirror{font-family:monospace;height:auto;color:#000;direction:ltr}#moove_form_checker_wrap .CodeMirror-lines{padding:4px 0}#moove_form_checker_wrap .CodeMirror pre{padding:0 4px}#moove_form_checker_wrap .CodeMirror-gutter-filler,#moove_form_checker_wrap .CodeMirror-scrollbar-filler{background-color:#fff}#moove_form_checker_wrap .CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}#moove_form_checker_wrap .CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}#moove_form_checker_wrap .CodeMirror-guttermarker{color:#000}#moove_form_checker_wrap .CodeMirror-guttermarker-subtle{color:#999}#moove_form_checker_wrap .CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}#moove_form_checker_wrap .CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}#moove_form_checker_wrap .cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}#moove_form_checker_wrap .cm-fat-cursor div.CodeMirror-cursors{z-index:1}#moove_form_checker_wrap .cm-fat-cursor-mark{background-color:rgba(20,255,20,.5);animation:blink 1.06s steps(1) infinite}#moove_form_checker_wrap .cm-animate-fat-cursor{width:auto;border:0;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@keyframes blink{50%{background-color:transparent}}#moove_form_checker_wrap .cm-tab{display:inline-block;text-decoration:inherit}#moove_form_checker_wrap .CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}#moove_form_checker_wrap .CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}#moove_form_checker_wrap .cm-s-default .cm-header{color:blue}#moove_form_checker_wrap .cm-s-default .cm-quote{color:#090}#moove_form_checker_wrap .cm-negative{color:#d44}#moove_form_checker_wrap .cm-positive{color:#292}#moove_form_checker_wrap .cm-header,.cm-strong{font-weight:700}#moove_form_checker_wrap .cm-em{font-style:italic}#moove_form_checker_wrap .cm-link{text-decoration:underline}#moove_form_checker_wrap .cm-strikethrough{text-decoration:line-through}#moove_form_checker_wrap .cm-s-default .cm-keyword{color:#708}#moove_form_checker_wrap .cm-s-default .cm-atom{color:#219}#moove_form_checker_wrap .cm-s-default .cm-number{color:#164}#moove_form_checker_wrap .cm-s-default .cm-def{color:#00f}#moove_form_checker_wrap .cm-s-default .cm-variable-2{color:#05a}#moove_form_checker_wrap .cm-s-default .cm-variable-3,.cm-s-default .cm-type{color:#085}#moove_form_checker_wrap .cm-s-default .cm-comment{color:#a50}#moove_form_checker_wrap .cm-s-default .cm-string{color:#a11}#moove_form_checker_wrap .cm-s-default .cm-string-2{color:#f50}#moove_form_checker_wrap .cm-s-default .cm-meta,#moove_form_checker_wrap .cm-s-default .cm-qualifier{color:#555}#moove_form_checker_wrap .cm-s-default .cm-builtin{color:#30a}#moove_form_checker_wrap .cm-s-default .cm-bracket{color:#997}#moove_form_checker_wrap .cm-s-default .cm-tag{color:#170}#moove_form_checker_wrap .cm-s-default .cm-attribute{color:#00c}#moove_form_checker_wrap .cm-s-default .cm-hr{color:#999}#moove_form_checker_wrap .cm-s-default .cm-link{color:#00c}#moove_form_checker_wrap .cm-invalidchar,#moove_form_checker_wrap .cm-s-default .cm-error{color:red}#moove_form_checker_wrap .CodeMirror-composing{border-bottom:2px solid}#moove_form_checker_wrap div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}#moove_form_checker_wrap div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}#moove_form_checker_wrap .CodeMirror-matchingtag{background:rgba(255,150,0,.3)}#moove_form_checker_wrap .CodeMirror-activeline-background{background:#e8f2ff}#moove_form_checker_wrap .CodeMirror{position:relative;overflow:hidden;background:#fff}.gdpr-script-tabs-main-cnt .CodeMirror-scroll{min-height:300px}#moove_form_checker_wrap .CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;max-height:300px;outline:none;position:relative}#moove_form_checker_wrap .CodeMirror-sizer{position:relative;border-right:30px solid transparent}#moove_form_checker_wrap .CodeMirror-gutter-filler,#moove_form_checker_wrap .CodeMirror-hscrollbar,#moove_form_checker_wrap .CodeMirror-scrollbar-filler,#moove_form_checker_wrap .CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}#moove_form_checker_wrap .CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}#moove_form_checker_wrap .CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}#moove_form_checker_wrap .CodeMirror-scrollbar-filler{right:0;bottom:0}#moove_form_checker_wrap .CodeMirror-gutter-filler{left:0;bottom:0}#moove_form_checker_wrap .CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}#moove_form_checker_wrap .CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}#moove_form_checker_wrap .CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none!important;border:none!important}#moove_form_checker_wrap .CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}#moove_form_checker_wrap .CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}#moove_form_checker_wrap .CodeMirror-gutter-wrapper ::selection{background-color:transparent}#moove_form_checker_wrap .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}#moove_form_checker_wrap .CodeMirror-lines{cursor:text;min-height:1px}#moove_form_checker_wrap .CodeMirror pre{border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}#moove_form_checker_wrap .CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}#moove_form_checker_wrap .CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}#moove_form_checker_wrap .CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}#moove_form_checker_wrap .CodeMirror-rtl pre{direction:rtl}#moove_form_checker_wrap .CodeMirror-code{outline:none}#moove_form_checker_wrap .CodeMirror-gutter,#moove_form_checker_wrap .CodeMirror-gutters,#moove_form_checker_wrap .CodeMirror-linenumber,#moove_form_checker_wrap .CodeMirror-scroll,#moove_form_checker_wrap .CodeMirror-sizer{box-sizing:content-box}#moove_form_checker_wrap .CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}#moove_form_checker_wrap .CodeMirror-cursor{position:absolute;pointer-events:none}#moove_form_checker_wrap .CodeMirror-measure pre{position:static}#moove_form_checker_wrap div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}#moove_form_checker_wrap .CodeMirror-focused div.CodeMirror-cursors,#moove_form_checker_wrap div.CodeMirror-dragcursors{visibility:visible}#moove_form_checker_wrap .CodeMirror-selected{background:#d9d9d9}#moove_form_checker_wrap .CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}#moove_form_checker_wrap .CodeMirror-crosshair{cursor:crosshair}#moove_form_checker_wrap .CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}#moove_form_checker_wrap .CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}#moove_form_checker_wrap .cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}#moove_form_checker_wrap .cm-force-border{padding-right:.1px}@media print{#moove_form_checker_wrap .CodeMirror div.CodeMirror-cursors{visibility:hidden}}#moove_form_checker_wrap .cm-tab-wrap-hack:after{content:""}#moove_form_checker_wrap span.CodeMirror-selectedtext{background:none}
gdpr-modules/modal/modal-base-onepage.php CHANGED
@@ -7,10 +7,12 @@
7
  <!-- V2 -->
8
  <div id="moove_gdpr_cookie_modal" class="gdpr_lightbox-hide" role="complementary" aria-label="<?php esc_html_e('GDPR Settings Screen', 'gdpr-cookie-compliance'); ?>">
9
  <div class="moove-gdpr-modal-content moove-clearfix logo-position-<?php echo esc_attr( $content->logo_position ); ?> <?php echo esc_attr( $content->theme ); ?>">
10
- <button class="moove-gdpr-modal-close" aria-label="<?php esc_html_e( 'Close GDPR Cookie Settings', 'gdpr-cookie-compliance' ); ?>">
11
- <span class="gdpr-sr-only"><?php esc_html_e( 'Close GDPR Cookie Settings', 'gdpr-cookie-compliance' ); ?></span>
12
- <span class="gdpr-icon moovegdpr-arrow-close"></span>
13
- </button>
 
 
14
  <div class="moove-gdpr-modal-left-content">
15
  <ul id="moove-gdpr-menu">
16
  <?php echo gdpr_get_module('tab-navigation'); ?>
7
  <!-- V2 -->
8
  <div id="moove_gdpr_cookie_modal" class="gdpr_lightbox-hide" role="complementary" aria-label="<?php esc_html_e('GDPR Settings Screen', 'gdpr-cookie-compliance'); ?>">
9
  <div class="moove-gdpr-modal-content moove-clearfix logo-position-<?php echo esc_attr( $content->logo_position ); ?> <?php echo esc_attr( $content->theme ); ?>">
10
+ <?php if ( $content->close ) : ?>
11
+ <button class="moove-gdpr-modal-close" aria-label="<?php esc_html_e( 'Close GDPR Cookie Settings', 'gdpr-cookie-compliance' ); ?>">
12
+ <span class="gdpr-sr-only"><?php esc_html_e( 'Close GDPR Cookie Settings', 'gdpr-cookie-compliance' ); ?></span>
13
+ <span class="gdpr-icon moovegdpr-arrow-close"></span>
14
+ </button>
15
+ <?php endif; ?>
16
  <div class="moove-gdpr-modal-left-content">
17
  <ul id="moove-gdpr-menu">
18
  <?php echo gdpr_get_module('tab-navigation'); ?>
gdpr-modules/modal/modal-base-tabs.php CHANGED
@@ -7,10 +7,12 @@
7
  <!-- V1 -->
8
  <div id="moove_gdpr_cookie_modal" class="gdpr_lightbox-hide" role="complementary" aria-label="<?php esc_html_e('GDPR Settings Screen', 'gdpr-cookie-compliance'); ?>">
9
  <div class="moove-gdpr-modal-content moove-clearfix logo-position-<?php echo esc_attr( $content->logo_position ); ?> <?php echo esc_attr( $content->theme ); ?>">
10
- <button class="moove-gdpr-modal-close" aria-label="<?php esc_html_e( 'Close GDPR Cookie Settings', 'gdpr-cookie-compliance' ); ?>">
11
- <span class="gdpr-sr-only"><?php esc_html_e( 'Close GDPR Cookie Settings', 'gdpr-cookie-compliance' ); ?></span>
12
- <span class="gdpr-icon moovegdpr-arrow-close"></span>
13
- </button>
 
 
14
  <div class="moove-gdpr-modal-left-content">
15
  <?php echo gdpr_get_module('company-logo'); ?>
16
  <ul id="moove-gdpr-menu">
7
  <!-- V1 -->
8
  <div id="moove_gdpr_cookie_modal" class="gdpr_lightbox-hide" role="complementary" aria-label="<?php esc_html_e('GDPR Settings Screen', 'gdpr-cookie-compliance'); ?>">
9
  <div class="moove-gdpr-modal-content moove-clearfix logo-position-<?php echo esc_attr( $content->logo_position ); ?> <?php echo esc_attr( $content->theme ); ?>">
10
+ <?php if ( $content->close ) : ?>
11
+ <button class="moove-gdpr-modal-close" aria-label="<?php esc_html_e( 'Close GDPR Cookie Settings', 'gdpr-cookie-compliance' ); ?>">
12
+ <span class="gdpr-sr-only"><?php esc_html_e( 'Close GDPR Cookie Settings', 'gdpr-cookie-compliance' ); ?></span>
13
+ <span class="gdpr-icon moovegdpr-arrow-close"></span>
14
+ </button>
15
+ <?php endif; ?>
16
  <div class="moove-gdpr-modal-left-content">
17
  <?php echo gdpr_get_module('company-logo'); ?>
18
  <ul id="moove-gdpr-menu">
languages/gdpr-cookie-compliance.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: PACKAGE VERSION\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2022-01-20 12:33+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -14,36 +14,61 @@ msgstr ""
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Generator: Loco https://localise.biz/"
16
 
17
- #: views/moove/admin/settings/general-settings.php:309
18
  msgid ""
19
  "(Enter 0 if you want the consent to expire at the end of the current "
20
  "browsing session.)"
21
  msgstr ""
22
 
23
- #: class-gdpr-modules.php:288 class-gdpr-modules.php:402
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  #: views/moove/admin/settings/settings-page.php:102
25
  #: views/moove/admin/settings/third-party-cookies.php:77
26
  msgid "3rd Party Cookies"
27
  msgstr ""
28
 
29
- #: views/moove/admin/settings/help.php:36
30
  msgid "Absolute Path"
31
  msgstr ""
32
 
33
- #: class-moove-gdpr-content.php:124 class-gdpr-modules.php:155
34
- #: views/moove/admin/settings/banner-settings.php:215
35
  msgid "Accept"
36
  msgstr ""
37
 
38
- #: views/moove/admin/settings/banner-settings.php:212
39
  msgid "Accept - Button Label"
40
  msgstr ""
41
 
42
- #: views/moove/admin/settings/banner-settings.php:195
43
  msgid "Accept button"
44
  msgstr ""
45
 
46
- #: views/moove/admin/settings/banner-settings.php:206
47
  msgid "Accept button allows users to accept all cookies."
48
  msgstr ""
49
 
@@ -51,8 +76,8 @@ msgstr ""
51
  msgid "Accept Cookies on Scroll / Hide timer"
52
  msgstr ""
53
 
54
- #: class-moove-gdpr-content.php:250 class-moove-gdpr-content.php:257
55
- #: class-moove-gdpr-content.php:263
56
  msgid "Activate"
57
  msgstr ""
58
 
@@ -77,13 +102,13 @@ msgid ""
77
  "pages when user accepts these cookies"
78
  msgstr ""
79
 
80
- #: class-gdpr-modules.php:260 class-gdpr-modules.php:406
81
  #: views/moove/admin/settings/settings-page.php:109
82
  #: views/moove/admin/settings/advanced-cookies.php:67
83
  msgid "Additional Cookies"
84
  msgstr ""
85
 
86
- #: class-moove-gdpr-content.php:125
87
  msgid "Adjust your settings"
88
  msgstr ""
89
 
@@ -95,8 +120,19 @@ msgstr ""
95
  msgid "Always enabled and content hidden from user"
96
  msgstr ""
97
 
98
- #: views/moove/admin/settings/settings-page.php:80
99
- msgid "Banner Settings"
 
 
 
 
 
 
 
 
 
 
 
100
  msgstr ""
101
 
102
  #: views/moove/admin/settings/third-party-cookies.php:165
@@ -104,7 +140,7 @@ msgstr ""
104
  msgid "Body Section"
105
  msgstr ""
106
 
107
- #: views/moove/admin/settings/banner-settings.php:339
108
  msgid "Bottom"
109
  msgstr ""
110
 
@@ -137,8 +173,8 @@ msgstr ""
137
  msgid "Button - Hover Label"
138
  msgstr ""
139
 
140
- #: views/moove/admin/settings/general-settings.php:169
141
- #: views/moove/admin/settings/banner-settings.php:182
142
  msgid "Button Setup"
143
  msgstr ""
144
 
@@ -146,11 +182,11 @@ msgstr ""
146
  msgid "Button Style"
147
  msgstr ""
148
 
149
- #: class-moove-gdpr-content.php:267 class-moove-gdpr-content.php:367
150
  msgid "Buy licence"
151
  msgstr ""
152
 
153
- #: class-moove-gdpr-content.php:330
154
  msgid "Buy more licences"
155
  msgstr ""
156
 
@@ -163,7 +199,7 @@ msgstr ""
163
  msgid "by default cookies should be"
164
  msgstr ""
165
 
166
- #: views/moove/admin/settings/help.php:477
167
  msgid ""
168
  "By default, our plugin stores user preferences in \"moove_gdpr_popup\" "
169
  "cookie. When a user rejects cookies, we do not show the cookie banner again "
@@ -171,7 +207,7 @@ msgid ""
171
  "cookie that tells us that this user rejected cookies."
172
  msgstr ""
173
 
174
- #: views/moove/admin/settings/help.php:299
175
  msgid ""
176
  "By default, our plugin uses AJAX script injection to function properly, "
177
  "however, this may sometimes cause high server load. For that reason, you can "
@@ -180,11 +216,11 @@ msgid ""
180
  "working."
181
  msgstr ""
182
 
183
- #: views/moove/admin/settings/help.php:88
184
  msgid "Can I use custom code or hooks with your plugin?"
185
  msgstr ""
186
 
187
- #: views/moove/admin/settings/help.php:46
188
  msgid "Can I use direct links to “Accept” or “Reject” cookies?"
189
  msgstr ""
190
 
@@ -200,7 +236,7 @@ msgstr ""
200
  msgid "Change cookie settings"
201
  msgstr ""
202
 
203
- #: views/moove/admin/settings/general-settings.php:278
204
  msgid "Checkbox Labels"
205
  msgstr ""
206
 
@@ -212,43 +248,45 @@ msgstr ""
212
  msgid "Choose functionality"
213
  msgstr ""
214
 
215
- #: views/moove/admin/settings/general-settings.php:149
216
- msgid "Choose your layout"
 
217
  msgstr ""
218
 
219
- #: views/moove/admin/settings/banner-settings.php:305
220
- msgid "Close button"
221
  msgstr ""
222
 
223
- #: views/moove/admin/settings/banner-settings.php:317
224
- msgid ""
225
- "Close Button allows users to hide the Cookie Banner for the duration of the "
226
- "current browsing session. Cookies will not be accepted or rejected and the "
227
- "Cookie Banner will re-appear again for the user when they next visit your "
228
- "site."
229
  msgstr ""
230
 
231
- #: class-moove-gdpr-actions.php:324 class-moove-gdpr-actions.php:325
232
- #: class-moove-gdpr-actions.php:342 class-moove-gdpr-actions.php:343
233
  msgid "Close GDPR Cookie Banner"
234
  msgstr ""
235
 
236
- #: gdpr-modules/modal/modal-base-tabs.php:10
237
  #: gdpr-modules/modal/modal-base-tabs.php:11
238
- #: gdpr-modules/modal/modal-base-onepage.php:10
239
  #: gdpr-modules/modal/modal-base-onepage.php:11
 
240
  msgid "Close GDPR Cookie Settings"
241
  msgstr ""
242
 
243
- #: views/moove/admin/settings/banner-settings.php:352
244
  msgid "Colour scheme"
245
  msgstr ""
246
 
247
- #: views/moove/admin/settings/help.php:591
248
  msgid "Compatibility with Pixel Your Site plugin"
249
  msgstr ""
250
 
251
- #: views/moove/admin/settings/general-settings.php:300
 
 
 
 
252
  msgid "Consent expiry"
253
  msgstr ""
254
 
@@ -256,19 +294,20 @@ msgstr ""
256
  msgid "Consent Log"
257
  msgstr ""
258
 
259
- #: views/moove/admin/settings/help.php:141
260
  msgid "Consent Log here"
261
  msgstr ""
262
 
263
- #: views/moove/admin/settings/banner-settings.php:141
264
  msgid "Cookie Banner Content"
265
  msgstr ""
266
 
267
- #: views/moove/admin/settings/banner-settings.php:333
268
  msgid "Cookie Banner position"
269
  msgstr ""
270
 
271
- #: views/moove/admin/settings/banner-settings.php:121
 
272
  msgid "Cookie Banner Settings"
273
  msgstr ""
274
 
@@ -276,7 +315,7 @@ msgstr ""
276
  msgid "Cookie Declaration"
277
  msgstr ""
278
 
279
- #: class-gdpr-modules.php:345 class-gdpr-modules.php:410
280
  #: views/moove/admin/settings/settings-page.php:115
281
  #: views/moove/admin/settings/cookie-policy.php:57
282
  msgid "Cookie Policy"
@@ -286,25 +325,25 @@ msgstr ""
286
  msgid "Cookie Settings Logo"
287
  msgstr ""
288
 
289
- #: views/moove/admin/settings/general-settings.php:142
290
  msgid "Cookie Settings Screen - General Setup"
291
  msgstr ""
292
 
293
- #: views/moove/admin/settings/help.php:414
294
  msgid "Custom css for buttons"
295
  msgstr ""
296
 
297
- #: views/moove/admin/settings/help.php:655
298
  msgid ""
299
  "Custom tracking code on language sites (WPML, qTranslate, WP Multilang, "
300
  "Polylang)"
301
  msgstr ""
302
 
303
- #: views/moove/admin/settings/banner-settings.php:357
304
  msgid "Dark"
305
  msgstr ""
306
 
307
- #: views/moove/admin/settings/licence.php:133
308
  msgid "Deactivate Licence"
309
  msgstr ""
310
 
@@ -312,12 +351,12 @@ msgstr ""
312
  msgid "Default"
313
  msgstr ""
314
 
315
- #: views/moove/admin/settings/help.php:728
316
  msgid "Default capability: manage_options"
317
  msgstr ""
318
 
319
- #: views/moove/admin/settings/help.php:20
320
- #: views/moove/admin/settings/help.php:91
321
  msgid "Default Hooks"
322
  msgstr ""
323
 
@@ -326,31 +365,31 @@ msgstr ""
326
  msgid "Default status"
327
  msgstr ""
328
 
329
- #: views/moove/admin/settings/help.php:534
330
  msgid "Default value: SameSite=Lax"
331
  msgstr ""
332
 
333
- #: views/moove/admin/settings/help.php:493
334
  msgid "Define CDN URLs"
335
  msgstr ""
336
 
337
- #: views/moove/admin/settings/help.php:530
338
  msgid "Define custom cookie attribute (SameSite)"
339
  msgstr ""
340
 
341
- #: views/moove/admin/settings/help.php:573
342
  msgid "Delay script execution"
343
  msgstr ""
344
 
345
- #: views/moove/admin/settings/help.php:694
346
  msgid "Disable comments until cookies are accepted"
347
  msgstr ""
348
 
349
- #: views/moove/admin/settings/help.php:450
350
  msgid "Disable Monster Insights based on cookie selected"
351
  msgstr ""
352
 
353
- #: views/moove/admin/settings/help.php:637
354
  msgid "Disable script caching"
355
  msgstr ""
356
 
@@ -358,16 +397,17 @@ msgstr ""
358
  msgid "Disable the Full Screen Mode"
359
  msgstr ""
360
 
361
- #: class-gdpr-modules.php:242 class-gdpr-modules.php:272
362
- #: class-gdpr-modules.php:300
363
- #: views/moove/admin/settings/general-settings.php:188
364
- #: views/moove/admin/settings/general-settings.php:219
365
- #: views/moove/admin/settings/general-settings.php:250
366
- #: views/moove/admin/settings/general-settings.php:288
367
- #: views/moove/admin/settings/banner-settings.php:201
368
- #: views/moove/admin/settings/banner-settings.php:236
369
- #: views/moove/admin/settings/banner-settings.php:274
370
- #: views/moove/admin/settings/banner-settings.php:311
 
371
  #: views/moove/admin/settings/third-party-cookies.php:109
372
  #: views/moove/admin/settings/advanced-cookies.php:98
373
  #: views/moove/admin/settings/floating-button.php:74
@@ -383,28 +423,33 @@ msgstr ""
383
  msgid "Dismiss this notice."
384
  msgstr ""
385
 
386
- #: views/moove/admin/settings/help.php:100
 
 
 
 
 
387
  msgid "Does the plugin support subdomains or subfolders on multisite network?"
388
  msgstr ""
389
 
390
- #: views/moove/admin/settings/help.php:114
391
  msgid "Does this plugin block all cookies?"
392
  msgstr ""
393
 
394
- #: class-gdpr-modules.php:369
395
- #: views/moove/admin/settings/general-settings.php:229
396
  msgid "Enable All"
397
  msgstr ""
398
 
399
- #: views/moove/admin/settings/general-settings.php:226
400
  msgid "Enable All - Button Label"
401
  msgstr ""
402
 
403
- #: views/moove/admin/settings/general-settings.php:213
404
  msgid "Enable All button"
405
  msgstr ""
406
 
407
- #: views/moove/admin/settings/help.php:281
408
  msgid "Enable force reload"
409
  msgstr ""
410
 
@@ -414,31 +459,32 @@ msgstr ""
414
  msgid "Enable or Disable Cookies"
415
  msgstr ""
416
 
417
- #: class-gdpr-modules.php:241 class-gdpr-modules.php:271
418
- #: class-gdpr-modules.php:299
419
- #: views/moove/admin/settings/general-settings.php:188
420
- #: views/moove/admin/settings/general-settings.php:219
421
- #: views/moove/admin/settings/general-settings.php:250
422
- #: views/moove/admin/settings/general-settings.php:285
423
- #: views/moove/admin/settings/banner-settings.php:201
424
- #: views/moove/admin/settings/banner-settings.php:236
425
- #: views/moove/admin/settings/banner-settings.php:274
426
- #: views/moove/admin/settings/banner-settings.php:311
 
427
  #: views/moove/admin/settings/third-party-cookies.php:109
428
  #: views/moove/admin/settings/advanced-cookies.php:98
429
  #: views/moove/admin/settings/floating-button.php:74
430
  msgid "Enabled"
431
  msgstr ""
432
 
433
- #: class-moove-gdpr-content.php:352
434
  msgid "Enter a new licence key:"
435
  msgstr ""
436
 
437
- #: class-moove-gdpr-content.php:315 class-moove-gdpr-content.php:398
438
  msgid "Enter licence key:"
439
  msgstr ""
440
 
441
- #: class-moove-gdpr-content.php:305
442
  msgid "Enter new licence key"
443
  msgstr ""
444
 
@@ -448,15 +494,15 @@ msgid ""
448
  "can be http, https or protocol-relative"
449
  msgstr ""
450
 
451
- #: class-moove-gdpr-content.php:385
452
  msgid "Enter your licence key:"
453
  msgstr ""
454
 
455
- #: views/moove/admin/settings/help.php:393
456
  msgid "Extend styles"
457
  msgstr ""
458
 
459
- #: views/moove/admin/settings/help.php:19
460
  msgid "FAQ"
461
  msgstr ""
462
 
@@ -471,7 +517,7 @@ msgstr ""
471
  msgid "Footer Section"
472
  msgstr ""
473
 
474
- #: views/moove/admin/settings/help.php:77
475
  msgid ""
476
  "For example, we use Strictly Necessary Cookies to save information about "
477
  "which cookies the user consented to."
@@ -501,20 +547,20 @@ msgstr ""
501
  msgid "GDPR Analytics"
502
  msgstr ""
503
 
504
- #: gdpr-modules/infobar/infobar-base.php:9
505
  msgid "GDPR Cookie Banner"
506
  msgstr ""
507
 
508
  #. Name of the plugin
509
- #: class-moove-gdpr-actions.php:607
510
  msgid "GDPR Cookie Compliance"
511
  msgstr ""
512
 
513
  #: views/moove/admin/settings/settings-page.php:16
514
- msgid "GDPR Cookie Compliance Plugin"
515
  msgstr ""
516
 
517
- #: views/moove/admin/settings/help.php:725
518
  msgid "GDPR Cookie Compliance Settings Page - Permissions"
519
  msgstr ""
520
 
@@ -531,17 +577,20 @@ msgstr ""
531
  msgid "Geo Location Setup"
532
  msgstr ""
533
 
 
 
 
 
 
 
 
 
534
  #: views/moove/admin/settings/third-party-cookies.php:160
535
  #: views/moove/admin/settings/advanced-cookies.php:145
536
  msgid "Head Section"
537
  msgstr ""
538
 
539
- #: views/moove/admin/settings/settings-page.php:123
540
- #: views/moove/admin/settings/help.php:15
541
- msgid "Help, Hooks, Filters & Shortcodes"
542
- msgstr ""
543
-
544
- #: views/moove/admin/settings/help.php:162
545
  msgid ""
546
  "Here you can find the default hooks & custom scripts available in our plugin."
547
  msgstr ""
@@ -554,39 +603,43 @@ msgstr ""
554
  msgid "Hide Cookie Banner on Selected Posts / Pages"
555
  msgstr ""
556
 
557
- #: views/moove/admin/settings/help.php:614
558
  msgid "Hook for WooCommerce Facebook Pixel plugin"
559
  msgstr ""
560
 
561
- #: views/moove/admin/settings/help.php:186
562
  msgid "HOOK to GDPR custom 3RD-PARTY script by php – BODY"
563
  msgstr ""
564
 
565
- #: views/moove/admin/settings/help.php:205
566
  msgid "HOOK to GDPR custom 3RD-PARTY script by php – FOOTER"
567
  msgstr ""
568
 
569
- #: views/moove/admin/settings/help.php:167
570
  msgid "HOOK to GDPR custom 3RD-PARTY script by php – HEAD"
571
  msgstr ""
572
 
573
- #: views/moove/admin/settings/help.php:243
574
  msgid "HOOK to GDPR custom ADVANCED-PARTY script by php – BODY"
575
  msgstr ""
576
 
577
- #: views/moove/admin/settings/help.php:262
578
  msgid "HOOK to GDPR custom ADVANCED-PARTY script by php – FOOTER"
579
  msgstr ""
580
 
581
- #: views/moove/admin/settings/help.php:224
582
  msgid "HOOK to GDPR custom ADVANCED-PARTY script by php – HEAD"
583
  msgstr ""
584
 
585
- #: views/moove/admin/settings/help.php:30
586
  msgid "How can I link directly to the Cookie Settings pop-up screen?"
587
  msgstr ""
588
 
589
- #: views/moove/admin/settings/help.php:479
 
 
 
 
590
  msgid ""
591
  "However, you can prevent the plugin from storing user preferences into our "
592
  "temporary cookie by using the hook below."
@@ -600,14 +653,14 @@ msgstr ""
600
  msgid "https://www.mooveagency.com"
601
  msgstr ""
602
 
603
- #: class-moove-gdpr-content.php:72
604
  msgid ""
605
  "If you disable this cookie, we will not be able to save your preferences. "
606
  "This means that every time you visit this website you will need to enable or "
607
  "disable cookies again."
608
  msgstr ""
609
 
610
- #: views/moove/admin/settings/help.php:315
611
  msgid ""
612
  "If you find that our GDPR Cookie Compliance Banner or the Settings Screen is "
613
  "covered by another element on your site, you can add the following to your "
@@ -622,11 +675,7 @@ msgstr ""
622
  msgid "Inherit font-family from your WordPress theme"
623
  msgstr ""
624
 
625
- #: views/moove/admin/settings/help.php:356
626
- msgid "JavaScript consent variables"
627
- msgstr ""
628
-
629
- #: class-moove-gdpr-content.php:94
630
  msgid "Keeping this cookie enabled helps us to improve our website."
631
  msgstr ""
632
 
@@ -638,7 +687,7 @@ msgstr ""
638
  msgid "Licence Manager"
639
  msgstr ""
640
 
641
- #: views/moove/admin/settings/banner-settings.php:357
642
  msgid "Light"
643
  msgstr ""
644
 
@@ -646,7 +695,7 @@ msgstr ""
646
  msgid "Logo Position"
647
  msgstr ""
648
 
649
- #: views/moove/admin/settings/help.php:433
650
  msgid "Make \"Reject\" button less visible"
651
  msgstr ""
652
 
@@ -654,31 +703,52 @@ msgstr ""
654
  msgid "Moove Agency"
655
  msgstr ""
656
 
657
- #: class-moove-gdpr-content.php:108
 
 
 
 
 
 
 
 
 
658
  msgid "More information about our [privacy_link]Cookie Policy[/privacy_link]"
659
  msgstr ""
660
 
661
- #: views/moove/admin/settings/banner-settings.php:134
662
  #: views/moove/admin/settings/cookie-policy.php:74
663
  #: views/moove/admin/settings/third-party-cookies.php:95
664
  #: views/moove/admin/settings/advanced-cookies.php:83
665
  msgid "Off"
666
  msgstr ""
667
 
668
- #: views/moove/admin/settings/banner-settings.php:134
 
 
 
 
669
  #: views/moove/admin/settings/cookie-policy.php:74
670
  #: views/moove/admin/settings/third-party-cookies.php:95
671
  #: views/moove/admin/settings/advanced-cookies.php:83
672
  msgid "On"
673
  msgstr ""
674
 
675
- #: views/moove/admin/settings/help.php:125
676
  msgid ""
677
  "Once I add scripts to this plugin, should I delete them from the website’s "
678
  "code?"
679
  msgstr ""
680
 
681
- #: views/moove/admin/settings/general-settings.php:160
 
 
 
 
 
 
 
 
682
  msgid "One page layout"
683
  msgstr ""
684
 
@@ -690,24 +760,28 @@ msgstr ""
690
  msgid "Optional, leave it empty to use default domain"
691
  msgstr ""
692
 
693
- #. Description of the plugin
694
  msgid ""
695
- "Our plugin is useful in preparing your site for the following data "
696
- "protection and privacy regulations: GDPR, CCPA, PIPEDA, AAP, LGPD and others."
697
  msgstr ""
698
 
699
- #: views/moove/admin/settings/settings-page.php:19
700
  msgid ""
701
  "Our plugin is useful in preparing your site for the following data "
702
- "protection and privacy regulations: GDPR, PIPEDA, CCPA, AAP, LGPD and others."
703
  msgstr ""
704
 
705
- #: views/moove/admin/settings/help.php:64
706
  msgid ""
707
  "Our plugin loads scripts using JavaScript which is why you cannot find them "
708
  "when viewing the page source code."
709
  msgstr ""
710
 
 
 
 
 
711
  #: views/moove/admin/settings/third-party-cookies.php:153
712
  #: views/moove/admin/settings/advanced-cookies.php:140
713
  msgid ""
@@ -715,7 +789,7 @@ msgid ""
715
  "enables these cookies."
716
  msgstr ""
717
 
718
- #: views/moove/admin/settings/help.php:334
719
  msgid "PHP cookie checker"
720
  msgstr ""
721
 
@@ -723,17 +797,17 @@ msgstr ""
723
  msgid "pixels"
724
  msgstr ""
725
 
726
- #: views/moove/admin/settings/licence.php:131
727
  msgid "Please confirm that you would like to de-activate this licence."
728
  msgstr ""
729
 
730
- #: views/moove/admin/settings/general-settings.php:351
731
  msgid ""
732
  "Please confirm that you would like to reset the plugin settings to the "
733
  "default state"
734
  msgstr ""
735
 
736
- #: class-moove-gdpr-content.php:154
737
  msgid ""
738
  "Please enable Strictly Necessary Cookies first so that we can save your "
739
  "preferences!"
@@ -751,7 +825,7 @@ msgid ""
751
  "at every visit)."
752
  msgstr ""
753
 
754
- #: views/moove/admin/settings/help.php:480
755
  msgid ""
756
  "Please note, without our \"temporary cookie\", the cookie banner will be "
757
  "displayed for the user on every page load - this is because the site will "
@@ -759,41 +833,41 @@ msgid ""
759
  "anywhere."
760
  msgstr ""
761
 
762
- #: views/moove/admin/settings/general-settings.php:316
763
  msgid "Powered by GDPR"
764
  msgstr ""
765
 
766
- #: views/moove/admin/settings/help.php:92
767
  msgid "pre-defined advanced hooks here"
768
  msgstr ""
769
 
770
- #: views/moove/admin/settings/help.php:21
771
  msgid "Premium Hooks"
772
  msgstr ""
773
 
774
- #: views/moove/admin/settings/help.php:22
775
  msgid "Premium Shortcodes"
776
  msgstr ""
777
 
778
- #: views/moove/admin/settings/help.php:296
779
  msgid "Prevent ajax script injection"
780
  msgstr ""
781
 
782
- #: views/moove/admin/settings/help.php:474
783
  msgid "Prevent storing a \"temporary reject cookie\" when cookies are rejected"
784
  msgstr ""
785
 
786
- #: class-gdpr-modules.php:89 class-gdpr-modules.php:208
787
- #: class-gdpr-modules.php:394 views/moove/admin/settings/settings-page.php:89
788
  #: views/moove/admin/settings/privacy-overview.php:49
789
  msgid "Privacy Overview"
790
  msgstr ""
791
 
792
- #: moove-gdpr.php:104
793
  msgid "Rate"
794
  msgstr ""
795
 
796
- #: views/moove/admin/settings/help.php:548
797
  msgid "Read cookie values with JavaScript"
798
  msgstr ""
799
 
@@ -801,41 +875,41 @@ msgstr ""
801
  msgid "Recommended size:"
802
  msgstr ""
803
 
804
- #: class-moove-gdpr-actions.php:295
805
- #: views/moove/admin/settings/banner-settings.php:253
806
  msgid "Reject"
807
  msgstr ""
808
 
809
- #: views/moove/admin/settings/banner-settings.php:250
810
  msgid "Reject - Button Label"
811
  msgstr ""
812
 
813
- #: class-gdpr-modules.php:372
814
- #: views/moove/admin/settings/general-settings.php:260
815
  msgid "Reject All"
816
  msgstr ""
817
 
818
- #: views/moove/admin/settings/general-settings.php:257
819
  msgid "Reject All - Button Label"
820
  msgstr ""
821
 
822
- #: views/moove/admin/settings/general-settings.php:244
823
  msgid "Reject All button"
824
  msgstr ""
825
 
826
- #: views/moove/admin/settings/banner-settings.php:230
827
  msgid "Reject button"
828
  msgstr ""
829
 
830
- #: views/moove/admin/settings/banner-settings.php:244
831
  msgid "Reject button allows users to reject all cookies."
832
  msgstr ""
833
 
834
- #: views/moove/admin/settings/help.php:34
835
  msgid "Relative Path (RECOMMENDED)"
836
  msgstr ""
837
 
838
- #: views/moove/admin/settings/help.php:512
839
  msgid "Remove jQuery script dependency"
840
  msgstr ""
841
 
@@ -843,15 +917,15 @@ msgstr ""
843
  msgid "Renew Consent"
844
  msgstr ""
845
 
846
- #: class-moove-gdpr-content.php:299
847
  msgid "Renew your licence"
848
  msgstr ""
849
 
850
- #: views/moove/admin/settings/general-settings.php:354
851
  msgid "Reset plugin to default state"
852
  msgstr ""
853
 
854
- #: views/moove/admin/settings/general-settings.php:336
855
  msgid "Reset Settings"
856
  msgstr ""
857
 
@@ -863,13 +937,13 @@ msgstr ""
863
  msgid "Rounded corners"
864
  msgstr ""
865
 
866
- #: views/moove/admin/settings/general-settings.php:198
867
  msgid "Save Changes"
868
  msgstr ""
869
 
870
- #: views/moove/admin/settings/general-settings.php:334
871
  #: views/moove/admin/settings/strictly-necessary-cookies.php:175
872
- #: views/moove/admin/settings/banner-settings.php:369
873
  #: views/moove/admin/settings/branding.php:220
874
  #: views/moove/admin/settings/cookie-policy.php:117
875
  #: views/moove/admin/settings/privacy-overview.php:94
@@ -879,15 +953,15 @@ msgstr ""
879
  msgid "Save changes"
880
  msgstr ""
881
 
882
- #: class-gdpr-modules.php:366
883
  msgid "Save Settings"
884
  msgstr ""
885
 
886
- #: views/moove/admin/settings/general-settings.php:195
887
  msgid "Save Settings - Button Label"
888
  msgstr ""
889
 
890
- #: views/moove/admin/settings/general-settings.php:182
891
  msgid "Save Settings button"
892
  msgstr ""
893
 
@@ -898,28 +972,28 @@ msgstr ""
898
  msgid "Select"
899
  msgstr ""
900
 
901
- #: views/moove/admin/settings/help.php:312
902
  msgid "Set custom z-index"
903
  msgstr ""
904
 
905
- #: class-moove-gdpr-actions.php:306 gdpr-functions.php:118
906
- #: views/moove/admin/settings/banner-settings.php:290
907
  msgid "Settings"
908
  msgstr ""
909
 
910
- #: views/moove/admin/settings/banner-settings.php:166
911
  msgid "settings"
912
  msgstr ""
913
 
914
- #: views/moove/admin/settings/banner-settings.php:287
915
  msgid "Settings - Button Label"
916
  msgstr ""
917
 
918
- #: views/moove/admin/settings/banner-settings.php:268
919
  msgid "Settings button"
920
  msgstr ""
921
 
922
- #: views/moove/admin/settings/banner-settings.php:281
923
  msgid "Settings button opens up the Cookie Settings Screen."
924
  msgstr ""
925
 
@@ -927,7 +1001,7 @@ msgstr ""
927
  msgid "Settings saved."
928
  msgstr ""
929
 
930
- #: class-moove-gdpr-content.php:121
931
  msgid "Sorry,<br /> the content is blocked!"
932
  msgstr ""
933
 
@@ -939,13 +1013,13 @@ msgstr ""
939
  msgid "Squared corners"
940
  msgstr ""
941
 
942
- #: class-moove-gdpr-content.php:56
943
  msgid ""
944
  "Strictly Necessary Cookie should be enabled at all times so that we can save "
945
  "your preferences for cookie settings."
946
  msgstr ""
947
 
948
- #: class-gdpr-modules.php:230 class-gdpr-modules.php:398
949
  #: views/moove/admin/settings/settings-page.php:95
950
  #: views/moove/admin/settings/strictly-necessary-cookies.php:67
951
  msgid "Strictly Necessary Cookies"
@@ -955,7 +1029,7 @@ msgstr ""
955
  msgid "Strictly necessary required message."
956
  msgstr ""
957
 
958
- #: gdpr-functions.php:124
959
  msgid "Support"
960
  msgstr ""
961
 
@@ -979,48 +1053,48 @@ msgstr ""
979
  msgid "Tab Warning Message"
980
  msgstr ""
981
 
982
- #: views/moove/admin/settings/general-settings.php:154
983
  msgid "Tabs layout"
984
  msgstr ""
985
 
986
- #: views/moove/admin/settings/help.php:76
987
  msgid ""
988
  "The \"Strictly Necessary Cookies\", sometimes called Essential Cookies, are "
989
  "cookies that are necessary for your site to function properly."
990
  msgstr ""
991
 
992
- #: views/moove/admin/settings/help.php:139
993
  msgid ""
994
  "The Consent Log features stores all data in your WordPress website database."
995
  msgstr ""
996
 
997
- #: views/moove/admin/settings/help.php:478
998
  msgid ""
999
  "The cookie banner will be displayed again at the next browsing session so "
1000
  "the user can change their preferences then."
1001
  msgstr ""
1002
 
1003
- #: views/moove/admin/settings/help.php:140
1004
  msgid ""
1005
  "The data stored includes: Consent Date, User IP address, Cookies Accepted "
1006
  "and User Email (for logged-in users)."
1007
  msgstr ""
1008
 
1009
- #: views/moove/admin/settings/help.php:61
1010
  msgid ""
1011
  "The scripts added to the plugin settings are not visible in the page source "
1012
  "code."
1013
  msgstr ""
1014
 
1015
- #: class-moove-gdpr-content.php:519
1016
  msgid "There is a new version of GDPR Cookie Compliance - Premium Add-On."
1017
  msgstr ""
1018
 
1019
- #: views/moove/admin/settings/licence.php:131
1020
  msgid "This action will remove all of the premium features from your website."
1021
  msgstr ""
1022
 
1023
- #: views/moove/admin/settings/general-settings.php:351
1024
  msgid "This action will remove all of your custom modifications and settings"
1025
  msgstr ""
1026
 
@@ -1028,19 +1102,25 @@ msgstr ""
1028
  msgid "This option is not available in Full Screen Mode"
1029
  msgstr ""
1030
 
1031
- #: views/moove/admin/settings/help.php:153
1032
  msgid ""
1033
  "THIS PLUGIN DOES NOT MAKE YOUR WEBSITE COMPLIANT. YOU ARE RESPONSIBLE FOR "
1034
  "ENSURING THAT ALL LEGAL REQUIREMENTS ARE MET ON YOUR WEBSITE."
1035
  msgstr ""
1036
 
1037
- #: views/moove/admin/settings/help.php:152
1038
  msgid ""
1039
  "This plugin is just a template and needs to be setup correctly in order to "
1040
  "work properly."
1041
  msgstr ""
1042
 
1043
- #: views/moove/admin/settings/help.php:117
 
 
 
 
 
 
1044
  msgid ""
1045
  "This plugin only restricts cookies for scripts that you have setup in the "
1046
  "Plugin Settings. If you want to block all cookies, you have to add all "
@@ -1069,47 +1149,55 @@ msgid ""
1069
  "most interesting and useful."
1070
  msgstr ""
1071
 
1072
- #: class-moove-gdpr-content.php:93
1073
  msgid ""
1074
  "This website uses Google Analytics to collect anonymous information such as "
1075
  "the number of visitors to the site, and the most popular pages."
1076
  msgstr ""
1077
 
1078
- #: class-moove-gdpr-content.php:83
1079
  msgid ""
1080
  "This website uses the following additional cookies:</p><p>(List the cookies "
1081
  "that you are using on the website here.)"
1082
  msgstr ""
1083
 
1084
- #: views/moove/admin/settings/help.php:50
1085
  msgid "To ACCEPT all cookies"
1086
  msgstr ""
1087
 
1088
- #: views/moove/admin/settings/help.php:52
1089
  msgid "To REJECT cookies"
1090
  msgstr ""
1091
 
1092
- #: class-moove-gdpr-content.php:122
1093
  msgid "To unlock, please enable the cookies!"
1094
  msgstr ""
1095
 
1096
- #: views/moove/admin/settings/help.php:65
1097
  msgid ""
1098
  "To view the scripts you can use the Developer Console in Chrome browser "
1099
  "(Inspect Element feature)."
1100
  msgstr ""
1101
 
1102
- #: views/moove/admin/settings/banner-settings.php:336
1103
  msgid "Top"
1104
  msgstr ""
1105
 
1106
- #: views/moove/admin/settings/banner-settings.php:128
 
 
 
 
1107
  #: views/moove/admin/settings/cookie-policy.php:67
1108
  #: views/moove/admin/settings/third-party-cookies.php:88
1109
  #: views/moove/admin/settings/advanced-cookies.php:77
1110
  msgid "Turn"
1111
  msgstr ""
1112
 
 
 
 
 
1113
  #: views/moove/admin/settings/floating-button.php:106
1114
  msgid "Visibility on mobile"
1115
  msgstr ""
@@ -1118,14 +1206,14 @@ msgstr ""
1118
  msgid "Visible"
1119
  msgstr ""
1120
 
1121
- #: views/moove/admin/settings/help.php:78
1122
  msgid ""
1123
  "We are not storing any sensitive or personal data there, the cookie file "
1124
  "contains only one of the following strings:"
1125
  msgstr ""
1126
 
1127
- #: class-gdpr-modules.php:133
1128
- #: views/moove/admin/settings/banner-settings.php:149
1129
  msgid "We are using cookies to give you the best experience on our website."
1130
  msgstr ""
1131
 
@@ -1133,27 +1221,31 @@ msgstr ""
1133
  msgid "We have detected that you have a multi-language setup."
1134
  msgstr ""
1135
 
1136
- #: views/moove/admin/settings/help.php:73
1137
  msgid "What are \"Strictly Necessary Cookies / Essential Cookies\"?"
1138
  msgstr ""
1139
 
1140
- #: views/moove/admin/settings/help.php:136
1141
  msgid "What information does the Consent Log store and where is it stored?"
1142
  msgstr ""
1143
 
1144
- #: views/moove/admin/settings/help.php:103
 
 
 
 
1145
  msgid ""
1146
  "Yes, the plugin supports subdomains on the same WordPress Multisite Network "
1147
  "as part of our Premium Add-on"
1148
  msgstr ""
1149
 
1150
- #: views/moove/admin/settings/help.php:91
1151
  msgid ""
1152
  "Yes, we have implemented hooks that allow you to implement custom code "
1153
  "snippets."
1154
  msgstr ""
1155
 
1156
- #: views/moove/admin/settings/help.php:128
1157
  msgid ""
1158
  "Yes. Once you setup the plugin, you should delete the scripts you uploaded "
1159
  "to the plugin from your website’s code to ensure that your scripts are not "
@@ -1171,58 +1263,58 @@ msgid ""
1171
  "You can align the position eg.: <strong>top: 20px; right: 20px;</strong>"
1172
  msgstr ""
1173
 
1174
- #: views/moove/admin/settings/help.php:92
1175
  msgid "You can also find the list of all"
1176
  msgstr ""
1177
 
1178
- #: class-moove-gdpr-content.php:270 class-moove-gdpr-content.php:370
1179
  msgid "You can buy licences from our [store_link]online store[/store_link]."
1180
  msgstr ""
1181
 
1182
- #: class-moove-gdpr-content.php:333
1183
  msgid ""
1184
  "You can buy more licences from our [store_link]online store[/store_link]."
1185
  msgstr ""
1186
 
1187
- #: views/moove/admin/settings/general-settings.php:170
1188
- #: views/moove/admin/settings/banner-settings.php:183
1189
  msgid "You can change the order by drag & drop"
1190
  msgstr ""
1191
 
1192
- #: class-gdpr-modules.php:134
1193
- #: views/moove/admin/settings/banner-settings.php:150
1194
  #, php-format
1195
  msgid ""
1196
  "You can find out more about which cookies we are using or switch them off in "
1197
  "[%s]settings[/%s]."
1198
  msgstr ""
1199
 
1200
- #: views/moove/admin/settings/help.php:141
1201
  msgid "You can see the preview of"
1202
  msgstr ""
1203
 
1204
- #: views/moove/admin/settings/help.php:49
1205
  msgid ""
1206
  "You can use the following links to accept or reject cookies straight-away. "
1207
  msgstr ""
1208
 
1209
- #: views/moove/admin/settings/banner-settings.php:164
1210
  msgid "You can use the following shortcut to link the Cookie Settings Screen:"
1211
  msgstr ""
1212
 
1213
- #: views/moove/admin/settings/help.php:33
1214
  msgid "You can use the following to display the Cookie Settings Screen window:"
1215
  msgstr ""
1216
 
1217
  #: views/moove/admin/settings/settings-page.php:39
1218
- msgid "You need to insert the relevant script for the settings to be saved!"
1219
  msgstr ""
1220
 
1221
- #: views/moove/admin/settings/help.php:91
1222
  msgid "You will find the list of popular hooks here:"
1223
  msgstr ""
1224
 
1225
- #: class-moove-gdpr-content.php:300
1226
  msgid ""
1227
  "Your licence has expired. You will not receive the latest updates and "
1228
  "features unless you renew your licence."
3
  msgstr ""
4
  "Project-Id-Version: PACKAGE VERSION\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2022-04-06 07:13+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Generator: Loco https://localise.biz/"
16
 
17
+ #: views/moove/admin/settings/general-settings.php:392
18
  msgid ""
19
  "(Enter 0 if you want the consent to expire at the end of the current "
20
  "browsing session.)"
21
  msgstr ""
22
 
23
+ #: views/moove/admin/settings/banner-settings.php:338
24
+ msgid ""
25
+ "(The Cookie Banner becomes hidden for the duration of the current browsing "
26
+ "session, without accepting or rejecting cookies. The Cookie Banner will re-"
27
+ "appear when the user next visits your site.)"
28
+ msgstr ""
29
+
30
+ #: views/moove/admin/settings/general-settings.php:320
31
+ msgid "(The Cookie Setting Screen will be closed)"
32
+ msgstr ""
33
+
34
+ #: views/moove/admin/settings/general-settings.php:336
35
+ #: views/moove/admin/settings/banner-settings.php:354
36
+ msgid ""
37
+ "(The cookies are accepted and the cookie banner does not re-appear until the "
38
+ "cookie consent expires.)"
39
+ msgstr ""
40
+
41
+ #: views/moove/admin/settings/general-settings.php:328
42
+ #: views/moove/admin/settings/banner-settings.php:346
43
+ msgid ""
44
+ "(The cookies are rejected and the cookie banner does not re-appear until the "
45
+ "cookie consent expires.)"
46
+ msgstr ""
47
+
48
+ #: class-gdpr-modules.php:297 class-gdpr-modules.php:411
49
  #: views/moove/admin/settings/settings-page.php:102
50
  #: views/moove/admin/settings/third-party-cookies.php:77
51
  msgid "3rd Party Cookies"
52
  msgstr ""
53
 
54
+ #: views/moove/admin/settings/help.php:124
55
  msgid "Absolute Path"
56
  msgstr ""
57
 
58
+ #: class-moove-gdpr-content.php:150 class-gdpr-modules.php:164
59
+ #: views/moove/admin/settings/banner-settings.php:222
60
  msgid "Accept"
61
  msgstr ""
62
 
63
+ #: views/moove/admin/settings/banner-settings.php:219
64
  msgid "Accept - Button Label"
65
  msgstr ""
66
 
67
+ #: views/moove/admin/settings/banner-settings.php:202
68
  msgid "Accept button"
69
  msgstr ""
70
 
71
+ #: views/moove/admin/settings/banner-settings.php:213
72
  msgid "Accept button allows users to accept all cookies."
73
  msgstr ""
74
 
76
  msgid "Accept Cookies on Scroll / Hide timer"
77
  msgstr ""
78
 
79
+ #: class-moove-gdpr-content.php:276 class-moove-gdpr-content.php:283
80
+ #: class-moove-gdpr-content.php:289
81
  msgid "Activate"
82
  msgstr ""
83
 
102
  "pages when user accepts these cookies"
103
  msgstr ""
104
 
105
+ #: class-gdpr-modules.php:269 class-gdpr-modules.php:415
106
  #: views/moove/admin/settings/settings-page.php:109
107
  #: views/moove/admin/settings/advanced-cookies.php:67
108
  msgid "Additional Cookies"
109
  msgstr ""
110
 
111
+ #: class-moove-gdpr-content.php:151
112
  msgid "Adjust your settings"
113
  msgstr ""
114
 
120
  msgid "Always enabled and content hidden from user"
121
  msgstr ""
122
 
123
+ #: views/moove/admin/settings/general-settings.php:319
124
+ #: views/moove/admin/settings/banner-settings.php:337
125
+ msgid "as a Close button"
126
+ msgstr ""
127
+
128
+ #: views/moove/admin/settings/general-settings.php:327
129
+ #: views/moove/admin/settings/banner-settings.php:345
130
+ msgid "as a Reject button"
131
+ msgstr ""
132
+
133
+ #: views/moove/admin/settings/general-settings.php:335
134
+ #: views/moove/admin/settings/banner-settings.php:353
135
+ msgid "as an Accept button"
136
  msgstr ""
137
 
138
  #: views/moove/admin/settings/third-party-cookies.php:165
140
  msgid "Body Section"
141
  msgstr ""
142
 
143
+ #: views/moove/admin/settings/banner-settings.php:384
144
  msgid "Bottom"
145
  msgstr ""
146
 
173
  msgid "Button - Hover Label"
174
  msgstr ""
175
 
176
+ #: views/moove/admin/settings/general-settings.php:188
177
+ #: views/moove/admin/settings/banner-settings.php:189
178
  msgid "Button Setup"
179
  msgstr ""
180
 
182
  msgid "Button Style"
183
  msgstr ""
184
 
185
+ #: class-moove-gdpr-content.php:293 class-moove-gdpr-content.php:383
186
  msgid "Buy licence"
187
  msgstr ""
188
 
189
+ #: class-moove-gdpr-content.php:346
190
  msgid "Buy more licences"
191
  msgstr ""
192
 
199
  msgid "by default cookies should be"
200
  msgstr ""
201
 
202
+ #: views/moove/admin/settings/help.php:629
203
  msgid ""
204
  "By default, our plugin stores user preferences in \"moove_gdpr_popup\" "
205
  "cookie. When a user rejects cookies, we do not show the cookie banner again "
207
  "cookie that tells us that this user rejected cookies."
208
  msgstr ""
209
 
210
+ #: views/moove/admin/settings/help.php:413
211
  msgid ""
212
  "By default, our plugin uses AJAX script injection to function properly, "
213
  "however, this may sometimes cause high server load. For that reason, you can "
216
  "working."
217
  msgstr ""
218
 
219
+ #: views/moove/admin/settings/help.php:189
220
  msgid "Can I use custom code or hooks with your plugin?"
221
  msgstr ""
222
 
223
+ #: views/moove/admin/settings/help.php:134
224
  msgid "Can I use direct links to “Accept” or “Reject” cookies?"
225
  msgstr ""
226
 
236
  msgid "Change cookie settings"
237
  msgstr ""
238
 
239
+ #: views/moove/admin/settings/general-settings.php:361
240
  msgid "Checkbox Labels"
241
  msgstr ""
242
 
248
  msgid "Choose functionality"
249
  msgstr ""
250
 
251
+ #: views/moove/admin/settings/general-settings.php:308
252
+ #: views/moove/admin/settings/banner-settings.php:326
253
+ msgid "Choose how the Close button should behave"
254
  msgstr ""
255
 
256
+ #: views/moove/admin/settings/general-settings.php:168
257
+ msgid "Choose your layout"
258
  msgstr ""
259
 
260
+ #: views/moove/admin/settings/general-settings.php:294
261
+ #: views/moove/admin/settings/banner-settings.php:312
262
+ msgid "Close button"
 
 
 
263
  msgstr ""
264
 
265
+ #: class-moove-gdpr-actions.php:336 class-moove-gdpr-actions.php:337
266
+ #: class-moove-gdpr-actions.php:354 class-moove-gdpr-actions.php:355
267
  msgid "Close GDPR Cookie Banner"
268
  msgstr ""
269
 
 
270
  #: gdpr-modules/modal/modal-base-tabs.php:11
271
+ #: gdpr-modules/modal/modal-base-tabs.php:12
272
  #: gdpr-modules/modal/modal-base-onepage.php:11
273
+ #: gdpr-modules/modal/modal-base-onepage.php:12
274
  msgid "Close GDPR Cookie Settings"
275
  msgstr ""
276
 
277
+ #: views/moove/admin/settings/banner-settings.php:397
278
  msgid "Colour scheme"
279
  msgstr ""
280
 
281
+ #: views/moove/admin/settings/help.php:745
282
  msgid "Compatibility with Pixel Your Site plugin"
283
  msgstr ""
284
 
285
+ #: views/moove/admin/settings/help.php:165
286
+ msgid "configure GA/GTM consent settings."
287
+ msgstr ""
288
+
289
+ #: views/moove/admin/settings/general-settings.php:383
290
  msgid "Consent expiry"
291
  msgstr ""
292
 
294
  msgid "Consent Log"
295
  msgstr ""
296
 
297
+ #: views/moove/admin/settings/help.php:255
298
  msgid "Consent Log here"
299
  msgstr ""
300
 
301
+ #: views/moove/admin/settings/banner-settings.php:148
302
  msgid "Cookie Banner Content"
303
  msgstr ""
304
 
305
+ #: views/moove/admin/settings/banner-settings.php:378
306
  msgid "Cookie Banner position"
307
  msgstr ""
308
 
309
+ #: views/moove/admin/settings/settings-page.php:80
310
+ #: views/moove/admin/settings/banner-settings.php:128
311
  msgid "Cookie Banner Settings"
312
  msgstr ""
313
 
315
  msgid "Cookie Declaration"
316
  msgstr ""
317
 
318
+ #: class-gdpr-modules.php:354 class-gdpr-modules.php:419
319
  #: views/moove/admin/settings/settings-page.php:115
320
  #: views/moove/admin/settings/cookie-policy.php:57
321
  msgid "Cookie Policy"
325
  msgid "Cookie Settings Logo"
326
  msgstr ""
327
 
328
+ #: views/moove/admin/settings/general-settings.php:161
329
  msgid "Cookie Settings Screen - General Setup"
330
  msgstr ""
331
 
332
+ #: views/moove/admin/settings/help.php:566
333
  msgid "Custom css for buttons"
334
  msgstr ""
335
 
336
+ #: views/moove/admin/settings/help.php:809
337
  msgid ""
338
  "Custom tracking code on language sites (WPML, qTranslate, WP Multilang, "
339
  "Polylang)"
340
  msgstr ""
341
 
342
+ #: views/moove/admin/settings/banner-settings.php:402
343
  msgid "Dark"
344
  msgstr ""
345
 
346
+ #: views/moove/admin/settings/licence.php:116
347
  msgid "Deactivate Licence"
348
  msgstr ""
349
 
351
  msgid "Default"
352
  msgstr ""
353
 
354
+ #: views/moove/admin/settings/help.php:882
355
  msgid "Default capability: manage_options"
356
  msgstr ""
357
 
358
+ #: views/moove/admin/settings/help.php:21
359
+ #: views/moove/admin/settings/help.php:192
360
  msgid "Default Hooks"
361
  msgstr ""
362
 
365
  msgid "Default status"
366
  msgstr ""
367
 
368
+ #: views/moove/admin/settings/help.php:686
369
  msgid "Default value: SameSite=Lax"
370
  msgstr ""
371
 
372
+ #: views/moove/admin/settings/help.php:645
373
  msgid "Define CDN URLs"
374
  msgstr ""
375
 
376
+ #: views/moove/admin/settings/help.php:682
377
  msgid "Define custom cookie attribute (SameSite)"
378
  msgstr ""
379
 
380
+ #: views/moove/admin/settings/help.php:727
381
  msgid "Delay script execution"
382
  msgstr ""
383
 
384
+ #: views/moove/admin/settings/help.php:848
385
  msgid "Disable comments until cookies are accepted"
386
  msgstr ""
387
 
388
+ #: views/moove/admin/settings/help.php:602
389
  msgid "Disable Monster Insights based on cookie selected"
390
  msgstr ""
391
 
392
+ #: views/moove/admin/settings/help.php:791
393
  msgid "Disable script caching"
394
  msgstr ""
395
 
397
  msgid "Disable the Full Screen Mode"
398
  msgstr ""
399
 
400
+ #: class-gdpr-modules.php:251 class-gdpr-modules.php:281
401
+ #: class-gdpr-modules.php:309
402
+ #: views/moove/admin/settings/general-settings.php:207
403
+ #: views/moove/admin/settings/general-settings.php:238
404
+ #: views/moove/admin/settings/general-settings.php:269
405
+ #: views/moove/admin/settings/general-settings.php:300
406
+ #: views/moove/admin/settings/general-settings.php:371
407
+ #: views/moove/admin/settings/banner-settings.php:208
408
+ #: views/moove/admin/settings/banner-settings.php:243
409
+ #: views/moove/admin/settings/banner-settings.php:281
410
+ #: views/moove/admin/settings/banner-settings.php:318
411
  #: views/moove/admin/settings/third-party-cookies.php:109
412
  #: views/moove/admin/settings/advanced-cookies.php:98
413
  #: views/moove/admin/settings/floating-button.php:74
423
  msgid "Dismiss this notice."
424
  msgstr ""
425
 
426
+ #: views/moove/admin/settings/settings-page.php:123
427
+ #: views/moove/admin/settings/help.php:15
428
+ msgid "Documentation"
429
+ msgstr ""
430
+
431
+ #: views/moove/admin/settings/help.php:201
432
  msgid "Does the plugin support subdomains or subfolders on multisite network?"
433
  msgstr ""
434
 
435
+ #: views/moove/admin/settings/help.php:215
436
  msgid "Does this plugin block all cookies?"
437
  msgstr ""
438
 
439
+ #: class-gdpr-modules.php:378
440
+ #: views/moove/admin/settings/general-settings.php:248
441
  msgid "Enable All"
442
  msgstr ""
443
 
444
+ #: views/moove/admin/settings/general-settings.php:245
445
  msgid "Enable All - Button Label"
446
  msgstr ""
447
 
448
+ #: views/moove/admin/settings/general-settings.php:232
449
  msgid "Enable All button"
450
  msgstr ""
451
 
452
+ #: views/moove/admin/settings/help.php:395
453
  msgid "Enable force reload"
454
  msgstr ""
455
 
459
  msgid "Enable or Disable Cookies"
460
  msgstr ""
461
 
462
+ #: class-gdpr-modules.php:250 class-gdpr-modules.php:280
463
+ #: class-gdpr-modules.php:308
464
+ #: views/moove/admin/settings/general-settings.php:207
465
+ #: views/moove/admin/settings/general-settings.php:238
466
+ #: views/moove/admin/settings/general-settings.php:269
467
+ #: views/moove/admin/settings/general-settings.php:300
468
+ #: views/moove/admin/settings/general-settings.php:368
469
+ #: views/moove/admin/settings/banner-settings.php:208
470
+ #: views/moove/admin/settings/banner-settings.php:243
471
+ #: views/moove/admin/settings/banner-settings.php:281
472
+ #: views/moove/admin/settings/banner-settings.php:318
473
  #: views/moove/admin/settings/third-party-cookies.php:109
474
  #: views/moove/admin/settings/advanced-cookies.php:98
475
  #: views/moove/admin/settings/floating-button.php:74
476
  msgid "Enabled"
477
  msgstr ""
478
 
479
+ #: class-moove-gdpr-content.php:368
480
  msgid "Enter a new licence key:"
481
  msgstr ""
482
 
483
+ #: class-moove-gdpr-content.php:414
484
  msgid "Enter licence key:"
485
  msgstr ""
486
 
487
+ #: class-moove-gdpr-content.php:331
488
  msgid "Enter new licence key"
489
  msgstr ""
490
 
494
  "can be http, https or protocol-relative"
495
  msgstr ""
496
 
497
+ #: class-moove-gdpr-content.php:401
498
  msgid "Enter your licence key:"
499
  msgstr ""
500
 
501
+ #: views/moove/admin/settings/help.php:545
502
  msgid "Extend styles"
503
  msgstr ""
504
 
505
+ #: views/moove/admin/settings/help.php:20
506
  msgid "FAQ"
507
  msgstr ""
508
 
517
  msgid "Footer Section"
518
  msgstr ""
519
 
520
+ #: views/moove/admin/settings/help.php:178
521
  msgid ""
522
  "For example, we use Strictly Necessary Cookies to save information about "
523
  "which cookies the user consented to."
547
  msgid "GDPR Analytics"
548
  msgstr ""
549
 
550
+ #: gdpr-modules/infobar/infobar-base.php:10
551
  msgid "GDPR Cookie Banner"
552
  msgstr ""
553
 
554
  #. Name of the plugin
555
+ #: class-moove-gdpr-actions.php:654
556
  msgid "GDPR Cookie Compliance"
557
  msgstr ""
558
 
559
  #: views/moove/admin/settings/settings-page.php:16
560
+ msgid "GDPR Cookie Compliance Plugin (CCPA ready)"
561
  msgstr ""
562
 
563
+ #: views/moove/admin/settings/help.php:879
564
  msgid "GDPR Cookie Compliance Settings Page - Permissions"
565
  msgstr ""
566
 
577
  msgid "Geo Location Setup"
578
  msgstr ""
579
 
580
+ #: views/moove/admin/settings/help.php:470
581
+ msgid "GTM / GA consent settings"
582
+ msgstr ""
583
+
584
+ #: views/moove/admin/settings/help.php:526
585
+ msgid "GTM / Javascript consent variables"
586
+ msgstr ""
587
+
588
  #: views/moove/admin/settings/third-party-cookies.php:160
589
  #: views/moove/admin/settings/advanced-cookies.php:145
590
  msgid "Head Section"
591
  msgstr ""
592
 
593
+ #: views/moove/admin/settings/help.php:276
 
 
 
 
 
594
  msgid ""
595
  "Here you can find the default hooks & custom scripts available in our plugin."
596
  msgstr ""
603
  msgid "Hide Cookie Banner on Selected Posts / Pages"
604
  msgstr ""
605
 
606
+ #: views/moove/admin/settings/help.php:768
607
  msgid "Hook for WooCommerce Facebook Pixel plugin"
608
  msgstr ""
609
 
610
+ #: views/moove/admin/settings/help.php:300
611
  msgid "HOOK to GDPR custom 3RD-PARTY script by php – BODY"
612
  msgstr ""
613
 
614
+ #: views/moove/admin/settings/help.php:319
615
  msgid "HOOK to GDPR custom 3RD-PARTY script by php – FOOTER"
616
  msgstr ""
617
 
618
+ #: views/moove/admin/settings/help.php:281
619
  msgid "HOOK to GDPR custom 3RD-PARTY script by php – HEAD"
620
  msgstr ""
621
 
622
+ #: views/moove/admin/settings/help.php:357
623
  msgid "HOOK to GDPR custom ADVANCED-PARTY script by php – BODY"
624
  msgstr ""
625
 
626
+ #: views/moove/admin/settings/help.php:376
627
  msgid "HOOK to GDPR custom ADVANCED-PARTY script by php – FOOTER"
628
  msgstr ""
629
 
630
+ #: views/moove/admin/settings/help.php:338
631
  msgid "HOOK to GDPR custom ADVANCED-PARTY script by php – HEAD"
632
  msgstr ""
633
 
634
+ #: views/moove/admin/settings/help.php:118
635
  msgid "How can I link directly to the Cookie Settings pop-up screen?"
636
  msgstr ""
637
 
638
+ #: views/moove/admin/settings/help.php:161
639
+ msgid "How to configure GA / GTM consent settings"
640
+ msgstr ""
641
+
642
+ #: views/moove/admin/settings/help.php:631
643
  msgid ""
644
  "However, you can prevent the plugin from storing user preferences into our "
645
  "temporary cookie by using the hook below."
653
  msgid "https://www.mooveagency.com"
654
  msgstr ""
655
 
656
+ #: class-moove-gdpr-content.php:98
657
  msgid ""
658
  "If you disable this cookie, we will not be able to save your preferences. "
659
  "This means that every time you visit this website you will need to enable or "
660
  "disable cookies again."
661
  msgstr ""
662
 
663
+ #: views/moove/admin/settings/help.php:429
664
  msgid ""
665
  "If you find that our GDPR Cookie Compliance Banner or the Settings Screen is "
666
  "covered by another element on your site, you can add the following to your "
675
  msgid "Inherit font-family from your WordPress theme"
676
  msgstr ""
677
 
678
+ #: class-moove-gdpr-content.php:120
 
 
 
 
679
  msgid "Keeping this cookie enabled helps us to improve our website."
680
  msgstr ""
681
 
687
  msgid "Licence Manager"
688
  msgstr ""
689
 
690
+ #: views/moove/admin/settings/banner-settings.php:402
691
  msgid "Light"
692
  msgstr ""
693
 
695
  msgid "Logo Position"
696
  msgstr ""
697
 
698
+ #: views/moove/admin/settings/help.php:585
699
  msgid "Make \"Reject\" button less visible"
700
  msgstr ""
701
 
703
  msgid "Moove Agency"
704
  msgstr ""
705
 
706
+ #: views/moove/admin/settings/help.php:474
707
+ msgid "More details on this implementation in the "
708
+ msgstr ""
709
+
710
+ #: views/moove/admin/settings/help.php:165
711
+ #: views/moove/admin/settings/help.php:242
712
+ msgid "More info about how to"
713
+ msgstr ""
714
+
715
+ #: class-moove-gdpr-content.php:134
716
  msgid "More information about our [privacy_link]Cookie Policy[/privacy_link]"
717
  msgstr ""
718
 
719
+ #: views/moove/admin/settings/banner-settings.php:141
720
  #: views/moove/admin/settings/cookie-policy.php:74
721
  #: views/moove/admin/settings/third-party-cookies.php:95
722
  #: views/moove/admin/settings/advanced-cookies.php:83
723
  msgid "Off"
724
  msgstr ""
725
 
726
+ #: views/moove/admin/settings/help.php:474
727
+ msgid "official Google Dev Guides."
728
+ msgstr ""
729
+
730
+ #: views/moove/admin/settings/banner-settings.php:141
731
  #: views/moove/admin/settings/cookie-policy.php:74
732
  #: views/moove/admin/settings/third-party-cookies.php:95
733
  #: views/moove/admin/settings/advanced-cookies.php:83
734
  msgid "On"
735
  msgstr ""
736
 
737
+ #: views/moove/admin/settings/help.php:226
738
  msgid ""
739
  "Once I add scripts to this plugin, should I delete them from the website’s "
740
  "code?"
741
  msgstr ""
742
 
743
+ #: views/moove/admin/settings/help.php:241
744
+ msgid ""
745
+ "Once you install the WPML plugin to your site, all you need to do is to "
746
+ "switch to the language where you want to translate content in. Then you can "
747
+ "start updating the content in the CMS the same way as you do on the main "
748
+ "language."
749
+ msgstr ""
750
+
751
+ #: views/moove/admin/settings/general-settings.php:179
752
  msgid "One page layout"
753
  msgstr ""
754
 
760
  msgid "Optional, leave it empty to use default domain"
761
  msgstr ""
762
 
763
+ #: views/moove/admin/settings/help.php:240
764
  msgid ""
765
+ "Our plugin is compatible with WPML out of the box, no special set up is "
766
+ "required."
767
  msgstr ""
768
 
769
+ #. Description of the plugin
770
  msgid ""
771
  "Our plugin is useful in preparing your site for the following data "
772
+ "protection and privacy regulations: GDPR, CCPA, PIPEDA, AAP, LGPD and others."
773
  msgstr ""
774
 
775
+ #: views/moove/admin/settings/help.php:152
776
  msgid ""
777
  "Our plugin loads scripts using JavaScript which is why you cannot find them "
778
  "when viewing the page source code."
779
  msgstr ""
780
 
781
+ #: views/moove/admin/settings/help.php:164
782
+ msgid "Our plugin supports both the GTM & GA consent variables natively."
783
+ msgstr ""
784
+
785
  #: views/moove/admin/settings/third-party-cookies.php:153
786
  #: views/moove/admin/settings/advanced-cookies.php:140
787
  msgid ""
789
  "enables these cookies."
790
  msgstr ""
791
 
792
+ #: views/moove/admin/settings/help.php:448
793
  msgid "PHP cookie checker"
794
  msgstr ""
795
 
797
  msgid "pixels"
798
  msgstr ""
799
 
800
+ #: views/moove/admin/settings/licence.php:114
801
  msgid "Please confirm that you would like to de-activate this licence."
802
  msgstr ""
803
 
804
+ #: views/moove/admin/settings/general-settings.php:434
805
  msgid ""
806
  "Please confirm that you would like to reset the plugin settings to the "
807
  "default state"
808
  msgstr ""
809
 
810
+ #: class-moove-gdpr-content.php:180
811
  msgid ""
812
  "Please enable Strictly Necessary Cookies first so that we can save your "
813
  "preferences!"
825
  "at every visit)."
826
  msgstr ""
827
 
828
+ #: views/moove/admin/settings/help.php:632
829
  msgid ""
830
  "Please note, without our \"temporary cookie\", the cookie banner will be "
831
  "displayed for the user on every page load - this is because the site will "
833
  "anywhere."
834
  msgstr ""
835
 
836
+ #: views/moove/admin/settings/general-settings.php:399
837
  msgid "Powered by GDPR"
838
  msgstr ""
839
 
840
+ #: views/moove/admin/settings/help.php:193
841
  msgid "pre-defined advanced hooks here"
842
  msgstr ""
843
 
844
+ #: views/moove/admin/settings/help.php:22
845
  msgid "Premium Hooks"
846
  msgstr ""
847
 
848
+ #: views/moove/admin/settings/help.php:23
849
  msgid "Premium Shortcodes"
850
  msgstr ""
851
 
852
+ #: views/moove/admin/settings/help.php:410
853
  msgid "Prevent ajax script injection"
854
  msgstr ""
855
 
856
+ #: views/moove/admin/settings/help.php:626
857
  msgid "Prevent storing a \"temporary reject cookie\" when cookies are rejected"
858
  msgstr ""
859
 
860
+ #: class-gdpr-modules.php:89 class-gdpr-modules.php:217
861
+ #: class-gdpr-modules.php:403 views/moove/admin/settings/settings-page.php:89
862
  #: views/moove/admin/settings/privacy-overview.php:49
863
  msgid "Privacy Overview"
864
  msgstr ""
865
 
866
+ #: moove-gdpr.php:94
867
  msgid "Rate"
868
  msgstr ""
869
 
870
+ #: views/moove/admin/settings/help.php:700
871
  msgid "Read cookie values with JavaScript"
872
  msgstr ""
873
 
875
  msgid "Recommended size:"
876
  msgstr ""
877
 
878
+ #: class-moove-gdpr-actions.php:307
879
+ #: views/moove/admin/settings/banner-settings.php:260
880
  msgid "Reject"
881
  msgstr ""
882
 
883
+ #: views/moove/admin/settings/banner-settings.php:257
884
  msgid "Reject - Button Label"
885
  msgstr ""
886
 
887
+ #: class-gdpr-modules.php:381
888
+ #: views/moove/admin/settings/general-settings.php:279
889
  msgid "Reject All"
890
  msgstr ""
891
 
892
+ #: views/moove/admin/settings/general-settings.php:276
893
  msgid "Reject All - Button Label"
894
  msgstr ""
895
 
896
+ #: views/moove/admin/settings/general-settings.php:263
897
  msgid "Reject All button"
898
  msgstr ""
899
 
900
+ #: views/moove/admin/settings/banner-settings.php:237
901
  msgid "Reject button"
902
  msgstr ""
903
 
904
+ #: views/moove/admin/settings/banner-settings.php:251
905
  msgid "Reject button allows users to reject all cookies."
906
  msgstr ""
907
 
908
+ #: views/moove/admin/settings/help.php:122
909
  msgid "Relative Path (RECOMMENDED)"
910
  msgstr ""
911
 
912
+ #: views/moove/admin/settings/help.php:664
913
  msgid "Remove jQuery script dependency"
914
  msgstr ""
915
 
917
  msgid "Renew Consent"
918
  msgstr ""
919
 
920
+ #: class-moove-gdpr-content.php:325
921
  msgid "Renew your licence"
922
  msgstr ""
923
 
924
+ #: views/moove/admin/settings/general-settings.php:437
925
  msgid "Reset plugin to default state"
926
  msgstr ""
927
 
928
+ #: views/moove/admin/settings/general-settings.php:419
929
  msgid "Reset Settings"
930
  msgstr ""
931
 
937
  msgid "Rounded corners"
938
  msgstr ""
939
 
940
+ #: views/moove/admin/settings/general-settings.php:217
941
  msgid "Save Changes"
942
  msgstr ""
943
 
944
+ #: views/moove/admin/settings/general-settings.php:417
945
  #: views/moove/admin/settings/strictly-necessary-cookies.php:175
946
+ #: views/moove/admin/settings/banner-settings.php:414
947
  #: views/moove/admin/settings/branding.php:220
948
  #: views/moove/admin/settings/cookie-policy.php:117
949
  #: views/moove/admin/settings/privacy-overview.php:94
953
  msgid "Save changes"
954
  msgstr ""
955
 
956
+ #: class-gdpr-modules.php:375
957
  msgid "Save Settings"
958
  msgstr ""
959
 
960
+ #: views/moove/admin/settings/general-settings.php:214
961
  msgid "Save Settings - Button Label"
962
  msgstr ""
963
 
964
+ #: views/moove/admin/settings/general-settings.php:201
965
  msgid "Save Settings button"
966
  msgstr ""
967
 
972
  msgid "Select"
973
  msgstr ""
974
 
975
+ #: views/moove/admin/settings/help.php:426
976
  msgid "Set custom z-index"
977
  msgstr ""
978
 
979
+ #: class-moove-gdpr-actions.php:318 gdpr-functions.php:118
980
+ #: views/moove/admin/settings/banner-settings.php:297
981
  msgid "Settings"
982
  msgstr ""
983
 
984
+ #: views/moove/admin/settings/banner-settings.php:173
985
  msgid "settings"
986
  msgstr ""
987
 
988
+ #: views/moove/admin/settings/banner-settings.php:294
989
  msgid "Settings - Button Label"
990
  msgstr ""
991
 
992
+ #: views/moove/admin/settings/banner-settings.php:275
993
  msgid "Settings button"
994
  msgstr ""
995
 
996
+ #: views/moove/admin/settings/banner-settings.php:288
997
  msgid "Settings button opens up the Cookie Settings Screen."
998
  msgstr ""
999
 
1001
  msgid "Settings saved."
1002
  msgstr ""
1003
 
1004
+ #: class-moove-gdpr-content.php:147
1005
  msgid "Sorry,<br /> the content is blocked!"
1006
  msgstr ""
1007
 
1013
  msgid "Squared corners"
1014
  msgstr ""
1015
 
1016
+ #: class-moove-gdpr-content.php:82
1017
  msgid ""
1018
  "Strictly Necessary Cookie should be enabled at all times so that we can save "
1019
  "your preferences for cookie settings."
1020
  msgstr ""
1021
 
1022
+ #: class-gdpr-modules.php:239 class-gdpr-modules.php:407
1023
  #: views/moove/admin/settings/settings-page.php:95
1024
  #: views/moove/admin/settings/strictly-necessary-cookies.php:67
1025
  msgid "Strictly Necessary Cookies"
1029
  msgid "Strictly necessary required message."
1030
  msgstr ""
1031
 
1032
+ #: gdpr-functions.php:124 views/moove/admin/settings/support.php:15
1033
  msgid "Support"
1034
  msgstr ""
1035
 
1053
  msgid "Tab Warning Message"
1054
  msgstr ""
1055
 
1056
+ #: views/moove/admin/settings/general-settings.php:173
1057
  msgid "Tabs layout"
1058
  msgstr ""
1059
 
1060
+ #: views/moove/admin/settings/help.php:177
1061
  msgid ""
1062
  "The \"Strictly Necessary Cookies\", sometimes called Essential Cookies, are "
1063
  "cookies that are necessary for your site to function properly."
1064
  msgstr ""
1065
 
1066
+ #: views/moove/admin/settings/help.php:253
1067
  msgid ""
1068
  "The Consent Log features stores all data in your WordPress website database."
1069
  msgstr ""
1070
 
1071
+ #: views/moove/admin/settings/help.php:630
1072
  msgid ""
1073
  "The cookie banner will be displayed again at the next browsing session so "
1074
  "the user can change their preferences then."
1075
  msgstr ""
1076
 
1077
+ #: views/moove/admin/settings/help.php:254
1078
  msgid ""
1079
  "The data stored includes: Consent Date, User IP address, Cookies Accepted "
1080
  "and User Email (for logged-in users)."
1081
  msgstr ""
1082
 
1083
+ #: views/moove/admin/settings/help.php:149
1084
  msgid ""
1085
  "The scripts added to the plugin settings are not visible in the page source "
1086
  "code."
1087
  msgstr ""
1088
 
1089
+ #: class-moove-gdpr-content.php:526
1090
  msgid "There is a new version of GDPR Cookie Compliance - Premium Add-On."
1091
  msgstr ""
1092
 
1093
+ #: views/moove/admin/settings/licence.php:114
1094
  msgid "This action will remove all of the premium features from your website."
1095
  msgstr ""
1096
 
1097
+ #: views/moove/admin/settings/general-settings.php:434
1098
  msgid "This action will remove all of your custom modifications and settings"
1099
  msgstr ""
1100
 
1102
  msgid "This option is not available in Full Screen Mode"
1103
  msgstr ""
1104
 
1105
+ #: views/moove/admin/settings/help.php:267
1106
  msgid ""
1107
  "THIS PLUGIN DOES NOT MAKE YOUR WEBSITE COMPLIANT. YOU ARE RESPONSIBLE FOR "
1108
  "ENSURING THAT ALL LEGAL REQUIREMENTS ARE MET ON YOUR WEBSITE."
1109
  msgstr ""
1110
 
1111
+ #: views/moove/admin/settings/help.php:266
1112
  msgid ""
1113
  "This plugin is just a template and needs to be setup correctly in order to "
1114
  "work properly."
1115
  msgstr ""
1116
 
1117
+ #: views/moove/admin/settings/settings-page.php:19
1118
+ msgid ""
1119
+ "This plugin is useful in preparing your site for cookie compliance, data "
1120
+ "protection and privacy regulations."
1121
+ msgstr ""
1122
+
1123
+ #: views/moove/admin/settings/help.php:218
1124
  msgid ""
1125
  "This plugin only restricts cookies for scripts that you have setup in the "
1126
  "Plugin Settings. If you want to block all cookies, you have to add all "
1149
  "most interesting and useful."
1150
  msgstr ""
1151
 
1152
+ #: class-moove-gdpr-content.php:119
1153
  msgid ""
1154
  "This website uses Google Analytics to collect anonymous information such as "
1155
  "the number of visitors to the site, and the most popular pages."
1156
  msgstr ""
1157
 
1158
+ #: class-moove-gdpr-content.php:109
1159
  msgid ""
1160
  "This website uses the following additional cookies:</p><p>(List the cookies "
1161
  "that you are using on the website here.)"
1162
  msgstr ""
1163
 
1164
+ #: views/moove/admin/settings/help.php:138
1165
  msgid "To ACCEPT all cookies"
1166
  msgstr ""
1167
 
1168
+ #: views/moove/admin/settings/help.php:140
1169
  msgid "To REJECT cookies"
1170
  msgstr ""
1171
 
1172
+ #: class-moove-gdpr-content.php:148
1173
  msgid "To unlock, please enable the cookies!"
1174
  msgstr ""
1175
 
1176
+ #: views/moove/admin/settings/help.php:153
1177
  msgid ""
1178
  "To view the scripts you can use the Developer Console in Chrome browser "
1179
  "(Inspect Element feature)."
1180
  msgstr ""
1181
 
1182
+ #: views/moove/admin/settings/banner-settings.php:381
1183
  msgid "Top"
1184
  msgstr ""
1185
 
1186
+ #: views/moove/admin/settings/help.php:19
1187
+ msgid "Troubleshooting"
1188
+ msgstr ""
1189
+
1190
+ #: views/moove/admin/settings/banner-settings.php:135
1191
  #: views/moove/admin/settings/cookie-policy.php:67
1192
  #: views/moove/admin/settings/third-party-cookies.php:88
1193
  #: views/moove/admin/settings/advanced-cookies.php:77
1194
  msgid "Turn"
1195
  msgstr ""
1196
 
1197
+ #: views/moove/admin/settings/help.php:242
1198
+ msgid "use WPML with our plugin."
1199
+ msgstr ""
1200
+
1201
  #: views/moove/admin/settings/floating-button.php:106
1202
  msgid "Visibility on mobile"
1203
  msgstr ""
1206
  msgid "Visible"
1207
  msgstr ""
1208
 
1209
+ #: views/moove/admin/settings/help.php:179
1210
  msgid ""
1211
  "We are not storing any sensitive or personal data there, the cookie file "
1212
  "contains only one of the following strings:"
1213
  msgstr ""
1214
 
1215
+ #: class-gdpr-modules.php:142
1216
+ #: views/moove/admin/settings/banner-settings.php:156
1217
  msgid "We are using cookies to give you the best experience on our website."
1218
  msgstr ""
1219
 
1221
  msgid "We have detected that you have a multi-language setup."
1222
  msgstr ""
1223
 
1224
+ #: views/moove/admin/settings/help.php:174
1225
  msgid "What are \"Strictly Necessary Cookies / Essential Cookies\"?"
1226
  msgstr ""
1227
 
1228
+ #: views/moove/admin/settings/help.php:250
1229
  msgid "What information does the Consent Log store and where is it stored?"
1230
  msgstr ""
1231
 
1232
+ #: views/moove/admin/settings/help.php:237
1233
+ msgid "WPML Compatibility"
1234
+ msgstr ""
1235
+
1236
+ #: views/moove/admin/settings/help.php:204
1237
  msgid ""
1238
  "Yes, the plugin supports subdomains on the same WordPress Multisite Network "
1239
  "as part of our Premium Add-on"
1240
  msgstr ""
1241
 
1242
+ #: views/moove/admin/settings/help.php:192
1243
  msgid ""
1244
  "Yes, we have implemented hooks that allow you to implement custom code "
1245
  "snippets."
1246
  msgstr ""
1247
 
1248
+ #: views/moove/admin/settings/help.php:229
1249
  msgid ""
1250
  "Yes. Once you setup the plugin, you should delete the scripts you uploaded "
1251
  "to the plugin from your website’s code to ensure that your scripts are not "
1263
  "You can align the position eg.: <strong>top: 20px; right: 20px;</strong>"
1264
  msgstr ""
1265
 
1266
+ #: views/moove/admin/settings/help.php:193
1267
  msgid "You can also find the list of all"
1268
  msgstr ""
1269
 
1270
+ #: class-moove-gdpr-content.php:296 class-moove-gdpr-content.php:386
1271
  msgid "You can buy licences from our [store_link]online store[/store_link]."
1272
  msgstr ""
1273
 
1274
+ #: class-moove-gdpr-content.php:349
1275
  msgid ""
1276
  "You can buy more licences from our [store_link]online store[/store_link]."
1277
  msgstr ""
1278
 
1279
+ #: views/moove/admin/settings/general-settings.php:189
1280
+ #: views/moove/admin/settings/banner-settings.php:190
1281
  msgid "You can change the order by drag & drop"
1282
  msgstr ""
1283
 
1284
+ #: class-gdpr-modules.php:143
1285
+ #: views/moove/admin/settings/banner-settings.php:157
1286
  #, php-format
1287
  msgid ""
1288
  "You can find out more about which cookies we are using or switch them off in "
1289
  "[%s]settings[/%s]."
1290
  msgstr ""
1291
 
1292
+ #: views/moove/admin/settings/help.php:255
1293
  msgid "You can see the preview of"
1294
  msgstr ""
1295
 
1296
+ #: views/moove/admin/settings/help.php:137
1297
  msgid ""
1298
  "You can use the following links to accept or reject cookies straight-away. "
1299
  msgstr ""
1300
 
1301
+ #: views/moove/admin/settings/banner-settings.php:171
1302
  msgid "You can use the following shortcut to link the Cookie Settings Screen:"
1303
  msgstr ""
1304
 
1305
+ #: views/moove/admin/settings/help.php:121
1306
  msgid "You can use the following to display the Cookie Settings Screen window:"
1307
  msgstr ""
1308
 
1309
  #: views/moove/admin/settings/settings-page.php:39
1310
+ msgid "You need to insert the relevant script for the settings to be saved."
1311
  msgstr ""
1312
 
1313
+ #: views/moove/admin/settings/help.php:192
1314
  msgid "You will find the list of popular hooks here:"
1315
  msgstr ""
1316
 
1317
+ #: class-moove-gdpr-content.php:326
1318
  msgid ""
1319
  "Your licence has expired. You will not receive the latest updates and "
1320
  "features unless you renew your licence."
moove-gdpr.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: GDPR Cookie Compliance
5
  * Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
6
  * Description: Our plugin is useful in preparing your site for the following data protection and privacy regulations: GDPR, CCPA, PIPEDA, AAP, LGPD and others.
7
- * Version: 4.8.2
8
  * Author: Moove Agency
9
  * Domain Path: /languages
10
  * Author URI: https://www.mooveagency.com
@@ -18,7 +18,7 @@ if ( ! defined( 'ABSPATH' ) ) {
18
  exit;
19
  } // Exit if accessed directly
20
 
21
- define( 'MOOVE_GDPR_VERSION', '4.8.2' );
22
  if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
23
  define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
24
  endif;
4
  * Plugin Name: GDPR Cookie Compliance
5
  * Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
6
  * Description: Our plugin is useful in preparing your site for the following data protection and privacy regulations: GDPR, CCPA, PIPEDA, AAP, LGPD and others.
7
+ * Version: 4.8.3
8
  * Author: Moove Agency
9
  * Domain Path: /languages
10
  * Author URI: https://www.mooveagency.com
18
  exit;
19
  } // Exit if accessed directly
20
 
21
+ define( 'MOOVE_GDPR_VERSION', '4.8.3' );
22
  if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
23
  define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
24
  endif;
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: MooveAgency
3
  Donate link: https://www.mooveagency.com/wordpress-plugins/gdpr-cookie-compliance/
4
  Tags: GDPR, CCPA, cookie banner, cookie law, cookie consent, cookie notice, dsgvo, rgpd
5
- Stable tag: 4.8.2
6
  Requires at least: 4.5
7
  Tested up to: 5.9
8
  Requires PHP: 5.6 or higher
@@ -274,6 +274,11 @@ The Brazilian General Data Protection Law (“Lei Geral de Proteção de Dados
274
  39. GDPR Cookie Compliance - Front-end - Cookie Shortcode [Premium]
275
 
276
  == Changelog ==
 
 
 
 
 
277
  = 4.8.2: 28 March 2022 =
278
  * Accessibility improvements
279
  * Close button functionality extended
2
  Contributors: MooveAgency
3
  Donate link: https://www.mooveagency.com/wordpress-plugins/gdpr-cookie-compliance/
4
  Tags: GDPR, CCPA, cookie banner, cookie law, cookie consent, cookie notice, dsgvo, rgpd
5
+ Stable tag: 4.8.3
6
  Requires at least: 4.5
7
  Tested up to: 5.9
8
  Requires PHP: 5.6 or higher
274
  39. GDPR Cookie Compliance - Front-end - Cookie Shortcode [Premium]
275
 
276
  == Changelog ==
277
+ = 4.8.3: 6 April 2022 =
278
+ * Cookie Setting Screen close button functionality extended
279
+ * Translation strings updated
280
+ * Minor fixes
281
+
282
  = 4.8.2: 28 March 2022 =
283
  * Accessibility improvements
284
  * Close button functionality extended
views/moove/admin/settings/banner-settings.php CHANGED
@@ -323,7 +323,7 @@ $buttons_order = isset( $gdpr_options['gdpr_bs_buttons_order'] ) ? json_deco
323
  <tr class="gdpr-conditional-field" data-dependency="#moove_gdpr_close_button_enable">
324
  <td colspan="2">
325
  <hr>
326
- <h4>Choose how the Close button should behave:</h4>
327
  <table>
328
  <tr>
329
  <td>
@@ -334,24 +334,24 @@ $buttons_order = isset( $gdpr_options['gdpr_bs_buttons_order'] ) ? json_deco
334
 
335
  <label for="gdpr_close_button_bhv_1">
336
  <input name="gdpr_close_button_bhv" type="radio" <?php echo $gdpr_close_button_bhv === 1 ? 'checked' : ''; ?> id="gdpr_close_button_bhv_1" value="1">
337
- as a Close button
338
- <span class="gdpr_cb_bhv_desc"><?php esc_html_e( '(The Cookie Banner will be hidden for the duration of the current browsing session, without accepting or rejecting cookies. The Cookie Banner will re-appear again when the user next visits your site)', 'gdpr-cookie-compliance' ); ?></span>
339
  </label>
340
 
341
  <br /><br />
342
 
343
  <label for="gdpr_close_button_bhv_2">
344
  <input name="gdpr_close_button_bhv" type="radio" <?php echo $gdpr_close_button_bhv === 2 ? 'checked' : ''; ?> id="gdpr_close_button_bhv_2" value="2">
345
- as a Reject button
346
- <span class="gdpr_cb_bhv_desc"><?php esc_html_e( '(with this option, the Close button behaves as a Reject button: the cookies are rejected, and the cookie banner does not re-appear until the cookie consent expires)', 'gdpr-cookie-compliance' ); ?></span>
347
  </label>
348
 
349
  <br /><br />
350
 
351
  <label for="gdpr_close_button_bhv_3">
352
  <input name="gdpr_close_button_bhv" type="radio" <?php echo $gdpr_close_button_bhv === 3 ? 'checked' : ''; ?> id="gdpr_close_button_bhv_3" value="3">
353
- as an Accept button
354
- <span class="gdpr_cb_bhv_desc"><?php esc_html_e( '(with this option, the Close button behaves as an Accept button: the cookies are accepted, and the cookie banner does not re-appear until the cookie consent expires)', 'gdpr-cookie-compliance' ); ?></span>
355
  </label>
356
 
357
  <br />
323
  <tr class="gdpr-conditional-field" data-dependency="#moove_gdpr_close_button_enable">
324
  <td colspan="2">
325
  <hr>
326
+ <h4><?php esc_html_e( 'Choose how the Close button should behave', 'gdpr-cookie-compliance' ); ?>:</h4>
327
  <table>
328
  <tr>
329
  <td>
334
 
335
  <label for="gdpr_close_button_bhv_1">
336
  <input name="gdpr_close_button_bhv" type="radio" <?php echo $gdpr_close_button_bhv === 1 ? 'checked' : ''; ?> id="gdpr_close_button_bhv_1" value="1">
337
+ <?php esc_html_e( 'as a Close button', 'gdpr-cookie-compliance' ); ?>
338
+ <span class="gdpr_cb_bhv_desc"><?php esc_html_e( '(The Cookie Banner becomes hidden for the duration of the current browsing session, without accepting or rejecting cookies. The Cookie Banner will re-appear when the user next visits your site.)', 'gdpr-cookie-compliance' ); ?></span>
339
  </label>
340
 
341
  <br /><br />
342
 
343
  <label for="gdpr_close_button_bhv_2">
344
  <input name="gdpr_close_button_bhv" type="radio" <?php echo $gdpr_close_button_bhv === 2 ? 'checked' : ''; ?> id="gdpr_close_button_bhv_2" value="2">
345
+ <?php esc_html_e( 'as a Reject button', 'gdpr-cookie-compliance' ); ?>
346
+ <span class="gdpr_cb_bhv_desc"><?php esc_html_e( '(The cookies are rejected and the cookie banner does not re-appear until the cookie consent expires.)', 'gdpr-cookie-compliance' ); ?></span>
347
  </label>
348
 
349
  <br /><br />
350
 
351
  <label for="gdpr_close_button_bhv_3">
352
  <input name="gdpr_close_button_bhv" type="radio" <?php echo $gdpr_close_button_bhv === 3 ? 'checked' : ''; ?> id="gdpr_close_button_bhv_3" value="3">
353
+ <?php esc_html_e( 'as an Accept button', 'gdpr-cookie-compliance' ); ?>
354
+ <span class="gdpr_cb_bhv_desc"><?php esc_html_e( '(The cookies are accepted and the cookie banner does not re-appear until the cookie consent expires.)', 'gdpr-cookie-compliance' ); ?></span>
355
  </label>
356
 
357
  <br />
views/moove/admin/settings/general-settings.php CHANGED
@@ -60,7 +60,7 @@ if ( isset( $_POST ) && isset( $_POST['moove_gdpr_nonce'] ) ) :
60
  $gdpr_options[ $form_key ] = $value;
61
  elseif ( 'gdpr_gs_buttons_order' === $form_key ) :
62
  $value = json_decode( wp_unslash( $form_value ), true );
63
- $allowed_values = array( 'enable', 'reject', 'save' );
64
  $buttons_order = array();
65
  if ( is_array( $value ) ) :
66
  foreach ( $value as $button_type ) :
@@ -80,7 +80,6 @@ if ( isset( $_POST ) && isset( $_POST['moove_gdpr_nonce'] ) ) :
80
  $moove_save_settings_enable = '1';
81
  endif;
82
  $gdpr_options['moove_gdpr_save_settings_button_enable'] = $moove_save_settings_enable;
83
- update_option( $option_name, $gdpr_options );
84
 
85
  // Cookie Banner Enable All Button.
86
  $moove_enable_all_button_enable = '0';
@@ -88,7 +87,6 @@ if ( isset( $_POST ) && isset( $_POST['moove_gdpr_nonce'] ) ) :
88
  $moove_enable_all_button_enable = '1';
89
  endif;
90
  $gdpr_options['moove_gdpr_enable_all_button_enable'] = $moove_enable_all_button_enable;
91
- update_option( $option_name, $gdpr_options );
92
 
93
  // Cookie Banner Reject All Button.
94
  $moove_reject_all_button_enable = '0';
@@ -96,6 +94,21 @@ if ( isset( $_POST ) && isset( $_POST['moove_gdpr_nonce'] ) ) :
96
  $moove_reject_all_button_enable = '1';
97
  endif;
98
  $gdpr_options['moove_gdpr_reject_all_button_enable'] = $moove_reject_all_button_enable;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  update_option( $option_name, $gdpr_options );
100
 
101
 
@@ -135,7 +148,13 @@ if ( isset( $_POST ) && isset( $_POST['moove_gdpr_reset_nonce'] ) ) :
135
  endif;
136
  endif;
137
 
138
- $buttons_order = isset( $gdpr_options['gdpr_gs_buttons_order'] ) ? json_decode( $gdpr_options['gdpr_gs_buttons_order'], true ) : array( 'enable', 'reject', 'save' );
 
 
 
 
 
 
139
 
140
  ?>
141
  <form action="<?php esc_url( admin_url( 'admin.php?page=moove-gdpr&tab=general-settings' ) ); ?>" method="post" id="moove_gdpr_tab_general_settings">
@@ -265,6 +284,70 @@ $buttons_order = isset( $gdpr_options['gdpr_gs_buttons_order'] ) ? json_deco
265
  </div>
266
  <!-- .gdpr-sortable-button -->
267
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  endif;
269
  endforeach;
270
  ?>
60
  $gdpr_options[ $form_key ] = $value;
61
  elseif ( 'gdpr_gs_buttons_order' === $form_key ) :
62
  $value = json_decode( wp_unslash( $form_value ), true );
63
+ $allowed_values = array( 'enable', 'reject', 'save', 'close' );
64
  $buttons_order = array();
65
  if ( is_array( $value ) ) :
66
  foreach ( $value as $button_type ) :
80
  $moove_save_settings_enable = '1';
81
  endif;
82
  $gdpr_options['moove_gdpr_save_settings_button_enable'] = $moove_save_settings_enable;
 
83
 
84
  // Cookie Banner Enable All Button.
85
  $moove_enable_all_button_enable = '0';
87
  $moove_enable_all_button_enable = '1';
88
  endif;
89
  $gdpr_options['moove_gdpr_enable_all_button_enable'] = $moove_enable_all_button_enable;
 
90
 
91
  // Cookie Banner Reject All Button.
92
  $moove_reject_all_button_enable = '0';
94
  $moove_reject_all_button_enable = '1';
95
  endif;
96
  $gdpr_options['moove_gdpr_reject_all_button_enable'] = $moove_reject_all_button_enable;
97
+
98
+ // Cookie Banner Close Button.
99
+ $moove_gs_close_enable = '0';
100
+ if ( isset( $_POST['moove_gdpr_cb_close_button_enable'] ) ) :
101
+ $moove_gs_close_enable = '1';
102
+ endif;
103
+ $gdpr_options['moove_gdpr_cb_close_button_enable'] = $moove_gs_close_enable;
104
+
105
+ $gdpr_options['gdpr_cb_close_button_bhv'] = 1;
106
+ if ( '1' === $moove_gs_close_enable ) :
107
+ if ( isset( $_POST['gdpr_cb_close_button_bhv'] ) && intval( $_POST['gdpr_cb_close_button_bhv'] ) ) :
108
+ $gdpr_options['gdpr_cb_close_button_bhv'] = intval( $_POST['gdpr_cb_close_button_bhv'] );
109
+ endif;
110
+ endif;
111
+
112
  update_option( $option_name, $gdpr_options );
113
 
114
 
148
  endif;
149
  endif;
150
 
151
+ $buttons_order = isset( $gdpr_options['gdpr_gs_buttons_order'] ) ? json_decode( $gdpr_options['gdpr_gs_buttons_order'], true ) : array( 'enable', 'reject', 'save', 'close' );
152
+ if ( ! isset( $gdpr_options['moove_gdpr_cb_close_button_enable'] ) ) :
153
+ if ( ! in_array( 'close', $buttons_order ) ) :
154
+ $buttons_order[] = 'close';
155
+ endif;
156
+ $gdpr_options['moove_gdpr_cb_close_button_enable'] = '1';
157
+ endif;
158
 
159
  ?>
160
  <form action="<?php esc_url( admin_url( 'admin.php?page=moove-gdpr&tab=general-settings' ) ); ?>" method="post" id="moove_gdpr_tab_general_settings">
284
  </div>
285
  <!-- .gdpr-sortable-button -->
286
  <?php
287
+ elseif ( 'close' === $button_type ) :
288
+ ?>
289
+ <div class="gdpr-sortable-button ui-state-disabled" data-type="close">
290
+ <table>
291
+ <tbody>
292
+ <tr>
293
+ <th scope="row">
294
+ <label for="moove_gdpr_cb_close_button_enable"><?php esc_html_e( 'Close button', 'gdpr-cookie-compliance' ); ?></label>
295
+ </th>
296
+ <td>
297
+ <!-- GDPR Rounded switch -->
298
+ <label class="gdpr-checkbox-toggle">
299
+ <input type="checkbox" name="moove_gdpr_cb_close_button_enable" id="moove_gdpr_cb_close_button_enable" <?php echo isset( $gdpr_options['moove_gdpr_cb_close_button_enable'] ) ? ( intval( $gdpr_options['moove_gdpr_cb_close_button_enable'] ) === 1 ? 'checked' : ( ! isset( $gdpr_options['moove_gdpr_cb_close_button_enable'] ) ? 'checked' : '' ) ) : ''; ?> >
300
+ <span class="gdpr-checkbox-slider" data-enable="<?php esc_html_e( 'Enabled', 'gdpr-cookie-compliance' ); ?>" data-disable="<?php esc_html_e( 'Disabled', 'gdpr-cookie-compliance' ); ?>"></span>
301
+ </label>
302
+
303
+ </td>
304
+ </tr>
305
+ <tr class="gdpr-conditional-field" data-dependency="#moove_gdpr_cb_close_button_enable">
306
+ <td colspan="2">
307
+ <hr>
308
+ <h4><?php esc_html_e( 'Choose how the Close button should behave', 'gdpr-cookie-compliance' ); ?>:</h4>
309
+ <table>
310
+ <tr>
311
+ <td>
312
+ <fieldset class="gdpr-close-options">
313
+ <?php
314
+ $gdpr_cb_close_button_bhv = isset( $gdpr_options['gdpr_cb_close_button_bhv'] ) && intval( $gdpr_options['gdpr_cb_close_button_bhv'] ) ? intval( $gdpr_options['gdpr_cb_close_button_bhv'] ) : 1;
315
+ ?>
316
+
317
+ <label for="gdpr_cb_close_button_bhv_1">
318
+ <input name="gdpr_cb_close_button_bhv" type="radio" <?php echo $gdpr_cb_close_button_bhv === 1 ? 'checked' : ''; ?> id="gdpr_cb_close_button_bhv_1" value="1">
319
+ <?php esc_html_e( 'as a Close button', 'gdpr-cookie-compliance' ); ?>
320
+ <span class="gdpr_cb_bhv_desc"><?php esc_html_e( '(The Cookie Setting Screen will be closed)', 'gdpr-cookie-compliance' ); ?></span>
321
+ </label>
322
+
323
+ <br /><br />
324
+
325
+ <label for="gdpr_cb_close_button_bhv_2">
326
+ <input name="gdpr_cb_close_button_bhv" type="radio" <?php echo $gdpr_cb_close_button_bhv === 2 ? 'checked' : ''; ?> id="gdpr_cb_close_button_bhv_2" value="2">
327
+ <?php esc_html_e( 'as a Reject button', 'gdpr-cookie-compliance' ); ?>
328
+ <span class="gdpr_cb_bhv_desc"><?php esc_html_e( '(The cookies are rejected and the cookie banner does not re-appear until the cookie consent expires.)', 'gdpr-cookie-compliance' ); ?></span>
329
+ </label>
330
+
331
+ <br /><br />
332
+
333
+ <label for="gdpr_cb_close_button_bhv_3">
334
+ <input name="gdpr_cb_close_button_bhv" type="radio" <?php echo $gdpr_cb_close_button_bhv === 3 ? 'checked' : ''; ?> id="gdpr_cb_close_button_bhv_3" value="3">
335
+ <?php esc_html_e( 'as an Accept button', 'gdpr-cookie-compliance' ); ?>
336
+ <span class="gdpr_cb_bhv_desc"><?php esc_html_e( '(The cookies are accepted and the cookie banner does not re-appear until the cookie consent expires.)', 'gdpr-cookie-compliance' ); ?></span>
337
+ </label>
338
+
339
+ <br />
340
+
341
+ </fieldset>
342
+ </td>
343
+ </tr>
344
+ </table>
345
+ </td>
346
+ </tr>
347
+ </tbody>
348
+ </table>
349
+ </div>
350
+ <?php
351
  endif;
352
  endforeach;
353
  ?>