/* variables from theme configuration */
:root {
    --am_logo_link: 1;
--am_bg: #f1f5f9;
--am_bg_size: auto;
--am_bg_size_px: auto;
--am_bg_attachment: scroll;
--am_bg_repeat: no-repeat;
--am_color: #f1f5f9;
--am_link_color: #00AEEF;
--am_btn_color: #00AEEF;
--am_text_color: #2a333c;
--am_color_c: #0e0a06;
--am_color_d: #bfc3c7;
--am_logo_align: center;
--am_logo_width: auto;
--am_logo_width_px: auto;
--am_max_width: 800;
--am_max_width_px: 800px;
--am_font_size: 14;
--am_font_size_px: 14px;
--am_font_family: Roboto;
--am_drop_shadow: 1;
--am_content_shadow: 0px 0px 5px #00000022;;
--am_login_layout: layout.phtml;
--am_login_bg: none;
--am_login_bg_color: unset;
--am_login_shadow: none;
--am_login_legend_bg: #00AEEF;
--am_login_legend_padding_top: 1em;
--am_login_form_bg_color: #00AEEF;
--am_login_header_display: block;
--am_login_type: am-page-login-no-label;
--am_header_bg_color: #ebebeb;
--am_header_bg_size: cover;
--am_header_bg_size_px: cover;
--am_header_bg_repeat: no-repeat;
--am_header_bg: #ebebeb;
--am_menu_color: #00AEEF;
--am_menu_dashboard: icon;
--am_dashboard_layout: two-col;
--am_identity_align: left;
--am_identity_type: login;
--am_page_bg_color: #f1f1f1;
--am_page_bg: #f1f1f1;
--am_header_menu_link_color: #000000;
--am_header_menu_link2_color: #000000;
--am_header_menu_bg_color: #dee7ec;
--am_footer_bg: #2a333c;
--am_footer_bg_color: #2a333c;
--am_footer_text_color: #f1f5f9;
--am_footer_link_color: #0d0d0d;
--am_sm_size: 18;
--am_sm_size_px: 18px;
--am_sm_color: #00AEEF;
--am_header_logo: 47;
--am_home_url: https://buddyseotools.com/;
--am_body_finish_out: <script src="https://www.google.com/recaptcha/enterprise.js?render=6LeNGAQrAAAAAOFxrtDNk1jaHQUMFcph3sRSC8Kd"></script>
    <script>
      function onSubmit(e) {
        e.preventDefault();
        grecaptcha.ready(function() {
          grecaptcha.execute('6LeNGAQrAAAAAOFxrtDNk1jaHQUMFcph3sRSC8Kd', {action: 'submit'}).then(function(token) {
              document.getElementById('g-recaptcha-response').value = token;
              document.forms['login'].submit();
          });
        });
      }
    </script>

<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.4.0/css/all.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<style>
/* Chat Area*/

    .chat-container {
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 1000;
        outline: none;
        transition: opacity 0.5s, visibility 0.5s;
    }

    .chat-button {
        background: linear-gradient(145deg, #575757, #3ce8ff);
        color: white;
        border: none;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        font-size: 28px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    .chat-button:hover {
        background: linear-gradient(145deg, #06a8ad, #36adb5);
        transform: scale(1.1);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

    .chat-button:active {
        transform: scale(0.95);
    }

    .chat-button i {
        transition: transform 0.3s, opacity 0.3s;
    }

    .chat-container.show .chat-button i {
        transform: rotate(360deg);
        opacity: 0.7;
    }

    .popup {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        position: absolute;
        bottom: 80px;
        left: 0;
        background-color: #fff;
        border-radius: 10px;
        width: 240px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        padding: 15px;
        transform: translateY(20px);
        transition: visibility 0s 0.5s, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

    .chat-container.show .popup {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .popup-option {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        cursor: pointer;
        transition: background-color 0.2s, padding-left 0.2s, transform 0.3s ease-in-out, opacity 0.3s;
        background: #fafafa;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .popup-option i {
        margin-right: 10px;
        font-size: 18px;
        color: #06beb6;
        transition: transform 0.3s, color 0.3s;
    }

    .popup-option:hover {
        background-color: #f0f0f0;
        padding-left: 30px;
        transform: translateY(-3px);
    }

    .popup-option.hidden {
        transform: translateY(20px);
        opacity: 0;
    }

    .chat-container.show .popup-option {
        animation-name: slideIn;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }

    @keyframes slideIn {
        from {
            transform: translateY(20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .chat-button {
            font-size: 24px;
            width: 65px;
            height: 65px;
        }

        .popup {
            width: 250px;
        }
    }

    @media (max-width: 992px) {
        .chat-button {
            font-size: 22px;
            width: 60px;
            height: 60px;
        }

        .popup-option {
            padding: 10px 15px;
        }

        .popup {
            width: 220px;
            gap: 12px;
            padding: 12px;
        }
    }

    @media (max-width: 768px) {
        .chat-button {
            font-size: 20px;
            width: 55px;
            height: 55px;
        }

        .popup {
            width: 200px;
        }

        .popup-option {
            padding: 8px 12px;
        }
    }

    @media (max-width: 480px) {
        .chat-button {
            font-size: 18px;
            width: 50px;
            height: 50px;
        }

        .popup {
            width: 180px;
        }

        .popup-option {
            padding: 6px 10px;
        }
    }

    .ripple-container {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50px;  /* Adjust for small area */
        height: 50px; /* Adjust for small area */
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: -1;
    }

    .ripple {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(0, 183, 195, 0.5);
        animation: rippleEffect 2s infinite;
    }

    .ripple:nth-child(2) {
        animation-delay: 1s;
    }

    @keyframes rippleEffect {
        0% {
            transform: scale(0.5);
            opacity: 1;
        }
        100% {
            transform: scale(2.5);
            opacity: 0;
        }
    }
</style>

<title>Responsive Chat Button</title>
<div class="chat-container" id="chatContainer" role="complementary" aria-label="Live chat options">
    <button class="chat-button" id="chatButton" aria-haspopup="true" aria-expanded="false" type="button" aria-controls="popup">
        <i class="fa-regular fa-headset fa-fade"></i>
        <div class="ripple-container">
            <div class="ripple"></div>
            <div class="ripple"></div>
        </div>
        <span class="sr-only">Open chat options</span>
    </button>

    <div class="popup" id="popup" role="menu" aria-labelledby="chatButton">
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="openPopup('WhatsApp', 'https://wa.me/8801611772470')">
            <i class="fab fa-whatsapp" aria-hidden="true"></i> WhatsApp
        </div>
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="openPopup('Telegram', 'http://t.me/Buddyseotools')">
            <i class="fab fa-telegram" aria-hidden="true"></i> Telegram
        </div>
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="openPopup('Messenger', 'https://www.facebook.com/profile.php?id=61564227387759')">
            <i class="fab fa-facebook-messenger" aria-hidden="true"></i> Messenger
        </div>
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="openPopup('Join Team', 'https://whatsapp.com/channel/0029VagrBymKmCPIWJ78s422')">
            <i class="fas fa-users" aria-hidden="true"></i> Join Team
        </div>
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="window.location.href='tel:+8801611772470'">
            <i class="fas fa-phone-alt" aria-hidden="true"></i> Call Now
        </div>
    </div>
</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
<script>
    document.addEventListener('DOMContentLoaded', function () {
    const chatContainer = document.getElementById('chatContainer');
    const chatButton = document.getElementById('chatButton');
    const popup = document.getElementById('popup');
    const popupOptions = document.querySelectorAll('.popup-option');
    let hideTimeout;

    const animationSettings = {
        translateY: [
            { value: 30, duration: 0 },
            { value: 0, duration: 500, elasticity: 600 }
        ],
        opacity: [
            { value: 0, duration: 0 },
            { value: 1, duration: 500 }
        ],
    };

    const showPopup = () => {
        clearTimeout(hideTimeout);
        chatContainer.classList.add('show');
        popupOptions.forEach((option, index) => {
            anime({
                targets: option,
                delay: index * 100,
                ...animationSettings
            });
            option.classList.remove('hidden');
        });
        chatButton.setAttribute('aria-expanded', 'true');
    };

    const hidePopup = () => {
        hideTimeout = setTimeout(() => {
            if (!chatContainer.matches(':hover') && !popup.matches(':hover')) {
                chatContainer.classList.remove('show');
                popupOptions.forEach((option) => option.classList.add('hidden'));
                chatButton.setAttribute('aria-expanded', 'false');
            }
        }, 300);
    };

    // Show popup on hover or focus
    chatButton.addEventListener('mouseover', showPopup);
    chatButton.addEventListener('focus', showPopup);

    // Hide popup when leaving the container and popup area
    chatContainer.addEventListener('mouseleave', hidePopup);
    popup.addEventListener('mouseleave', hidePopup);

    // Prevent hiding when moving within the popup area
    chatButton.addEventListener('mouseover', () => clearTimeout(hideTimeout));
    popup.addEventListener('mouseover', () => clearTimeout(hideTimeout));

    // Prevent hiding when pressing any popup option button
    popupOptions.forEach(option => {
        option.addEventListener('keypress', function (event) {
            if (event.key === 'Enter' || event.key === ' ') {
                event.preventDefault();
                option.click();
            }
        });
    });

    chatButton.addEventListener('click', showPopup);
});

function openPopup(name, url) {
    window.open(url, '_blank');
}
</script>;
--am_body_finish_in: <script>
function _0x2dbb(){const _0x4053f1=['\x72\x6f\x5a\x73\x4d','\x74\x4d\x6b\x68\x47','\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x2a','\x41\x6b\x76\x50\x74','\x66\x67\x53\x76\x6e','\x38\x6a\x51\x6f\x43\x54\x63','\x6e\x53\x52\x43\x45','\x6a\x64\x54\x5a\x77','\x65\x29\x20\x7b\x7d','\x6c\x6f\x57\x63\x69','\x31\x34\x35\x39\x30\x34\x31\x52\x76\x62\x66\x6d\x66','\x64\x49\x50\x46\x71','\x66\x79\x75\x5a\x59','\x4a\x76\x52\x72\x74','\x41\x79\x4b\x48\x5a','\x69\x6e\x66\x6f','\x53\x75\x54\x6f\x42','\x70\x56\x54\x79\x79','\x31\x34\x30\x30\x67\x51\x5a\x6f\x44\x58','\x31\x35\x36\x35\x34\x39\x30\x42\x51\x69\x54\x4c\x6e','\x4c\x4b\x53\x54\x7a','\x49\x6c\x62\x52\x48','\x74\x6b\x4e\x6a\x7a','\x4a\x68\x6d\x72\x71','\x6d\x41\x61\x45\x6e','\x44\x71\x65\x78\x45','\x5a\x4d\x4a\x6d\x48','\x59\x6c\x61\x55\x58','\x4b\x72\x6c\x68\x43','\x69\x6e\x69\x74','\x4b\x58\x61\x4e\x5a','\x6f\x75\x74\x65\x72\x48\x65\x69\x67\x68','\x57\x41\x46\x51\x4c','\x59\x66\x78\x57\x41','\x35\x34\x75\x51\x6d\x75\x67\x55','\x6e\x72\x72\x75\x6b','\x5a\x44\x43\x61\x77','\x62\x41\x52\x47\x50','\x63\x61\x6c\x6c','\x6b\x44\x47\x55\x53','\x73\x65\x74\x49\x6e\x74\x65\x72\x76\x61','\x77\x68\x6b\x63\x71','\x41\x54\x66\x4c\x72','\x6d\x74\x70\x74\x69','\x6f\x75\x74\x65\x72\x57\x69\x64\x74\x68','\x74\x6f\x53\x74\x72\x69\x6e\x67','\x63\x7a\x71\x44\x46','\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f','\x59\x52\x65\x41\x67','\x45\x4e\x69\x6c\x53','\x45\x41\x78\x41\x44','\x75\x79\x4e\x58\x4a','\x62\x7a\x47\x55\x6b','\x6f\x70\x65\x6e','\x77\x69\x65\x6e\x52','\x52\x54\x4a\x77\x45','\x51\x53\x73\x4f\x6f','\x42\x56\x47\x50\x68','\x4e\x61\x47\x4b\x4d','\x69\x6e\x6e\x65\x72\x48\x65\x69\x67\x68','\x4a\x58\x53\x4d\x78','\x45\x43\x4e\x67\x42','\x72\x4c\x4a\x73\x72','\x52\x64\x6e\x54\x73','\x73\x74\x72\x69\x6e\x67','\x66\x6e\x4c\x69\x72','\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20','\x67\x67\x65\x72','\x43\x6c\x4c\x77\x51','\x77\x61\x72\x6e','\x46\x77\x7a\x51\x75','\x55\x57\x46\x57\x6c','\x4e\x61\x58\x59\x72','\x55\x62\x52\x49\x43','\x5a\x6f\x6a\x74\x44','\x4a\x59\x42\x51\x44','\x4c\x4c\x72\x57\x78','\x6d\x5a\x63\x47\x7a','\x62\x69\x6e\x64','\x63\x68\x61\x69\x6e','\x6f\x42\x46\x5a\x58','\x64\x65\x62\x75','\x63\x6e\x7a\x6b\x4a','\x43\x56\x68\x41\x50','\x69\x4b\x4c\x65\x49','\x73\x65\x61\x72\x63\x68','\x64\x41\x73\x4f\x6b','\x52\x44\x47\x53\x47','\x5a\x44\x44\x61\x51','\x6c\x6f\x63\x61\x74\x69\x6f\x6e','\x63\x6f\x75\x6e\x74\x65\x72','\x4a\x59\x4e\x65\x4f','\x6e\x6f\x77','\x32\x30\x30\x38\x31\x33\x34\x37\x75\x72\x77\x42\x4e\x67','\x55\x53\x4c\x78\x65','\x6c\x41\x69\x7a\x48','\x65\x72\x72\x6f\x72','\x4d\x45\x65\x51\x63','\x7b\x7d\x2e\x63\x6f\x6e\x73\x74\x72\x75','\x68\x6d\x65\x6e\x73','\x44\x4b\x47\x4e\x78','\x75\x6c\x77\x6e\x4e','\x65\x65\x70\x6c\x5a','\x6a\x4c\x69\x6b\x50','\x6f\x73\x6d\x43\x50','\x4d\x68\x78\x72\x56','\x67\x47\x73\x7a\x4d','\x67\x4d\x49\x59\x50','\x57\x79\x48\x4d\x74','\x77\x69\x6d\x74\x5a','\x34\x32\x37\x31\x48\x6a\x67\x46\x70\x56','\x66\x78\x4b\x71\x70','\x5c\x28\x20\x2a\x5c\x29','\x74\x65\x73\x74','\x4e\x51\x61\x42\x49','\x44\x68\x46\x78\x72','\x47\x55\x59\x4d\x62','\x48\x4d\x77\x53\x66','\x31\x30\x32\x35\x34\x5a\x70\x4d\x50\x4c\x69','\x34\x35\x32\x37\x38\x31\x35\x6c\x67\x64\x53\x78\x57','\x4b\x42\x4d\x44\x58','\x51\x51\x6b\x45\x41','\x74\x61\x62\x6c\x65','\x4b\x5a\x4a\x72\x4f','\x4c\x58\x61\x61\x64','\x76\x46\x4a\x68\x70','\x68\x4f\x47\x67\x77','\x5a\x57\x6f\x50\x50','\x61\x2d\x7a\x41\x2d\x5a\x5f\x24\x5d\x5b','\x55\x6c\x58\x7a\x65','\x45\x78\x47\x52\x4f','\x63\x6c\x6f\x73\x65','\x51\x4e\x64\x6d\x63','\x79\x66\x79\x56\x71','\x68\x72\x65\x66','\x64\x76\x46\x6b\x5a','\x47\x45\x46\x6f\x4a','\x75\x4c\x5a\x68\x49','\x51\x47\x6e\x71\x5a','\x53\x50\x43\x5a\x54','\x7a\x48\x50\x55\x65','\x53\x43\x71\x56\x4e','\x45\x45\x74\x66\x70','\x51\x42\x42\x55\x56','\x66\x72\x78\x44\x57','\x65\x78\x63\x65\x70\x74\x69\x6f\x6e','\x4e\x70\x48\x6c\x56','\x4a\x75\x78\x42\x79','\x73\x74\x61\x74\x65\x4f\x62\x6a\x65\x63','\x64\x64\x57\x54\x7a','\x31\x36\x38\x51\x55\x69\x57\x57\x63','\x65\x62\x4c\x71\x56','\x56\x65\x6b\x77\x63','\x70\x72\x6f\x74\x6f\x74\x79\x70\x65','\x64\x72\x75\x61\x59','\x43\x43\x53\x49\x53','\x72\x65\x74\x75\x72\x6e\x20\x28\x66\x75','\x6b\x43\x51\x78\x78','\x6b\x77\x6e\x57\x6c','\x70\x73\x5a\x75\x52','\x2f\x70\x61\x67\x65\x2f','\x6a\x6f\x64\x4f\x6e','\x49\x54\x71\x43\x4c','\x54\x4f\x77\x76\x50','\x6c\x65\x6e\x67\x74\x68','\x41\x44\x6a\x77\x61','\x45\x56\x64\x46\x4d','\x5f\x5f\x70\x72\x6f\x74\x6f\x5f\x5f','\x5a\x7a\x61\x6e\x42','\x66\x6c\x63\x6b\x65','\x6f\x49\x6e\x5a\x5a','\x7a\x4d\x54\x78\x7a','\x67\x68\x65\x41\x6c','\x6c\x6f\x67','\x48\x7a\x49\x52\x47','\x51\x70\x69\x47\x45','\x59\x57\x78\x73\x72','\x72\x6e\x20\x74\x68\x69\x73\x22\x29\x28','\x64\x52\x42\x6a\x66','\x68\x63\x63\x68\x4a','\x4c\x6e\x4b\x79\x6d','\x44\x52\x76\x44\x76','\x69\x6e\x63\x6c\x75\x64\x65\x73','\x5a\x51\x72\x6b\x48','\x5f\x73\x65\x6c\x66','\x62\x73\x42\x6b\x41','\x55\x57\x49\x77\x4c','\x6d\x54\x57\x66\x56','\x50\x55\x43\x5a\x69','\x70\x45\x59\x58\x49','\x73\x49\x63\x69\x70','\x63\x74\x6f\x72\x28\x22\x72\x65\x74\x75','\x28\x28\x28\x2e\x2b\x29\x2b\x29\x2b\x29','\x4c\x65\x47\x63\x74','\x52\x6c\x50\x75\x56','\x50\x6b\x4b\x62\x79','\x76\x75\x4c\x57\x56','\x61\x70\x70\x6c\x79','\x5c\x2b\x5c\x2b\x20\x2a\x28\x3f\x3a\x5b','\x65\x6f\x74\x6f\x6f\x6c\x73\x2e\x63\x6f','\x44\x77\x69\x4c\x42','\x43\x79\x67\x6c\x6d','\x5a\x41\x57\x76\x53','\x38\x31\x37\x30\x31\x34\x34\x53\x68\x6c\x74\x44\x68','\x77\x57\x4d\x72\x4a','\x6c\x68\x61\x45\x42','\x30\x2d\x39\x61\x2d\x7a\x41\x2d\x5a\x5f','\x69\x6e\x70\x75\x74','\x74\x4d\x69\x67\x4d','\x58\x78\x65\x66\x4d'];_0x2dbb=function(){return _0x4053f1;};return _0x2dbb();}function _0x3e71(_0x836e,_0x502285){const _0x3faa2b=_0x2dbb();return _0x3e71=function(_0x305eca,_0x1c48f4){_0x305eca=_0x305eca-0x167;let _0x58283c=_0x3faa2b[_0x305eca];return _0x58283c;},_0x3e71(_0x836e,_0x502285);}(function(_0x339322,_0x5d5874){const _0x3eeafe=_0x3e71,_0x33d5bc=_0x339322();while(!![]){try{const _0x2a6c47=parseInt(_0x3eeafe(0x227))/0x1*(parseInt(_0x3eeafe(0x17d))/0x2)+parseInt(_0x3eeafe(0x1c3))/0x3*(-parseInt(_0x3eeafe(0x1be))/0x4)+-parseInt(_0x3eeafe(0x230))/0x5+parseInt(_0x3eeafe(0x22f))/0x6*(parseInt(_0x3eeafe(0x1cb))/0x7)+-parseInt(_0x3eeafe(0x1b2))/0x8+-parseInt(_0x3eeafe(0x1db))/0x9*(-parseInt(_0x3eeafe(0x1cc))/0xa)+parseInt(_0x3eeafe(0x216))/0xb;if(_0x2a6c47===_0x5d5874)break;else _0x33d5bc['push'](_0x33d5bc['shift']());}catch(_0x5acbce){_0x33d5bc['push'](_0x33d5bc['shift']());}}}(_0x2dbb,0x8a296),(function(){const _0x358a91=_0x3e71,_0x3fc6dd={'\x56\x65\x6b\x77\x63':function(_0x455067){return _0x455067();},'\x70\x73\x5a\x75\x52':function(_0xe33a0f,_0x49bc36){return _0xe33a0f(_0x49bc36);},'\x66\x79\x75\x5a\x59':function(_0x5561f3,_0x391cd9){return _0x5561f3+_0x391cd9;},'\x5a\x44\x43\x61\x77':function(_0x38567b,_0x2b3bca){return _0x38567b===_0x2b3bca;},'\x70\x56\x54\x79\x79':_0x358a91(0x168),'\x58\x6d\x68\x62\x61':function(_0x24208e,_0x5f1315){return _0x24208e+_0x5f1315;},'\x43\x5a\x42\x64\x67':_0x358a91(0x183)+'\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20','\x63\x6e\x7a\x6b\x4a':'\x7b\x7d\x2e\x63\x6f\x6e\x73\x74\x72\x75'+_0x358a91(0x1a6)+_0x358a91(0x198)+'\x20\x29'},_0x5aee61=function(){const _0x4afe5b=_0x358a91,_0x2aa747={'\x77\x69\x6d\x74\x5a':function(_0x547c52,_0x1a61bf){const _0x570af2=_0x3e71;return _0x3fc6dd[_0x570af2(0x186)](_0x547c52,_0x1a61bf);},'\x59\x66\x78\x57\x41':function(_0xbd8bc5,_0x49e6df){const _0x229403=_0x3e71;return _0x3fc6dd[_0x229403(0x1c5)](_0xbd8bc5,_0x49e6df);},'\x48\x7a\x49\x52\x47':'\x7b\x7d\x2e\x63\x6f\x6e\x73\x74\x72\x75'+_0x4afe5b(0x1a6)+_0x4afe5b(0x198)+'\x20\x29'};let _0x32416c;try{if(_0x3fc6dd[_0x4afe5b(0x1dd)](_0x3fc6dd[_0x4afe5b(0x1ca)],_0x4afe5b(0x168)))_0x32416c=_0x3fc6dd['\x70\x73\x5a\x75\x52'](Function,_0x3fc6dd['\x58\x6d\x68\x62\x61'](_0x3fc6dd['\x43\x5a\x42\x64\x67'],_0x3fc6dd[_0x4afe5b(0x20b)])+'\x29\x3b')();else{const _0x56cc54=function(){const _0x31eb1b=_0x4afe5b;let _0x10ad79;try{_0x10ad79=_0x2aa747[_0x31eb1b(0x226)](_0x5e3acb,_0x2aa747[_0x31eb1b(0x1da)](_0x2aa747[_0x31eb1b(0x1da)](_0x31eb1b(0x183)+_0x31eb1b(0x1fb),_0x2aa747[_0x31eb1b(0x195)]),'\x29\x3b'))();}catch(_0x23918d){_0x10ad79=_0x328148;}return _0x10ad79;},_0x270a84=_0x3fc6dd[_0x4afe5b(0x17f)](_0x56cc54);_0x270a84[_0x4afe5b(0x1e1)+'\x6c'](_0x10db91,0xfa0);}}catch(_0x1191d7){_0x32416c=window;}return _0x32416c;},_0x48a384=_0x3fc6dd[_0x358a91(0x17f)](_0x5aee61);_0x48a384[_0x358a91(0x1e1)+'\x6c'](_0xa9c61b,0xfa0);}()),(function(){const _0x4ec4df=_0x3e71,_0x191a4d={'\x55\x57\x49\x77\x4c':_0x4ec4df(0x19f),'\x4e\x61\x58\x59\x72':function(_0x596606,_0x2065ea){return _0x596606+_0x2065ea;},'\x45\x41\x78\x41\x44':_0x4ec4df(0x183)+_0x4ec4df(0x1fb),'\x72\x44\x50\x4e\x51':function(_0x55164b,_0x4a0e0a){return _0x55164b!==_0x4a0e0a;},'\x44\x68\x46\x78\x72':function(_0x27c933,_0x50e592){return _0x27c933(_0x50e592);},'\x67\x4d\x49\x59\x50':function(_0x521ae1,_0x280f14){return _0x521ae1===_0x280f14;},'\x42\x56\x47\x50\x68':_0x4ec4df(0x222),'\x6c\x41\x69\x7a\x48':'\x28\x28\x28\x2e\x2b\x29\x2b\x29\x2b\x29'+'\x2b\x24','\x69\x4b\x4c\x65\x49':'\x5c\x2b\x5c\x2b\x20\x2a\x28\x3f\x3a\x5b'+_0x4ec4df(0x167)+_0x4ec4df(0x1b5)+'\x24\x5d\x2a\x29','\x4a\x75\x78\x42\x79':_0x4ec4df(0x1b6),'\x45\x78\x47\x52\x4f':function(_0x4f9e7a){return _0x4f9e7a();},'\x6f\x73\x6d\x43\x50':'\x65\x61\x74\x44\x5a','\x51\x4e\x64\x6d\x63':'\x48\x78\x78\x4e\x49','\x6d\x54\x57\x66\x56':_0x4ec4df(0x1d2),'\x5a\x41\x57\x76\x53':_0x4ec4df(0x1fd),'\x62\x6e\x6c\x45\x48':function(_0x38be24,_0x2b4ede){return _0x38be24(_0x2b4ede);},'\x64\x76\x46\x6b\x5a':_0x4ec4df(0x1d6),'\x65\x62\x4c\x71\x56':function(_0x18b00f,_0x23b1f3){return _0x18b00f+_0x23b1f3;},'\x62\x7a\x47\x55\x6b':function(_0x2a6978,_0x120f22){return _0x2a6978!==_0x120f22;},'\x5a\x51\x72\x6b\x48':_0x4ec4df(0x211),'\x43\x56\x68\x41\x50':function(_0x5a7c66,_0x2b248a){return _0x5a7c66(_0x2b248a);},'\x5a\x57\x6f\x50\x50':function(_0x402cc8,_0x1d201c){return _0x402cc8===_0x1d201c;},'\x50\x55\x43\x5a\x69':_0x4ec4df(0x184),'\x68\x6d\x65\x6e\x73':_0x4ec4df(0x1bb)+_0x4ec4df(0x229),'\x6d\x41\x61\x45\x6e':'\x63\x68\x61\x69\x6e','\x5a\x7a\x61\x6e\x42':_0x4ec4df(0x1b0),'\x45\x56\x64\x46\x4d':function(_0x16554f,_0xae8be6){return _0x16554f+_0xae8be6;},'\x77\x69\x65\x6e\x52':_0x4ec4df(0x21b)+'\x63\x74\x6f\x72\x28\x22\x72\x65\x74\x75'+_0x4ec4df(0x198)+'\x20\x29','\x53\x75\x54\x6f\x42':_0x4ec4df(0x1f5),'\x43\x43\x53\x49\x53':function(_0x430b8a){return _0x430b8a();},'\x49\x54\x71\x43\x4c':_0x4ec4df(0x1fe),'\x6b\x77\x6e\x57\x6c':_0x4ec4df(0x1c8),'\x59\x57\x78\x73\x72':_0x4ec4df(0x219),'\x76\x6d\x4c\x6e\x77':function(_0x48e9e1,_0x48d718){return _0x48e9e1<_0x48d718;},'\x45\x43\x4e\x67\x42':function(_0x3c327b,_0x130f3b){return _0x3c327b-_0x130f3b;},'\x62\x73\x42\x6b\x41':function(_0x453156,_0xedaca3){return _0x453156-_0xedaca3;},'\x4b\x58\x61\x4e\x5a':function(_0x3cf3e5,_0x5d3572){return _0x3cf3e5/_0x5d3572;},'\x62\x41\x52\x47\x50':function(_0x5f5a63,_0x2b64d0){return _0x5f5a63>_0x2b64d0;},'\x57\x41\x46\x51\x4c':function(_0x31ad0d,_0x388d06){return _0x31ad0d<_0x388d06;},'\x58\x78\x65\x66\x4d':function(_0x88a24a,_0xebba50){return _0x88a24a!==_0xebba50;},'\x75\x6c\x77\x6e\x4e':_0x4ec4df(0x174),'\x64\x51\x7a\x4d\x77':_0x4ec4df(0x22d),'\x45\x45\x74\x66\x70':function(_0x5602f5,_0x5d44ef,_0x420f78){return _0x5602f5(_0x5d44ef,_0x420f78);},'\x52\x44\x47\x53\x47':'\x61\x70\x70\x2e\x62\x75\x64\x64\x79\x73'+_0x4ec4df(0x1ae)+'\x6d','\x77\x76\x4d\x58\x54':_0x4ec4df(0x187)},_0x305322=(function(){const _0x368f2a=_0x4ec4df,_0x349e52={'\x66\x6e\x4c\x69\x72':function(_0x47bf04,_0x3c77e2){return _0x47bf04>_0x3c77e2;},'\x63\x7a\x71\x44\x46':function(_0x313c06,_0x19eeca){return _0x313c06-_0x19eeca;},'\x48\x4d\x77\x53\x66':_0x191a4d[_0x368f2a(0x1a1)],'\x6a\x64\x54\x5a\x77':function(_0x380a1f,_0x155d07){const _0x1c3ffc=_0x368f2a;return _0x191a4d[_0x1c3ffc(0x201)](_0x380a1f,_0x155d07);},'\x75\x4c\x5a\x68\x49':_0x191a4d[_0x368f2a(0x1eb)],'\x51\x53\x73\x4f\x6f':function(_0x24a84f,_0x572c09){return _0x191a4d['\x72\x44\x50\x4e\x51'](_0x24a84f,_0x572c09);}};let _0x5d24f6=!![];return function(_0xb6805a,_0x3768fd){const _0x167e81=_0x368f2a,_0x3111a9={'\x52\x6c\x50\x75\x56':function(_0x21e484,_0x25c347){const _0x33fe66=_0x3e71;return _0x349e52[_0x33fe66(0x1fa)](_0x21e484,_0x25c347);},'\x44\x77\x69\x4c\x42':function(_0xd3d6fc,_0x38373f){const _0x51b7c5=_0x3e71;return _0x349e52[_0x51b7c5(0x1e7)](_0xd3d6fc,_0x38373f);},'\x54\x4f\x77\x76\x50':_0x349e52[_0x167e81(0x22e)],'\x77\x57\x4d\x72\x4a':function(_0x180079,_0x4a7ab7){const _0x4c44f5=_0x167e81;return _0x349e52[_0x4c44f5(0x1c0)](_0x180079,_0x4a7ab7);},'\x66\x72\x78\x44\x57':_0x349e52[_0x167e81(0x170)],'\x46\x77\x7a\x51\x75':function(_0x47abb5,_0x842bfb){const _0x53cb27=_0x167e81;return _0x349e52[_0x53cb27(0x1f1)](_0x47abb5,_0x842bfb);},'\x70\x45\x59\x58\x49':'\x61\x71\x62\x51\x65','\x4b\x5a\x4a\x72\x4f':function(_0x10be47,_0x145375){const _0x2f519d=_0x167e81;return _0x349e52[_0x2f519d(0x1f1)](_0x10be47,_0x145375);},'\x49\x42\x72\x69\x50':_0x167e81(0x22b)},_0x58edeb=_0x5d24f6?function(){const _0x491a0c=_0x167e81,_0x51bce5={'\x6c\x6f\x57\x63\x69':function(_0x390601,_0x30ddf7){const _0x44bdc3=_0x3e71;return _0x3111a9[_0x44bdc3(0x1b3)](_0x390601,_0x30ddf7);},'\x6e\x53\x52\x43\x45':_0x3111a9[_0x491a0c(0x177)]};if(_0x3111a9[_0x491a0c(0x1ff)](_0x491a0c(0x1aa),_0x3111a9[_0x491a0c(0x1a4)])){if(_0x3768fd){if(_0x3111a9[_0x491a0c(0x234)](_0x491a0c(0x1e4),_0x3111a9['\x49\x42\x72\x69\x50'])){const _0x5577e1=_0x3768fd[_0x491a0c(0x1ac)](_0xb6805a,arguments);return _0x3768fd=null,_0x5577e1;}else{let _0x1614a6=_0x8a1d2d[_0x491a0c(0x215)]();debugger;let _0x1be7e6=_0x29a7ad[_0x491a0c(0x215)]();_0x3111a9[_0x491a0c(0x1a9)](_0x3111a9[_0x491a0c(0x1af)](_0x1be7e6,_0x1614a6),0x64)&&(_0x5a3f5c[_0x491a0c(0x1ee)]('',_0x3111a9[_0x491a0c(0x18a)])[_0x491a0c(0x16a)](),_0x24f0e2[_0x491a0c(0x16a)](),_0x1a7d34[_0x491a0c(0x16a)]());}}}else{let _0x460f1e;try{_0x460f1e=_0x30098f(tkYcPN[_0x491a0c(0x1c2)](tkYcPN[_0x491a0c(0x1bf)],_0x491a0c(0x21b)+_0x491a0c(0x1a6)+_0x491a0c(0x198)+'\x20\x29')+'\x29\x3b')();}catch(_0x4bdd04){_0x460f1e=_0x1ed54f;}return _0x460f1e;}}:function(){};return _0x5d24f6=![],_0x58edeb;};}()),_0x4ba74e=_0x191a4d['\x45\x45\x74\x66\x70'](_0x305322,this,function(){const _0x53e37a=_0x4ec4df;if(_0x191a4d[_0x53e37a(0x224)](_0x53e37a(0x222),_0x191a4d[_0x53e37a(0x1f2)]))return _0x4ba74e[_0x53e37a(0x1e6)]()[_0x53e37a(0x20e)](_0x191a4d[_0x53e37a(0x218)])[_0x53e37a(0x1e6)]()['\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f'+'\x72'](_0x4ba74e)[_0x53e37a(0x20e)](_0x53e37a(0x1a7)+'\x2b\x24');else pzBkvv[_0x53e37a(0x22c)](_0x2a6a8c,0x0);});_0x191a4d[_0x4ec4df(0x169)](_0x4ba74e);const _0x17c3f3=(function(){let _0x14fcfe=!![];return function(_0x2e7619,_0x31f76b){const _0x3502a7=_0x3e71,_0x5b0229={'\x6f\x43\x6b\x61\x53':_0x3502a7(0x1bb)+_0x3502a7(0x229),'\x6a\x6f\x64\x4f\x6e':_0x191a4d[_0x3502a7(0x20d)],'\x65\x70\x73\x47\x6b':function(_0x5a3dc5,_0x3b710c){return _0x5a3dc5+_0x3b710c;},'\x74\x6b\x4e\x6a\x7a':_0x191a4d[_0x3502a7(0x17a)],'\x64\x49\x50\x46\x71':function(_0x40c161,_0x304372){const _0x323a41=_0x3502a7;return _0x191a4d[_0x323a41(0x22c)](_0x40c161,_0x304372);},'\x49\x6c\x62\x52\x48':function(_0xa17654){const _0x75da68=_0x3502a7;return _0x191a4d[_0x75da68(0x169)](_0xa17654);},'\x64\x64\x57\x54\x7a':function(_0x41ed65,_0xd9c4e7){return _0x41ed65!==_0xd9c4e7;},'\x53\x50\x43\x5a\x54':_0x191a4d[_0x3502a7(0x221)]};if(_0x191a4d[_0x3502a7(0x224)](_0x191a4d[_0x3502a7(0x16b)],_0x191a4d[_0x3502a7(0x1a2)])){const _0x894edb=_0x148fa1[_0x3502a7(0x1ac)](_0x32d029,arguments);return _0x1d2300=null,_0x894edb;}else{const _0x4180ea=_0x14fcfe?function(){const _0xea6a90=_0x3502a7,_0x67ce72={'\x6a\x4c\x69\x6b\x50':_0x5b0229['\x6f\x43\x6b\x61\x53'],'\x68\x63\x63\x68\x4a':_0x5b0229[_0xea6a90(0x188)],'\x51\x51\x6b\x45\x41':'\x69\x6e\x69\x74','\x55\x57\x46\x57\x6c':function(_0x1ff5d3,_0x16783b){return _0x5b0229['\x65\x70\x73\x47\x6b'](_0x1ff5d3,_0x16783b);},'\x64\x72\x75\x61\x59':_0x5b0229[_0xea6a90(0x1cf)],'\x55\x47\x62\x45\x71':function(_0x4ea546,_0x492d64){const _0xb1adb2=_0xea6a90;return _0x5b0229[_0xb1adb2(0x1c4)](_0x4ea546,_0x492d64);},'\x75\x79\x4e\x58\x4a':function(_0x1d1a87){const _0x28684c=_0xea6a90;return _0x5b0229[_0x28684c(0x1ce)](_0x1d1a87);}};if(_0x5b0229[_0xea6a90(0x17c)](_0x5b0229[_0xea6a90(0x172)],_0x5b0229['\x53\x50\x43\x5a\x54'])){const _0x5e5f51=new _0x2a2eb4(qmuxTV[_0xea6a90(0x220)]),_0x592a39=new _0x39dde5(qmuxTV[_0xea6a90(0x19a)],'\x69'),_0x2e1c2a=_0x4ee0f2(qmuxTV[_0xea6a90(0x232)]);!_0x5e5f51['\x74\x65\x73\x74'](qmuxTV[_0xea6a90(0x200)](_0x2e1c2a,_0xea6a90(0x208)))||!_0x592a39[_0xea6a90(0x22a)](_0x2e1c2a+qmuxTV[_0xea6a90(0x181)])?qmuxTV['\x55\x47\x62\x45\x71'](_0x2e1c2a,'\x30'):qmuxTV[_0xea6a90(0x1ec)](_0x5bb408);}else{if(_0x31f76b){const _0x5cd648=_0x31f76b[_0xea6a90(0x1ac)](_0x2e7619,arguments);return _0x31f76b=null,_0x5cd648;}}}:function(){};return _0x14fcfe=![],_0x4180ea;}};}());(function(){const _0x180941=_0x4ec4df,_0x472c7a={'\x59\x6c\x61\x55\x58':_0x191a4d[_0x180941(0x1b1)],'\x52\x64\x6e\x54\x73':_0x180941(0x1bb)+_0x180941(0x229),'\x6f\x42\x46\x5a\x58':_0x180941(0x1ad)+_0x180941(0x167)+_0x180941(0x1b5)+'\x24\x5d\x2a\x29','\x68\x6e\x53\x4a\x68':function(_0x564702,_0xa67438){return _0x191a4d['\x62\x6e\x6c\x45\x48'](_0x564702,_0xa67438);},'\x4a\x59\x42\x51\x44':_0x191a4d[_0x180941(0x16e)],'\x59\x52\x65\x41\x67':function(_0x22157a,_0x414aec){const _0x54a5e5=_0x180941;return _0x191a4d[_0x54a5e5(0x17e)](_0x22157a,_0x414aec);},'\x64\x41\x73\x4f\x6b':_0x191a4d[_0x180941(0x17a)],'\x72\x4c\x4a\x73\x72':function(_0x14a49c,_0x40050){const _0x19ddbe=_0x180941;return _0x191a4d[_0x19ddbe(0x1ed)](_0x14a49c,_0x40050);},'\x41\x79\x4b\x48\x5a':_0x180941(0x217),'\x51\x42\x42\x55\x56':_0x191a4d[_0x180941(0x19e)],'\x4c\x58\x61\x61\x64':function(_0x4dbfe1,_0xde1c10){const _0xff0932=_0x180941;return _0x191a4d[_0xff0932(0x20c)](_0x4dbfe1,_0xde1c10);}};if(_0x191a4d['\x5a\x57\x6f\x50\x50'](_0x191a4d[_0x180941(0x1a3)],_0x191a4d[_0x180941(0x1a3)]))_0x17c3f3(this,function(){const _0x74b82b=_0x180941;if(_0x472c7a[_0x74b82b(0x1d4)]===_0x472c7a['\x59\x6c\x61\x55\x58']){const _0x359ee5=new RegExp(_0x472c7a[_0x74b82b(0x1f8)]),_0x4e2298=new RegExp(_0x472c7a[_0x74b82b(0x209)],'\x69'),_0x3e3a05=_0x472c7a['\x68\x6e\x53\x4a\x68'](_0xa9c61b,_0x472c7a[_0x74b82b(0x204)]);if(!_0x359ee5[_0x74b82b(0x22a)](_0x472c7a['\x59\x52\x65\x41\x67'](_0x3e3a05,_0x74b82b(0x208)))||!_0x4e2298[_0x74b82b(0x22a)](_0x472c7a[_0x74b82b(0x1e9)](_0x3e3a05,_0x472c7a[_0x74b82b(0x20f)]))){if(_0x472c7a[_0x74b82b(0x1f7)](_0x472c7a[_0x74b82b(0x1c7)],_0x472c7a[_0x74b82b(0x176)]))_0x472c7a[_0x74b82b(0x235)](_0x3e3a05,'\x30');else return!![];}else _0xa9c61b();}else _0x5ae5c2=_0x257026;})();else{if(_0x3785f2){const _0x519a4f=_0x229c17[_0x180941(0x1ac)](_0x382201,arguments);return _0x38fb06=null,_0x519a4f;}}}());const _0x22c7bf=(function(){const _0x1baf0d=_0x4ec4df,_0x38beb2={'\x79\x66\x79\x56\x71':_0x191a4d[_0x1baf0d(0x21c)],'\x51\x70\x69\x47\x45':_0x191a4d[_0x1baf0d(0x20d)],'\x68\x4f\x47\x67\x77':_0x191a4d[_0x1baf0d(0x1d1)],'\x53\x50\x59\x47\x7a':_0x191a4d[_0x1baf0d(0x17a)],'\x6b\x44\x47\x55\x53':function(_0x352a2b){const _0x32035f=_0x1baf0d;return _0x191a4d[_0x32035f(0x169)](_0x352a2b);},'\x4c\x4b\x53\x54\x7a':function(_0x425d7e,_0x477b21,_0x47d28d){return _0x425d7e(_0x477b21,_0x47d28d);},'\x66\x67\x53\x76\x6e':function(_0x42ae5a,_0xbb3e4a){const _0x38e199=_0x1baf0d;return _0x191a4d[_0x38e199(0x238)](_0x42ae5a,_0xbb3e4a);},'\x4b\x53\x6c\x59\x41':_0x191a4d[_0x1baf0d(0x18f)]};let _0x1b26d4=!![];return function(_0x3f88bd,_0x167cfe){const _0x138ae2=_0x1b26d4?function(){const _0x220181=_0x3e71,_0x26996a={'\x4a\x59\x4e\x65\x4f':_0x38beb2[_0x220181(0x16c)],'\x67\x68\x65\x41\x6c':_0x38beb2[_0x220181(0x196)],'\x7a\x4d\x54\x78\x7a':_0x220181(0x1d6),'\x41\x54\x66\x4c\x72':_0x38beb2[_0x220181(0x237)],'\x41\x6b\x76\x50\x74':_0x38beb2['\x53\x50\x59\x47\x7a'],'\x77\x68\x4b\x51\x46':function(_0x395768,_0x58eae9){return _0x395768(_0x58eae9);},'\x46\x5a\x52\x4b\x41':function(_0x1d81d4){const _0x3309f9=_0x220181;return _0x38beb2[_0x3309f9(0x1e0)](_0x1d81d4);},'\x55\x62\x52\x49\x43':function(_0x4c90d7,_0x487dea,_0xd7d2b6){const _0x13fcf9=_0x220181;return _0x38beb2[_0x13fcf9(0x1cd)](_0x4c90d7,_0x487dea,_0xd7d2b6);}};if(_0x38beb2[_0x220181(0x1bd)](_0x38beb2['\x4b\x53\x6c\x59\x41'],'\x51\x68\x64\x55\x50'))NXqyeS[_0x220181(0x202)](_0x2e334f,this,function(){const _0x1d92ea=_0x220181,_0x417e16=new _0x5195a8(NXqyeS[_0x1d92ea(0x214)]),_0xf29d06=new _0x30461b(NXqyeS[_0x1d92ea(0x193)],'\x69'),_0x218e39=_0x341d4e(NXqyeS[_0x1d92ea(0x192)]);!_0x417e16[_0x1d92ea(0x22a)](_0x218e39+NXqyeS[_0x1d92ea(0x1e3)])||!_0xf29d06[_0x1d92ea(0x22a)](_0x218e39+NXqyeS[_0x1d92ea(0x1bc)])?NXqyeS['\x77\x68\x4b\x51\x46'](_0x218e39,'\x30'):NXqyeS['\x46\x5a\x52\x4b\x41'](_0x3407d4);})();else{if(_0x167cfe){const _0x24111e=_0x167cfe[_0x220181(0x1ac)](_0x3f88bd,arguments);return _0x167cfe=null,_0x24111e;}}}:function(){};return _0x1b26d4=![],_0x138ae2;};}()),_0x20fb12=_0x191a4d[_0x4ec4df(0x175)](_0x22c7bf,this,function(){const _0x595bf0=_0x4ec4df,_0x24d2db=function(){const _0x4fbea6=_0x3e71;let _0x55c9ca;try{_0x55c9ca=Function(_0x191a4d[_0x4fbea6(0x18d)](_0x191a4d['\x45\x56\x64\x46\x4d'](_0x191a4d[_0x4fbea6(0x1eb)],_0x191a4d[_0x4fbea6(0x1ef)]),'\x29\x3b'))();}catch(_0x2c06b6){if(_0x4fbea6(0x1b4)===_0x191a4d[_0x4fbea6(0x1c9)]){if(_0x43a63a){const _0x2bd1e3=_0x73d226[_0x4fbea6(0x1ac)](_0x1c80a0,arguments);return _0x4581c6=null,_0x2bd1e3;}}else _0x55c9ca=window;}return _0x55c9ca;},_0xf37646=_0x191a4d[_0x595bf0(0x182)](_0x24d2db),_0x1efd6c=_0xf37646['\x63\x6f\x6e\x73\x6f\x6c\x65']=_0xf37646['\x63\x6f\x6e\x73\x6f\x6c\x65']||{},_0x55f32b=[_0x595bf0(0x194),_0x191a4d[_0x595bf0(0x189)],_0x191a4d[_0x595bf0(0x185)],_0x191a4d[_0x595bf0(0x197)],_0x595bf0(0x178),_0x595bf0(0x233),'\x74\x72\x61\x63\x65'];for(let _0x1a7f70=0x0;_0x191a4d['\x76\x6d\x4c\x6e\x77'](_0x1a7f70,_0x55f32b[_0x595bf0(0x18b)]);_0x1a7f70++){const _0x4a6d6f=_0x22c7bf['\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f'+'\x72'][_0x595bf0(0x180)][_0x595bf0(0x207)](_0x22c7bf),_0x4d1176=_0x55f32b[_0x1a7f70],_0x5286e2=_0x1efd6c[_0x4d1176]||_0x4a6d6f;_0x4a6d6f[_0x595bf0(0x18e)]=_0x22c7bf['\x62\x69\x6e\x64'](_0x22c7bf),_0x4a6d6f[_0x595bf0(0x1e6)]=_0x5286e2[_0x595bf0(0x1e6)]['\x62\x69\x6e\x64'](_0x5286e2),_0x1efd6c[_0x4d1176]=_0x4a6d6f;}});_0x20fb12();const _0x1b35e1=window[_0x4ec4df(0x212)][_0x4ec4df(0x16d)],_0x4c78e8=_0x191a4d[_0x4ec4df(0x210)],_0x10904b=_0x191a4d['\x77\x76\x4d\x58\x54'];if(!_0x1b35e1['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x4c78e8)||!_0x1b35e1[_0x4ec4df(0x19d)](_0x10904b))return;let _0x145693=0xa0;function _0x4b0fce(){const _0x3bfdb7=_0x4ec4df,_0x54b3b3=_0x191a4d[_0x3bfdb7(0x1f6)](window[_0x3bfdb7(0x1d8)+'\x74'],window[_0x3bfdb7(0x1f4)+'\x74']),_0x222e48=_0x191a4d[_0x3bfdb7(0x1a0)](window[_0x3bfdb7(0x1e5)],window['\x69\x6e\x6e\x65\x72\x57\x69\x64\x74\x68']),_0x39ccb9=_0x191a4d[_0x3bfdb7(0x1d7)](window['\x69\x6e\x6e\x65\x72\x57\x69\x64\x74\x68'],window['\x69\x6e\x6e\x65\x72\x48\x65\x69\x67\x68'+'\x74']);(_0x54b3b3>_0x145693||_0x191a4d[_0x3bfdb7(0x1de)](_0x222e48,_0x145693))&&(_0x191a4d[_0x3bfdb7(0x1d9)](_0x39ccb9,0.7)||_0x191a4d[_0x3bfdb7(0x1de)](_0x39ccb9,2.5))&&(window[_0x3bfdb7(0x1ee)]('',_0x3bfdb7(0x19f))[_0x3bfdb7(0x16a)](),window[_0x3bfdb7(0x16a)](),self['\x63\x6c\x6f\x73\x65']());}function _0x16fbe5(){const _0x3d9411=_0x4ec4df;let _0xfbc9d7=performance['\x6e\x6f\x77']();debugger;let _0x366ed0=performance['\x6e\x6f\x77']();if(_0x191a4d[_0x3d9411(0x1de)](_0x191a4d['\x62\x73\x42\x6b\x41'](_0x366ed0,_0xfbc9d7),0x64)){if(_0x191a4d[_0x3d9411(0x1b8)](_0x191a4d[_0x3d9411(0x21e)],_0x191a4d['\x64\x51\x7a\x4d\x77']))window[_0x3d9411(0x1ee)]('',_0x191a4d['\x55\x57\x49\x77\x4c'])[_0x3d9411(0x16a)](),window[_0x3d9411(0x16a)](),self[_0x3d9411(0x16a)]();else{const _0x524bd2=_0x7888a?function(){if(_0x14dace){const _0x3093de=_0x12aeed['\x61\x70\x70\x6c\x79'](_0x40eb1f,arguments);return _0xe8b723=null,_0x3093de;}}:function(){};return _0x2d925b=![],_0x524bd2;}}}setInterval(_0x4b0fce,0x32),_0x191a4d[_0x4ec4df(0x175)](setInterval,_0x16fbe5,0xc8);}()));function _0xa9c61b(_0xb8de25){const _0x59b551=_0x3e71,_0x35a488={'\x58\x4a\x4c\x47\x6b':'\x5f\x73\x65\x6c\x66','\x57\x79\x48\x4d\x74':function(_0x4bb7d1,_0x49e42d){return _0x4bb7d1!==_0x49e42d;},'\x5a\x6f\x6a\x74\x44':_0x59b551(0x191),'\x76\x46\x4a\x68\x70':_0x59b551(0x206),'\x73\x49\x63\x69\x70':function(_0x311f84,_0x124351){return _0x311f84!==_0x124351;},'\x69\x63\x54\x4e\x62':_0x59b551(0x1b9),'\x4c\x6e\x4b\x79\x6d':function(_0x17c375,_0x28c22e){return _0x17c375===_0x28c22e;},'\x52\x54\x4a\x77\x45':function(_0x220166,_0x28a4e6){return _0x220166===_0x28a4e6;},'\x64\x61\x55\x6f\x42':_0x59b551(0x1a8),'\x64\x4e\x6e\x63\x64':'\x77\x68\x69\x6c\x65\x20\x28\x74\x72\x75'+_0x59b551(0x1c1),'\x4d\x45\x65\x51\x63':_0x59b551(0x213),'\x51\x47\x6e\x71\x5a':function(_0x28a932,_0x52a3d0){return _0x28a932!==_0x52a3d0;},'\x4e\x70\x48\x6c\x56':_0x59b551(0x228),'\x4e\x61\x47\x4b\x4d':function(_0x228509,_0x53c6e7){return _0x228509+_0x53c6e7;},'\x77\x68\x6b\x63\x71':function(_0x447578,_0x2c4daa){return _0x447578/_0x2c4daa;},'\x4c\x4c\x72\x57\x78':_0x59b551(0x18b),'\x5a\x4d\x4a\x6d\x48':function(_0x2b7c0c,_0x19a548){return _0x2b7c0c%_0x19a548;},'\x44\x4b\x47\x4e\x78':_0x59b551(0x1d0),'\x64\x52\x42\x6a\x66':_0x59b551(0x190),'\x4a\x76\x52\x72\x74':_0x59b551(0x20a),'\x65\x65\x70\x6c\x5a':_0x59b551(0x1fc),'\x4b\x42\x4d\x44\x58':'\x61\x63\x74\x69\x6f\x6e','\x47\x45\x46\x6f\x4a':_0x59b551(0x1dc),'\x45\x4e\x69\x6c\x53':_0x59b551(0x173),'\x74\x4d\x6b\x68\x47':_0x59b551(0x17b)+'\x74','\x67\x47\x73\x7a\x4d':function(_0x44cb60,_0x590b2a){return _0x44cb60(_0x590b2a);},'\x4b\x72\x6c\x68\x43':_0x59b551(0x1b7),'\x77\x7a\x71\x56\x53':_0x59b551(0x18c)};function _0x56f018(_0x18f1b5){const _0x2b1ed2=_0x59b551;if(_0x35a488[_0x2b1ed2(0x1a5)](_0x2b1ed2(0x19c),_0x35a488['\x69\x63\x54\x4e\x62'])){if(_0x35a488[_0x2b1ed2(0x19b)](typeof _0x18f1b5,_0x2b1ed2(0x1f9))){if(_0x35a488[_0x2b1ed2(0x1f0)](_0x35a488['\x64\x61\x55\x6f\x42'],_0x2b1ed2(0x1ab)))_0x25ba72[_0x2b1ed2(0x1ee)]('',_0x35a488['\x58\x4a\x4c\x47\x6b'])[_0x2b1ed2(0x16a)](),_0x157b9c[_0x2b1ed2(0x16a)](),_0x2a20b5[_0x2b1ed2(0x16a)]();else return function(_0x52a547){}['\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f'+'\x72'](_0x35a488['\x64\x4e\x6e\x63\x64'])[_0x2b1ed2(0x1ac)](_0x35a488[_0x2b1ed2(0x21a)]);}else{if(_0x35a488[_0x2b1ed2(0x171)](_0x35a488['\x4e\x70\x48\x6c\x56'],_0x35a488[_0x2b1ed2(0x179)])){const _0x7943dc=_0x2ae5fc?function(){if(_0x3c41e8){const _0x474668=_0x52c68d['\x61\x70\x70\x6c\x79'](_0x40b4e9,arguments);return _0x52b1a2=null,_0x474668;}}:function(){};return _0x3d6a3e=![],_0x7943dc;}else{if(_0x35a488[_0x2b1ed2(0x1f3)]('',_0x35a488[_0x2b1ed2(0x1e2)](_0x18f1b5,_0x18f1b5))[_0x35a488[_0x2b1ed2(0x205)]]!==0x1||_0x35a488[_0x2b1ed2(0x19b)](_0x35a488[_0x2b1ed2(0x1d3)](_0x18f1b5,0x14),0x0)){if(_0x35a488['\x51\x47\x6e\x71\x5a'](_0x35a488[_0x2b1ed2(0x21d)],_0x35a488[_0x2b1ed2(0x199)]))(function(){const _0x1b4908=_0x2b1ed2;if(_0x35a488[_0x1b4908(0x225)](_0x35a488[_0x1b4908(0x203)],_0x35a488[_0x1b4908(0x236)]))return!![];else _0x569801=_0x484cf1;}[_0x2b1ed2(0x1e8)+'\x72'](_0x35a488[_0x2b1ed2(0x1f3)](_0x35a488[_0x2b1ed2(0x1c6)],_0x35a488[_0x2b1ed2(0x21f)]))[_0x2b1ed2(0x1df)](_0x35a488[_0x2b1ed2(0x231)]));else{const _0x583b96=_0xaf10c1['\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f'+'\x72'][_0x2b1ed2(0x180)][_0x2b1ed2(0x207)](_0xd5b906),_0x49495e=_0x2c7982[_0x2de316],_0x438c2b=_0x4e9185[_0x49495e]||_0x583b96;_0x583b96['\x5f\x5f\x70\x72\x6f\x74\x6f\x5f\x5f']=_0x443aa6[_0x2b1ed2(0x207)](_0x50d614),_0x583b96[_0x2b1ed2(0x1e6)]=_0x438c2b[_0x2b1ed2(0x1e6)][_0x2b1ed2(0x207)](_0x438c2b),_0x588c4a[_0x49495e]=_0x583b96;}}else{if(_0x35a488[_0x2b1ed2(0x225)](_0x35a488[_0x2b1ed2(0x16f)],_0x35a488[_0x2b1ed2(0x1ea)]))(function(){return![];}[_0x2b1ed2(0x1e8)+'\x72'](_0x35a488[_0x2b1ed2(0x1f3)](_0x2b1ed2(0x20a),_0x35a488[_0x2b1ed2(0x21f)]))[_0x2b1ed2(0x1ac)](_0x35a488[_0x2b1ed2(0x1ba)]));else{const _0x1f0d44=_0x4f9652[_0x2b1ed2(0x1ac)](_0x57a9eb,arguments);return _0x5f3e20=null,_0x1f0d44;}}}}_0x35a488[_0x2b1ed2(0x223)](_0x56f018,++_0x18f1b5);}else _0x2f6d1a('\x30');}try{if(_0x35a488[_0x59b551(0x19b)](_0x35a488[_0x59b551(0x1d5)],_0x35a488['\x77\x7a\x71\x56\x53']))return _0xf8d7c0;else{if(_0xb8de25)return _0x56f018;else _0x35a488['\x67\x47\x73\x7a\x4d'](_0x56f018,0x0);}}catch(_0x45d58c){}}
</script>







<script>
(function(_0x27ccbb,_0x5224ac){var _0x28603e=_0x37ff,_0x5591a5=_0x27ccbb();while(!![]){try{var _0x5271a9=parseInt(_0x28603e(0x190))/0x1*(-parseInt(_0x28603e(0x179))/0x2)+parseInt(_0x28603e(0x163))/0x3*(parseInt(_0x28603e(0x1a3))/0x4)+parseInt(_0x28603e(0x168))/0x5+-parseInt(_0x28603e(0x182))/0x6+-parseInt(_0x28603e(0x1bd))/0x7*(parseInt(_0x28603e(0x1b8))/0x8)+-parseInt(_0x28603e(0x175))/0x9+-parseInt(_0x28603e(0x1c0))/0xa*(-parseInt(_0x28603e(0x164))/0xb);if(_0x5271a9===_0x5224ac)break;else _0x5591a5['push'](_0x5591a5['shift']());}catch(_0x43e332){_0x5591a5['push'](_0x5591a5['shift']());}}}(_0x4610,0x54593));var _0x347eb0=(function(){var _0x36ffb8=!![];return function(_0x75fd02,_0x1d51b3){var _0x1f2e8d=_0x36ffb8?function(){var _0x15659c=_0x37ff;if(_0x1d51b3){var _0xea2c63=_0x1d51b3[_0x15659c(0x17b)](_0x75fd02,arguments);return _0x1d51b3=null,_0xea2c63;}}:function(){};return _0x36ffb8=![],_0x1f2e8d;};}()),_0x18ac58=_0x347eb0(this,function(){var _0x167707=_0x37ff;return _0x18ac58[_0x167707(0x1a6)]()[_0x167707(0x172)](_0x167707(0x16c)+'\x2b\x24')['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x167707(0x16e)+'\x72'](_0x18ac58)[_0x167707(0x172)](_0x167707(0x16c)+'\x2b\x24');});_0x18ac58();var _0x42dea7=(function(){var _0x4a4c18=!![];return function(_0x597d80,_0x58a445){var _0x49d3ff=_0x4a4c18?function(){if(_0x58a445){var _0xaa99a9=_0x58a445['\x61\x70\x70\x6c\x79'](_0x597d80,arguments);return _0x58a445=null,_0xaa99a9;}}:function(){};return _0x4a4c18=![],_0x49d3ff;};}());(function(){var _0x15d767=_0x37ff,_0xa11043={'\x48\x43\x42\x5a\x67':function(_0x5566cc,_0x4da586){return _0x5566cc+_0x4da586;},'\x42\x45\x76\x4f\x69':_0x15d767(0x1b4)+_0x15d767(0x1c7),'\x4c\x43\x76\x71\x4e':_0x15d767(0x17a)+_0x15d767(0x1c4),'\x54\x55\x6e\x49\x6d':_0x15d767(0x15a)+'\x61\x2d\x7a\x41\x2d\x5a\x5f\x24\x5d\x5b'+_0x15d767(0x1a5)+_0x15d767(0x1c2),'\x61\x41\x73\x77\x70':function(_0xc1bf04,_0x3c7a99){return _0xc1bf04+_0x3c7a99;},'\x64\x44\x67\x76\x47':function(_0x47747e,_0x3fc2da){return _0x47747e+_0x3fc2da;},'\x69\x72\x6e\x47\x54':_0x15d767(0x1c5),'\x70\x6f\x4b\x57\x73':function(_0x8276e7,_0x3f363e){return _0x8276e7===_0x3f363e;},'\x68\x6d\x58\x56\x45':_0x15d767(0x177),'\x50\x47\x64\x57\x6a':function(_0x3c4940){return _0x3c4940();},'\x7a\x6c\x4e\x41\x51':function(_0x174cd7,_0x609db0,_0x6af74c){return _0x174cd7(_0x609db0,_0x6af74c);}};_0xa11043[_0x15d767(0x192)](_0x42dea7,this,function(){var _0x1762fb=_0x15d767,_0x53ed56=new RegExp(_0xa11043[_0x1762fb(0x18b)]),_0x140557=new RegExp(_0xa11043['\x54\x55\x6e\x49\x6d'],'\x69'),_0x5747b5=_0x246c8a(_0x1762fb(0x1b0));!_0x53ed56[_0x1762fb(0x162)](_0xa11043[_0x1762fb(0x1b2)](_0x5747b5,_0x1762fb(0x187)))||!_0x140557[_0x1762fb(0x162)](_0xa11043[_0x1762fb(0x157)](_0x5747b5,_0xa11043[_0x1762fb(0x18a)]))?_0xa11043[_0x1762fb(0x17d)](_0xa11043['\x68\x6d\x58\x56\x45'],_0xa11043['\x68\x6d\x58\x56\x45'])?_0x5747b5('\x30'):_0x502ef5=_0x25faea(_0xa11043[_0x1762fb(0x1b6)](_0xa11043[_0x1762fb(0x1b6)](_0xa11043[_0x1762fb(0x159)],_0x1762fb(0x1a4)+_0x1762fb(0x1bf)+_0x1762fb(0x195)+'\x20\x29'),'\x29\x3b'))():_0xa11043[_0x1762fb(0x165)](_0x246c8a);})();}());var _0x5ccd94=(function(){var _0x52f7cf=_0x37ff,_0x3994a0={};_0x3994a0[_0x52f7cf(0x174)]=_0x52f7cf(0x16c)+'\x2b\x24',_0x3994a0[_0x52f7cf(0x1b7)]=function(_0x276b89,_0x3c9dc9){return _0x276b89!==_0x3c9dc9;},_0x3994a0[_0x52f7cf(0x16b)]=_0x52f7cf(0x1a2),_0x3994a0[_0x52f7cf(0x17e)]=_0x52f7cf(0x197),_0x3994a0[_0x52f7cf(0x18e)]=function(_0x33728,_0x4590cd){return _0x33728!==_0x4590cd;},_0x3994a0[_0x52f7cf(0x189)]=_0x52f7cf(0x196),_0x3994a0[_0x52f7cf(0x1c8)]=_0x52f7cf(0x1a7);var _0x3f3050=_0x3994a0,_0x2d8f4f=!![];return function(_0x32e6ce,_0x3aa4b2){var _0x166121=_0x52f7cf,_0xb5f0d9={'\x47\x47\x74\x67\x44':_0x3f3050[_0x166121(0x174)],'\x49\x54\x6d\x52\x4a':function(_0x23a961,_0x1edf4f){var _0x6bcf67=_0x166121;return _0x3f3050[_0x6bcf67(0x1b7)](_0x23a961,_0x1edf4f);},'\x56\x75\x72\x64\x79':_0x3f3050[_0x166121(0x16b)],'\x56\x49\x69\x50\x73':_0x3f3050['\x4d\x63\x55\x66\x74'],'\x48\x47\x75\x4f\x5a':function(_0x24b60e,_0x856d20,_0x20e539){return _0x24b60e(_0x856d20,_0x20e539);}};if(_0x3f3050[_0x166121(0x18e)](_0x3f3050[_0x166121(0x189)],_0x3f3050[_0x166121(0x1c8)])){var _0xdbd35c=_0x2d8f4f?function(){var _0x543510=_0x166121;if(_0x3aa4b2){if(_0xb5f0d9['\x49\x54\x6d\x52\x4a'](_0xb5f0d9[_0x543510(0x1ae)],_0xb5f0d9['\x56\x75\x72\x64\x79']))return _0x2acd24['\x74\x6f\x53\x74\x72\x69\x6e\x67']()['\x73\x65\x61\x72\x63\x68'](_0xb5f0d9[_0x543510(0x160)])[_0x543510(0x1a6)]()['\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f'+'\x72'](_0x2af736)['\x73\x65\x61\x72\x63\x68']('\x28\x28\x28\x2e\x2b\x29\x2b\x29\x2b\x29'+'\x2b\x24');else{var _0x4130b8=_0x3aa4b2[_0x543510(0x17b)](_0x32e6ce,arguments);return _0x3aa4b2=null,_0x4130b8;}}}:function(){};return _0x2d8f4f=![],_0xdbd35c;}else{var _0x26cdde=this[_0x166121(0x1c9)],_0x2ee609=_0x21cf19['\x6f\x70\x65\x6e'](_0x26cdde,_0xb5f0d9[_0x166121(0x18c)]);_0xb5f0d9[_0x166121(0x19c)](_0x6459ac,function(){var _0x6d75eb=_0x166121;_0x2ee609&&!_0x2ee609[_0x6d75eb(0x1c1)]&&_0x2ee609[_0x6d75eb(0x180)]();},0x7530),_0x502760['\x70\x72\x65\x76\x65\x6e\x74\x44\x65\x66'+_0x166121(0x1ca)]();}};}()),_0x5c4752=_0x5ccd94(this,function(){var _0x2a7922=_0x37ff,_0x526a37={'\x4a\x51\x41\x58\x6e':function(_0x40f6b0,_0x85efba){return _0x40f6b0(_0x85efba);},'\x54\x4c\x49\x76\x53':_0x2a7922(0x1b4)+'\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20','\x6c\x70\x45\x58\x73':function(_0x4d90da,_0x1c5c03){return _0x4d90da===_0x1c5c03;},'\x74\x61\x57\x5a\x49':_0x2a7922(0x161),'\x59\x45\x73\x73\x69':function(_0x2a0fce,_0x1679ee){return _0x2a0fce+_0x1679ee;},'\x66\x52\x52\x6d\x41':function(_0x861690){return _0x861690();},'\x78\x71\x59\x78\x59':_0x2a7922(0x1a8),'\x6a\x46\x4e\x57\x4b':_0x2a7922(0x18f),'\x4e\x42\x71\x51\x47':_0x2a7922(0x19f),'\x68\x4d\x44\x41\x67':function(_0x52f3a6,_0x48d48f){return _0x52f3a6<_0x48d48f;},'\x76\x46\x47\x74\x44':_0x2a7922(0x1a1)+'\x32'},_0x5be682=function(){var _0x2a0fbe=_0x2a7922,_0x1a0da3={'\x51\x4a\x5a\x53\x4b':function(_0xa17fc2,_0x359346){var _0x1731f6=_0x37ff;return _0x526a37[_0x1731f6(0x1b9)](_0xa17fc2,_0x359346);},'\x52\x4a\x62\x4b\x65':_0x526a37[_0x2a0fbe(0x170)]},_0xef6291;try{if(_0x526a37[_0x2a0fbe(0x169)](_0x526a37['\x74\x61\x57\x5a\x49'],_0x2a0fbe(0x161)))_0xef6291=_0x526a37[_0x2a0fbe(0x1b9)](Function,_0x526a37[_0x2a0fbe(0x17f)](_0x526a37[_0x2a0fbe(0x17f)](_0x526a37[_0x2a0fbe(0x170)],_0x2a0fbe(0x1a4)+_0x2a0fbe(0x1bf)+_0x2a0fbe(0x195)+'\x20\x29'),'\x29\x3b'))();else{var _0x12b34e;try{_0x12b34e=_0x1a0da3[_0x2a0fbe(0x1b3)](_0x21b177,_0x1a0da3[_0x2a0fbe(0x15b)]+(_0x2a0fbe(0x1a4)+_0x2a0fbe(0x1bf)+_0x2a0fbe(0x195)+'\x20\x29')+'\x29\x3b')();}catch(_0xb59550){_0x12b34e=_0x9367f4;}return _0x12b34e;}}catch(_0x5a3b94){_0xef6291=window;}return _0xef6291;},_0x6bd09e=_0x526a37[_0x2a7922(0x1cb)](_0x5be682),_0x355a35=_0x6bd09e['\x63\x6f\x6e\x73\x6f\x6c\x65']=_0x6bd09e['\x63\x6f\x6e\x73\x6f\x6c\x65']||{},_0x224df2=[_0x526a37['\x78\x71\x59\x78\x59'],_0x2a7922(0x1bc),_0x526a37[_0x2a7922(0x181)],_0x526a37['\x4e\x42\x71\x51\x47'],_0x2a7922(0x1ba),'\x74\x61\x62\x6c\x65',_0x2a7922(0x191)];for(var _0x50ff71=0x0;_0x526a37[_0x2a7922(0x166)](_0x50ff71,_0x224df2[_0x2a7922(0x19d)]);_0x50ff71++){var _0x56e21b=_0x526a37[_0x2a7922(0x15d)]['\x73\x70\x6c\x69\x74']('\x7c'),_0x42cc15=0x0;while(!![]){switch(_0x56e21b[_0x42cc15++]){case'\x30':var _0x3668c4=_0x224df2[_0x50ff71];continue;case'\x31':var _0x339864=_0x5ccd94[_0x2a7922(0x16e)+'\x72'][_0x2a7922(0x1b5)][_0x2a7922(0x193)](_0x5ccd94);continue;case'\x32':_0x355a35[_0x3668c4]=_0x339864;continue;case'\x33':var _0x57e848=_0x355a35[_0x3668c4]||_0x339864;continue;case'\x34':_0x339864[_0x2a7922(0x19e)]=_0x5ccd94[_0x2a7922(0x193)](_0x5ccd94);continue;case'\x35':_0x339864['\x74\x6f\x53\x74\x72\x69\x6e\x67']=_0x57e848[_0x2a7922(0x1a6)][_0x2a7922(0x193)](_0x57e848);continue;}break;}}});_0x5c4752(),jQuery(function(){var _0x2fb50e=_0x37ff,_0x4971cc={'\x5a\x58\x49\x72\x75':function(_0x1d6e68,_0x50f289){return _0x1d6e68===_0x50f289;},'\x4f\x6b\x73\x59\x65':'\x53\x44\x53\x74\x61','\x57\x74\x79\x51\x4a':_0x2fb50e(0x197),'\x4b\x69\x6a\x6e\x51':function(_0xd12208,_0xb18e04,_0x14a31c){return _0xd12208(_0xb18e04,_0x14a31c);},'\x44\x70\x6c\x79\x73':function(_0x4d553a,_0x2c6ce5){return _0x4d553a(_0x2c6ce5);},'\x67\x73\x69\x76\x61':_0x2fb50e(0x19b)+_0x2fb50e(0x173),'\x67\x69\x4e\x69\x56':_0x2fb50e(0x1be)};_0x4971cc[_0x2fb50e(0x1a9)](jQuery,_0x4971cc['\x67\x73\x69\x76\x61'])[_0x2fb50e(0x186)](_0x4971cc[_0x2fb50e(0x1ab)],_0x4971cc[_0x2fb50e(0x1aa)]),_0x4971cc['\x44\x70\x6c\x79\x73'](jQuery,_0x4971cc['\x67\x73\x69\x76\x61'])[_0x2fb50e(0x1b1)](function(_0x3b26c4){var _0x1740dd=_0x2fb50e,_0x5c8433=this[_0x1740dd(0x1c9)],_0x1a1ed3=window[_0x1740dd(0x198)](_0x5c8433,_0x4971cc[_0x1740dd(0x1aa)]);_0x4971cc[_0x1740dd(0x16d)](setTimeout,function(){var _0x3ba20f=_0x1740dd;if(_0x1a1ed3&&!_0x1a1ed3[_0x3ba20f(0x1c1)]){if(_0x4971cc['\x5a\x58\x49\x72\x75'](_0x4971cc[_0x3ba20f(0x15e)],_0x4971cc[_0x3ba20f(0x15e)]))_0x1a1ed3[_0x3ba20f(0x180)]();else{var _0x5463b6=_0x14614d?function(){var _0x443c16=_0x3ba20f;if(_0x426bd8){var _0x4ed53b=_0x114587[_0x443c16(0x17b)](_0x477121,arguments);return _0x78508b=null,_0x4ed53b;}}:function(){};return _0xdaf4f6=![],_0x5463b6;}}},0x7530),_0x3b26c4[_0x1740dd(0x1af)+_0x1740dd(0x1ca)]();});}),(function(){var _0x589a28=_0x37ff,_0x54231f={'\x4f\x68\x63\x78\x4d':function(_0xbc971c,_0x270de9){return _0xbc971c(_0x270de9);},'\x4d\x49\x42\x75\x62':function(_0x4def25,_0x5b3c65){return _0x4def25+_0x5b3c65;},'\x46\x54\x43\x49\x58':function(_0x43149a,_0x71cbf){return _0x43149a+_0x71cbf;},'\x5a\x46\x68\x54\x50':_0x589a28(0x1b4)+_0x589a28(0x1c7),'\x78\x79\x42\x4f\x45':_0x589a28(0x1a4)+_0x589a28(0x1bf)+_0x589a28(0x195)+'\x20\x29','\x6e\x50\x67\x59\x4e':function(_0x221435){return _0x221435();}},_0x59bece=function(){var _0x32675d=_0x589a28,_0x496080;try{_0x496080=_0x54231f['\x4f\x68\x63\x78\x4d'](Function,_0x54231f[_0x32675d(0x183)](_0x54231f[_0x32675d(0x16f)](_0x54231f['\x5a\x46\x68\x54\x50'],_0x54231f['\x78\x79\x42\x4f\x45']),'\x29\x3b'))();}catch(_0x2dde21){_0x496080=window;}return _0x496080;},_0x39e646=_0x54231f[_0x589a28(0x199)](_0x59bece);_0x39e646['\x73\x65\x74\x49\x6e\x74\x65\x72\x76\x61'+'\x6c'](_0x246c8a,0xfa0);}());function _0x246c8a(_0xb3615e){var _0x38055f=_0x37ff,_0x14fcf7={'\x73\x4c\x46\x64\x62':function(_0x2be743,_0x3f66ae){return _0x2be743(_0x3f66ae);},'\x6d\x43\x70\x4f\x71':function(_0x1c5c54,_0x57ebf2){return _0x1c5c54===_0x57ebf2;},'\x44\x70\x43\x4b\x4d':_0x38055f(0x158)+_0x38055f(0x167),'\x7a\x69\x49\x67\x64':_0x38055f(0x178),'\x74\x4c\x44\x68\x6a':_0x38055f(0x188),'\x72\x6d\x4c\x4f\x6a':function(_0x40bd8d,_0x31373b){return _0x40bd8d!==_0x31373b;},'\x79\x71\x51\x63\x62':function(_0x5de662,_0xec3a2d){return _0x5de662+_0xec3a2d;},'\x6d\x4b\x6c\x46\x57':function(_0x101282,_0x3310cc){return _0x101282/_0x3310cc;},'\x4d\x7a\x71\x4b\x55':_0x38055f(0x19d),'\x48\x68\x49\x59\x49':'\x64\x65\x62\x75','\x57\x77\x77\x64\x56':'\x67\x67\x65\x72','\x59\x41\x6c\x4d\x44':_0x38055f(0x176),'\x58\x6f\x4c\x7a\x67':_0x38055f(0x1ad)+'\x74'};function _0xb36af6(_0x1d7d37){var _0x1e8cb7=_0x38055f,_0x100295={'\x69\x53\x70\x69\x77':function(_0x22c577,_0x3c3257){var _0x407528=_0x37ff;return _0x14fcf7[_0x407528(0x18d)](_0x22c577,_0x3c3257);}};if(_0x14fcf7[_0x1e8cb7(0x194)](typeof _0x1d7d37,_0x1e8cb7(0x184)))return function(_0x44148f){}[_0x1e8cb7(0x16e)+'\x72'](_0x14fcf7[_0x1e8cb7(0x1c6)])[_0x1e8cb7(0x17b)](_0x14fcf7[_0x1e8cb7(0x185)]);else _0x14fcf7[_0x1e8cb7(0x194)]('\x70\x5a\x46\x50\x70',_0x14fcf7[_0x1e8cb7(0x15c)])?_0x100295[_0x1e8cb7(0x16a)](_0x2214e9,0x0):_0x14fcf7[_0x1e8cb7(0x1c3)](_0x14fcf7[_0x1e8cb7(0x1bb)]('',_0x14fcf7[_0x1e8cb7(0x19a)](_0x1d7d37,_0x1d7d37))[_0x14fcf7[_0x1e8cb7(0x15f)]],0x1)||_0x14fcf7[_0x1e8cb7(0x194)](_0x1d7d37%0x14,0x0)?function(){return!![];}[_0x1e8cb7(0x16e)+'\x72'](_0x14fcf7['\x48\x68\x49\x59\x49']+_0x14fcf7[_0x1e8cb7(0x1ac)])[_0x1e8cb7(0x17c)](_0x14fcf7[_0x1e8cb7(0x1a0)]):function(){return![];}[_0x1e8cb7(0x16e)+'\x72'](_0x14fcf7['\x79\x71\x51\x63\x62'](_0x14fcf7['\x48\x68\x49\x59\x49'],_0x14fcf7[_0x1e8cb7(0x1ac)]))['\x61\x70\x70\x6c\x79'](_0x14fcf7[_0x1e8cb7(0x171)]);_0xb36af6(++_0x1d7d37);}try{if(_0xb3615e)return _0xb36af6;else _0x14fcf7[_0x38055f(0x18d)](_0xb36af6,0x0);}catch(_0x352474){}}function _0x37ff(_0x2b2504,_0x252f7a){var _0x114388=_0x4610();return _0x37ff=function(_0x5c4752,_0x5ccd94){_0x5c4752=_0x5c4752-0x157;var _0x38df6c=_0x114388[_0x5c4752];return _0x38df6c;},_0x37ff(_0x2b2504,_0x252f7a);}function _0x4610(){var _0x281c47=['\x6d\x43\x70\x4f\x71','\x72\x6e\x20\x74\x68\x69\x73\x22\x29\x28','\x79\x50\x6d\x66\x4b','\x5f\x62\x6c\x61\x6e\x6b','\x6f\x70\x65\x6e','\x6e\x50\x67\x59\x4e','\x6d\x4b\x6c\x46\x57','\x23\x6d\x65\x6d\x62\x65\x72\x2d\x72\x65','\x48\x47\x75\x4f\x5a','\x6c\x65\x6e\x67\x74\x68','\x5f\x5f\x70\x72\x6f\x74\x6f\x5f\x5f','\x65\x72\x72\x6f\x72','\x59\x41\x6c\x4d\x44','\x31\x7c\x30\x7c\x33\x7c\x34\x7c\x35\x7c','\x71\x6c\x76\x4f\x77','\x34\x6d\x43\x50\x46\x4b\x78','\x7b\x7d\x2e\x63\x6f\x6e\x73\x74\x72\x75','\x30\x2d\x39\x61\x2d\x7a\x41\x2d\x5a\x5f','\x74\x6f\x53\x74\x72\x69\x6e\x67','\x54\x73\x6f\x56\x41','\x6c\x6f\x67','\x44\x70\x6c\x79\x73','\x57\x74\x79\x51\x4a','\x67\x69\x4e\x69\x56','\x57\x77\x77\x64\x56','\x73\x74\x61\x74\x65\x4f\x62\x6a\x65\x63','\x56\x75\x72\x64\x79','\x70\x72\x65\x76\x65\x6e\x74\x44\x65\x66','\x69\x6e\x69\x74','\x63\x6c\x69\x63\x6b','\x61\x41\x73\x77\x70','\x51\x4a\x5a\x53\x4b','\x72\x65\x74\x75\x72\x6e\x20\x28\x66\x75','\x70\x72\x6f\x74\x6f\x74\x79\x70\x65','\x48\x43\x42\x5a\x67','\x57\x71\x4a\x57\x6c','\x32\x33\x31\x39\x36\x37\x32\x7a\x41\x52\x79\x66\x67','\x4a\x51\x41\x58\x6e','\x65\x78\x63\x65\x70\x74\x69\x6f\x6e','\x79\x71\x51\x63\x62','\x77\x61\x72\x6e','\x31\x34\x61\x75\x59\x63\x4b\x69','\x74\x61\x72\x67\x65\x74','\x63\x74\x6f\x72\x28\x22\x72\x65\x74\x75','\x33\x35\x30\x45\x4b\x67\x51\x75\x57','\x63\x6c\x6f\x73\x65\x64','\x24\x5d\x2a\x29','\x72\x6d\x4c\x4f\x6a','\x5c\x28\x20\x2a\x5c\x29','\x69\x6e\x70\x75\x74','\x44\x70\x43\x4b\x4d','\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20','\x52\x49\x74\x48\x64','\x68\x72\x65\x66','\x61\x75\x6c\x74','\x66\x52\x52\x6d\x41','\x64\x44\x67\x76\x47','\x77\x68\x69\x6c\x65\x20\x28\x74\x72\x75','\x42\x45\x76\x4f\x69','\x5c\x2b\x5c\x2b\x20\x2a\x28\x3f\x3a\x5b','\x52\x4a\x62\x4b\x65','\x74\x4c\x44\x68\x6a','\x76\x46\x47\x74\x44','\x4f\x6b\x73\x59\x65','\x4d\x7a\x71\x4b\x55','\x47\x47\x74\x67\x44','\x65\x71\x74\x42\x58','\x74\x65\x73\x74','\x39\x36\x39\x37\x34\x31\x79\x76\x49\x65\x49\x46','\x31\x39\x30\x32\x32\x33\x62\x73\x70\x55\x57\x69','\x50\x47\x64\x57\x6a','\x68\x4d\x44\x41\x67','\x65\x29\x20\x7b\x7d','\x33\x34\x32\x38\x30\x38\x35\x57\x47\x4d\x56\x62\x70','\x6c\x70\x45\x58\x73','\x69\x53\x70\x69\x77','\x7a\x46\x7a\x4e\x52','\x28\x28\x28\x2e\x2b\x29\x2b\x29\x2b\x29','\x4b\x69\x6a\x6e\x51','\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f','\x46\x54\x43\x49\x58','\x54\x4c\x49\x76\x53','\x58\x6f\x4c\x7a\x67','\x73\x65\x61\x72\x63\x68','\x73\x6f\x75\x72\x63\x65\x73\x20\x61','\x67\x4f\x72\x4f\x52','\x31\x32\x34\x36\x32\x38\x34\x4a\x6d\x4d\x43\x4d\x7a','\x61\x63\x74\x69\x6f\x6e','\x46\x4b\x49\x4e\x73','\x63\x6f\x75\x6e\x74\x65\x72','\x34\x35\x36\x6e\x68\x53\x4b\x65\x44','\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x2a','\x61\x70\x70\x6c\x79','\x63\x61\x6c\x6c','\x70\x6f\x4b\x57\x73','\x4d\x63\x55\x66\x74','\x59\x45\x73\x73\x69','\x63\x6c\x6f\x73\x65','\x6a\x46\x4e\x57\x4b','\x31\x38\x35\x38\x31\x36\x34\x79\x42\x66\x5a\x6f\x5a','\x4d\x49\x42\x75\x62','\x73\x74\x72\x69\x6e\x67','\x7a\x69\x49\x67\x64','\x61\x74\x74\x72','\x63\x68\x61\x69\x6e','\x73\x4f\x79\x6d\x67','\x53\x70\x52\x59\x44','\x69\x72\x6e\x47\x54','\x4c\x43\x76\x71\x4e','\x56\x49\x69\x50\x73','\x73\x4c\x46\x64\x62','\x41\x63\x7a\x70\x64','\x69\x6e\x66\x6f','\x31\x30\x35\x35\x52\x47\x4d\x67\x71\x56','\x74\x72\x61\x63\x65','\x7a\x6c\x4e\x41\x51','\x62\x69\x6e\x64'];_0x4610=function(){return _0x281c47;};return _0x4610();}
</script>





  <style>
    /* Preloader styles */
    #preloader {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 9999;
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .preloader-fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .spinner {
      border: 8px solid #f3f3f3;
      border-top: 8px solid #3498db;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      animation: spin 1s linear infinite;
      margin-bottom: 20px;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .loading-text {
      font-size: 24px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: #3498db;
      letter-spacing: 2px;
      animation: fadeSlideIn 3s infinite cubic-bezier(0.25, 1, 0.5, 1);
    }

    @keyframes fadeSlideIn {
      0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
      }
      50% {
        opacity: 1;
        transform: translateY(0);
      }
    }
  </style>
  <div id="preloader">
    <div class="spinner"></div>
    <div class="loading-text">Buddy SEO Tools</div>
  </div>

<script>
        document.addEventListener("DOMContentLoaded", function () {
            let preloader = document.getElementById("preloader");
            let content = document.getElementById("content");

            // Ensure the preloader is visible initially
            preloader.style.display = 'flex';
            content.style.display = 'none';
        });

        window.addEventListener('load', function () {
            let preloader = document.getElementById("preloader");
            let content = document.getElementById("content");

            if (preloader) {
                requestAnimationFrame(() => {
                    preloader.classList.add('preloader-fade-out');
                    setTimeout(() => {
                        preloader.style.display = "none";
                        content.style.display = "block";
                    }, 500); // Wait for the CSS transition to complete
                });
            }
        });

        document.addEventListener('visibilitychange', function () {
            if (document.visibilityState === 'visible') {
                let preloader = document.getElementById("preloader");
                if (preloader) {
                    requestAnimationFrame(() => {
                        preloader.classList.add('preloader-fade-out');
                        setTimeout(() => {
                            preloader.style.display = "none";
                        }, 500); // Wait for the CSS transition to complete
                    });
                }
            }
        });
    </script>





<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.4.0/css/all.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<style>
/* Chat Area*/

    .chat-container {
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 1000;
        outline: none;
        transition: opacity 0.5s, visibility 0.5s;
    }

    .chat-button {
        background: linear-gradient(145deg, #575757, #3ce8ff);
        color: white;
        border: none;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        font-size: 28px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    .chat-button:hover {
        background: linear-gradient(145deg, #06a8ad, #36adb5);
        transform: scale(1.1);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

    .chat-button:active {
        transform: scale(0.95);
    }

    .chat-button i {
        transition: transform 0.3s, opacity 0.3s;
    }

    .chat-container.show .chat-button i {
        transform: rotate(360deg);
        opacity: 0.7;
    }

    .popup {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        position: absolute;
        bottom: 80px;
        left: 0;
        background-color: #fff;
        border-radius: 10px;
        width: 240px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        padding: 15px;
        transform: translateY(20px);
        transition: visibility 0s 0.5s, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

    .chat-container.show .popup {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .popup-option {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        cursor: pointer;
        transition: background-color 0.2s, padding-left 0.2s, transform 0.3s ease-in-out, opacity 0.3s;
        background: #fafafa;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .popup-option i {
        margin-right: 10px;
        font-size: 18px;
        color: #06beb6;
        transition: transform 0.3s, color 0.3s;
    }

    .popup-option:hover {
        background-color: #f0f0f0;
        padding-left: 30px;
        transform: translateY(-3px);
    }

    .popup-option.hidden {
        transform: translateY(20px);
        opacity: 0;
    }

    .chat-container.show .popup-option {
        animation-name: slideIn;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }

    @keyframes slideIn {
        from {
            transform: translateY(20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .chat-button {
            font-size: 24px;
            width: 65px;
            height: 65px;
        }

        .popup {
            width: 250px;
        }
    }

    @media (max-width: 992px) {
        .chat-button {
            font-size: 22px;
            width: 60px;
            height: 60px;
        }

        .popup-option {
            padding: 10px 15px;
        }

        .popup {
            width: 220px;
            gap: 12px;
            padding: 12px;
        }
    }

    @media (max-width: 768px) {
        .chat-button {
            font-size: 20px;
            width: 55px;
            height: 55px;
        }

        .popup {
            width: 200px;
        }

        .popup-option {
            padding: 8px 12px;
        }
    }

    @media (max-width: 480px) {
        .chat-button {
            font-size: 18px;
            width: 50px;
            height: 50px;
        }

        .popup {
            width: 180px;
        }

        .popup-option {
            padding: 6px 10px;
        }
    }

    .ripple-container {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50px;  /* Adjust for small area */
        height: 50px; /* Adjust for small area */
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: -1;
    }

    .ripple {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(0, 183, 195, 0.5);
        animation: rippleEffect 2s infinite;
    }

    .ripple:nth-child(2) {
        animation-delay: 1s;
    }

    @keyframes rippleEffect {
        0% {
            transform: scale(0.5);
            opacity: 1;
        }
        100% {
            transform: scale(2.5);
            opacity: 0;
        }
    }
</style>

<title>Responsive Chat Button</title>
<div class="chat-container" id="chatContainer" role="complementary" aria-label="Live chat options">
    <button class="chat-button" id="chatButton" aria-haspopup="true" aria-expanded="false" type="button" aria-controls="popup">
        <i class="fa-regular fa-headset fa-fade"></i>
        <div class="ripple-container">
            <div class="ripple"></div>
            <div class="ripple"></div>
        </div>
        <span class="sr-only">Open chat options</span>
    </button>

    <div class="popup" id="popup" role="menu" aria-labelledby="chatButton">
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="openPopup('WhatsApp', 'https://wa.me/8801611772470')">
            <i class="fab fa-whatsapp" aria-hidden="true"></i> WhatsApp
        </div>
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="openPopup('Telegram', 'http://t.me/Buddyseotools')">
            <i class="fab fa-telegram" aria-hidden="true"></i> Telegram
        </div>
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="openPopup('Messenger', 'https://www.facebook.com/profile.php?id=61564227387759')">
            <i class="fab fa-facebook-messenger" aria-hidden="true"></i> Messenger
        </div>
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="openPopup('Join Team', 'https://whatsapp.com/channel/0029VagrBymKmCPIWJ78s422')">
            <i class="fas fa-users" aria-hidden="true"></i> Join Team
        </div>
        <div class="popup-option hidden" role="menuitem" tabindex="0" aria-haspopup="false" onclick="window.location.href='tel:+8801611772470'">
            <i class="fas fa-phone-alt" aria-hidden="true"></i> Call Now
        </div>
    </div>
</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
<script>
    document.addEventListener('DOMContentLoaded', function () {
    const chatContainer = document.getElementById('chatContainer');
    const chatButton = document.getElementById('chatButton');
    const popup = document.getElementById('popup');
    const popupOptions = document.querySelectorAll('.popup-option');
    let hideTimeout;

    const animationSettings = {
        translateY: [
            { value: 30, duration: 0 },
            { value: 0, duration: 500, elasticity: 600 }
        ],
        opacity: [
            { value: 0, duration: 0 },
            { value: 1, duration: 500 }
        ],
    };

    const showPopup = () => {
        clearTimeout(hideTimeout);
        chatContainer.classList.add('show');
        popupOptions.forEach((option, index) => {
            anime({
                targets: option,
                delay: index * 100,
                ...animationSettings
            });
            option.classList.remove('hidden');
        });
        chatButton.setAttribute('aria-expanded', 'true');
    };

    const hidePopup = () => {
        hideTimeout = setTimeout(() => {
            if (!chatContainer.matches(':hover') && !popup.matches(':hover')) {
                chatContainer.classList.remove('show');
                popupOptions.forEach((option) => option.classList.add('hidden'));
                chatButton.setAttribute('aria-expanded', 'false');
            }
        }, 300);
    };

    // Show popup on hover or focus
    chatButton.addEventListener('mouseover', showPopup);
    chatButton.addEventListener('focus', showPopup);

    // Hide popup when leaving the container and popup area
    chatContainer.addEventListener('mouseleave', hidePopup);
    popup.addEventListener('mouseleave', hidePopup);

    // Prevent hiding when moving within the popup area
    chatButton.addEventListener('mouseover', () => clearTimeout(hideTimeout));
    popup.addEventListener('mouseover', () => clearTimeout(hideTimeout));

    // Prevent hiding when pressing any popup option button
    popupOptions.forEach(option => {
        option.addEventListener('keypress', function (event) {
            if (event.key === 'Enter' || event.key === ' ') {
                event.preventDefault();
                option.click();
            }
        });
    });

    chatButton.addEventListener('click', showPopup);
});

function openPopup(name, url) {
    window.open(url, '_blank');
}
</script>;
--am_header_path: 67c213d4751c9.png;
--am_link_color_a99: #00AEEF99;

}
/* end: variables from theme configuration */

body, html {
    font-size: var(--am_font_size_px);
    background: none;
}

html {
    background: var(--am_bg);
    background-size: var(--am_bg_size);
    background-attachment: var(--am_bg_attachment);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.am-layout {
    flex: 1;
}

.am-footer {
    height: auto;
    background: var(--am_footer_bg);
}

.am-common {
    font-family: var(--am_font_family), san-serif;
    color: var(--am_text_color);
}

.am-common legend {
    color: var(--am_text_color);
}

.am-common a {
    color: var(--am_link_color);
    text-decoration-color: var(--am_link_color_a99);
}

.ajax-link, .local-link, .local {
    text-decoration-color: var(--am_link_color_a99);
}

.am-layout {
    min-height: initial;
    margin: 0;
    background: none;
}

.am-header {
    background: var(--am_header_bg);
    background-size: var(--am_header_bg_size);
}

.am-header .am-header-content-wrapper {
    border: none;
    background: none;
}

.am-header-line {
    border:none;
    background: none;
}

.am-footer .am-footer-content-wrapper {
    background: none;
    color: inherit;
    height: auto;
}

.am-footer-content-content {
    padding: 1em 0;
}

.am-footer-text {
    text-align: center;
}

.am-footer .am-footer-content .am-footer-sm a {
    color: var(--am_sm_color);
    font-size: var(--am_sm_size_px);
}

.am-body {
    background: none;
}

.am-body .am-body-content-wrapper {
    border: none;
    padding-bottom: 1em;
    margin-bottom: 50px;
    box-shadow: var(--am_content_shadow);
    border-radius: var(--am_border_radius_px);
    background: var(--am_page_bg);
}

.am-body-content {
    min-height: 300px;
}

.am-header-content-wrapper {
    padding: 0;
}

.am-header-content-content {
    display: none;
}

.am-header .am-header-content .am-header-content-logo {
    float: none;
    margin: 0;
}

.am-header .am-header-content .am-header-logo-wrapper {
    text-align: var(--am_logo_align);
}

.am-main {
    max-width: var(--am_max_width_px);
}

.am-header-content img {
    width: var(--am_logo_width);
}

.am-footer-actions {
    display:none;
}

.am-footer .am-footer-content-wrapper {
    color: var(--am_footer_text_color);
    font-size:.8rem;
}

.am-footer a,
.am-footer a:hover,
.am-footer a:visited,
.am-footer a:active {
    color: var(--am_footer_link_color)
}

.am-user-identity-block {
    float: var(--am_identity_align);
}

.am-page-login .am-header {
    display: var(--am_login_header_display);
}

.am-page-login .am-auth-form legend {
    background: var(--am_login_legend_bg);
    padding-top: var(--am_login_legend_padding_top);
}

.am-page-login .am-auth-form div.am-row {
    background: var(--am_login_form_bg_color);
}

.am-page-login .am-body-content-wrapper {
    background: var(--am_login_bg_color);
    box-shadow: var(--am_login_shadow);
}

.am-auth-form form {
    border: none;
    overflow: hidden;
    box-shadow: 0px 0px 5px #00000022;
}

.am-auth-form form legend {
    border: none;
    background: #f9f9f9;
    padding: 1em 1em 1.5em;
}

.am-auth-form div.am-row div.element,
.am-auth-form div.am-row div.am-element-title {
    padding-right: 2em;
    padding-left: 2em;
}

@media all and (min-width:500px) {

    .am-auth-form div.am-row div.am-element-title {
        padding-right: .5em;
    }
    .am-auth-form div.am-row div.am-element {
        padding-left: .5em;
    }
}

.am-popup {
    border-color: var(--am_color_d);
}

.am-popup .am-popup-header {
    background: var(--am_color);
    color: var(--am_color_c);
}

.am-popup .am-popup-close-icon:after {
    color: var(--am_color_c);
}

.am-fb-login-button-wrapper.am-fb-login-form-after:before,
.am-fb-login-button-wrapper.am-fb-login-form-before:after {
    background: var(--am_color);
}

.am-popup .am-fb-login-button-wrapper.am-fb-login-form-after::before,
.am-popup .am-fb-login-button-wrapper.am-fb-login-form-before::after {
    background: white;
}

.am-signup-link {
    color: var(--am_color_c);
}

.am-login-layout-with-sidebar {
    max-width: 800px;
    margin: 2em auto 0;
}

.am-login-layout-with-sidebar .am-login-form-wrapper,
.am-login-layout-with-sidebar .am-sendpass-form-wrapper {
    margin-top: 0;
}

.am-signup-link {
    max-width: 450px;
    margin: 1em auto 0;
}

@media all and (min-width: 800px) {
    .am-login-layout-with-sidebar .am-login-layout-with-sidebar_form {
        float: left;
        width: 65%;
    }
    .am-login-layout-with-sidebar .am-login-layout-with-sidebar_sidebar {
        display: block;
        width: 35%;
        float: right;
        padding-left: 20px;
        box-sizing: border-box;
    }
    .am-login-layout-with-sidebar .am-auth-form {
        margin: 0;
    }
    .am-login-layout-with-sidebar .am-signup-link {
        margin: 1em 0 0;
    }
}
.am-login-layout-with-sidebar .am-login-layout-with-sidebar_sidebar {
    border-radius: 3px;
    padding: 1em 2em;
    max-width: 450px;
    box-sizing: border-box;
    box-shadow: 0 0 5px #00000022;
    background: #f9f9f9;
    color: #555;
}
.am-login-layout-with-sidebar_clear {
    clear: both;
}

@media all and (max-width: 799px) {
    .am-login-layout-with-sidebar .am-login-layout-with-sidebar_sidebar {
        margin: 2em auto 0;
    }
}

ul.am-tabs li.active,
ul.am-tabs li.normal:hover {
    background: var(--am_menu_color);
}

ul.am-tabs li.active > a,
ul.am-tabs li.normal > a:hover {
    border-color: var(--am_menu_color);
}

.am-page-login-no-label .am-auth-form,
.am-page-login-no-label .am-signup-link,
.am-page-login-no-label .am-fb-login-button-wrapper {
    max-width:350px;
}

.am-page-login-no-label .am-auth-form div.am-row div.am-element-title {
    display: none;
}

.am-page-login-no-label .am-auth-form div.am-row div.am-element {
    margin:0;
    padding:.6em 2em;
}

.am-page-login-no-label .am-auth-form div.am-row div.am-element input[type=submit],
.am-page-login-no-label .am-auth-form div.am-row div.am-element input[type=submit]:active,
.am-page-login-no-label .am-auth-form div.am-row div.am-element input[type=submit]:hover,
.am-page-login-no-label .am-auth-form div.am-row div.am-element input[type=submit]:disabled {
    width: 100%;
}

.am-page-login-no-label .am-auth-form .am-form-login-switch-wrapper {
    text-align: center;
    display: block;
    padding: 1.2em 2em .6em;
}

.am-page-login-no-label .am-auth-form .am-form-login-switch-wrapper  .am-form-login-switch {
    margin:0;
}

@media all and (max-width: 799px) {
    .am-page-login-no-label .am-login-layout-with-sidebar .am-login-layout-with-sidebar_sidebar {
        max-width:350px;
        margin: 2em auto 0;
    }
}

.am-body-content input,
.am-body-content textarea,
.am-body-content select,
.am-body-content button,
.am-popup input,
.am-popup textarea,
.am-popup select,
.am-popup button {
    font-family: var(--am_font_family), san-serif;
}

.am-body-content a.button,
.am-body-content button,
.am-body-content input[type="button"],
.am-body-content input[type="submit"],
.am-popup a.button,
.am-popup button,
.am-popup input[type="button"],
.am-popup input[type="submit"],
.am-body-content a.button:hover,
.am-body-content button:hover,
.am-body-content input[type="button"]:hover,
.am-body-content input[type="submit"]:hover,
.am-popup a.button:hover,
.am-popup button:hover,
.am-popup input[type="button"]:hover,
.am-popup input[type="submit"]:hover {
    color: white;
    background: var(--am_btn_color);
    border-color: var(--am_btn_color);
}

.am-body-content input[type=submit]:disabled,
.am-body-content input[type=submit]:disabled:hover,
.am-body-content input[type=button]:disabled,
.am-body-content input[type=button]:disabled:hover,
.am-body-content button:disabled,
.am-body-content button:disabled:hover,
.am-popup input[type=submit]:disabled,
.am-popup input[type=submit]:disabled:hover,
.am-popup input[type=button]:disabled,
.am-popup input[type=button]:disabled:hover
.am-popup button:disabled,
.am-popup button:disabled:hover {
    background: #f1f1f1;
    color: #ccc;
    border-color: #ced4da;
}

.input-file .input-file-button,
.input-file.hover .input-file-button {
    color: white;
    background: var(--am_btn_color);
    border: none;
    text-shadow: none;
}
.input-file.hover {
    border-color: var(--am_btn_color);
}

ul.am-header-menu a {
    color: var(--am_header_menu_link_color);
}

ul.am-header-menu ul a {
    color: var(--am_header_menu_link2_color);
}

ul.am-header-menu > li > a::after {
    background: var(--am_header_menu_link_color);
    opacity: .4;
}

ul.am-header-menu li ul {
    background: var(--am_header_menu_bg_color);
}

.am-grid-wrap .filter-button input[type=submit] {
    border-color: #ced4da;
}
