{"id":2,"date":"2026-03-14T14:30:17","date_gmt":"2026-03-14T14:30:17","guid":{"rendered":"https:\/\/testserver1.ch\/mirage\/?page_id=2"},"modified":"2026-03-25T15:20:06","modified_gmt":"2026-03-25T15:20:06","slug":"startseite","status":"publish","type":"page","link":"https:\/\/club-mirage.ch\/hu\/","title":{"rendered":"Startseite"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2\" class=\"elementor elementor-2\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d3eda81 e-con-full elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"d3eda81\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-99beb9b elementor-widget elementor-widget-shortcode\" data-id=\"99beb9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">    <div class=\"hs-wrap\" id=\"hs-wrap\">\n        <div class=\"hs-slides\">\n                      \n         <div class=\"hs-slide aktiv\">\n\n    \n        <div style=\"\n            background-image:url('https:\/\/club-mirage.ch\/wp-content\/uploads\/2026\/03\/1-2-1.jpg');\n            background-size:cover;\n            background-position:top center;\n            position:absolute;\n            inset:0;\">\n        <\/div>\n\n                    <div class=\"hs-overlay\" style=\"background:rgba(0,0,0,0.5)\"><\/div>\n                                <div class=\"hs-content\" style=\"color:#ffffff\">\n                                                                <div class=\"hs-text\"><font style=\"font-size: 48px\" face=\"Cinzel Decorative\">Heisse Girls<\/font><\/div>\n                                    <\/div>\n                            <\/div>\n                      \n         <div class=\"hs-slide \">\n\n    \n        <div style=\"\n            background-image:url('https:\/\/club-mirage.ch\/wp-content\/uploads\/2026\/03\/2-1-1.jpg');\n            background-size:cover;\n            background-position:center center;\n            position:absolute;\n            inset:0;\">\n        <\/div>\n\n                    <div class=\"hs-overlay\" style=\"background:rgba(0,0,0,0.5)\"><\/div>\n                                <div class=\"hs-content\" style=\"color:#ffffff\">\n                                                                <div class=\"hs-text\"><font style=\"font-size: 48px\" face=\"Cinzel Decorative\">Exclusives Ambiente<\/font><\/div>\n                                    <\/div>\n                            <\/div>\n                      \n         <div class=\"hs-slide \">\n\n    \n        <div style=\"\n            background-image:url('https:\/\/club-mirage.ch\/wp-content\/uploads\/2026\/03\/3-2-1.jpg');\n            background-size:cover;\n            background-position:center center;\n            position:absolute;\n            inset:0;\">\n        <\/div>\n\n                    <div class=\"hs-overlay\" style=\"background:rgba(0,0,0,0.5)\"><\/div>\n                                <div class=\"hs-content\" style=\"color:#ffffff\">\n                                                                <div class=\"hs-text\"><font style=\"font-size: 48px\" face=\"Cinzel Decorative\">Abschalten &amp; Geniessen<\/font><\/div>\n                                    <\/div>\n                            <\/div>\n                    <\/div>\n\n                <button class=\"hs-pfeil hs-pfeil-links\" onclick=\"hsPrev()\">&#8249;<\/button>\n        <button class=\"hs-pfeil hs-pfeil-rechts\" onclick=\"hsNext()\">&#8250;<\/button>\n            <\/div>\n\n    <style>\n    .hs-wrap {\n        position: relative;\n        width: 100%;\n        height: 55vh;\n        min-height: 320px;\n        overflow: hidden;\n    }\n    .hs-slides { width: 100%; height: 100%; }\n    .hs-slide {\n        position: absolute;\n        top: 0; left: 0; right: 0; bottom: 0;\n        background-size: cover;\n        background-repeat: no-repeat;\n        opacity: 0;\n        transition: opacity 1s ease;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n    }\n    .hs-slide.aktiv { opacity: 1; z-index: 1; }\n    .hs-overlay { position: absolute; inset: 0; z-index: 0; }\n    .hs-content {\n        position: relative;\n        z-index: 2;\n        text-align: center;\n        padding: 20px 40px;\n        text-shadow: 0 2px 8px rgba(0,0,0,0.5);\n    }\n    .hs-titel {\n        font-size: clamp(1.5rem, 4vw, 3rem);\n        font-weight: 800;\n        margin-bottom: 12px;\n        line-height: 1.2;\n    }\n    .hs-text { font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 400; opacity: 0.9; }\n    .hs-pfeil {\n    position: absolute;\n    top: 50%;\n    transform: translateY(-50%);\n    z-index: 10;\n    background: rgba(0,0,0,0.4);\n    color: #fff;\n    border: none;\n    font-size: 42px;\n    line-height: 36px;\n    width: 52px;\n    height: 52px;\n    border-radius: 50%;\n    cursor: pointer;\n    transition: background 0.2s;\n    text-align: center;\n    padding-top: 0px;\n}\n    .hs-pfeil:hover { background: rgba(0,0,0,0.7); }\n    .hs-pfeil-links  { left: 16px; }\n    .hs-pfeil-rechts { right: 16px; }\n    <\/style>\n\n    <script>\n    (function() {\n        var wrap    = document.getElementById('hs-wrap');\n        var slides  = wrap.querySelectorAll('.hs-slide');\n        var aktuell = 0;\n        var tempo   = 5000;\n        var timer;\n\n        if (slides.length <= 1) return;\n\n        \n        function zeige(index) {\n            slides[aktuell].classList.remove('aktiv');\n            aktuell = (index + slides.length) % slides.length;\n            slides[aktuell].classList.add('aktiv');\n        }\n\n        function start() { timer = setInterval(function() { zeige(aktuell + 1); }, tempo); }\n        function reset()  { clearInterval(timer); start(); }\n\n        window.hsNext = function() { zeige(aktuell + 1); reset(); };\n        window.hsPrev = function() { zeige(aktuell - 1); reset(); };\n\n        start();\n    })();\n    <\/script>\n\n    <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e331e93 e-con-full e-flex e-con e-parent\" data-id=\"e331e93\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-26d8e39 e-con-full ms-section-box e-flex e-con e-child\" data-id=\"26d8e39\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-84e0fad elementor-widget elementor-widget-shortcode\" data-id=\"84e0fad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"club-titel-startseite\" style=\"color:#fa0000;font-size:48px;font-weight:700;font-family:&#039;Cinzel Decorative&#039;, sans-serif;\">Herzlich Willkommen!<\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e8dd4fe elementor-widget elementor-widget-shortcode\" data-id=\"e8dd4fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">    <style>\n    .club-haupttext,\n    .club-haupttext p {\n        font-family: 'Cinzel Decorative', sans-serif !important;        font-size: 24px !important;\n        font-weight: 400 !important;\n        color: #ffffff !important;\n    }\n    <\/style>\n    <div class=\"club-haupttext\"><p class=\"ql-align-center\" style=\"text-align: center\">Willkommen im <strong>Club Mirage<\/strong><\/p>\n<p class=\"ql-align-center\" style=\"text-align: center\">Im Club Mirage treffen sich aufgeschlossene Menschen in ungezwungener Atmosph\u00e4re auf ein k\u00fchles Bier, oder einen guten Drink zu normalen Barpreisen. Unsere Kontaktbar direkt im Dorfkern von Wangen SZ bietet Ihnen Entspannung pur \u2013 ein Ort f\u00fcr Geniesser. Wir bieten Ambiente, sodass Sie in entspannter Atmosph\u00e4re ein erotisches Abenteuer nach Ihren Vorstellungen und W\u00fcnschen erleben k\u00f6nnen.<\/p><\/div>\n    <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4a1a7f4 elementor-widget elementor-widget-shortcode\" data-id=\"4a1a7f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">\n    <div class=\"sg-wrap\">\n        <div class=\"sg-grid\">\n                        <div class=\"dame-karte\">\n                <a href=\"https:\/\/club-mirage.ch\/hu\/dame\/denisa\/\">\n                    <div class=\"dame-foto\">\n                                                    <img decoding=\"async\" src=\"https:\/\/club-mirage.ch\/wp-content\/uploads\/2026\/04\/denisa-1.jpeg\" alt=\"Denisa\" loading=\"lazy\">\n                                            <\/div>\n                    <div class=\"dame-info\">\n                        <h3>Denisa<\/h3>\n                                                    <div class=\"dame-telefon\">\ud83d\udcde +41 77 903 82 68<\/div>\n                                                <div class=\"dame-slogan\">&nbsp;<\/div>\n                    <\/div>\n                    <div class=\"dame-karte-footer\">\n                                                <span class=\"dame-status status-anwesend\">Anwesend<\/span>\n                    <\/div>\n                <\/a>\n            <\/div>\n                        <div class=\"dame-karte\">\n                <a href=\"https:\/\/club-mirage.ch\/hu\/dame\/elisa\/\">\n                    <div class=\"dame-foto\">\n                                                    <img decoding=\"async\" src=\"https:\/\/club-mirage.ch\/wp-content\/uploads\/2026\/04\/elisa-1.jpeg\" alt=\"Elisa\" loading=\"lazy\">\n                                            <\/div>\n                    <div class=\"dame-info\">\n                        <h3>Elisa<\/h3>\n                                                    <div class=\"dame-telefon\">\ud83d\udcde +41 76 220 28 66<\/div>\n                                                <div class=\"dame-slogan\">&nbsp;<\/div>\n                    <\/div>\n                    <div class=\"dame-karte-footer\">\n                                                <span class=\"dame-status status-anwesend\">Anwesend<\/span>\n                    <\/div>\n                <\/a>\n            <\/div>\n                        <div class=\"dame-karte\">\n                <a href=\"https:\/\/club-mirage.ch\/hu\/dame\/karina\/\">\n                    <div class=\"dame-foto\">\n                                                    <img decoding=\"async\" src=\"https:\/\/club-mirage.ch\/wp-content\/uploads\/2026\/04\/karina-1.jpeg\" alt=\"Karina\" loading=\"lazy\">\n                                            <\/div>\n                    <div class=\"dame-info\">\n                        <h3>Karina<\/h3>\n                                                    <div class=\"dame-telefon\">\ud83d\udcde +41 76 213 72 92<\/div>\n                                                <div class=\"dame-slogan\">&nbsp;<\/div>\n                    <\/div>\n                    <div class=\"dame-karte-footer\">\n                                                <span class=\"dame-status status-anwesend\">Anwesend<\/span>\n                    <\/div>\n                <\/a>\n            <\/div>\n                        <div class=\"dame-karte\">\n                <a href=\"https:\/\/club-mirage.ch\/hu\/dame\/melissa\/\">\n                    <div class=\"dame-foto\">\n                                                    <img decoding=\"async\" src=\"https:\/\/club-mirage.ch\/wp-content\/uploads\/2026\/04\/melisa-1.jpeg\" alt=\"Melissa\" loading=\"lazy\">\n                                            <\/div>\n                    <div class=\"dame-info\">\n                        <h3>Melissa<\/h3>\n                                                    <div class=\"dame-telefon\">\ud83d\udcde +41 76 614 78 73<\/div>\n                                                <div class=\"dame-slogan\">&nbsp;<\/div>\n                    <\/div>\n                    <div class=\"dame-karte-footer\">\n                                                <span class=\"dame-status status-anwesend\">Anwesend<\/span>\n                    <\/div>\n                <\/a>\n            <\/div>\n                        <div class=\"dame-karte\">\n                <a href=\"https:\/\/club-mirage.ch\/hu\/dame\/cora\/\">\n                    <div class=\"dame-foto\">\n                                                    <img decoding=\"async\" src=\"https:\/\/club-mirage.ch\/wp-content\/uploads\/2026\/04\/cora-1.jpeg\" alt=\"Cora\" loading=\"lazy\">\n                                            <\/div>\n                    <div class=\"dame-info\">\n                        <h3>Cora<\/h3>\n                                                    <div class=\"dame-telefon\">\ud83d\udcde +41 77 240 78 55<\/div>\n                                                <div class=\"dame-slogan\">&nbsp;<\/div>\n                    <\/div>\n                    <div class=\"dame-karte-footer\">\n                                                <span class=\"dame-status status-anwesend\">Anwesend<\/span>\n                    <\/div>\n                <\/a>\n            <\/div>\n                    <\/div>\n\n        <div class=\"sg-btn-wrap\">\n            <a href=\"mastersite\/wochenplan\/\" class=\"sg-btn\">Alle anwesenden Girls \u2192<\/a>\n        <\/div>\n    <\/div>\n\n    <style>\n    .sg-wrap { width: 100%; }\n    .sg-grid {\n        display: grid;\n        grid-template-columns: repeat(5, 1fr);\n        gap: 20px;\n        margin-bottom: 30px;\n    }\n    @media (max-width: 900px) {\n        .sg-grid { grid-template-columns: repeat(2, 1fr); }\n    }\n    @media (max-width: 480px) {\n        .sg-grid { grid-template-columns: 1fr; }\n    }\n    .sg-btn-wrap {\n        text-align: center;\n    }\n    .sg-btn {\n        display: inline-block;\n        padding: 14px 36px;\n        background: #360061;\n        color: #fff !important;\n        text-decoration: none;\n        border-radius: 30px;\n        font-size: 20px;\n        font-weight: 700;\n        font-family: 'Cinzel Decorative', sans-serif;\n        transition: opacity 0.2s;\n    }\n    .sg-btn:hover { opacity: 0.85; }\n    .dame-karte {\n        border-radius: 10px;\n        overflow: hidden;\n        box-shadow: 0 2px 10px rgba(0,0,0,0.12);\n        transition: transform 0.2s, box-shadow 0.2s;\n        background: #fff;\n    }\n    .dame-karte:hover {\n        transform: translateY(-5px);\n        box-shadow: 0 6px 20px rgba(0,0,0,0.18);\n    }\n    .dame-karte a {\n        text-decoration: none;\n        color: inherit;\n        display: flex;\n        flex-direction: column;\n        height: 100%;\n    }\n    .dame-foto img {\n        width: 100%;\n        aspect-ratio: 3\/4;\n        object-fit: cover;\n        display: block;\n    }\n    .dame-foto-placeholder {\n        width: 100%;\n        aspect-ratio: 3\/4;\n        background: #eee;\n    }\n    .dame-info { flex: 1; padding: 10px 14px 4px; }\n    .dame-info h3 {\n        margin: 0 0 5px;\n        font-size: 20px;\n        font-weight: 700;\n        font-family: 'Cinzel Decorative', sans-serif;\n        color: #1a1f2e;\n    }\n    .dame-telefon {\n        font-size: 14px;\n        color: #ffffff;\n        margin-bottom: 4px;\n    }\n    .dame-slogan {\n        font-size: 12px;\n        color: #ffffff;\n        font-style: italic;\n        white-space: nowrap;\n        overflow: hidden;\n        text-overflow: ellipsis;\n    }\n    .dame-karte-footer {\n        padding: 0 14px 12px;\n        display: flex;\n        align-items: center;\n        gap: 6px;\n        flex-wrap: wrap;\n    }\n    .dame-status {\n        display: inline-block;\n        padding: 5px 12px;\n        border-radius: 20px;\n        font-size: 12px;\n        font-weight: 700;\n        color: #fff;\n        letter-spacing: 0.3px;\n    }\n    .status-anwesend { background: #27ae60; }\n    .status-neu {\n        background: linear-gradient(135deg, #f5c842, #f39c12);\n        animation: neu-puls 1.5s ease infinite;\n    }\n    @keyframes neu-puls {\n        0%, 100% { opacity: 1; transform: scale(1); }\n        50% { opacity: 0.85; transform: scale(1.05); }\n    }\n    <\/style>\n\n    <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-186638e e-con-full e-flex e-con e-parent\" data-id=\"186638e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e510794 e-con-full ms-section-box e-flex e-con e-child\" data-id=\"e510794\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a03ce4c elementor-widget__width-initial elementor-widget elementor-widget-shortcode\" data-id=\"a03ce4c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">\n    <style>\n    .clubinfo-outer {\n    width: 100%;\n    position: relative;\n    border-radius: 12px;\n    overflow: hidden;\n}\n    .clubinfo-wrap {\n        display: grid;\n        grid-template-columns: 1fr 1fr;\n        gap: 0;\n        width: 100%;\n        box-sizing: border-box;\n    }\n    @media (max-width: 768px) {\n        .clubinfo-wrap {\n            grid-template-columns: 1fr;\n        }\n    }\n    .clubinfo-zeiten {\n        padding: 40px;\n        box-sizing: border-box;\n    }\n    .clubinfo-maps {\n        padding: 40px;\n        box-sizing: border-box;\n    }\n    .clubinfo-titel {\n        font-size: 20px;\n        font-weight: 600;\n        font-family: 'Cinzel Decorative', sans-serif;\n        color: #ffffff;\n        margin-bottom: 20px;\n        letter-spacing: 0.5px;\n        text-transform: uppercase;\n    }\n    .clubinfo-zeile {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 10px 12px;\n        border-bottom: 1px solid rgba(255,255,255,0.08);\n    }\n    .clubinfo-zeile:last-child {\n        border-bottom: none;\n    }\n    .clubinfo-heute {\n        font-weight: 700;\n        border-bottom: none !important;\n    }\n    .clubinfo-tag {\n        font-size: 15px;\n    }\n    .clubinfo-uhrzeit {\n        font-size: 15px;\n        opacity: 0.85;\n    }\n    .clubinfo-maps-wrap {\n        border-radius: 10px;\n        overflow: hidden;\n        height: 300px;\n    }\n    .clubinfo-maps-wrap iframe {\n        width: 100% !important;\n        height: 100%;\n        border: none;\n        display: block;\n    }\n    <\/style>\n\n    <div class=\"clubinfo-outer\" style=\"background:#360061\">\n        <div class=\"clubinfo-wrap\" style=\"color:#ffffff\">\n\n            <div class=\"clubinfo-zeiten\">\n                <h3 class=\"clubinfo-titel\">\n                    \ud83d\udd50 \u00d6ffnungszeiten\n                <\/h3>\n                                        <div class=\"clubinfo-zeile \"\n                             style=\"\">\n                            <span class=\"clubinfo-tag\">Montag<\/span>\n                            <span class=\"clubinfo-uhrzeit\">\n                                                                    19:00 \u2013 03:00 Uhr\n                                                            <\/span>\n                        <\/div>\n                                            <div class=\"clubinfo-zeile \"\n                             style=\"\">\n                            <span class=\"clubinfo-tag\">Dienstag<\/span>\n                            <span class=\"clubinfo-uhrzeit\">\n                                                                    19:00 \u2013 03:00 Uhr\n                                                            <\/span>\n                        <\/div>\n                                            <div class=\"clubinfo-zeile \"\n                             style=\"\">\n                            <span class=\"clubinfo-tag\">Mittwoch<\/span>\n                            <span class=\"clubinfo-uhrzeit\">\n                                                                    19:00 \u2013 03:00 Uhr\n                                                            <\/span>\n                        <\/div>\n                                            <div class=\"clubinfo-zeile clubinfo-heute\"\n                             style=\"background:#e74c3c;border-radius:6px;\">\n                            <span class=\"clubinfo-tag\">Donnerstag<\/span>\n                            <span class=\"clubinfo-uhrzeit\">\n                                                                    19:00 \u2013 05:00 Uhr\n                                                            <\/span>\n                        <\/div>\n                                            <div class=\"clubinfo-zeile \"\n                             style=\"\">\n                            <span class=\"clubinfo-tag\">Freitag<\/span>\n                            <span class=\"clubinfo-uhrzeit\">\n                                                                    19:00 \u2013 05:00 Uhr\n                                                            <\/span>\n                        <\/div>\n                                            <div class=\"clubinfo-zeile \"\n                             style=\"\">\n                            <span class=\"clubinfo-tag\">Samstag<\/span>\n                            <span class=\"clubinfo-uhrzeit\">\n                                                                    19:00 \u2013 05:00 Uhr\n                                                            <\/span>\n                        <\/div>\n                                            <div class=\"clubinfo-zeile \"\n                             style=\"\">\n                            <span class=\"clubinfo-tag\">Sonntag<\/span>\n                            <span class=\"clubinfo-uhrzeit\">\n                                                                    19:00 \u2013 03:00 Uhr\n                                                            <\/span>\n                        <\/div>\n                                <\/div>\n\n            <div class=\"clubinfo-maps\">\n                <h3 class=\"clubinfo-titel\">\n                    \ud83d\udccd Anfahrt\n                <\/h3>\n                                    <div class=\"clubinfo-maps-wrap\">\n                        <div id=\"wpgmza_map_1\" class=\"wpgmza_map wpgmza-auto-left\" style=\"display:block;width:100%;height:450px;overflow:hidden;position:relative;\" data-map-id=\"1\" data-maps-engine=\"google-maps\" data-build-engine=\"atlas-novus\" data-shortcode-attributes=\"{&quot;id&quot;:&quot;1&quot;,&quot;zoom&quot;:false,&quot;width&quot;:false,&quot;height&quot;:false,&quot;marker&quot;:false,&quot;classname&quot;:false}\" data-settings=\"{&quot;map_title&quot;:&quot;Mirage&quot;,&quot;map_width&quot;:&quot;100&quot;,&quot;map_height&quot;:&quot;450&quot;,&quot;map_start_lat&quot;:&quot;47.19211409753156&quot;,&quot;map_start_lng&quot;:&quot;8.895101543048488&quot;,&quot;map_start_location&quot;:&quot;45.950464398418106,-109.81550500000003&quot;,&quot;map_start_zoom&quot;:&quot;19&quot;,&quot;default_marker&quot;:&quot;&quot;,&quot;type&quot;:&quot;2&quot;,&quot;alignment&quot;:&quot;4&quot;,&quot;directions_enabled&quot;:&quot;0&quot;,&quot;styling_enabled&quot;:&quot;0&quot;,&quot;styling_json&quot;:&quot;&quot;,&quot;active&quot;:&quot;0&quot;,&quot;kml&quot;:&quot;&quot;,&quot;bicycle&quot;:&quot;0&quot;,&quot;traffic&quot;:&quot;0&quot;,&quot;dbox&quot;:&quot;0&quot;,&quot;dbox_width&quot;:&quot;&quot;,&quot;listmarkers&quot;:&quot;0&quot;,&quot;listmarkers_advanced&quot;:&quot;0&quot;,&quot;filterbycat&quot;:&quot;0&quot;,&quot;ugm_enabled&quot;:&quot;0&quot;,&quot;ugm_category_enabled&quot;:&quot;0&quot;,&quot;fusion&quot;:&quot;&quot;,&quot;map_width_type&quot;:&quot;%&quot;,&quot;map_height_type&quot;:&quot;px&quot;,&quot;mass_marker_support&quot;:&quot;0&quot;,&quot;ugm_access&quot;:&quot;0&quot;,&quot;order_markers_by&quot;:&quot;0&quot;,&quot;order_markers_choice&quot;:&quot;0&quot;,&quot;show_user_location&quot;:&quot;0&quot;,&quot;default_to&quot;:&quot;&quot;,&quot;map_type&quot;:1,&quot;sl_stroke_color&quot;:&quot;&quot;,&quot;sl_fill_color&quot;:&quot;&quot;,&quot;sl_stroke_opacity&quot;:&quot;&quot;,&quot;sl_fill_opacity&quot;:&quot;&quot;,&quot;transport_layer&quot;:false,&quot;action&quot;:&quot;wpgmza_save_map&quot;,&quot;redirect_to&quot;:&quot;\\\/mirage\\\/wp-admin\\\/admin-post.php&quot;,&quot;map_id&quot;:&quot;1&quot;,&quot;wpgmza_savemap&quot;:&quot;Karte speichern&quot;,&quot;http_referer&quot;:&quot;\\\/mirage\\\/wp-admin\\\/admin.php?page=wp-google-maps-menu&amp;amp;action=edit&amp;amp;map_id=1&quot;,&quot;wpgmza_id&quot;:&quot;1&quot;,&quot;wpgmza_start_location&quot;:&quot;47.19211409753156,8.895101543048488&quot;,&quot;wpgmza_start_zoom&quot;:&quot;19&quot;,&quot;wpgmza_map_align&quot;:&quot;1&quot;,&quot;store_locator_enabled&quot;:false,&quot;store_locator_distance&quot;:false,&quot;store_locator_search_area&quot;:&quot;radial&quot;,&quot;wpgmza_store_locator_default_radius&quot;:&quot;10&quot;,&quot;store_locator_auto_area_max_zoom&quot;:&quot;&quot;,&quot;wpgmza_store_locator_radius_style&quot;:&quot;legacy&quot;,&quot;store_locator_component_anchor&quot;:&quot;0&quot;,&quot;store_locator_button_style&quot;:&quot;&quot;,&quot;wpgmza_store_locator_bounce&quot;:false,&quot;wpgmza_sl_animation&quot;:null,&quot;store_locator_query_string&quot;:&quot;&quot;,&quot;store_locator_location_placeholder&quot;:&quot;&quot;,&quot;store_locator_default_address&quot;:&quot;&quot;,&quot;store_locator_name_search&quot;:false,&quot;store_locator_name_string&quot;:&quot;&quot;,&quot;store_locator_not_found_message&quot;:&quot;&quot;,&quot;store_locator_show_distance&quot;:false,&quot;store_locator_category&quot;:false,&quot;wpgmza_store_locator_use_their_location&quot;:false,&quot;wpgmza_store_locator_hide_before_search&quot;:false,&quot;store_locator_nearby_searches&quot;:false,&quot;wpgmza_theme_data&quot;:&quot;&quot;,&quot;custom_tile_enabled&quot;:false,&quot;custom_tile_image&quot;:&quot;&quot;,&quot;custom_tile_image_width&quot;:&quot;&quot;,&quot;custom_tile_image_height&quot;:&quot;&quot;,&quot;custom_tile_image_attribution&quot;:&quot;&quot;,&quot;iw_anchor_panel_card&quot;:null,&quot;iw_primary_color&quot;:&quot;#000000&quot;,&quot;iw_accent_color&quot;:&quot;#000000&quot;,&quot;iw_text_color&quot;:&quot;#000000&quot;,&quot;close_infowindow_on_map_click&quot;:false,&quot;marker_share_links&quot;:false,&quot;wpgmza_listmarkers_by&quot;:&quot;0&quot;,&quot;marker_listing_component_anchor&quot;:null,&quot;marker_listing_component_auto_open&quot;:false,&quot;marker_listing_nudge_marker_center&quot;:false,&quot;marker_listing_nudge_x&quot;:&quot;&quot;,&quot;marker_listing_nudge_y&quot;:&quot;&quot;,&quot;category_filter_component_anchor&quot;:null,&quot;category_filter_label_string&quot;:&quot;&quot;,&quot;zoom_level_on_marker_listing_override&quot;:false,&quot;zoom_level_on_marker_listing_click&quot;:&quot;&quot;,&quot;marker_listing_disable_zoom&quot;:false,&quot;dataTable_pagination_style&quot;:null,&quot;datatable_no_result_message&quot;:&quot;&quot;,&quot;remove_search_box_datables&quot;:false,&quot;datatable_search_string&quot;:&quot;&quot;,&quot;datatable_result_start&quot;:&quot;&quot;,&quot;datatable_result_of&quot;:&quot;&quot;,&quot;datatable_result_to&quot;:&quot;&quot;,&quot;datatable_result_total&quot;:&quot;&quot;,&quot;datatable_result_show&quot;:&quot;&quot;,&quot;datatable_result_entries&quot;:&quot;&quot;,&quot;category_legends_enabled&quot;:false,&quot;category_legends_component_anchor&quot;:null,&quot;category_legends_style&quot;:null,&quot;category_legends_label_string&quot;:&quot;&quot;,&quot;jump_to_nearest_marker_on_initialization&quot;:false,&quot;click_open_link&quot;:false,&quot;wpgmza_zoom_on_marker_click&quot;:false,&quot;wpgmza_zoom_on_marker_click_slider&quot;:&quot;&quot;,&quot;enable_marker_labels&quot;:false,&quot;polygon_labels&quot;:false,&quot;disable_polygon_info_windows&quot;:false,&quot;shape_filtering&quot;:false,&quot;fit_maps_bounds_to_markers&quot;:false,&quot;fit_maps_bounds_to_markers_after_filtering&quot;:false,&quot;restrict_map_bounds&quot;:false,&quot;restrict_boundary_corner_a&quot;:&quot;&quot;,&quot;restrict_boundary_corner_b&quot;:&quot;&quot;,&quot;automatically_pan_to_users_location&quot;:false,&quot;enable_user_location_control&quot;:false,&quot;override_users_location_zoom_level&quot;:false,&quot;override_users_location_zoom_levels&quot;:&quot;&quot;,&quot;show_distance_from_location&quot;:false,&quot;map_starts_in_streetview&quot;:false,&quot;map_starts_in_streetview_location&quot;:&quot;&quot;,&quot;map_starts_in_streetview_heading&quot;:&quot;&quot;,&quot;map_starts_in_streetview_pitch&quot;:&quot;&quot;,&quot;map_max_zoom&quot;:&quot;21&quot;,&quot;map_min_zoom&quot;:&quot;0&quot;,&quot;hide_point_of_interest&quot;:false,&quot;disable_lightbox_images&quot;:false,&quot;use_Raw_Jpeg_Coordinates&quot;:false,&quot;enable_marker_ratings&quot;:false,&quot;enable_map_reset_control&quot;:false,&quot;zoom_level_mobile_override_enabled&quot;:false,&quot;zoom_level_mobile_override&quot;:&quot;&quot;,&quot;map_dimensions_mobile_override_enabled&quot;:false,&quot;map_mobile_width&quot;:&quot;100&quot;,&quot;map_mobile_width_type&quot;:&quot;%&quot;,&quot;map_mobile_height&quot;:&quot;200&quot;,&quot;map_mobile_height_type&quot;:&quot;px&quot;,&quot;lazyload_info_window_content&quot;:false,&quot;only_load_markers_within_viewport&quot;:false,&quot;id&quot;:1}\" ><\/div>                    <\/div>\n                            <\/div>\n\n        <\/div>\n    <\/div>\n\n    <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-80bb55d e-con-full e-flex e-con e-parent\" data-id=\"80bb55d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-10971f2 ms-section-box e-flex e-con-boxed e-con e-child\" data-id=\"10971f2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1d39282 elementor-widget elementor-widget-shortcode\" data-id=\"1d39282\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-2","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/club-mirage.ch\/hu\/wp-json\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/club-mirage.ch\/hu\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/club-mirage.ch\/hu\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/club-mirage.ch\/hu\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/club-mirage.ch\/hu\/wp-json\/wp\/v2\/comments?post=2"}],"version-history":[{"count":196,"href":"https:\/\/club-mirage.ch\/hu\/wp-json\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":1240,"href":"https:\/\/club-mirage.ch\/hu\/wp-json\/wp\/v2\/pages\/2\/revisions\/1240"}],"wp:attachment":[{"href":"https:\/\/club-mirage.ch\/hu\/wp-json\/wp\/v2\/media?parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}