Welcome to our store Learn more

New products added! Learn more

Sign up for an account for 10% off! Learn more

  • Free UK Shipping

    Limited-Time Offer

  • Same Day Dispatch

    By 4pm Monday to Friday

  • Discreet Packaging

    Guaranteed

  • Easy Returns & Replacements

    Hassle free returns policy

    GDPR Compliance

    The app used for assuring the GDPR/CCPA compliance of this site, collects your IP and the email address in order to process the data. For more check Privacy Policy

    Data Rectification

    You can use the link below to update your account data if it is not accurate.

    Data Portability

    You can use the links below to download all the data we store and use for a better experience in our store.

    Access to Personal Data

    You can use the link below to request a report which will contain all personal information that we store for you.

    Right to be Forgotten

    Use this option if you want to remove your personal and other data from our store. Keep in mind that this process will delete your account, so you will no longer be able to access or use it anymore.

    ×

    I give my consent on collecting my email and IP address for the purpose of processing this request. For more check Privacy Policy.

    '; var gdprSendRequest = function(callback) { $.ajax({ url: 'https://www.cloudflare.com/cdn-cgi/trace', method: 'GET', success: function(resp) { if (!resp.error) { let ipInfo = resp; let ipRegex = /[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}/ let ipAddress = ipInfo.match(ipRegex)[0]; $.ajax({ url: 'https://gdpr.apps.isenselabs.com/gdprRequests/submitRequest', method: 'POST', data: { shop: Shopify.shop, email: email, type: type, sourceOfRequest: 1, ipAddress: ipAddress, consentGiven: consentGiven, lang: Shopify.locale ? Shopify.locale : '', gtranslateLang: isenseGDPR.Cookies.get('googtrans') ? isenseGDPR.Cookies.get('googtrans') : '' }, success: function(resp) { if (!resp.error) { gdprSlideUpAll(); alert('Your request has been submitted successfully. Please check your email for more information.'); } else { alert(resp.message); } if (typeof callback == 'function') { callback(resp); } } }); } else { alert(resp.message); } } }); } $(document).ready(function() { //Append modal to body, because otherwise it will not stay centered(even if position is fixed) $("body").append(verificationModalContent); // When the user clicks on (x), close the modal $('.data-verification-close:first').on('click', function(e) { e.preventDefault(); closeVerificationModal(); }); $('#data-verification-icon, #data-verification-container p').on('click', function(e) { e.preventDefault(); // Detect a href's click, because it is overwritten. if($(e.target).is("a")) { window.open(e.target.href, '_blank'); return; } $('#data-verification-icon').addClass("clicked"); setTimeout(()=>{ $("#data-verification-modal").fadeOut(); $('#data-verification-background .loading').css('display', 'inline-block'); consentGiven = true; gdprSendRequest(function(resp) { consentGiven = false; closeVerificationModal(); }); }, 400); }); }); function openVerificationModal(){ $("#data-verification-modal").css("display", "block") $('#data-verification-background').css("display", "block"); } function closeVerificationModal(){ $('#data-verification-background').fadeOut(); $('#data-verification-icon').removeClass("clicked"); $('#data-verification-background .loading').css('display', 'none'); } $('#btn-gdpr-edit-account-request').on('click', function(e) { e.preventDefault(); gdprSlideUpAll(); $('#form-gdpr-edit-account-request').slideDown(200); $(this).attr("aria-expanded", "true"); }); $('#form-gdpr-edit-account-request form input[type=submit]').on('click', function(e) { e.preventDefault(); email = $('#form-gdpr-edit-account-request form input[name=email]').val(); type = 'customer/edit'; openVerificationModal(); }); $('#btn-gdpr-requests-request, #btn-gdpr-personal-information-request, #btn-gdpr-orders-request').on('click', function(e) { e.preventDefault(); gdprSlideUpAll(); type = ''; switch($(this).attr('id')) { case 'btn-gdpr-requests-request': type = 'customer/requests'; break; case 'btn-gdpr-personal-information-request': type = 'customer/personal_info'; break; case 'btn-gdpr-orders-request': type = 'customer/orders'; break; } $('#form-gdpr-data-account-request form input[name="request_type"]').val(type); $('#form-gdpr-data-account-request').slideDown(200); $(this).attr("aria-expanded", "true"); }); $('#form-gdpr-data-account-request form input[type=submit]').on('click', function(e) { e.preventDefault(); email = $('#form-gdpr-data-account-request form input[name=email]').val(); type = $('#form-gdpr-data-account-request form input[name="request_type"]').val(); openVerificationModal(); }); $('#btn-gdpr-personal-data-report-request').on('click', function(e) { e.preventDefault(); gdprSlideUpAll(); $('#form-gdpr-personal-data-report-request').slideDown(200); $(this).attr("aria-expanded", "true"); }); $('#form-gdpr-personal-data-report-request form input[type=submit]').on('click', function(e) { e.preventDefault(); email = $('#form-gdpr-personal-data-report-request form input[name=email]').val(); type = 'customer/report'; openVerificationModal(); }); $('#btn-gdpr-delete-account-request').on('click', function(e) { e.preventDefault(); gdprSlideUpAll(); $('#form-gdpr-delete-account-request').slideDown(200); $(this).attr("aria-expanded", "true"); }); $('#form-gdpr-delete-account-request form input[type=submit]').on('click', function(e) { e.preventDefault(); email = $('#form-gdpr-delete-account-request form input[name=email]').val(); type = 'customer/delete'; openVerificationModal(); });