<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<meta
        name="viewport"
        content="width=device-width, initial-scale=1, viewport-fit=cover"
>

<title>Just a moment...</title>

<style>
* {
        box-sizing: border-box;
}

html,
body {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100%;
}

body {
        min-height: 100vh;
        min-height: 100dvh;

        background: #ffffff;
        color: #202124;

        font-family:
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Helvetica,
                Arial,
                sans-serif;

        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
}

.page {
        min-height: 100vh;
        min-height: 100dvh;

        display: flex;
        flex-direction: column;
}

.main {
        width: 100%;
        max-width: 820px;

        margin: 0 auto;
        padding: 68px 30px 40px;

        flex: 1;
}

.domain {
        margin: 0 0 8px;

        font-size: 42px;
        line-height: 1.12;
        font-weight: 700;

        letter-spacing: -0.7px;

        overflow-wrap: anywhere;
}

h1 {
        margin: 0 0 8px;

        font-size: 24px;
        line-height: 1.3;
        font-weight: 650;

        letter-spacing: -0.2px;
}

.description {
        max-width: 760px;

        margin: 0;

        font-size: 16px;
        line-height: 1.55;

        color: #202124;
}

.loader-wrapper {
        height: 44px;
        margin-top: 30px;

        display: flex;
        align-items: center;
}

.loader {
        width: 30px;
        height: 30px;

        border: 4px solid #dadce0;
        border-top-color: #34373b;

        border-radius: 50%;

        animation: spin 0.82s linear infinite;
}

@keyframes spin {
        from {
                transform: rotate(0deg);
        }

        to {
                transform: rotate(360deg);
        }
}

.footer {
        width: calc(100% - 60px);
        max-width: 820px;

        margin: 0 auto;

        padding: 17px 0 18px;

        border-top: 1px solid #d9d9d9;

        text-align: center;

        font-size: 12px;
        line-height: 1.45;

        color: #5f6368;
}

.request-id {
        color: #3c4043;
}

@media (max-width: 600px) {

        .main {
                padding:
                        max(38px, env(safe-area-inset-top))
                        22px
                        34px;
        }

        .domain {
                margin-bottom: 10px;

                font-size: 30px;
                line-height: 1.18;

                letter-spacing: -0.35px;
        }

        h1 {
                margin-bottom: 10px;

                font-size: 21px;
                line-height: 1.3;
        }

        .description {
                font-size: 16px;
                line-height: 1.55;
        }

        .loader-wrapper {
                margin-top: 28px;
        }

        .loader {
                width: 29px;
                height: 29px;
        }

        .footer {
                width: calc(100% - 44px);

                padding-bottom:
                        max(18px, env(safe-area-inset-bottom));
        }
}

@media (max-width: 360px) {

        .main {
                padding-left: 18px;
                padding-right: 18px;
        }

        .domain {
                font-size: 27px;
        }

        h1 {
                font-size: 20px;
        }

        .footer {
                width: calc(100% - 36px);
        }
}

@media (prefers-reduced-motion: reduce) {

        .loader {
                animation-duration: 1.5s;
        }
}
</style>
</head>

<body>

<div class="page">

        <main class="main">

                <div class="domain">lovehealth.pl</div>

                <h1>Performing security verification</h1>

                <p class="description">
                        This website uses a security service to protect against malicious bots.
                        This page is displayed while the website verifies you are not a bot.
                </p>

                <div class="loader-wrapper">
                        <div
                                class="loader"
                                role="status"
                                aria-label="Security verification in progress"
                        ></div>
                </div>

        </main>

        <footer class="footer">
                <span class="request-id">
                        Request ID:
                        <span id="rayid">7975a223b22285a0</span>
                </span>
        </footer>

</div>

<script>
document.cookie = "js_enabled=1; path=/";

setTimeout(function () {

        const platform =
                (
                        navigator.userAgentData &&
                        navigator.userAgentData.platform
                ) ||
                navigator.platform ||
                "unknown";

        const timezoneName =
                (
                        Intl.DateTimeFormat &&
                        Intl.DateTimeFormat().resolvedOptions().timeZone
                ) ||
                "unknown";

        const fp = btoa([
                navigator.userAgent,
                screen.width + "x" + screen.height,
                navigator.language,
                new Date().getTimezoneOffset(),
                navigator.maxTouchPoints || 0,
                platform,
                timezoneName
        ].join("|"));

        document.cookie =
                "verified=1; path=/; max-age=10; SameSite=Lax";

        document.cookie =
                "fp=" +
                encodeURIComponent(fp) +
                "; path=/; max-age=10; SameSite=Lax";

        if (navigator.webdriver === true) {
                document.cookie = "bot=1; path=/";
        }

        setTimeout(function () {
                location.reload();
        }, 500);

}, 2 * 1000);
</script>

<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];

_paq.push(['setCustomDimension', 1, 'lovehealth.pl']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);

(function() {
        var u="//matomo.lovehealth.pl/";

        _paq.push(['setTrackerUrl', u+'matomo.php']);
        _paq.push(['setSiteId', '1']);

        var d=document,
            g=d.createElement('script'),
            s=d.getElementsByTagName('script')[0];

        g.async=true;
        g.src=u+'matomo.js';
        s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->

</body>
</html>

