BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Planes Hoy - ECPv5.3.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:Planes Hoy
X-ORIGINAL-URL:https://planeshoy.com
X-WR-CALDESC:Eventos para Planes Hoy
BEGIN:VTIMEZONE
TZID:Europe/Madrid
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:20260329T010000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:20261025T010000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:20270328T010000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:20271031T010000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:20280326T010000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:20281029T010000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:20290325T010000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:20291028T010000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:20300331T010000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:20301027T010000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=Europe/Madrid:20260615T220000
DTEND;TZID=Europe/Madrid:20301231T220000
DTSTAMP:20260615T172716
CREATED:20180417T161848Z
LAST-MODIFIED:20260615T000457Z
UID:89-1781560800-1924984800@planeshoy.com
SUMMARY:Calendario – Agenda de Eventos del Consorcio Turismo de Sevilla
DESCRIPTION:jQuery(document).ready(function($) {\n    // 1. Añadir la clase al cargar\n    var $header = $(‘#header-menu’); // Cambia esto por tu ID o Clase real\n    $header.addClass(‘scrolled’); \n    // 2. (Opcional) Forzar que no se quite al hacer scroll\n    $(window).on(‘scroll’\, function() {\n        if (!$header.hasClass(‘scrolled’)) {\n            $header.addClass(‘scrolled’);\n        }\n    });\n}); \n                Prepara tu viaje \n                Durante tu estancia \n                Qué hacer en Sevilla \n                Comer y salir \n                Mapa interactivo \n                Puntos de información turística \n                Feria de Abril \n              Sevilla de Ópera\n              Flamenco\n              Agenda\n              Guías\, mapas y monumentos\n              Planes en familia\n              Deporte en Sevilla\n              Alojamientos\n              Estudiar en Sevilla\n              SHARM\, Sevilla’s Charm\n              LGTBIQ+\n              Calidad en destino\n                Curiosidades de la ciudad        \n              Contacto\n              Profesionales\n              Conectividad\n              Perfil del contratante\n              Aviso legal\n              Política de privacidad\n              Política de cookies \n                Feria de Abril\n                Sevilla de Ópera\n                Flamenco\n                Agenda\n                Guías\, mapas y monumentos\n                Planes en familia\n              Deporte en Sevilla\n                Alojamientos\n                Estudiar en Sevilla\n                SHARM\, Sevilla’s Charm\n                LGTBIQ+\n                Calidad en destino\n                Curiosidades de la ciudad           \n              visitasevilla@sevillacityoffice.es\n              T. (+34) 955 471 232\n              Paseo Alcalde Marqués de Contadero s/n. Sevilla \n				Agenda\nPuntos de información turística\nPrepara tu viaje\nDurante tu estancia\nMapa Interactivo \n				Agenda\nPuntos de información turística\nPrepara tu viaje\nDurante tu estancia\nMapa Interactivo \n	Menu principal \n						Instagram \n						Tiktok \n						X-twitter \n						Facebook \n						Youtube \n						Spotify \n			ES \n			EN \n			FR \n			IT \n			DE \n/**\n * Script para dinamizar los enlaces de idioma en cabeceras de Elementor\n * Detecta las URLs de traducción del  (inyectadas por MultilingualPress)\n * y las aplica al menú de idiomas personalizado.\n */\n(function() {\n    function updateLanguageSwitcher() {\n        // 1. Obtener todas las traducciones alternativas del encabezado del sitio\n        const alternates = document.querySelectorAll(‘link[rel=”alternate”][hreflang]’);\n        if (alternates.length === 0) return; \n        // 2. Obtener los enlaces de nuestro menú de idiomas\n        const menuLinks = document.querySelectorAll(‘#idiomas-menu .idiomas-menu a’); \n        // 3. Crear un mapa de idiomas y URLs encontradas en el\n        const langMap = {};\n        alternates.forEach(link => {\n            langMap[link.getAttribute(‘hreflang’).toLowerCase()] = link.getAttribute(‘href’);\n        }); \n        // 4. Actualizar los enlaces del menú\n        menuLinks.forEach(link => {\n            const langAttr = (link.getAttribute(‘hreflang’) || link.getAttribute(‘lang’) || “”).toLowerCase(); \n            if (langMap[langAttr]) {\n                // Actualizar el href con la página interna correcta\n                link.setAttribute(‘href’\, langMap[langAttr]); \n                // Si el enlace actual es la página donde estamos\, marcarlo como activo\n                if (langMap[langAttr] === window.location.href.split(‘?’)[0].split(‘#’)[0]) {\n                    const parentLi = link.closest(‘li’);\n                    if (parentLi) {\n                        // Limpiar clases activas previas\n                        document.querySelectorAll(‘#idiomas-menu .mlp-current-language-item’).forEach(el => {\n                            el.classList.remove(‘mlp-current-language-item’);\n                        });\n                        parentLi.classList.add(‘mlp-current-language-item’);\n                    }\n                }\n            }\n        });\n    } \n    // Ejecutar al cargar la página\n    if (document.readyState === ‘loading’) {\n        document.addEventListener(‘DOMContentLoaded’\, updateLanguageSwitcher);\n    } else {\n        updateLanguageSwitcher();\n    }\n})(); \n    body.search-open .site-header__search {\n    color: #000!important;\n    z-index:9;\n}\n    body.search-open  .icon-search{\n        display:none; \n    }\n       body.search-open  .icon-remove{\n        display:block; \n    }\n     body  .icon-remove{\n        display:none; \n    } \n    X  \ndocument.querySelector(‘.site-header__search’).addEventListener(‘click’\, function() {\n    document.body.classList.toggle(‘search-open’);\n});  \n						Te queda mucho por descubrir: \n					Buscar: \n																			Parece que estás perdido… \n																							Pero no te preocupes\, en Sevilla siempre encontrarás lo que buscas \n																							Volver al inicio \n					@import url(“https://assets.mlcdn.com/fonts.css?version=1679399″); \n    /* LOADER */\n    .ml-form-embedSubmitLoad {\n      display: inline-block;\n      width: 20px;\n      height: 20px;\n    } \n    .g-recaptcha {\n    transform: scale(1);\n    -webkit-transform: scale(1);\n    transform-origin: 0 0;\n    -webkit-transform-origin: 0 0;\n    height: ;\n    } \n    .sr-only {\n      position: absolute;\n      width: 1px;\n      height: 1px;\n      padding: 0;\n      margin: -1px;\n      overflow: hidden;\n      clip: rect(0\,0\,0\,0);\n      border: 0;\n    } \n    .ml-form-embedSubmitLoad:after {\n      content: ” “;\n      display: block;\n      width: 11px;\n      height: 11px;\n      margin: 1px;\n      border-radius: 50%;\n      border: 4px solid #fff;\n    border-color: #ffffff #ffffff #ffffff transparent;\n    animation: ml-form-embedSubmitLoad 1.2s linear infinite;\n    }\n    @keyframes ml-form-embedSubmitLoad {\n      0% {\n      transform: rotate(0deg);\n      }\n      100% {\n      transform: rotate(360deg);\n      }\n    }\n      #mlb2-4407060.ml-form-embedContainer {\n        /*box-sizing: border-box;\n        display: table;\n        margin: 0 auto;\n        position: static;\n        width: 100% !important;*/\n      }\n      #mlb2-4407060.ml-form-embedContainer h4\,\n      #mlb2-4407060.ml-form-embedContainer p\,\n      #mlb2-4407060.ml-form-embedContainer span\,\n      #mlb2-4407060.ml-form-embedContainer button {\n        text-transform: none !important;\n        letter-spacing: normal !important;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper {\n        /*background-color: #FF5454; \n        border-width: 0px;\n        border-color: transparent;\n        border-radius: 4px;\n        border-style: solid;\n        box-sizing: border-box;\n        display: inline-block !important;\n        margin: 0;\n        padding: 0;*/\n        position: relative;\n              }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper.embedPopup\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper.embedForm { /*max-width: 400px; width: 100%;*/ }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-align-left { text-align: left; }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-align-center { /*text-align: center;*/ }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-align-right { text-align: right; }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {\n        border-top-left-radius: 4px;\n        border-top-right-radius: 4px;\n        height: auto;\n        margin: 0 auto !important;\n        max-width: 100%;\n        width: undefinedpx;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {\n        /*padding: 20px 20px 0 20px;*/\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {\n        padding-bottom: 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {\n        text-align: left;\n        margin: 0 0 20px 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {\n        color: #ffffff;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 30px;\n        font-weight: 400;\n        margin: 0 0 10px 0;\n        text-align: left;\n        word-break: break-word;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {\n        color: #ffffff;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 14px;\n        font-weight: 400;\n        line-height: 20px;\n        margin: 0 0 10px 0;\n        text-align: left;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {\n        color: #ffffff;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 14px;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {\n        list-style-type: lower-alpha;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {\n        list-style-type: lower-roman;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {\n        color: #000000;\n        text-decoration: underline;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {\n        /*text-align: left!important;*/\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {\n        /*margin-bottom: 5px;\n        color: #ffffff;\n        font-size: 14px;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-weight: bold; font-style: normal; text-decoration: none;;\n        display: inline-block;\n        line-height: 20px;*/\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {\n        margin: 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {\n        margin: 0;\n        width: 100%;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\n        /*margin: 0 0 20px 0;\n        width: 100%;*/\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\n        float: left;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\n        margin: 0;\n        padding: 0 0 20px 0;\n        width: 100%;\n        height: auto;\n        float: left;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {\n        /*margin: 0 0 10px 0;\n        width: 100%;*/\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {\n        margin: 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {\n        margin: 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {\n        /*background-color: #ffffff !important;\n        color: #333333 !important;\n        border-color: #cccccc;\n        border-radius: 4px !important;\n        border-style: solid !important;\n        border-width: 1px !important;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 14px !important;\n        height: auto;\n        line-height: 21px !important;\n        margin-bottom: 0;\n        margin-top: 0;\n        margin-left: 0;\n        margin-right: 0;\n        padding: 10px 10px !important;\n        width: 100% !important;\n        box-sizing: border-box !important;\n        max-width: 100% !important;*/\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #333333; } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #333333; } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #333333; } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #333333; } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {\n        background-color: #ffffff !important;\n        color: #333333 !important;\n        border-color: #cccccc;\n        border-radius: 4px !important;\n        border-style: solid !important;\n        border-width: 1px !important;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 14px !important;\n        height: auto;\n        line-height: 21px !important;\n        margin-bottom: 0;\n        margin-top: 0;\n        padding: 10px 10px !important;\n        width: 100% !important;\n        box-sizing: border-box !important;\n        max-width: 100% !important;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\n          border-color: #cccccc!important;\n          background-color: #ffffff!important;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type=”checkbox”]{\n        box-sizing: border-box;\n        padding: 0;\n        position: absolute;\n        z-index: -1;\n        opacity: 0;\n        margin-top: 5px;\n        margin-left: -1.5rem;\n        overflow: visible;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\n        border-radius: 4px!important;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {\n        background-image: url(“data:image/svg+xml\,%3csvg xmlns=’http://www.w3.org/2000/svg’ viewBox=’0 0 8 8’%3e%3cpath fill=’%23fff’ d=’M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z’/%3e%3c/svg%3e”);\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {\n        background-image: url(“data:image/svg+xml\,%3csvg xmlns=’http://www.w3.org/2000/svg’ viewBox=’-4 -4 8 8’%3e%3ccircle r=’3′ fill=’%23fff’/%3e%3c/svg%3e”);\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {\n          border-color: #ff8787!important;\n          background-color: #ff8787!important;\n          color: #ffffff!important;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {\n           top: 2px;\n           box-sizing: border-box;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\n           top: 0px!important;\n           box-sizing: border-box!important;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\n        top: 0px!important;\n           box-sizing: border-box!important;\n      } \n       #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {\n            top: 0px!important;\n            box-sizing: border-box!important;\n            position: absolute;\n            left: -1.5rem;\n            display: block;\n            width: 1rem;\n            height: 1rem;\n            content: “”;\n       } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {\n        top: 0px!important;\n        box-sizing: border-box!important;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {\n          position: absolute;\n          top: 4px;\n          left: -1.5rem;\n          display: block;\n          width: 16px;\n          height: 16px;\n          pointer-events: none;\n          content: “”;\n          background-color: #ffffff;\n          border: #adb5bd solid 1px;\n          border-radius: 50%;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {\n          position: absolute;\n          top: 2px!important;\n          left: -1.5rem;\n          display: block;\n          width: 1rem;\n          height: 1rem;\n          content: “”;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\n          position: absolute;\n          top: 4px;\n          left: -1.5rem;\n          display: block;\n          width: 16px;\n          height: 16px;\n          pointer-events: none;\n          content: “”;\n          background-color: #ffffff;\n          border: #adb5bd solid 1px;\n          border-radius: 50%;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {\n          position: absolute;\n          top: 0px!important;\n          left: -1.5rem;\n          display: block;\n          width: 1rem;\n          height: 1rem;\n          content: “”;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\n          position: absolute;\n          top: 0px!important;\n          left: -1.5rem;\n          display: block;\n          width: 1rem;\n          height: 1rem;\n          content: “”;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {\n          background: no-repeat 50%/50% 50%;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\n          background: no-repeat 50%/50% 50%;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {\n        position: relative;\n        display: block;\n        min-height: 1.5rem;\n        padding-left: 1.5rem;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {\n          position: absolute;\n          z-index: -1;\n          opacity: 0;\n          box-sizing: border-box;\n          padding: 0;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {\n          color: #ffffff;\n          font-size: 12px!important;\n          font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n          line-height: 22px;\n          margin-bottom: 0;\n          position: relative;\n          vertical-align: top;\n          font-style: normal;\n          font-weight: 700;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select\, #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {\n        background-color: #ffffff !important;\n        color: #333333 !important;\n        border-color: #cccccc;\n        border-radius: 4px !important;\n        border-style: solid !important;\n        border-width: 1px !important;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 14px !important;\n        line-height: 20px !important;\n        margin-bottom: 0;\n        margin-top: 0;\n        padding: 10px 28px 10px 12px !important;\n        width: 100% !important;\n        box-sizing: border-box !important;\n        max-width: 100% !important;\n        height: auto;\n        display: inline-block;\n        vertical-align: middle;\n        background: url(‘https://assets.mlcdn.com/ml/images/default/dropdown.svg’) no-repeat right .75rem center/8px 10px;\n        -webkit-appearance: none;\n        -moz-appearance: none;\n        appearance: none;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {\n        height: auto;\n        width: 100%;\n        float: left;\n      }\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {\n        background-color: #ffffff;\n        color: #333333;\n        border-color: #cccccc;\n        border-radius: 4px;\n        border-style: solid;\n        border-width: 1px;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 14px;\n        line-height: 20px;\n        margin-bottom: 0;\n        margin-top: 0;\n        padding: 10px 10px;\n        width: 100%;\n        box-sizing: border-box;\n        overflow-y: initial;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {\n        background-color: #ff8787 !important;\n        border-color: #ff8787;\n        border-style: solid;\n        border-width: 1px;\n        border-radius: 20px;\n        box-shadow: none;\n        color: #ffffff !important;\n        cursor: pointer;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 17px !important;\n        font-weight: 700;\n        line-height: 20px;\n        margin: 0 !important;\n        padding: 10px !important;\n        width: 100%;\n        height: auto;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {\n        background-color: #FF5454 !important;\n        border-color: #FF5454 !important;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=”checkbox”] {\n        box-sizing: border-box;\n        padding: 0;\n        position: absolute;\n        z-index: -1;\n        opacity: 0;\n        margin-top: 5px;\n        margin-left: -1.5rem;\n        overflow: visible;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {\n        color: #ffffff;\n        display: block;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 12px;\n        text-align: left;\n        margin-bottom: 0;\n        position: relative;\n        vertical-align: top;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {\n        font-weight: normal;\n        margin: 0;\n        padding: 0;\n        position: relative;\n        display: block;\n        min-height: 24px;\n        padding-left: 24px; \n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {\n        color: #ffffff;\n        text-decoration: underline;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {\n        color: #ffffff !important;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif !important;\n        font-size: 12px !important;\n        font-weight: normal !important;\n        line-height: 18px !important;\n        padding: 0 !important;\n        margin: 0 5px 0 0 !important;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {\n        margin: 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {\n        margin: 0 0 20px 0;\n        float: left;\n        width: 100%;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {\n        /*background-color: #ff8787 !important;\n        border: none !important;\n        border-radius: 20px !important;\n        box-shadow: none !important;\n        color: #ffffff !important;\n        cursor: pointer;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif !important;\n        font-size: 17px !important;\n        font-weight: 700 !important;\n        line-height: 21px !important;\n        height: auto;\n        padding: 10px !important;\n        width: 100% !important;\n        box-sizing: border-box !important;*/\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {\n        display: none;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {\n        background-color: #FF5454 !important;\n      }\n      .ml-subscribe-close {\n        width: 30px;\n        height: 30px;\n        background: url(‘https://assets.mlcdn.com/ml/images/default/modal_close.png’) no-repeat;\n        background-size: 30px;\n        cursor: pointer;\n        margin-top: -10px;\n        margin-right: -10px;\n        position: absolute;\n        top: 0;\n        right: 0;\n      }\n      .ml-error input\, .ml-error textarea\, .ml-error select {\n        border-color: red!important;\n      } \n      .ml-error .custom-checkbox-radio-list {\n        border: 1px solid red !important;\n        border-radius: 4px;\n        padding: 10px;\n      } \n      .ml-error .label-description\,\n      .ml-error .label-description p\,\n      .ml-error .label-description p a\,\n      .ml-error label:first-child {\n        color: #ff0000 !important;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p\,\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {\n        color: #ff0000 !important;\n      }\n            @media only screen and (max-width: 400px){ \n        .ml-form-embedWrapper.embedDefault\, .ml-form-embedWrapper.embedPopup { width: 100%!important; }\n        .ml-form-formContent.horozintalForm { float: left!important; }\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }\n        .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; } \n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions { text-align: left; float: left; width: 100%; }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent {\n        margin: 0 0 15px 0;\n        text-align: left;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.horizontal {\n        margin: 0 0 15px 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent h4 {\n        color: #ffffff;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 12px;\n        font-weight: 700;\n        line-height: 18px;\n        margin: 0 0 10px 0;\n        word-break: break-word;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p {\n        color: #ffffff;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 12px;\n        line-height: 18px;\n        margin: 0 0 10px 0;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p {\n        color: #ffffff;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 12px;\n        line-height: 22px;\n        margin: 0 0 10px 0;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p a {\n        color: #ffffff;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p:last-child {\n        margin: 0;\n      } \n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p a {\n        color: #000000;\n        text-decoration: underline;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p:last-child { margin: 0 0 15px 0; }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptions {\n        margin: 0;\n        padding: 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox {\n        margin: 0 0 10px 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox:last-child {\n        margin: 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox label {\n        font-weight: normal;\n        margin: 0;\n        padding: 0;\n        position: relative;\n        display: block;\n        min-height: 24px;\n        padding-left: 24px;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description {\n        color: #ffffff;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 12px;\n        line-height: 18px;\n        text-align: left;\n        margin-bottom: 0;\n        position: relative;\n        vertical-align: top;\n        font-style: normal;\n        font-weight: 700;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .description {\n        color: #ffffff;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 12px;\n        font-style: italic;\n        font-weight: 400;\n        line-height: 18px;\n        margin: 5px 0 0 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=”checkbox”] {\n        box-sizing: border-box;\n        padding: 0;\n        position: absolute;\n        z-index: -1;\n        opacity: 0;\n        margin-top: 5px;\n        margin-left: -1.5rem;\n        overflow: visible;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR {\n        padding-bottom: 20px;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p {\n        color: #ffffff;\n        font-family: ‘Open Sans’\, Arial\, Helvetica\, sans-serif;\n        font-size: 10px;\n        line-height: 14px;\n        margin: 0;\n        padding: 0;\n      }\n      #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p a {\n        color: #ffffff;\n        text-decoration: underline; \n      }\n      @media (max-width: 768px) {\n        #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p {\n          font-size: 12px !important;\n          line-height: 18px !important;\n        }\n        #mlb2-4407060.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p {\n          font-size: 10px !important;\n          line-height: 14px !important;\n        }\n      } \n               Lo que necesitas saber está en tu correo\n               Apúntate a la newsletter \n                      Nombre \n                      Email \n                  Permisos de marketing\nLa información que proporcione en este formulario sólo se utilizará para ofrecerle actualizaciones y marketing personalizado. Su privacidad es importante para nosotros. Díganos cómo desea que nos mantengamos en contacto con usted: \n                        Comunicaciones comerciales \n                      Acepto el envío de comunicaciones comerciales. \n                        Al hacer clic a continuación para enviar este formulario\, reconoce que la información que proporcione se procesará de acuerdo con nuestra Política de privacidad.                       \n                      He leído y acepto los términos legales \n                  Quiero estar al día \n                  Loading… \n                ¡Gracias!\nTe has suscrito satisfactoriamente a nuestra lista. \n    function ml_webform_success_4407060() {\n      var $ = ml_jQuery || jQuery;\n      $(‘.ml-subscribe-form-4407060 .row-success’).show();\n      $(‘.ml-subscribe-form-4407060 .row-form’).hide();\n    } \n            fetch(“https://assets.mailerlite.com/jsonp/350448/forms/84520476896921184/track-view”) \n								Contacto\nPerfil del contratante\nProfesionales\nSmart Tourism Office\nSevilla Films and Events\nTienda online \n									Newsletter								 \n									Descubre las novedades de una ciudad viva								 \n									Suscríbete \n									Tienda Online								 \n									Contacto								 \n									Perfil del contratante								 \n									Accesibilidad								 \n									Profesionales								 \n									Fibes								 \n									Sevilla Film and Events								 \n									Smart Tourism Office								 \n						Instagram \n						Tiktok \n						X-twitter \n						Facebook \n						Youtube \n						Spotify \n{“prefetch”:[{“source”:”document”\,”where”:{“and”:[{“href_matches”:”/*”}\,{“not”:{“href_matches”:[“/wp-*.php”\,”/wp-admin/*”\,”/wp-content/uploads/*”\,”/wp-content/*”\,”/wp-content/plugins/*”\,”/wp-content/themes/visita-sevilla/*”\,”/*\?(.+)”]}}\,{“not”:{“selector_matches”:”a[rel~=”nofollow”]”}}\,{“not”:{“selector_matches”:”.no-prefetch\, .no-prefetch a”}}]}\,”eagerness”:”conservative”}]} \n  Utilizamos cookies propias y de terceros\, con fines analíticos\, para mejorar nuestros servicios y asegurar una mejor experiencia en nuestra web\, mostrándote publicidad personalizada de acuerdo con tus preferencias\, en base a un perfil elaborado a partir de tus hábitos de navegación. Al hacer clic en “Aceptar”\, aceptas todas las cookies. Puedes aprender más sobre qué cookies utilizamos o desactivarlas en los ajustes y consultar nuestra política de privacidad. \n			Aceptar\n						Rechazar\n							Ajustes \n				const registerAllyAction = () => {\n					if ( ! window?.ElementorProFrontendConfig || ! window?.elementorFrontend?.utils?.urlActions ) {\n						return;\n					} \n					elementorFrontend.utils.urlActions.addAction( ‘allyWidget:open’\, () => {\n						if (window?.ea11yWidget?.widget?.open) {\n							return window.ea11yWidget.widget.isOpen()\n								? window.ea11yWidget.widget.close()\n								: window.ea11yWidget.widget.open();\n						}\n					} );\n				}; \n				const waitingLimit = 30;\n				let retryCounter = 0; \n				const waitForElementorPro = () => {\n					return new Promise( ( resolve ) => {\n						const intervalId = setInterval( () => {\n							if ( retryCounter === waitingLimit ) {\n								resolve( null );\n							} \n							retryCounter++; \n							if ( window.elementorFrontend && window?.elementorFrontend?.utils?.urlActions ) {\n								clearInterval( intervalId );\n								resolve( window.elementorFrontend );\n							}\n								}\, 100 ); // Check every 100 milliseconds for availability of elementorFrontend\n					});\n				}; \n				waitForElementorPro().then( () => { registerAllyAction(); }); \ndocument.addEventListener(‘DOMContentLoaded’\, function() {\n  const header = document.getElementById(‘header-menu’);\n  const toggle = document.getElementById(‘menu_toggle’); \n  // Cambia color al hacer scroll\n  window.addEventListener(‘scroll’\, function() {\n    if (window.scrollY > 50) {\n      header.classList.add(‘scrolled’);\n    } else {\n      header.classList.remove(‘scrolled’);\n    }\n  }); \n  // Añadir / quitar clase al hacer click en la hamburguesa\n  if (toggle) {\n    toggle.addEventListener(‘click’\, function() {\n      header.classList.toggle(‘menu-open’);\n    });\n  }\n});\ndocument.addEventListener(“DOMContentLoaded”\, function () {\n  const video = document.querySelector(“video”);\n  if (video && !video.hasAttribute(“playsinline”)) {\n    video.setAttribute(“playsinline”\, “”);\n  }\n}); \nwp.i18n.setLocaleData( { ‘text directionu0004ltr’: [ ‘ltr’ ] } );\n//# sourceURL=wp-i18n-js-after \n( function( domain\, translations ) {\n	var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;\n	localeData[“”].domain = domain;\n	wp.i18n.setLocaleData( localeData\, domain );\n} )( “contact-form-7”\, {“translation-revision-date”:”2025-12-01 15:45:40+0000″\,”generator”:”GlotPress/4.0.3″\,”domain”:”messages”\,”locale_data”:{“messages”:{“”:{“domain”:”messages”\,”plural-forms”:”nplurals=2; plural=n != 1;”\,”lang”:”es”}\,”This contact form is placed in the wrong place.”:[“Este formulario de contacto estu00e1 situado en el lugar incorrecto.”]\,”Error:”:[“Error:”]}}\,”comment”:{“reference”:”includes/js/index.js”}} );\n//# sourceURL=contact-form-7-js-translations \nvar wpcf7 = {\n    “api”: {\n        “root”: “https://visitasevilla.es/wp-json/”\,\n        “namespace”: “contact-form-7/v1”\n    }\,\n    “cached”: 1\n};\n//# sourceURL=contact-form-7-js-before \nvar ea11yWidget = {“iconSettings”:{“style”:{“icon”:”person”\,”size”:”medium”\,”color”:”#2563eb”}\,”position”:{“desktop”:{“hidden”:false\,”enableExactPosition”:false\,”exactPosition”:{“horizontal”:{“direction”:”right”\,”value”:10\,”unit”:”px”}\,”vertical”:{“direction”:”bottom”\,”value”:10\,”unit”:”px”}}\,”position”:”bottom-right”}\,”mobile”:{“hidden”:false\,”enableExactPosition”:false\,”exactPosition”:{“horizontal”:{“direction”:”right”\,”value”:10\,”unit”:”px”}\,”vertical”:{“direction”:”bottom”\,”value”:10\,”unit”:”px”}}\,”position”:”bottom-right”}}}\,”toolsSettings”:{“bigger-text”:{“enabled”:true}\,”bigger-line-height”:{“enabled”:true}\,”text-align”:{“enabled”:true}\,”readable-font”:{“enabled”:true}\,”grayscale”:{“enabled”:true}\,”contrast”:{“enabled”:true}\,”page-structure”:{“enabled”:true}\,”sitemap”:{“enabled”:false\,”url”:”https://visitasevilla.es/wp-sitemap.xml”}\,”reading-mask”:{“enabled”:true}\,”hide-images”:{“enabled”:true}\,”pause-animations”:{“enabled”:true}\,”highlight-links”:{“enabled”:true}\,”focus-outline”:{“enabled”:true}\,”screen-reader”:{“enabled”:false}\,”remove-elementor-label”:{“enabled”:false}}\,”accessibilityStatementURL”:””\,”analytics”:{“enabled”:false\,”url”:null}};\n//# sourceURL=ea11y-widget-js-extra \nvar mjWidget = {“ajax_url”:”https://visitasevilla.es/wp-admin/admin-ajax.php”};\n//# sourceURL=wp_mailjet_form_builder_widget-front-script-js-extra \nvar moove_frontend_gdpr_scripts = {“ajaxurl”:”https://visitasevilla.es/wp-admin/admin-ajax.php”\,”post_id”:””\,”plugin_dir”:”https://visitasevilla.es/wp-content/plugins/gdpr-cookie-compliance”\,”show_icons”:”all”\,”is_page”:””\,”ajax_cookie_removal”:”true”\,”strict_init”:”2″\,”enabled_default”:{“strict”:2\,”third_party”:0\,”advanced”:0\,”performance”:0\,”preference”:0}\,”geo_location”:”false”\,”force_reload”:”true”\,”is_single”:””\,”hide_save_btn”:”false”\,”current_user”:”0″\,”cookie_expiration”:”365″\,”script_delay”:”2000″\,”close_btn_action”:”1″\,”close_btn_rdr”:””\,”scripts_defined”:”{“cache”:true\,”header”:””\,”body”:””\,”footer”:””\,”thirdparty”:{“header”:”u003Cmeta name=\”google-site-verification\” content=\”HTivhQNnNKYbUfgCzpB9PfNdQBFxtY8c-7cmLxBTyxg\” \/u003E\r\n\r\nu003C!– Meta Pixel Code –u003E\r\nu003Cscript data-gdpru003E\r\n!function(f\,b\,e\,v\,n\,t\,s)\r\n{if(f.fbq)return;n=f.fbq=function(){n.callMethod?\r\nn.callMethod.apply(n\,arguments):n.queue.push(arguments)};\r\nif(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=’2.0′;\r\nn.queue=[];t=b.createElement(e);t.async=!0;\r\nt.src=v;s=b.getElementsByTagName(e)[0];\r\ns.parentNode.insertBefore(t\,s)}(window\, document\,’script’\,\r\n’https:\/\/connect.facebook.net\/en_US\/fbevents.js’);\r\nfbq(‘init’\, ‘1668352633703699’);\r\nfbq(‘track’\, ‘PageView’);\r\nu003C\/scriptu003E\r\nu003Cnoscriptu003Eu003Cimg height=\”1\” width=\”1\” style=\”display:none\”\r\nsrc=\”https:\/\/www.facebook.com\/tr?id=1668352633703699&ev=PageView&noscript=1\”\r\n\/u003Eu003C\/noscriptu003E\r\nu003C!– End Meta Pixel Code –u003E\r\n”\,”body”:”u003C!– Google tag (gtag.js) –u003E\r\nu003Cscript data-gdpr async src=\”https:\/\/www.googletagmanager.com\/gtag\/js?id=G-KYW9BWTDNM\”u003Eu003C\/scriptu003E\r\nu003Cscript data-gdpru003E\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(‘js’\, new Date());\r\n  gtag(‘config’\, ‘G-KYW9BWTDNM’);\r\nu003C\/scriptu003E”\,”footer”:””}\,”strict”:{“header”:””\,”body”:””\,”footer”:””}\,”advanced”:{“header”:””\,”body”:””\,”footer”:””}}”\,”gdpr_scor”:”true”\,”wp_lang”:””\,”wp_consent_api”:”false”\,”gdpr_nonce”:”52e458f2f0″\,”gdpr_consent_version”:”1″\,”gdpr_uvid”:”4e7dfa181995457f46915c441af37c3d”\,”stats_enabled”:””\,”gdpr_aos_hide”:”false”\,”consent_log_enabled”:”1″\,”enable_on_scroll”:”false”};\n//# sourceURL=moove_gdpr_frontend-js-extra \nvar gdpr_c=document.cookie.match(/(?:^|;s*)moove_gdpr_popup=([^;]*)/);var gdpr_d=gdpr_c?JSON.parse(decodeURIComponent(gdpr_c[1])):{};var gdpr_consent__strict=gdpr_d.strict===”1″?”true”:”false”;var gdpr_consent__thirdparty=gdpr_d.thirdparty===”1″?”true”:”false”;var gdpr_consent__advanced=gdpr_d.advanced===”1″?”true”:”false”;var gdpr_consent__performance=gdpr_d.performance===”1″?”true”:”false”;var gdpr_consent__preference=gdpr_d.preference===”1″?”true”:”false”;var _cc=[];if(gdpr_d.strict===”1″)_cc.push(“strict”);if(gdpr_d.thirdparty===”1″)_cc.push(“thirdparty”);if(gdpr_d.advanced===”1″)_cc.push(“advanced”);if(gdpr_d.performance===”1″)_cc.push(“performance”);if(gdpr_d.preference===”1″)_cc.push(“preference”);var gdpr_consent__cookies=_cc.join(“|”);\n//# sourceURL=moove_gdpr_frontend-js-after \nvar elementorFrontendConfig = {“environmentMode”:{“edit”:false\,”wpPreview”:false\,”isScriptDebug”:false}\,”i18n”:{“shareOnFacebook”:”Compartir en Facebook”\,”shareOnTwitter”:”Compartir en Twitter”\,”pinIt”:”Pinear”\,”download”:”Descargar”\,”downloadImage”:”Descargar imagen”\,”fullscreen”:”Pantalla completa”\,”zoom”:”Zoom”\,”share”:”Compartir”\,”playVideo”:”Reproducir vu00eddeo”\,”previous”:”Anterior”\,”next”:”Siguiente”\,”close”:”Cerrar”\,”a11yCarouselPrevSlideMessage”:”Diapositiva anterior”\,”a11yCarouselNextSlideMessage”:”Diapositiva siguiente”\,”a11yCarouselFirstSlideMessage”:”Esta es la primera diapositiva”\,”a11yCarouselLastSlideMessage”:”Esta es la u00faltima diapositiva”\,”a11yCarouselPaginationBulletMessage”:”Ir a la diapositiva”}\,”is_rtl”:false\,”breakpoints”:{“xs”:0\,”sm”:480\,”md”:768\,”lg”:1025\,”xl”:1440\,”xxl”:1600}\,”responsive”:{“breakpoints”:{“mobile”:{“label”:”Mu00f3vil vertical”\,”value”:767\,”default_value”:767\,”direction”:”max”\,”is_enabled”:true}\,”mobile_extra”:{“label”:”Mu00f3vil horizontal”\,”value”:880\,”default_value”:880\,”direction”:”max”\,”is_enabled”:false}\,”tablet”:{“label”:”Tableta vertical”\,”value”:1024\,”default_value”:1024\,”direction”:”max”\,”is_enabled”:true}\,”tablet_extra”:{“label”:”Tableta horizontal”\,”value”:1200\,”default_value”:1200\,”direction”:”max”\,”is_enabled”:true}\,”laptop”:{“label”:”Portu00e1til”\,”value”:1366\,”default_value”:1366\,”direction”:”max”\,”is_enabled”:true}\,”widescreen”:{“label”:”Pantalla grande”\,”value”:2400\,”default_value”:2400\,”direction”:”min”\,”is_enabled”:false}}\,”hasCustomBreakpoints”:true}\,”version”:”4.1.3″\,”is_static”:false\,”experimentalFeatures”:{“e_font_icon_svg”:true\,”additional_custom_breakpoints”:true\,”container”:true\,”theme_builder_v2″:true\,”nested-elements”:true\,”global_classes_should_enforce_capabilities”:true\,”e_variables”:true\,”e_opt_in_v4_page”:true\,”e_components”:true\,”e_interactions”:true\,”e_widget_creation”:true\,”import-export-customization”:true\,”e_pro_atomic_form”:true\,”e_pro_variables”:true\,”e_pro_interactions”:true}\,”urls”:{“assets”:”https://visitasevilla.es/wp-content/plugins/elementor/assets/”\,”ajaxurl”:”https://visitasevilla.es/wp-admin/admin-ajax.php”\,”uploadUrl”:”https://visitasevilla.es/wp-content/uploads”}\,”nonces”:{“floatingButtonsClickTracking”:”98269ec42c”\,”atomicFormsSendForm”:”f755d1b038″}\,”swiperClass”:”swiper”\,”settings”:{“editorPreferences”:[]}\,”kit”:{“active_breakpoints”:[“viewport_mobile”\,”viewport_tablet”\,”viewport_tablet_extra”\,”viewport_laptop”]\,”global_image_lightbox”:”yes”\,”lightbox_enable_counter”:”yes”\,”lightbox_enable_fullscreen”:”yes”\,”lightbox_enable_zoom”:”yes”\,”lightbox_enable_share”:”yes”\,”lightbox_title_src”:”title”\,”lightbox_description_src”:”description”}\,”post”:{“id”:0\,”title”:”Pu00e1gina no encontrada – Visita Sevilla”\,”excerpt”:””}};\n//# sourceURL=elementor-frontend-js-before \nvar ElementorProFrontendConfig = {“ajaxurl”:”https://visitasevilla.es/wp-admin/admin-ajax.php”\,”nonce”:”a9e38b37c4″\,”urls”:{“assets”:”https://visitasevilla.es/wp-content/plugins/elementor-pro/assets/”\,”rest”:”https://visitasevilla.es/wp-json/”}\,”settings”:{“lazy_load_background_images”:false}\,”popup”:{“hasPopUps”:false}\,”shareButtonsNetworks”:{“facebook”:{“title”:”Facebook”\,”has_counter”:true}\,”twitter”:{“title”:”Twitter”}\,”linkedin”:{“title”:”LinkedIn”\,”has_counter”:true}\,”pinterest”:{“title”:”Pinterest”\,”has_counter”:true}\,”reddit”:{“title”:”Reddit”\,”has_counter”:true}\,”vk”:{“title”:”VK”\,”has_counter”:true}\,”odnoklassniki”:{“title”:”OK”\,”has_counter”:true}\,”tumblr”:{“title”:”Tumblr”}\,”digg”:{“title”:”Digg”}\,”skype”:{“title”:”Skype”}\,”stumbleupon”:{“title”:”StumbleUpon”\,”has_counter”:true}\,”mix”:{“title”:”Mix”}\,”telegram”:{“title”:”Telegram”}\,”pocket”:{“title”:”Pocket”\,”has_counter”:true}\,”xing”:{“title”:”XING”\,”has_counter”:true}\,”whatsapp”:{“title”:”WhatsApp”}\,”email”:{“title”:”Email”}\,”print”:{“title”:”Print”}\,”x-twitter”:{“title”:”X”}\,”threads”:{“title”:”Threads”}}\,”facebook_sdk”:{“lang”:”es_ES”\,”app_id”:””}\,”lottie”:{“defaultAnimationUrl”:”https://visitasevilla.es/wp-content/plugins/elementor-pro/modules/lottie/assets/animations/default.json”}};\n//# sourceURL=elementor-pro-frontend-js-before \n{“baseUrl”:”https://s.w.org/images/core/emoji/17.0.2/72×72/”\,”ext”:”.png”\,”svgUrl”:”https://s.w.org/images/core/emoji/17.0.2/svg/”\,”svgExt”:”.svg”\,”source”:{“concatemoji”:”https://visitasevilla.es/wp-includes/js/wp-emoji-release.min.js?ver=7.0″}} \n/*! This file is auto-generated */\nconst a=JSON.parse(document.getElementById(“wp-emoji-settings”).textContent)\,o=(window._wpemojiSettings=a\,”wpEmojiSettingsSupports”)\,s=[“flag”\,”emoji”];function i(e){try{var t={supportTests:e\,timestamp:(new Date).valueOf()};sessionStorage.setItem(o\,JSON.stringify(t))}catch(e){}}function c(e\,t\,n){e.clearRect(0\,0\,e.canvas.width\,e.canvas.height)\,e.fillText(t\,0\,0);t=new Uint32Array(e.getImageData(0\,0\,e.canvas.width\,e.canvas.height).data);e.clearRect(0\,0\,e.canvas.width\,e.canvas.height)\,e.fillText(n\,0\,0);const a=new Uint32Array(e.getImageData(0\,0\,e.canvas.width\,e.canvas.height).data);return t.every((e\,t)=>e===a[t])}function p(e\,t){e.clearRect(0\,0\,e.canvas.width\,e.canvas.height)\,e.fillText(t\,0\,0);var n=e.getImageData(16\,16\,1\,1);for(let e=0;e{s[e]=t(o\,e\,n\,a)})\,s}function r(e){var t=document.createElement(“script”);t.src=e\,t.defer=!0\,document.head.appendChild(t)}a.supports={everything:!0\,everythingExceptFlag:!0}\,new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if(“object”==typeof e&&”number”==typeof e.timestamp&&(new Date).valueOf(){i(n=e.data)\,r.terminate()\,t(n)})}catch(e){}i(n=f(s\,u\,c\,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n]\,a.supports.everything=a.supports.everything&&a.supports[n]\,”flag”!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag\,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji)\,r(t.wpemoji)))});\n//# sourceURL=https://visitasevilla.es/wp-includes/js/wp-emoji-loader.min.js \n			Cerrar los ajustes de cookies RGPD \n	Resumen de privacidad \n		Cookies estrictamente necesarias \n		Cookies de terceros \n		Resumen de privacidad \n	Esta web utiliza cookies para que podamos ofrecerte la mejor experiencia de usuario posible. La información de las cookies se almacena en tu navegador y realiza funciones tales como reconocerte cuando vuelves a nuestra web o ayudar a nuestro equipo a comprender qué secciones de la web encuentras más interesantes y útiles. \n    Cookies estrictamente necesarias \n      Las cookies estrictamente necesarias tiene que activarse siempre para que podamos guardar tus preferencias de ajustes de cookies. \n              Activar o desactivar las cookies         \n                  Activado\n                  Desactivado \n    Cookies de terceros \n      Esta web utiliza Google Analytics para recopilar información anónima tal como el número de visitantes del sitio\, o las páginas más populares.\nDejar esta cookie activa nos permite mejorar nuestra web. \n              Activar o desactivar las cookies      \n                  Activado\n                  Desactivado \n						Activar todo\n								Guardar cambios
URL:https://planeshoy.com/evento/calendario-del-consorcio-turismo-de-sevilla/
CATEGORIES:CONCIERTOS,CULTURA,DEPORTE,FLAMENCO,FORMACION,GASTRONOMIA,MUSICA,NIÑOS,RELIGION,SALUD,WEB LOCAL
ATTACH;FMTTYPE=:
END:VEVENT
END:VCALENDAR